Fingon FingonWiki
Brought to you by:
peveuve
You don't need to restart your application to remove the auxiliary look and feel from your application:
_LookAndFeel auxiliaryLaF = new FingonLookAndFeel();_ _..._ _UIManager.removeAuxiliaryLookAndFeel(auxiliaryLaF);_ _SwingUtilities.updateComponentTreeUI(yourContainer);_
If you want to reactivate the auxiliary look and feel, still on the fly:
_UIManager.addAuxiliaryLookAndFeel(auxiliaryLaF);_ _SwingUtilities.updateComponentTreeUI(yourContainer);_
The whole UIs of your container (your window usually) will be refreshed, including the main look and feel UIs.