2011年3月11日 星期五

3/11 隋堂作業


import java.awt.*;
import java.awt.event.*;  // 要處理事件必須 import 此套件

public static void main(String[] args)
{
//產生一個表單
Frame frame=new Frame("Button Frame"); 
frame.setSize(200,100); //表單大小
frame.setVisible(true);//使表單出現

//產生一個 Button
Button mybutton = new Button("換個標題");
mybutton.setSize(20,50); 
frame.add(mybutton);

//產生一個Checkbox
Checkbox mybutton1= new Checkbox("標題");
mybutton1.setSize(200,100); 
frame.add(mybutton1);


//關閉表單用
frame.addWindowListener(new WindowAdapter(){
      public void windowClosing(WindowEvent e){
        System.exit(0);
      }
    });

}

沒有留言:

張貼留言