嵌套actionPerformed()

时间:2013-04-05 23:24:20

标签: java image swing button user-interface

我正在设计一个允许用户预订飞机航班的程序。程序首次运行时,会打开一个带有两个按钮的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);

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

ActionEvent有一个方法getSource(),它将为您提供触发事件的对象。或者,您可以设置全局变量以找出单击了哪个按钮。有很多方法可以做到。

此致 拉维