コード例 #1
0
ファイル: SimpleFrame.java プロジェクト: Terry-chen/Java_code
 public static void main(String[] args) {
   SimpleFrame frame = new SimpleFrame();
   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   frame.setVisible(true);
   frame.setLocation(400, 400);
 }
コード例 #2
0
ファイル: SimpleFrame.java プロジェクト: dermotte/esop15
 public static void main(String[] args) {
   SimpleFrame f = new SimpleFrame();
   f.setVisible(true);
 }