• title: JTabbedPaneのタブエリア背景色などをテスト tags: [JTabbedPane, UIManager, MetalLookAndFeel] author: aterai pubdate: 2011-01-03T14:25:13+09:00 description: MetalLookAndFeelのJTabbedPaneで、タブエリアの背景色などを変更するテストをしています。

概要

MetalLookAndFeelJTabbedPaneで、タブエリアの背景色などを変更するテストをしています。

サンプルコード

UIManager.put("TabbedPane.shadow",                Color.GRAY);
UIManager.put("TabbedPane.darkShadow",            Color.GRAY);
UIManager.put("TabbedPane.light",                 Color.GRAY);
UIManager.put("TabbedPane.highlight",             Color.GRAY);
UIManager.put("TabbedPane.tabAreaBackground",     Color.GRAY);
UIManager.put("TabbedPane.unselectedBackground",  Color.GRAY);
UIManager.put("TabbedPane.background",            Color.GRAY);
UIManager.put("TabbedPane.foreground",            Color.WHITE);
UIManager.put("TabbedPane.focus",                 Color.WHITE);
UIManager.put("TabbedPane.contentAreaColor",      Color.WHITE);
UIManager.put("TabbedPane.selected",              Color.WHITE);
UIManager.put("TabbedPane.selectHighlight",       Color.WHITE);
UIManager.put("TabbedPane.borderHightlightColor", Color.WHITE);
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、JPanelタブのJCheckBoxJTabbedPaneを不透明にしたり、JComboBoxでキーを指定し、UIManager.put("TabbedPane.unselectedBackground", Color.GREEN);などとして色を変更することができます。


タブ文字色は、JTabbedPane#setForegroundAt(...)メソッドを使用して切り替えています。

コメント