㈠ java編程。比如在一個面板上有兩個按鈕,怎麼實現分別點擊這兩個按鈕然後彈出不同的窗口我的代碼不
importjava.awt.Color;
importjava.awt.event.ActionEvent;
importjava.awt.event.ActionListener;
importjavax.swing.JButton;
importjavax.swing.JFrame;
importjavax.swing.JPanel;
publicclassTestextendsJFrame{
publicTest(){
this.setSize(400,300);
this.setLocationRelativeTo(null);//設置居中
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPaneljp=newJPanel();
finalJButtonjb1=newJButton("彈出藍色");
JButtonjb2=newJButton("彈出青色");
jp.add(jb1);
jp.add(jb2);
//給第一個按鈕添加監聽
jb1.addActionListener(newActionListener(){
publicvoidactionPerformed(ActionEvente){
JFramejf=newJFrame();
JPaneljp=newJPanel();
jf.setSize(200,200);
jf.add(jp);
jp.setBackground(Color.blue);
jf.setLocationRelativeTo(jb1);
jf.setVisible(true);
}
});
//給第二個按鈕添加監聽
jb2.addActionListener(newActionListener(){
publicvoidactionPerformed(ActionEvente){
JFramejf=newJFrame();
JPaneljp=newJPanel();
jf.setSize(200,200);
jf.add(jp);
jp.setBackground(Color.cyan);
jf.setLocationRelativeTo(jb1);
jf.setVisible(true);
}
});
this.add(jp);
}
publicstaticvoidmain(Stringarg[]){
newTest().setVisible(true);
}
}