⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 redtheme.java

📁 java swing 开发代码
💻 JAVA
字号:
// RedTheme.java// A "Mars" theme for Metal.  All of the primary colors used by Metal are// set to shades of red.//package	jswing.ch26;import javax.swing.plaf.*;import javax.swing.plaf.metal.*;public class RedTheme extends DefaultMetalTheme {  public String getName() { return "Mars"; }  private final ColorUIResource primary1 = new ColorUIResource(153, 102, 102);  private final ColorUIResource primary2 = new ColorUIResource(204, 153, 153);  private final ColorUIResource primary3 = new ColorUIResource(255, 204, 204);  protected ColorUIResource getPrimary1() { return primary1; }  protected ColorUIResource getPrimary2() { return primary2; }  protected ColorUIResource getPrimary3() { return primary3; }}

⌨️ 快捷键说明

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