本帖最後由 劉得恩 於 2016-1-16 16:57 編輯
- import javax.swing.*;
- public class Ch77{
- public static void main(String args[])
- {
- JFrame f1=new JFrame("\ufedd\u0aed A\u0303\u0310\u3300");
- f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- f1.setVisible(true);
- f1.setResizable(false);
- f1.setLayout(null);
- f1.setBounds(100,100,500,500);
- JButton btn1=new JButton("1"),btn2=new JButton("2");
- btn1.setBounds(200,200,120,120);
- btn1.setEnabled(false);
- btn2.setBounds(200,300,100,100);
- f1.add(btn1);
- f1.add(btn2);
- }
- }
複製代碼 |