java 整体字体样式设置

两种方式:

 

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));
}

 
 
上一篇:彻底放弃没落的MFC,对新人的忠告! by FreeWick


下一篇:vhost配置