4

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

例子:

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

1 回答 1

7

我找到了一个解决方案:

<Tab> 
    <graphic>
        <ImageView>
            <image>
                    <Image url="@image.png"/>
            </image>
        </ImageView>
    </graphic>
    <content>
        ...
    </content>
</Tab> 
于 2012-03-29T17:59:43.417 回答