How to get the windows native look in Java GUI programming? How to get the windows native look in Java GUI programming? windows windows

How to get the windows native look in Java GUI programming?


Use the following:

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

Read UIManager and How to Set the Look and Feel for more information.


Try this....

The syntax is:

UIManager.setLookAndFeel(PLAF); (Pluggable Look and Feel)

So, you must include the below 3 lines.

UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");SwingUtilities.updateComponentTreeUI(frame);updateComponentTreeUI(frame);

SwingUtilities.updateComponentTreeUI(frame) is used for refreshing the frame after the change.


try this code:

javax.swing.UIManager.setLookAndFeel("Windows")