如何更改安装目录选择器附加信息的字体颜色和规格

How can I change font color and specification of additional informations of installation directory chooser

如何更改磁盘 space 信息字体颜色和安装目录选择器的规格?

Installation directory chooser

如果将"Installation directory chooser"表单组件的"Initialization script"属性设置为

JComponent container = formEnvironment.getComponentTuple(component).getCenterComponent();
for (int i = 0; i < container.getComponentCount(); i++) {
    JComponent c = (JComponent)container.getComponent(i);
    if (c instanceof JLabel) {
        c.setFont(c.getFont().deriveFont(java.awt.Font.BOLD));
    }
} 

两个标签都将以粗体显示。