这是我的源代码。
我无法将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);
}
任何人都可以解释一下为什么会这样吗? 谢谢!
答案 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);
}
只是删除了初始化..并立即进行初始化和声明。任何人都可以解释一下为什么会这样。请。