8

我想为 a 中的所有组件设置一个特定的字体,JPanel但我更喜欢这个问题仍然更笼统,并且不限于 JPanel。如何将字体设置为容器(JFrame 或 JPanel)中的组件列表?

4

4 回答 4

20

这是一个简单的方法,它允许您为任何容器下的整个组件树指定字体(或者只是一个简单的组件,没关系):

public static void changeFont ( Component component, Font font )
{
    component.setFont ( font );
    if ( component instanceof Container )
    {
        for ( Component child : ( ( Container ) component ).getComponents () )
        {
            changeFont ( child, font );
        }
    }
}

只需将您的面板和特定字体传递到此方法中,您也将重构所有子项。

于 2012-10-04T16:09:09.720 回答
12

-你可以UIManager用来做这个......

例如:

public class FrameTest {

    public static void setUIFont(FontUIResource f) {
        Enumeration keys = UIManager.getDefaults().keys();
        while (keys.hasMoreElements()) {
            Object key = keys.nextElement();
            Object value = UIManager.get(key);
            if (value instanceof FontUIResource) {
                FontUIResource orig = (FontUIResource) value;
                Font font = new Font(f.getFontName(), orig.getStyle(), f.getSize());
                UIManager.put(key, new FontUIResource(font));
            }
        }
    }

    public static void main(String[] args) throws InterruptedException {

        setUIFont(new FontUIResource(new Font("Arial", 0, 20)));

        JFrame f = new JFrame("Demo");
        f.getContentPane().setLayout(new BorderLayout());

        JPanel p = new JPanel();
        p.add(new JLabel("hello"));
        p.setBorder(BorderFactory.createTitledBorder("Test Title"));

        f.add(p);

        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(300, 300);
        f.setVisible(true);
    }
}
于 2012-10-04T15:12:41.560 回答
4

UIManager为要更改的组件设置字体值。例如,您可以通过执行以下操作设置用于标签的字体:

Font labelFont = ... ;
UIManager.put("Label.font", labelFont);

请注意,不同的外观 (L&F) 可能具有不同的UIManager类属性,因此如果您从一种 L&F 切换到另一种,您可能会遇到问题。

于 2012-10-04T15:09:56.583 回答
3

灵感来自 Mikle Grains Answer 我使用他的代码通过获取旧的字体大小来增加每个组件的字体百分比

 public static void changeFont(Component component, int fontSize) {
    Font f = component.getFont();
    component.setFont(new Font(f.getName(),f.getStyle(),f.getSize() + fontSize));
    if (component instanceof Container) {
        for (Component child : ((Container) component).getComponents()) {
            changeFont(child, fontSize);
        }
    }
}
于 2013-10-11T14:12:19.123 回答