返回列表 發帖
  1. import javax.swing.JFrame;
  2. public class NCh001 {
  3.         public static void main(String[] args)
  4.         {
  5.                 JFrame fm=new JFrame("Bullshit! This is Bullshit!");
  6.                 fm.setLocation(400, 400);
  7.                 fm.setSize(325, 325);
  8.                 fm.setVisible(true);
  9.                 fm.setResizable(true);
  10.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11.         }
  12. }
複製代碼

TOP

返回列表