0

在处理 JTable 后,我有一个简单的(不是?)问题,即关注 JInternalFrame。

//I created a table, set it to visible, gave it focus.
list.dispose(); //I did what I wanted with the table and I dispose of it
screen.setVisible(true); //The screen is already visible. this isn't really needed
//After I closed table, I want the focus return to the screen (JInternalFrame)
screen.setFocusable(true); 
screen.requestFocus();
screen.requestFocusInWindow();
screen.requestFocus(true);
desktopPane.setSelectedFrame(screen);

所以发生的事情是这样的:屏幕确实获得焦点,从某种意义上说,当我检查哪个组件有焦点时 - 它确实返回了我 - 屏幕。但是顶部的栏(不确定此处的正确术语)包含图标、标题、X thingy 的栏是灰色而不是蓝色。

知道如何使 JInternalFrame 看起来活跃,而不仅仅是表现活跃吗?

示例: http: //nexrem.com/projects/FocusDemo.rar我在 NetBeans 中快速完成了这个,你所做的是:

点击打开screen1。它打开并集中。单击以打开 JTable。它打开并具有焦点。Screen1 失去焦点。按 Esc 关闭 JInternalFrame。它关闭了,但 screen1 似乎没有焦点(至少在视觉上)。我怀疑它可能与焦点循环有关,因为它在 2 个 JInternalFrames 之间......

4

1 回答 1

3

您正在寻找screen.setSelected(true);(我刚刚在您的代码上尝试过,现在可以使用)。

至于@HFOE 的建议,他的意思是做这样的事情:

SwingUtilities.invokeLater(new Runnable() {
    public void run() {
        screen.requestFocus();
        screen.requestFocusInWindow();
        screen.requestFocus(true);
    }
});

但我不确定这会改善你的情况。

于 2012-05-31T06:10:23.067 回答