這是我的代碼下面我無法在其中添加第二個按鈕。我莫名其妙地設法創建一個按鈕,當按下按鈕按下按鈕時顯示另一個按鈕並打印偶數
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class Example2 extends JFrame {
public Example2() {
initUI();
}
public final void initUI() {
JPanel panel = new JPanel();
getContentPane().add(panel);
panel.setLayout(null);
panel.setToolTipText("A Panel container");
JButton button = new JButton("Even");
button.setBounds(100, 60, 100, 30);
button.setToolTipText("A button component");
JButton button2 = new JButton("Odd");
button2.setBounds(100, 60, 100, 30);
button2.setToolTipText("A button component");
panel.add(button);
panel.add(button2);
setTitle("Tooltip");
setSize(300, 200);
setLocationRelativeTo(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args) {
Example2 ex = new Example2();
ex.setVisible(true);
}
}
是的,這是可能的。 – 2012-04-01 03:43:01
是的。你當然可以。 – 2012-04-01 03:43:33
在卡住之前你嘗試了什麼? – dasblinkenlight 2012-04-01 03:43:50