import java.awt.*;
import javax.swing.*;
class MyFrame extends JFrame {
JPanel p;
JLabel l;
MyFrame(String title){
super(title);
// 設定長寬
setSize(640,360);
// 關閉按鍵鈕, 並清空記憶體
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 版面設計 預設為像左切齊 用 new FlowLayout()
setLayout(new FlowLayout());
// 內容
l = new JLabel("YA");
add(l);
}
}
public class test_008{
public static void main(String args[]){
// 標題
MyFrame t = new MyFrame("AAA");
// 顯是最後視窗
t.setVisible(true);
}
}
http://chortle.ccsu.edu/java5/notes/chap56/ch56_11.html
修該一下 MyFrame
MyFrame(String title){
super(title);
setSize(640,360);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new FlowLayout());
l = new JLabel("YA");
l2 = new JLabel("YA2");
add(l);
add(l2);
}
沒有留言:
張貼留言