Swing/ApproveButtonText のバックアップ(No.21)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ApproveButtonText へ行く。
- 1 (2008-10-20 (月) 14:22:27)
- 2 (2009-10-09 (金) 20:01:14)
- 3 (2009-10-09 (金) 21:09:52)
- 4 (2010-06-14 (月) 02:28:39)
- 5 (2010-06-15 (火) 18:02:19)
- 6 (2010-12-12 (日) 23:20:47)
- 7 (2011-08-22 (月) 20:23:48)
- 8 (2012-02-17 (金) 18:23:19)
- 9 (2014-11-01 (土) 00:46:09)
- 10 (2014-11-09 (日) 02:51:13)
- 11 (2015-12-11 (金) 03:25:11)
- 12 (2016-05-24 (火) 22:01:23)
- 13 (2016-05-25 (水) 13:11:16)
- 14 (2016-06-03 (金) 13:28:46)
- 15 (2017-03-31 (金) 16:12:02)
- 16 (2017-10-18 (水) 13:39:22)
- 17 (2017-11-02 (木) 15:34:40)
- 18 (2019-03-15 (金) 17:07:59)
- 19 (2020-12-25 (金) 14:54:03)
- 20 (2022-08-20 (土) 22:15:25)
- 21 (2023-06-03 (土) 20:53:23)
- 22 (2023-08-30 (水) 09:50:23)
- category: swing folder: ApproveButtonText title: JFileChooserのボタンテキストを変更 tags: [JFileChooser, UIManager, Mnemonic] author: aterai pubdate: 2008-10-20T14:22:27+09:00 description: JFileChooserのボタンテキストを変更します。 image:
概要
JFileChooser
のボタンテキストを変更します。
Screenshot
Advertisement
サンプルコード
// UIManager.put("FileChooser.saveButtonText", "保存(S)");
// UIManager.put("FileChooser.openButtonText", "開く(O)");
UIManager.put("FileChooser.cancelButtonText", "キャンセル");
JFileChooser fileChooser = new JFileChooser();
// fileChooser.setApproveButtonText("開く(O)");
// fileChooser.setApproveButtonMnemonic('O');
View in GitHub: Java, Kotlin解説
上記のサンプルは、日本語のWindowsLookAndFeel
に合わせてJFileChooser
のApproveButton
やキャンセルボタンのテキストを以下のように変更しています。
OpenDialog
のデフォルトでは、ファイルリストでフォルダが選択された状態の場合「開く(O
)」、ファイルが選択された状態の場合「開く」に切り替わるこの切り替えでボタンサイズが変化しないように両方「開く(O
)」に揃える
SaveDialog
のデフォルトではファイルリストでフォルダが選択されていると「開く(O
)」、ファイルが選択されていると「保存」なので「保存(S
)」に揃えるCancelButton
のデフォルトは「取消し」でSaveDialog
のフォルダ・ファイルの選択が切り替わるとボタンサイズに合わせてレイアウトが変化してしまうので、これを防ぐために二文字分長い「キャンセル」に変更