我正在设计一个允许用户预订飞机航班的程序。程序第一次运行时,会打开一个带有两个按钮的 JFrame。根据单击的按钮,actionPerformed 会打开新的 JPanel 等。
我正在尝试在 JTabbedPane 中创建一个选项卡,该选项卡将显示两个按钮。单击任一按钮将导致不同的图像,但这部分代码已经在 actionPerformed 方法中。如何找出单击了哪个按钮?
这是我使用的方法:
protected JComponent makeImagePanel(String path1, String path2)
{
try{
JPanel panel= new JPanel(false);
JButton international= new JButton("International Flights");
JButton domestic= new JButton("Domestic Flights");
international.setActionCommand("login");
domestic.setActionCommand("domestic");
international.setEnabled(true);
international.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
BufferedImage myPicture = ImageIO.read(new File(path1));
JLabel picLabel = new JLabel(new ImageIcon( myPicture ));
}
});
domestic.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
BufferedImage myPicture = ImageIO.read(new File(path2));
JLabel picLabel = new JLabel(new ImageIcon( myPicture ));
}
});
这就是我尝试实现它的地方:
JComponent reservation= makeImagePanel("international_1.gif", "domestic_seating.gif");
overview.addTab ("Reserve a Flight", reservation);
overview.setMnemonicAt(1, KeyEvent.VK_2);
在此先感谢您的帮助!