问题
How to list all available LookAndFeel themes? I want to show then in a JComboBox for the user to select.
回答1:
It's really simple:
public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()
by the way check UIManager
documentation here
回答2:
UIManager.LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();
来源:https://stackoverflow.com/questions/2655513/how-to-list-all-available-lookandfeel-themes