3

我目前正在学习Java以提高自己。我有一个程序,它有一个主窗口、菜单和子菜单。

当我点击我的子菜单时,我还有其他窗口。

其中之一是 setRates 是

public SetMyRates(){
    JPanel dataPanel = new JPanel(new GridLayout(2, 2, 12, 6));
    dataPanel.add(setTLLabel);
    dataPanel.add(setDollarsLabel);
    dataPanel.add(setTLField);
    dataPanel.add(setDollarsField);
    JPanel buttonPanel = new JPanel();
    buttonPanel.add(closeButton);
    buttonPanel.add(setTLButton);
    buttonPanel.add(setDollarsButton);
    Container container = this.getContentPane();
    container.add(dataPanel, BorderLayout.CENTER);
    container.add(buttonPanel, BorderLayout.SOUTH);
    setTLButton.addActionListener(new SetTL());
    setDollarsButton.addActionListener(new SetDollars());
    closeButton.addActionListener(new closeFrame());
    dataPanel.setVisible(true);
    pack();
}

当我点击我的closeButton.

我为closeButton,actionListener创建了一个类,它是:

private class closeFrame implements ActionListener{
    public void actionPerformed(ActionEvent e){
       try{
          dispose();
       }
       catch(Exception ex){
          JOptionPane.showMessageDialog(null, "Please enter correct Rate.");
       }
    }
}

但是当我单击该按钮时,它会关闭我的主窗口而不是我的子菜单窗口。我应该怎么做才能解决这个问题?

4

2 回答 2

6

您需要获取对要关闭的 Window 的引用并dispose()直接在该引用上调用。你如何做到这一点将取决于你的程序的细节——我们目前不知道的信息。

编辑:获得该参考的一种方法是通过SwingUtilities.getWindowAncestor(...). 传入从 ActionEvent 对象返回的 JButton 引用并对其调用 dispose。就像是...

public void actionPerformed(ActionEvent e) {
  Object o = e.getSource();
  if (o instanceof JComponent) { 
    JComponent component = (JComponent)o; 
    Window win = SwingUtilities.getWindowAncestor(component);
    win.dispose();
  }
}
  • 警告:代码既没有编译也没有运行,也没有以任何方式测试。
  • 另请注意,要使其正常工作,保存和激活 ActionListener 的组件必须驻留在您希望关闭的 Window 上,否则这将不起作用。
于 2012-05-05T13:44:04.517 回答
4

从我认为打开另一个窗口时您可以轻松地存储对它的引用并在动作侦听器中使用它。这些方面的东西:

JFrame openedWindow;

//inside the listener
if(openedWindow)
   openedWindow.dispose();
else dispose();
于 2012-05-05T13:47:04.520 回答