当前位置: 技术问答>java相关
java 对话框!
来源: 互联网 发布时间:2015-08-19
本文导语: 做了一个关于对话框,“确定”按钮显示的字体很难看,不知道怎么修改,各位大侠帮忙! | 在你的applet中的init()方法中增加如下代码: (这是我在jbuilder5中写过的代码,测试成功.) ...
做了一个关于对话框,“确定”按钮显示的字体很难看,不知道怎么修改,各位大侠帮忙!
|
在你的applet中的init()方法中增加如下代码:
(这是我在jbuilder5中写过的代码,测试成功.)
Font f=new Font("Dialog",Font.PLAIN,12);
//自己根据需要设置字体.
//Label
UIManager.put("Label.font",f);
UIManager.put("Label.foreground",Color.black);
//combox
UIManager.put("ComboBox.font",f);
// Buttons
//UIManager.put("Component.font",f);
UIManager.put("Button.font",f);
...
这就是为整个系统设置了默认字体,你可以根据自己需要设置不同的字体给不同的组建.比如button统一用一种字体,而label可以用另外一种
(这是我在jbuilder5中写过的代码,测试成功.)
Font f=new Font("Dialog",Font.PLAIN,12);
//自己根据需要设置字体.
//Label
UIManager.put("Label.font",f);
UIManager.put("Label.foreground",Color.black);
//combox
UIManager.put("ComboBox.font",f);
// Buttons
//UIManager.put("Component.font",f);
UIManager.put("Button.font",f);
...
这就是为整个系统设置了默认字体,你可以根据自己需要设置不同的字体给不同的组建.比如button统一用一种字体,而label可以用另外一种