如何使用Swing JX标题分隔符?

时间:2013-04-23 07:21:26

标签: java separator swingx

我正在尝试使用SwingX中的JXTitledSeparator创建一个带标题的分隔符,如下所示:

enter image description here

以下是我目前使用的代码:

JXTitledSeparator xTitledSeparator1 = new JXTitledSeparator();
xTitledSeparator1.setTitle( "Separator Title" );
xTitledSeparator1.setHorizontalAlignment(0);

但我真的想要将分隔符标题“Separator Title”向左移动一点,所以它看起来像这样:

enter image description here

有办法吗?

1 个答案:

答案 0 :(得分:0)

尝试

xTitledSeparator1.setHorizontalAlignment(SwingConstants.LEFT);

SwingConstants.LEADING。您使用的0代表SwingConstants.CENTER

如果不起作用,请尝试setHorizontalTextPosition(SwingConstants.LEFT)