How to list all available LookAndFeel themes?

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

+3
source share
2 answers

It is very simple:

public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()

By the way check the UIManagerdocumentation here

+5
source
UIManager.LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();
+4
source

Source: https://habr.com/ru/post/1741497/


All Articles