- import javax.swing.JButton;
- import javax.swing.JFrame;
- public class Ch75 {
- public static void main(String[] args) {
-
- JFrame fm1=new JFrame("岸道你手痠");
- JButton btn1=new JButton("按鈕1");
- JButton btn2=new JButton("按鈕2");
-
- btn1.setBounds(10, 10, 100, 50);
- btn1.setEnabled(false);
- btn2.setBounds(10, 70, 100, 50);
- fm1.setBounds(100,100,200,200);
- fm1.setVisible(true);
- fm1.setResizable(false);
- fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm1.setLayout(null);
- fm1.add(btn1);
- fm1.add(btn2);
-
- }
- }
複製代碼 |