文件名称:java GUI 美化包!!!1
文件大小:1.24MB
文件格式:ZIP
更新时间:2013-04-26 15:33:13
GUI Java 美化包
JFrame.setDefaultLookAndFeelDecorated(true); JDialog.setDefaultLookAndFeelDecorated(true); try { UIManager.setLookAndFeel(new org.jvnet.substance.skin.SubstanceModerateLookAndFeel()) ; } catch (UnsupportedLookAndFeelException e) { e.printStackTrace(); } FontUIResource f = new FontUIResource("", Font.PLAIN, 14); java.util.Enumeration keys = UIManager.getDefaults().keys(); while (keys.hasMoreElements()) { Object key = keys.nextElement(); Object value = UIManager.get(key); if (value instanceof javax.swing.plaf.FontUIResource){ UIManager.put(key, f); } }