所有类


类 javax.swing.LookAndFeel
的使用

使用 LookAndFeel 的软件包
javax.swing 提供一组“轻量级”(全部是 Java 语言)组件,尽量让这些组件在所有平台上的工作方式都相同。 
javax.swing.plaf.basic 提供了根据基本外观构建的用户界面对象。 
javax.swing.plaf.metal 提供根据 Java 外观(曾经代称为 Metal)构建的用户界面对象,Java 外观是默认外观。 
javax.swing.plaf.multi 提供了组合两个或多个外观的用户界面对象。 
javax.swing.plaf.synth Synth 是一个可更换皮肤 (skinnable) 的外观,在其中可委托所有绘制。 
 

javax.swingLookAndFeel 的使用
 

返回 LookAndFeeljavax.swing 中的方法
static LookAndFeel[] UIManager.getAuxiliaryLookAndFeels()
          返回辅助外观的列表(可以为 null)。
static LookAndFeel UIManager.getLookAndFeel()
          返回当前的默认外观,或返回 null
 

参数类型为 LookAndFeeljavax.swing 中的方法
static void UIManager.addAuxiliaryLookAndFeel(LookAndFeel laf)
          将 LookAndFeel 添加到辅助外观的列表中。
static boolean UIManager.removeAuxiliaryLookAndFeel(LookAndFeel laf)
          从辅助外观列表移除一个 LookAndFeel
static void UIManager.setLookAndFeel(LookAndFeel newLookAndFeel)
          使用 LookAndFeel 对象设置当前的默认外观。
 

javax.swing.plaf.basicLookAndFeel 的使用
 

javax.swing.plaf.basicLookAndFeel 的子类
 class BasicLookAndFeel
          实现标准 LookAndFeel 基类,标准桌面 LookAndFeel 类(JLF、Mac、Windows 等)从该基类派生。
 

javax.swing.plaf.metalLookAndFeel 的使用
 

javax.swing.plaf.metalLookAndFeel 的子类
 class MetalLookAndFeel
          实现 Java 外观(代号:Metal)。
 

javax.swing.plaf.multiLookAndFeel 的使用
 

javax.swing.plaf.multiLookAndFeel 的子类
 class MultiLookAndFeel
          多路外观允许同时将多个 UI 与一个组件相关联。
 

javax.swing.plaf.synthLookAndFeel 的使用
 

javax.swing.plaf.synthLookAndFeel 的子类
 class SynthLookAndFeel
          SynthLookAndFeel 提供创建自定义外观的基础。
 


所有类

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部