返回列表 發帖
  1. import javax.swing.JFrame;
  2. public class CH75
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 JFrame fm= new JFrame();
  7.                 fm.setTitle("My First GUI App");
  8.                 fm.setLocation(100, 100);
  9.                 fm.setSize(250, 200);
  10.                 fm.setVisible(true);
  11.                 fm.setResizable(false);
  12.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.         }
  14. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

返回列表