4

I'm using javafx 2.0. I want to add an icon to the Tab in fxml:

example:

     <TabPane>
         <tabs>
            <Tab text="abc" >
            </Tab> 
         </tabs>
     </TabPane>
fxuser
  • 299
  • 1
  • 6
  • 16

1 Answers1

7

I found a solution:

<Tab> 
    <graphic>
        <ImageView>
            <image>
                    <Image url="@image.png"/>
            </image>
        </ImageView>
    </graphic>
    <content>
        ...
    </content>
</Tab> 
fxuser
  • 299
  • 1
  • 6
  • 16