java命名空间javax.swing.plaf.metal类metallookandfeel的类成员方法:
setcurrenttheme定义及介绍
本文导语:
setcurrenttheme
public static void setcurrenttheme(metaltheme theme)
设置 metallookandfeel 使用的主题。
设置主题后,需要重新安装 metallookandfeel 并重新创建 ui。以下代码说明了如何完成此操作:
metallookandfeel.setcurrenttheme(theme);
// re-instal...
setcurrenttheme
public static void setcurrenttheme(metaltheme theme)
- 设置
metallookandfeel
使用的主题。
设置主题后,需要重新安装 metallookandfeel
并重新创建 java/jsp
iis7站长之家。以下代码说明了如何完成此操作:
metallookandfeel.setcurrenttheme(theme);
// re-install the metal look and feel
uimanager.setlookandfeel(new metallookandfeel());
// update the componentuis for all components. this
// needs to be invoked for all windows.
swingutilities.updatecomponenttreeui(rootcomponent);
如果此操作未完成,则结果是不确定的。
- 参数:
theme
- 要使用的主题
- 抛出:
nullpointerexception
- 如果 theme
为 null
- 另请参见:
getcurrenttheme()