- import javax.swing.JButton;
- import javax.swing.JFrame;
- public class Ch73{
- public static void main(String[] args) {
- JFrame fm=new JFrame();
- JButton b1=new JButton("1");
- JButton b2=new JButton("2");
- b1.setBounds(10, 10, 175, 70);
- b1.setEnabled(false);
- b2.setBounds(10, 90, 175, 70);
- fm.setTitle("My First GUI App");
- fm.setLocation(100, 100);
- fm.setSize(200, 200);
- fm.setVisible(true);
- fm.setResizable(false);
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm.add(b1);
- fm.add(b2);
- }
- }
複製代碼 |