I’m using substance look and feel as my application default look and feel, however I want to set the system look and feel for FileDialog especially in Mac OS. Is it possible to set FileDialog to use look and feel other than the application look and feel?
Thanks
The LAF of a component is determined when a component is created. So you can try using:
a) set the LAF
b) create and instance of the component
c) restore the LAF to your default LAF
Some people have recommended against this approach suggesting that all components should be of the same LAF and there may be some unexpected problems when you try to mix LAF’s. I’ll let you be the judge if this will work for you or not.