swing笔记

来源:互联网 发布:姜峰手机 淘宝 编辑:程序博客网 时间:2024/06/06 21:48

 

插件首页:http://www.eclipse.org/windowbuilder/download.php


//   设置 Frame 居中显示

this.setLocationRelativeTo(null);


//设置文本域边框

bookTypeDescTxt.setBorder(newLineBorder(new java.awt.Color(127,157,185), 1, false));


//改变系统默认字体

Font font = new Font("Dialog", Font.PLAIN, 12);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, font);}}