Personal tools
You are here: Home SwingとSWT チュートリアル 入門編 - JFrame と Shell - SampleJFrame.java
Document Actions

SampleJFrame.java

by fujisaki last modified 2008-11-23 22:00

Click here to get the file

Size 1 kB - File type text/x-java

File contents

import javax.swing.JFrame;

public class SampleJFrame {
    public static void main(String[] args) {
	// フレーム生成
	JFrame frame = new JFrame();
	

	// 閉じるボタンの動作
	frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

	// フレームのサイズ
	frame.setSize(200, 150);

	// フレームのタイトル
	frame.setTitle("フレーム");

	// フレーム表示
	frame.setVisible(true);
    }
}