我从一个小程序背靠背调用2个jDialog。只要从第一个对话框中选择选项并单击“确定”按钮,applet窗口就会聚焦,第二个对话框就会失去焦点。
问题只出现在IE中,并且在firefox和chrome中运行良好。请输入代码段。 (虽然我的完整代码中的实际问题仅出现在IE9中,但我不确定为什么这在SSCCE中的IE8中不起作用)
public class SampleApplet extends Applet{
protected JButton countryButton = new JButton("Select");
public synchronized void init()
{
this.setBounds(new Rectangle(350,350));
this.add(countryButton);
countryButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
getCountries();
getCountries();
}
});
}
protected void getCountries() {
JPanel panel = new JPanel(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
JComboBox CountriesCombo = new JComboBox();
CountriesCombo.addItem("India");
CountriesCombo.addItem("Japan");
panel.add(CountriesCombo, gbc);
JOptionPane optionPane = new JOptionPane(panel, JOptionPane.PLAIN_MESSAGE, JOptionPane.OK_CANCEL_OPTION);
final JDialog dialog = optionPane.createDialog(panel, "Select Countries");
dialog.setModal(true);
dialog.addWindowListener ( new WindowAdapter ()
{
public void windowOpened ( WindowEvent e )
{
dialog.requestFocus ();
}
});
dialog.pack();
dialog.setLocationRelativeTo(null);
dialog.setVisible(true);
}
}
HTML代码:
<html>
<head>
<title>Sample Code</title>
</head>
<body>
<applet code="SampleApplet.class" width="350" height="350">
</applet>
我能否得到一些帮助。
答案 0 :(得分:0)
这种行为可能取决于你运行applet的浏览器(似乎你已经证明了),所以我建议你尝试在对话框(或其中的组件)上调用requestFocus()和requestFocusInWindow() )将焦点放在对话框中。
再次 - 如果您在打开对话框之前(在setVisible(true)之前)请求焦点,那么它将失败,因为对话框尚未显示。如果你在setVisible(true)方法之后调用它 - 如果你的对话框(或OptionPane)是模态的 - 它只会在对话框关闭时执行,所以它也没有意义。您应该在对话框中添加一个WindowListener,并在打开它后将焦点请求对话框。
检查此示例:
public static void main ( String[] args )
{
// Modal dialog
final JDialog dialog = new JDialog ( );
dialog.setModal ( true );
// Adding listener
dialog.addWindowListener ( new WindowAdapter ()
{
public void windowOpened ( WindowEvent e )
{
dialog.requestFocus ();
}
} );
// Displaying dialog
dialog.setVisible ( true );
}
仍然,dialog.requestFocus()这里是一个依赖于平台的调用,可能无法将对话框聚焦/弹出其他打开的窗口。在所有Windows版本中,它应该可以正常工作。
您也可以尝试使用dialog.toFront() - 这会弹出对话框并将焦点转移到对话框中。