import java.awt.Color;
import javax.swing.JButton;
import javax.swing.JFrame;
public class myFrame_button1 extends JFrame{
/**
* @param args
*/
JButton b;//oject button
myFrame_button1(){
initButtom();
initFrame();
}
void initFrame(){
setLayout(null);
setSize(500,500);
setLocation(40,40);
setVisible(true);
setTitle("test2");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
void initButtom(){
b = new JButton();
b.setLayout(null);
b.setBackground(Color.GREEN);
b.setBounds(40,40,100,50);
b.setText("Hello");
b.setFocusable(false);
add(b);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
new myFrame_button1();
}
}
ความคิดเห็น
แสดงความคิดเห็น