views:

81

answers:

2

How to list all available LookAndFeel themes? I want to show then in a JComboBox for the user to select.

+3  A: 

It's really simple:

public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()

by the way check UIManager documentation here

Jack
+2  A: 
UIManager.LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();
camickr