Swing/NimbusLookAndFeel の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/NimbusLookAndFeel へ行く。
- Swing/NimbusLookAndFeel の差分を削除
--- category: swing folder: NimbusLookAndFeel title: NimbusLookAndFeelを使用する tags: [LookAndFeel, NimbusLookAndFeel, UIManager] author: aterai pubdate: 2013-07-22T01:35:03+09:00 description: LookAndFeel一覧からNimbusLookAndFeelを名前で検索取得して使用します。 image: https://lh5.googleusercontent.com/-40dXjNq1HbU/UewL67WFpWI/AAAAAAAABwg/zOHVr2U7KiM/s800/NimbusLookAndFeel.png --- * 概要 [#summary] `LookAndFeel`一覧から`NimbusLookAndFeel`を名前で検索取得して使用します。[https://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/nimbus.html Nimbus Look and Feel (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)]などのサンプルから引用しています。 #download(https://lh5.googleusercontent.com/-40dXjNq1HbU/UewL67WFpWI/AAAAAAAABwg/zOHVr2U7KiM/s800/NimbusLookAndFeel.png) * サンプルコード [#sourcecode] #code(link){{ try { UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel"); // // 以下はJDK 1.7.0 以前を考慮する必要がある場合の指定方法 // for (UIManager.LookAndFeelInfo laf: UIManager.getInstalledLookAndFeels()) { // if ("Nimbus".equals(laf.getName())) { // UIManager.setLookAndFeel(laf.getClassName()); // } // } } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) { ex.printStackTrace(); } }} * 解説 [#explanation] `JDK 1.7.0`で`NimbusLookAndFeel`のパッケージが移動されて完全クラス名が変更されたので、`JDK 1.6.0_10`との互換性を考慮する場合は注意が必要です。 `JDK 1.7.0`で`NimbusLookAndFeel`のパッケージが移動されて完全クラス名が変更されたので`JDK 1.6.0_10`との互換性を考慮する場合は注意が必要です。 - `JDK 1.6.0_10`: `com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel` -- 一旦`UIManager.getInstalledLookAndFeels()`で全`LookAndFeelInfo`を取得し名前が`Nimbus`となっている`LookAndFeel`を検索してその完全クラス名を取得 - `JDK 1.7.0`以降: `javax.swing.plaf.nimbus.NimbusLookAndFeel` -- 完全クラス名から`NimbusLookAndFeel`のインスタンスを生成して設定 * 参考リンク [#reference] - [https://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/nimbus.html Nimbus Look and Feel (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)] * コメント [#comment] #comment #comment