JOptionPaneのデフォルトフォーカス
Total: 10580
, Today: 1
, Yesterday: 0
Posted by aterai at
Last-modified:
概要
JOptionPane
にデフォルトでフォーカスをもつコンポーネントを追加します。
Screenshot
Advertisement
サンプルコード
textField4.addAncestorListener(new AncestorListener() {
@Override public void ancestorAdded(AncestorEvent e) {
e.getComponent().requestFocusInWindow();
}
@Override public void ancestorMoved(AncestorEvent e) {
/* not needed */
}
@Override public void ancestorRemoved(AncestorEvent e) {
/* not needed */
}
});
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JOptionPane.showConfirmDialog
で表示するJTextField
にデフォルトのフォーカスがあたるように設定しています。
- 左上:
Default
- デフォルトの
ConfirmDialog
の場合、初期フォーカスは入力欄ではなくOK
ボタンにあるint result = JOptionPane.showConfirmDialog( frame, textField, "Input Text", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE); if (result == JOptionPane.OK_OPTION) { textArea.setText(textField.getText()); }
- デフォルトの
- 右上:
WindowListener
JOptionPane#createDialog(...)
でJDialog
を取得しWindowListener#windowOpened
でtextField.requestFocusInWindow();
を実行- Windowを開いたときのフォーカスを指定など
JOptionPane pane = new JOptionPane( textField, JOptionPane.PLAIN_MESSAGE, JOptionPane.OK_CANCEL_OPTION, null, null, null); JDialog dialog = pane.createDialog(frame, "Input Text"); dialog.addWindowListener(new WindowAdapter() { @Override public void windowOpened(WindowEvent e) { textField.requestFocusInWindow(); } }); dialog.setVisible(true); Object selectedValue = pane.getValue(); int result = JOptionPane.CLOSED_OPTION; if (selectedValue != null && selectedValue instanceof Integer) { result = ((Integer) selectedValue).intValue(); } if (result == JOptionPane.OK_OPTION) { textArea.setText(textField.getText()); }
- 左下:
HierarchyListener
textField
にHierarchyListener
を追加しhierarchyChanged
が呼ばれたときにtextField.requestFocusInWindow();
を実行textField3.addHierarchyListener(new HierarchyListener() { @Override public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0 && textField3.isShowing()) { EventQueue.invokeLater(new Runnable() { @Override public void run() { textField3.requestFocusInWindow(); } }); } } }); int result = JOptionPane.showConfirmDialog( frame, textField3, "Input Text", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE); if (result == JOptionPane.OK_OPTION) { textArea.setText(textField3.getText()); }
- 右下:
AncestorListener
textField
にaddAncestorListener
を追加しancestorAdded
が呼ばれたときにtextField.requestFocusInWindow();
を実行- Swing - Input focus