如何将jinternalframe从所有打开的jinternalframes带到前面?

时间:2014-11-02 12:09:16

标签: java swing netbeans jinternalframe

这是我的源代码。 我无法将JInternalframe放到前面。 我已经尝试了很多代码,但没有任何效果。

    private void jMenuItem3ActionPerformed(java.awt.event.ActionEvent evt) {                                           
    boolean b = true;
    JInternalFrame[] j = jDesktopPane1.getAllFrames();
    no = new NewOrder();

    for (JInternalFrame Ji : j) {
        if (Ji.isShowing()) {
            b = false;
            break;
        }
    }

    if (!b) {
      no.requestFocus(true);
    } else {
        dm = jDesktopPane1.getDesktopManager();
        jDesktopPane1.add(no);
        dm.setBoundsForFrame(no, (jDesktopPane1.getWidth() - no.getWidth()) / 2, (jDesktopPane1.getHeight() - no.getHeight()) / 2, no.getWidth(), no.getHeight());
        dm.openFrame(no);
        no.setVisible(true);
    }


} 

NewOrder no = new NewOrder();

if (no.isShowing()) {
    no.toFront();
} else {
    lo.LoadInterfaces(no, jDesktopPane1);
}

任何人都可以解释一下为什么会这样吗? 谢谢!

2 个答案:

答案 0 :(得分:1)

使用setSelected()JInternalFrame方法;引用了一个完整的例子here。为方便起见,请从Action调用方法,如图here所示。

附录:典型的实现可能如下所示。

class MyFrame extends JInternalFrame {

    private Action action;

    MyFrame(…) {
        …
        action = new AbstractAction(name) {
            @Override
            public void actionPerformed(ActionEvent ae) {
                try {
                    MyFrame.this.setSelected(true);
                } catch (PropertyVetoException e) {
                    e.printStackTrace();
                }
            }
        };
    }

    public Action getAction() {
        return action;
    }
}

答案 1 :(得分:1)

我找到了..

    NewOrder no = new NewOrder();

    if (no.isShowing()) {
        no.toFront();
    } else {
        lo.LoadInterfaces(no, jDesktopPane1);
    }

只是删除了初始化..并立即进行初始化和声明。任何人都可以解释一下为什么会这样。请。