返回列表 發帖
  1. import javax.swing.JFrame;

  2. public class Ch01 {
  3.         public static void main(String args[])
  4.         {
  5.             JFrame f=new JFrame();
  6.             f.setTitle("My first GUI App");
  7.             f.setBounds(100,100,250,200);
  8.             f.setVisible(true);
  9.             f.setResizable(false);
  10.             f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11.         }
  12. }
複製代碼

TOP

返回列表