|
|||||||||
类 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.swing 中 LookAndFeel 的使用 |
---|
返回 LookAndFeel 的 javax.swing 中的方法 | |
---|---|
static LookAndFeel[] |
UIManager.getAuxiliaryLookAndFeels() 返回辅助外观的列表(可以为 null )。 |
static LookAndFeel |
UIManager.getLookAndFeel() 返回当前的默认外观,或返回 null 。 |
参数类型为 LookAndFeel 的 javax.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.basic 中 LookAndFeel 的使用 |
---|
javax.swing.plaf.basic 中 LookAndFeel 的子类 | |
---|---|
class |
BasicLookAndFeel 实现标准 LookAndFeel 基类,标准桌面 LookAndFeel 类(JLF、Mac、Windows 等)从该基类派生。 |
javax.swing.plaf.metal 中 LookAndFeel 的使用 |
---|
javax.swing.plaf.metal 中 LookAndFeel 的子类 | |
---|---|
class |
MetalLookAndFeel 实现 Java 外观(代号:Metal)。 |
javax.swing.plaf.multi 中 LookAndFeel 的使用 |
---|
javax.swing.plaf.multi 中 LookAndFeel 的子类 | |
---|---|
class |
MultiLookAndFeel 多路外观允许同时将多个 UI 与一个组件相关联。 |
javax.swing.plaf.synth 中 LookAndFeel 的使用 |
---|
javax.swing.plaf.synth 中 LookAndFeel 的子类 | |
---|---|
class |
SynthLookAndFeel SynthLookAndFeel 提供创建自定义外观的基础。 |
所有类
|
|||||||||