如何列出所有可用的LookAndFeel主题?

时间:2010-04-16 19:09:12

标签: java swing look-and-feel

如何列出所有可用的LookAndFeel主题? 我想在JComboBox中显示供用户选择。

2 个答案:

答案 0 :(得分:5)

这很简单:

public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()

顺便检查UIManager文档here

答案 1 :(得分:4)

UIManager.LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();