我正在尝试使用SwingX中的JXTitledSeparator创建一个带标题的分隔符,如下所示:
以下是我目前使用的代码:
JXTitledSeparator xTitledSeparator1 = new JXTitledSeparator();
xTitledSeparator1.setTitle( "Separator Title" );
xTitledSeparator1.setHorizontalAlignment(0);
但我真的想要将分隔符标题“Separator Title”向左移动一点,所以它看起来像这样:
有办法吗?
答案 0 :(得分:0)
尝试
xTitledSeparator1.setHorizontalAlignment(SwingConstants.LEFT);
或SwingConstants.LEADING
。您使用的0
代表SwingConstants.CENTER
。