4

要更改所有 TitledBorder 字体,我使用 UIManager:

UIManager.put("TitledBorder.font", new Font("Tahoma", Font.BOLD, 11));

但是要放置什么TitledBorder.border属性来仅更改边框的颜色(甚至可能是宽度)?

干杯

4

2 回答 2

7

就像使用一次UIManager更改所有TitledBorder字体一样,更改TitledBorder边框使用此功能:

UIManager.put("TitledBorder.border", new LineBorder(new Color(200,200,200), 1));

它会将边框属性更改(设置)为传入第二个参数的边框对象。所有边框类型(甚至工厂类)的描述都可以在这里找到:http: //docs.oracle.com/javase/tutorial/uiswing/components/border.html

LineBorder正如您所要求的那样,此示例在构造函数中传递了采用颜色和宽度的对象。

于 2012-09-14T14:33:17.513 回答
5

好吧,您始终可以在 TitledBorder 本身中指定任何属性。这是一个完全自定义的 Swing TitledBorder 示例:

public static void main ( String[] args )
{
    LineBorder border = new LineBorder ( Color.RED, 3, true );
    TitledBorder tborder = new TitledBorder ( border, "Titled border", TitledBorder.CENTER,
            TitledBorder.DEFAULT_POSITION, new Font ( "Arial", Font.BOLD, 14 ), Color.BLUE );

    JFrame frame = new JFrame ();

    JLabel label = new JLabel ( "Some content label" );
    label.setBorder ( BorderFactory
            .createCompoundBorder ( BorderFactory.createEmptyBorder ( 50, 50, 50, 50 ),
                    BorderFactory.createCompoundBorder ( tborder,
                            BorderFactory.createEmptyBorder ( 15, 15, 15, 15 ) ) ) );
    frame.add ( label );

    frame.pack ();
    frame.setLocationRelativeTo ( null );
    frame.setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
    frame.setVisible ( true );
}
于 2012-09-14T12:10:26.243 回答