如何防止FlowPane
布局增长?
我的FlowPane
布局位于VBox
内,其中包含最大宽度并在需要时自动包装其内容(与TextFlow
和HBox
一起使用),{{1}除外}。
所以我的问题是我的FlowPane
布局不会遵守其FlowPane
属性。
还包括:
maxWidth
其内容:
FlowPane messagePane = new FlowPane();
messagePane.setPrefSize(VBox.USE_PREF_SIZE,VBox.USE_PREF_SIZE);
messagePane.setMaxWidth(VBox.USE_PREF_SIZE);
messagePane.setAlignment(Pos.CENTER);
为什么它不按预期工作?