【发布时间】:2016-10-21 22:14:12
【问题描述】:
我正在开发 Java GUI 项目。我在基于摇摆的 GUI 上有几个组件。我想更改所有组件的字体设置,而不是一一更改每个组件的字体。
有没有办法在 JFrame 上更改 JPanel 上所有组件的字体类型和大小。
编辑:
这就是我的代码的样子:
public class Test extends JFrame{
public Test(){
//all components are initialized here. (some buttons and text fields) and added to this
this.setVisible(true);
}
public static void main(String []args){
new Test();
}
}
【问题讨论】:
标签: java swing fonts jframe jpanel