1

我已经解决了将图标图像带入这样的标题的问题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>

如下所示:

带图标的 TitledPane 标题

如您所见,当折叠箭头和此图标直接并排显示时,它看起来不是很好。

我怎样才能将图标放在标题栏的右侧?

4

1 回答 1

2

您可以将 TitledPane 文本留空,并将图标节点设置为一个 HBox,其中包含左侧的 Label 和右侧的 ImageView。

于 2012-09-16T16:23:20.653 回答