Contamos con la respuesta a este dilema, al menos eso deseamos. Si presentas inquietudes deja tu comentario y sin dudarlo te responderemos
Solución:
Hasta donde yo sé, el ancho y el alto de los elementos son de solo lectura. Puede configurar -fx-pref-width, -fx-pref-height, -fx-max-width, -fx-min-width, -fx-max-height, -fx-min-height, -fx-border- width y -fx-border-height para ajustar el tamaño de los elementos Java FX.
Puedes hacer lo que quieras usando Css:
.tab
-fx-pref-width: 250
.tab-header-background
-fx-background-color:transparent
.tab-pane
-fx-padding: 0 -1 -1 -1
Podemos establecer un ancho/alto mínimo/máximo para todas las pestañas en TabPane.
@FXML
TabPane tabPane;
y en algún lugar:
tabPane.setTabMinWidth(33);
tabPane.setTabMinHeight(33);
tabPane.setTabMaxWidth(69);
tabPane.setTabMaxHeight(69);
valoraciones y reseñas
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)