码迷,mamicode.com
首页 > 编程语言 > 详细

java 整体字体样式设置

时间:2016-08-31 18:56:43      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:

两种方式:

 

1、
UIManager.put("Button.font", new Font("MS UI Gothic", Font.PLAIN, 24));
UIManager.put("Label.font", new Font("MS UI Gothic", Font.PLAIN, 24));

 

2、
Component[] comp=this.getComponents();
for(Component cp:comp){
 cp.setFont(new Font("MS UI Gothic", Font.PLAIN, 24));
}

 
 

java 整体字体样式设置

标签:

原文地址:http://www.cnblogs.com/dong-blog/p/5826851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!