Hi,

UIManager.setLookAndFeel(lnfName);
SwingUtilities.updateComponentTreeUI(MainScreen);

Lot of Panels have been added to this MainScreen. when I execute the above code, it is updating look and feel for only visible components. It is not updating for the invisible components. How to proceed?

Thanks in advance.