返回列表 發帖
  1. import javax.swing.JFrame;
  2. public class Ch75 {

  3.         public static void main(String[] args) {
  4.                 JFrame fm=new JFrame();
  5.                 fm.setTitle("My First GUI App");
  6.                 fm.setLocation(100, 100);
  7.                 fm.setSize(250, 200);
  8.                 fm.setVisible(true);
  9.                 fm.setResizable(false);
  10.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11.         }

  12. }
複製代碼

TOP

返回列表