当前位置: 技术问答>java相关
java 对话框字体!
来源: 互联网 发布时间:2015-08-19
本文导语: 做了一个关于对话框,“确定”按钮显示的字体很难看,不知道怎么修改,各位大侠帮忙! JOptionPane.showMessageDialog(this, // Parent "Cleased Area Manager Copyright Yong Fe...
做了一个关于对话框,“确定”按钮显示的字体很难看,不知道怎么修改,各位大侠帮忙!
JOptionPane.showMessageDialog(this, // Parent
"Cleased Area Manager Copyright Yong Feng 2000", // Message
"Cleased Area Manager",
JOptionPane.INFORMATION_MESSAGE);
JOptionPane.showMessageDialog(this, // Parent
"Cleased Area Manager Copyright Yong Feng 2000", // Message
"Cleased Area Manager",
JOptionPane.INFORMATION_MESSAGE);
|
在你的Applet中的init()方法中加入以下代码:加在方法的最前面.
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);//这句负责combox的字体
// Buttons
//UIManager.put("Component.font",f);
UIManager.put("Button.font",f);//这句负责button的字体
这些代码就是设置java程序的默认的字体的.我写过程序,完全可以.
要是不行,给你的email.我mail我的程序给你.
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);//这句负责combox的字体
// Buttons
//UIManager.put("Component.font",f);
UIManager.put("Button.font",f);//这句负责button的字体
这些代码就是设置java程序的默认的字体的.我写过程序,完全可以.
要是不行,给你的email.我mail我的程序给你.
|
Font f=new Font("宋体",Font.PLAIN,12);
UIManager.put("Button.font",f);
UIManager.put("Label.font",f);
把它加在JOptionPane之前。
UIManager.put("Button.font",f);
UIManager.put("Label.font",f);
把它加在JOptionPane之前。