- 186 名前:デフォルトの名無しさん [2008/05/17(土) 10:26:48 ]
- //必要パッケージをインポート
import java.awt.*; import javax.swing.*; /***************************************** * パネルクラス(中間コンテナ) * *****************************************/ class MainPanel extends JPanel implements Runnable{ //パネルサイズ public static final int WIDTH = 500; public static final int HEIGHT = 500; private Thread thread; //コンストラクタ public MainPanel(){ //サイズの設定 setPreferredSize(new Dimension(WIDTH,HEIGHT)); thread = new Thread(this); thread.start(); JButton btn = new JButton("OK"); add(btn); }
|

|