如何在 FXML 中的 Tab 控件中添加图标?
Posted
技术标签:
【中文标题】如何在 FXML 中的 Tab 控件中添加图标?【英文标题】:How to add an icon to the Tab control in FXML? 【发布时间】:2012-03-27 18:08:01 【问题描述】:我正在使用 javafx 2.0。我想在 fxml 的 Tab 中添加一个图标:
示例:
<TabPane>
<tabs>
<Tab text="abc" >
</Tab>
</tabs>
</TabPane>
【问题讨论】:
【参考方案1】:我找到了解决办法:
<Tab>
<graphic>
<ImageView>
<image>
<Image url="@image.png"/>
</image>
</ImageView>
</graphic>
<content>
...
</content>
</Tab>
【讨论】:
@SomethingSomething 看看这里:***.com/a/20591264/4135367以上是关于如何在 FXML 中的 Tab 控件中添加图标?的主要内容,如果未能解决你的问题,请参考以下文章