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


  2. public class Main {
  3.         public static void main(String args[])
  4.         {
  5.                 JFrame fm = new JFrame();
  6.                 fm.setTitle("我的第一個程式");
  7.                 fm.setLocation(100,100);
  8.                 fm.setSize(900,900);
  9.                 fm.setVisible(true);
  10.                 fm.setResizable(false);
  11.         fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  12.         }
  13. }
複製代碼

TOP

返回列表