当显示对话框窗口时,如果其他窗口处于活动状态,则它不会聚焦(即您需要通过鼠标指针对其进行聚焦以便能够处理它)。如何关注显示的对话框?
import javax.swing.JFrame;
import javax.swing.JOptionPane;
public class GuiTest {
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
createAndShowGUI();
}
});
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("frame");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setAlwaysOnTop(true);
JOptionPane.showMessageDialog(frame, "test info", "test header",
JOptionPane.INFORMATION_MESSAGE);
//frame.toFront();
//frame.requestFocus();
frame.dispose(); // When a frame is disposed, the exit action will be
// called.
}
}
答案 0 :(得分:0)
JOptionPane.showMessageDialog停止EDT(事件调度线程),直到对话框关闭。
您可以使用另一个JFrame而不是JOptionPane
public void ApplyRule(RewriteContext context)
{
var request = context.HttpContext.Request;
if (matchPaths.Contains(request.Path.Value))
{
request.Path = newPath;
context.Result = RuleResult.SkipRemainingRules;
}
}
答案 1 :(得分:0)
尝试运行它,然后立即启动任何其他窗口
一旦窗口失去焦点,您需要:
问题是只有一个JFrame被添加到桌面管理器中,所以如果你想要能够使用Alt + Tab,那么你需要在显示选项窗格之前使框架可见。
当然,JFrame现在将在屏幕上显示,因此您可以使用带负值的setLocation(...)方法来隐藏可见桌面中的帧。