JavaTM 2 Platform
Standard Ed. 6

类 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)
          将当前外观设置为 newLookAndFeel
 

javax.swing.plaf.basicLookAndFeel 的使用
 

javax.swing.plaf.basicLookAndFeel 的子类
 class BasicLookAndFeel
          为 Swing 创建外观时要使用的基类。
 

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 提供创建定制外观的基础。
 


JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only