How to list all available LookAndFeel themes? I want to show then in a JComboBox for the user to select.
How to list all available LookAndFeel themes?
Asked Answered
It's really simple:
public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()
by the way check UIManager
documentation here
UIManager.LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();
© 2022 - 2024 — McMap. All rights reserved.
Metal
look and feel class. Metal has two themes,"DefaultMetal"
&"Ocean"
, some other look and feels might also do this. Your question does not answer the original question which explicitly saysHow to list all available LookAndFeel themes
– Gannie