博為峰小博老師:
例如一個登錄窗口孕惜,要求愉入用戶名和密碼后,讓用戶選擇確定還是取消的按鈕組件就是普通按鈕衫画。當(dāng)然,與標(biāo)簽組件一樣瞄勾,要使用它鲸郊,首先必須創(chuàng)建一個按鈕組件類對象,然后再通過使用這個類中內(nèi)置的方法來操縱該對象秆撮。普通按鈕是平時生活中遇到最多的組件之一。下圖表格的形式介紹普通按鈕組件的構(gòu)造器盗蟆。
創(chuàng)建好按鈕組件后舒裤,接下來就可以通過使用其內(nèi)置的方法來操縱這個組件了,其常用方法如下圖所示腾供。
下面通過實例來說明如何使用普通按鈕組件。實例代碼如下:
/**
*創(chuàng)建普通按鈕組件节值,將按鈕組件添加到內(nèi)容面板中去
*/
publicclassBwfJButton {
publicstaticintwidth=300;
publicstaticintheight=200;
publicstaticvoidmain(String args[]){
JFrame jf=newJFrame("添加普通按鈕組件");
jf.setSize(width,height);
JPanel contentPane=newJPanel();
JButton button1=newJButton("確定");//創(chuàng)建兩個按鈕
JButton button2=newJButton("取消");
contentPane.add(button1);//將按鈕添加到內(nèi)容面板中
contentPane.add(button2);
jf.setContentPane(contentPane);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setVisible(true);
}
}