返回列表 發帖
  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("我的第一個視窗");
  8.           fm.setSize(250,200);
  9.           fm.setLocation(100,100);
  10.           fm.setVisible(true);
  11.           fm.setResizable(false);
  12.           fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.   }
  14. }
複製代碼

TOP

返回列表