phoenix13

导航

 

2012年8月5日

摘要: 1.一个只有一个lable的界面import javax.swing.JFrame;import javax.swing.JLabel;public class reading extends JFrame { public static void main(String[] args) { new reading(); } reading() { JLabel jlbHelloWorld = new JLabel("Hello World"); add(jlbHelloWorld); this.setSiz... 阅读全文
posted @ 2012-08-05 19:59 phoenix13 阅读(135) 评论(0) 推荐(0) 编辑