How to list all available LookAndFeel themes? I want to show then in a JComboBox for the user to select.
It's really simple:
public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()
by the way check UIManager documentation here
UIManager
UIManager.LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();