如何在FXML的Tab控件中添加图标?

时间:2012-03-10 17:19:18

标签: user-interface tabs controls javafx fxml

我正在使用javafx 2.0。我想在fxml中添加一个图标:

示例:

     <TabPane>
         <tabs>
            <Tab text="abc" >
            </Tab> 
         </tabs>
     </TabPane>

1 个答案:

答案 0 :(得分:5)

我找到了解决方案:

<Tab> 
    <graphic>
        <ImageView>
            <image>
                    <Image url="@image.png"/>
            </image>
        </ImageView>
    </graphic>
    <content>
        ...
    </content>
</Tab>