Swing自带的几种皮肤

Swing自带的几种皮肤:

// 还可以,只能在windows系统中用,也就是这句代码不跨平台
UIManager.setLookAndFeel(com.sun.java.swing.plaf.windows.WindowsLookAndFeel.class.getName());

// 还可以
UIManager.setLookAndFeel(javax.swing.plaf.nimbus.NimbusLookAndFeel.class.getName()); 

// Swing默认的丑皮肤 
UIManager.setLookAndFeel(javax.swing.plaf.basic.BasicLookAndFeel.class.getName());

// Swing默认的丑皮肤
UIManager.setLookAndFeel(javax.swing.plaf.metal.MetalLookAndFeel.class.getName());

// 丑
UIManager.setLookAndFeel(com.sun.java.swing.plaf.motif.MotifLookAndFeel.class.getName());

// 还可以
UIManager.setLookAndFeel(com.sun.java.swing.plaf.gtk.GTKLookAndFeel.class.getName());


» 本文链接:https://blog.apires.cn/archives/1056.html
» 转载请注明来源:Java地带  » 《Swing自带的几种皮肤》

» 本文章为Java地带整理创作,欢迎转载!转载请注明本文地址,谢谢!
» 部分内容收集整理自网络,如有侵权请联系我删除!

» 订阅本站:https://blog.apires.cn/feed/

标签: Swing

添加新评论