返回列表 發帖
本帖最後由 劉泳鱔 於 2015-6-18 15:30 編輯
  1. import javax.swing.JFrame;
  2. public class Ch68
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.             JFrame JF=new JFrame();
  7.             JF.setTitle("My First GUI App");
  8.             JF.setLocation(100,100);
  9.             JF.setSize(250,200);
  10.             JF.setVisible(true);
  11.             JF.setResizable(false);
  12.             JF.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.         }
  14. }
複製代碼

TOP

返回列表