我正在使用javafx 2.0。我想在fxml中添加一个图标:
示例:
<TabPane>
<tabs>
<Tab text="abc" >
</Tab>
</tabs>
</TabPane>
答案 0 :(得分:5)
我找到了解决方案:
<Tab>
<graphic>
<ImageView>
<image>
<Image url="@image.png"/>
</image>
</ImageView>
</graphic>
<content>
...
</content>
</Tab>