⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gridbag1.java

📁 learning java的源代码。书中每个实例都有相关的代码example。
💻 JAVA
字号:
//file: GridBag1.javaimport java.awt.*;import java.awt.event.*;import javax.swing.*;public class GridBag1 extends JPanel {  GridBagConstraints constraints = new GridBagConstraints(  );  public GridBag1(  ) {    setLayout(new GridBagLayout(  ));    int x, y;  // for clarity    addGB(new JButton("North"),  x = 1, y = 0);    addGB(new JButton("West"),   x = 0, y = 1);    addGB(new JButton("Center"), x = 1, y = 1);    addGB(new JButton("East"),   x = 2, y = 1);    addGB(new JButton("South"),  x = 1, y = 2);  }  void addGB(Component component, int x, int y) {    constraints.gridx = x;    constraints.gridy = y;    add(component, constraints);  }  public static void main(String[] args) {    JFrame f = new JFrame("GridBag1");    f.addWindowListener(new WindowAdapter(  ) {      public void windowClosing(WindowEvent e) { System.exit(0); }    });    f.setSize(225, 150);    f.setLocation(200, 200);    f.setContentPane(new GridBag1(  ));    f.setVisible(true);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -