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


  2. public class CH06 {

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

  10.         }

  11. }
複製代碼
hahahahahahahaha

TOP

返回列表