答案 0 :(得分:2)
您可以在css文件中为TitlePane
标题设置固定大小:
.titled-pane > .title {
-fx-pref-height: 36.0;
}
或者您可以使用lookup(String)
Node
函数设置高度
Platform.runLater(() -> {
Pane title = (Pane) titlePane.lookup(".title");
title.setPrefHeight(value);
//or
title.prefHeightProperty().bind(gridPane.heightProperty());
});