我已经解决了将图标图像带入这样的标题的问题TitledPane
:
<TitledPane fx:id="x2" text="Strukturen">
<graphic>
<ImageView >
<image>
<Image url="@/de/myres/icons/arrow-out.png" />
</image>
</ImageView>
</graphic>
<content>
<AnchorPane id="Content" minHeight="0.0" minWidth="0.0"
prefHeight="180.0" prefWidth="200.0" />
</content>
</TitledPane>
如下所示:
如您所见,当折叠箭头和此图标直接并排显示时,它看起来不是很好。
我怎样才能将图标放在标题栏的右侧?