更改默认的JLabel字体
我将如何为所有JLabel
实例设置默认字体。而不是分别为每个字体设置字体JLabel
。
回答:
使用UIManager
定义JLabel的默认字体:
import java.awt.FlowLayout;import java.awt.Font;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.UIManager;
public class LabelFont {
public static void main(String[] args) {
Font oldLabelFont = UIManager.getFont("Label.font");
UIManager.put("Label.font", oldLabelFont.deriveFont(Font.PLAIN));
JFrame f = new JFrame("LabelFont Test");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().setLayout(new FlowLayout());
JLabel df = new JLabel("Default JLabel font");
f.getContentPane().add(df);
JLabel ef = new JLabel("Font explicitly set");
ef.setFont(oldLabelFont);
f.getContentPane().add(ef);
f.pack();
f.setVisible(true);
}
}
通过:http
:
//coding.derkeiler.com/Archive/Java/comp.lang.java.help/2005-04/msg00395.html
以上是 更改默认的JLabel字体 的全部内容, 来源链接: utcz.com/qa/420886.html