使用GridBagLayout布局RadioButtons : 网格包布局参数 « Swing « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » Swing » 网格包布局参数 
14. 95. 11. 使用GridBagLayout布局RadioButtons
使用GridBagLayout布局RadioButtons
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;

import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;

public class PizzaGridBagLayout extends JFrame {
  public static void main(String[] args) {
    new PizzaGridBagLayout();
  }

  JTextField name = new JTextField(20), phone = new JTextField(10), address = new JTextField(20);

  JRadioButton small = new JRadioButton("Small"), medium = new JRadioButton("Medium"),
      large = new JRadioButton("Large"), thick = new JRadioButton("Thick"),
      thin = new JRadioButton("Thin");

  JCheckBox pepperoni = new JCheckBox("Pepperoni"), mushrooms = new JCheckBox("Mushrooms"),
      anchovies = new JCheckBox("Anchovies");

  JButton okButton = new JButton("OK"), closeButton = new JButton("Close");

  public PizzaGridBagLayout() {
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JPanel panel1 = new JPanel();
    panel1.setLayout(new GridBagLayout());
    addItem(panel1, new JLabel("Name:")0011, GridBagConstraints.EAST);
    addItem(panel1, new JLabel("Phone:")0111, GridBagConstraints.EAST);
    addItem(panel1, new JLabel("Address:")0211, GridBagConstraints.EAST);

    addItem(panel1, name, 1021, GridBagConstraints.WEST);
    addItem(panel1, phone, 1111, GridBagConstraints.WEST);
    addItem(panel1, address, 1221, GridBagConstraints.WEST);

    Box sizeBox = Box.createVerticalBox();
    ButtonGroup sizeGroup = new ButtonGroup();
    sizeGroup.add(small);
    sizeGroup.add(medium);
    sizeGroup.add(large);
    sizeBox.add(small);
    sizeBox.add(medium);
    sizeBox.add(large);
    sizeBox.setBorder(BorderFactory.createTitledBorder("Size"));
    addItem(panel1, sizeBox, 0311, GridBagConstraints.NORTH);

    Box styleBox = Box.createVerticalBox();

    ButtonGroup styleGroup = new ButtonGroup();
    styleGroup.add(thin);
    styleGroup.add(thick);
    styleBox.add(thin);
    styleBox.add(thick);
    styleBox.setBorder(BorderFactory.

    createTitledBorder("Style"));
    addItem(panel1, styleBox, 1311, GridBagConstraints.NORTH);

    Box topBox = Box.createVerticalBox();
    ButtonGroup topGroup = new ButtonGroup();
    topGroup.add(pepperoni);
    topGroup.add(mushrooms);
    topGroup.add(anchovies);
    topBox.add(pepperoni);
    topBox.add(mushrooms);
    topBox.add(anchovies);
    topBox.setBorder(BorderFactory.createTitledBorder("Toppings"));
    addItem(panel1, topBox, 2311, GridBagConstraints.NORTH);

    Box buttonBox = Box.createHorizontalBox();
    buttonBox.add(okButton);
    buttonBox.add(Box.createHorizontalStrut(20));
    buttonBox.add(closeButton);
    addItem(panel1, buttonBox, 2411, GridBagConstraints.NORTH);

    this.add(panel1);
    this.pack();
    this.setVisible(true);
  }

  private void addItem(JPanel p, JComponent c, int x, int y, int width, int height, int align) {
    GridBagConstraints gc = new GridBagConstraints();
    gc.gridx = x;
    gc.gridy = y;
    gc.gridwidth = width;
    gc.gridheight = height;
    gc.weightx = 100.0;
    gc.weighty = 100.0;
    gc.insets = new Insets(5555);
    gc.anchor = align;
    gc.fill = GridBagConstraints.NONE;
    p.add(c, gc);
  }
}
14. 95. 网格包布局参数
14. 95. 1. 使用GridBagConstraints使用GridBagConstraints
14. 95. 2. 相对X位置相对X位置
14. 95. 3. 相对?位置相对?位置
14. 95. 4. 相对X和Y坐标相对X和Y坐标
14. 95. 5. 填补填补
14. 95. 6. gridwidth约束gridwidth约束
14. 95. 7. 充满整列充满整列
14. 95. 8. 利用剩余宽度利用剩余宽度
14. 95. 9. gridheight约束gridheight约束
14. 95. 10. 使用GridBagConstraints.WEST使用GridBagConstraints.WEST
14. 95. 11. 使用GridBagLayout布局RadioButtons使用GridBagLayout布局RadioButtons
14. 95. 12. GridBagLayout示例
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.