welcome: please sign in
location: "ウインドウの表示"の差分
1と7のリビジョン間の差分 (その間の編集: 6回)
2009-11-27 00:51:17時点のリビジョン1
サイズ: 43
編集者: masahiko
コメント:
2009-11-27 02:28:41時点のリビジョン7
サイズ: 776
編集者: masahiko
コメント:
削除された箇所はこのように表示されます。 追加された箇所はこのように表示されます。
行 3: 行 3:
 {{{#!java
 import javax.swing.*;

 public class Sample1
 {
  public static void main(String[] args)
  {
   JFrame f;
   
   f = new JFrame();
   f.setVisible(true);
  }
 }
 }}}

 . {{attachment:swing01.png}}

 {{{#!java
 import javax.swing.*;
 
 public class Sample2
 {
  public static void main(String[] args)
  {
   JFrame f, g;
   
   f = new JFrame();
   f.setVisible(true);
   f.setTitle("- f -");
   f.setSize(200, 300);
   
   g = new JFrame();
   g.setVisible(true);
   g.setTitle("- g -");
   g.setSize(300, 100);
  }
 }
 }}}

 . {{attachment:swing02.png}}
 . {{attachment:swing03.png}}
 . {{attachment:swing07.png}}
 {{{
 f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 }}}

ウインドウの表示

  •    1  import javax.swing.*;
       2 
       3  public class Sample1
       4  {
       5         public static void main(String[] args)
       6         {
       7                 JFrame f;
       8                 
       9                 f = new JFrame();
      10                 f.setVisible(true);
      11         }
      12  }
    
  • swing01.png

       1  import javax.swing.*;
       2  
       3  public class Sample2
       4  {
       5         public static void main(String[] args)
       6         {
       7                 JFrame f, g;
       8                 
       9                 f = new JFrame();
      10                 f.setVisible(true);
      11                 f.setTitle("- f -");
      12                 f.setSize(200, 300);
      13                 
      14                 g = new JFrame();
      15                 g.setVisible(true);
      16                 g.setTitle("- g -");
      17                 g.setSize(300, 100);
      18         }
      19  }
    
  • swing02.png

  • swing03.png

  • swing07.png

     f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

ウインドウの表示 (最終更新日時 2011-12-13 02:59:08 更新者 masahiko)