nativetheme.java

来自「oraily的Swing hacks code」· Java 代码 · 共 37 行

JAVA
37
字号
import javax.swing.plaf.metal.*;import javax.swing.plaf.ColorUIResource;import java.awt.SystemColor;public class NativeTheme extends DefaultMetalTheme {    protected ColorUIResource getPrimary1() {         return new ColorUIResource(SystemColor.controlText);    }    // protected ColorUIResource getPrimary2() {     //     return new ColorUIResource(SystemColor.control);    // }    // protected ColorUIResource getPrimary3() {     //     return new ColorUIResource(255,255,255);    // }        // component borders    // protected ColorUIResource getSecondary1() {     //     return new ColorUIResource(SystemColor.control);    // }        // component backgrounds    protected ColorUIResource getSecondary3() {         return new ColorUIResource(SystemColor.control);    }    // selected components (button down state)    // protected ColorUIResource getSecondary2() {     //     return new ColorUIResource(0,0,0);    // }    // component backgrounds    // protected ColorUIResource getSecondary3() {     //     return new ColorUIResource(255,255,255);    // }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?