NAVIGATION
Home
Gallery
Java
Linux
Web
Scripts And Utilities
Mobile And Sms
Misc
Contact
pixelWIKI
Nabaz Tag




Look And Feel

Set the Look and Feel

Set the look and feel to the most appropriate for your system.

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
//Set Look & Feel
try {
	javax.swing.UIManager.setLookAndFeel(
		System.getProperty("os.name").toLowerCase().indexOf("linux") != -1 ?
		"com.sun.java.swing.plaf.gtk.GTKLookAndFeel" :
		UIManager.getSystemLookAndFeelClassName()
	);
} catch( Exception e) {
	e.printStackTrace();
}