Uses of Class
javax.swing.LookAndFeel
-
Packages that use LookAndFeel 软件包 描述 javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.plaf.basic 提供根据“基本”外观构建的用户界面对象。javax.swing.plaf.metal 提供根据Java外观构建的用户界面对象(一旦代号为 Metal ),这是默认的外观和感觉。javax.swing.plaf.multi 提供组合两种或多种外观和感觉的用户界面对象。javax.swing.plaf.nimbus 提供根据跨平台Nimbus外观构建的用户界面对象。javax.swing.plaf.synth 合成是一种可以让所有绘画委托的外观和感觉。 -
-
Uses of LookAndFeel in javax.swing
Methods in javax.swing that return LookAndFeel Modifier and Type 方法 描述 static LookAndFeel
UIManager. createLookAndFeel(String name)
创建由给定的L&F name
名称指定的支持的内置JavaLookAndFeel
。static LookAndFeel[]
UIManager. getAuxiliaryLookAndFeels()
返回辅助外观和感觉列表(可以是null
)。static LookAndFeel
UIManager. getLookAndFeel()
返回目前的外观或null
。Methods in javax.swing with parameters of type LookAndFeel Modifier and Type 方法 描述 static void
UIManager. addAuxiliaryLookAndFeel(LookAndFeel laf)
将LookAndFeel
添加到辅助外观和感觉列表中。static boolean
UIManager. removeAuxiliaryLookAndFeel(LookAndFeel laf)
从辅助外观和感觉列表中删除LookAndFeel
。static void
UIManager. setLookAndFeel(LookAndFeel newLookAndFeel)
将当前的外观设置为newLookAndFeel
。 -
Uses of LookAndFeel in javax.swing.plaf.basic
Subclasses of LookAndFeel in javax.swing.plaf.basic Modifier and Type Class 描述 class
BasicLookAndFeel
用于创建Swing的外观的基础类。 -
Uses of LookAndFeel in javax.swing.plaf.metal
Subclasses of LookAndFeel in javax.swing.plaf.metal Modifier and Type Class 描述 class
MetalLookAndFeel
Java外观和感觉,也称为金属。 -
Uses of LookAndFeel in javax.swing.plaf.multi
Subclasses of LookAndFeel in javax.swing.plaf.multi Modifier and Type Class 描述 class
MultiLookAndFeel
复用外观和感觉,允许多个UI同时与组件相关联。 -
Uses of LookAndFeel in javax.swing.plaf.nimbus
Subclasses of LookAndFeel in javax.swing.plaf.nimbus Modifier and Type Class 描述 class
NimbusLookAndFeel
NimbusLookAndFeel类。 -
Uses of LookAndFeel in javax.swing.plaf.synth
Subclasses of LookAndFeel in javax.swing.plaf.synth Modifier and Type Class 描述 class
SynthLookAndFeel
SynthLookAndFeel提供了创建自定义外观的基础。
-