当我设置完UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());之后,我发现弹出的对话框如showConfirmDialog并没有获得焦点.换言之,我必须点击一下这个对话框获得焦点后,点击确定按钮才有效.怎么破
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException
| IllegalAccessException
| UnsupportedLookAndFeelException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
------解决思路----------------------