Pregunta

Estoy usando Javafx 2.0.Quiero agregar un icono a la pestaña en FXML:

Ejemplo:

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

¿Fue útil?

Solución

Encontré una solución:

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top