I am working on a project that uses Java Swing. The default look and feel of the Java Swing GUI is very boring. Is there any way I can use a better look and feel? Something like on web pages... 解决方案 You can set the look and feel to reflect the platform:try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());} catch (Exception e) { e.printStackTrace();}If this is not nice enough for you, take a look at SWT for Eclipse. 这篇关于如何改善JAVA swing GUI的外观?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的..
09-06 14:17