VBox 设置元素特定的填充宽度 true
VBox set fill width true specific to element
有什么方法可以将 fillWidth 设置为 VBox 的特定子级吗?
当前输出:
if VBox fillWidth = false set
if VBox fillWidth = true 设置
预期输出:
fillWidth
属性 本身适用于所有 children.
但是,您可以使用 HBox1.setPrefWidth(Double.MAX_VALUE)
并且 HBox1
将填充宽度。
(既然你用的是Scene Builder,你也可以取一个足够大的值。)
反之亦然:将 fillWidth
设置为 true 并使用 maxWidth
属性.[=16 限制其他 HBox
元素的宽度=]
有什么方法可以将 fillWidth 设置为 VBox 的特定子级吗?
当前输出:
if VBox fillWidth = false set
if VBox fillWidth = true 设置
预期输出:
fillWidth
属性 本身适用于所有 children.
但是,您可以使用 HBox1.setPrefWidth(Double.MAX_VALUE)
并且 HBox1
将填充宽度。
(既然你用的是Scene Builder,你也可以取一个足够大的值。)
反之亦然:将 fillWidth
设置为 true 并使用 maxWidth
属性.[=16 限制其他 HBox
元素的宽度=]