我怎么能在SceneBuilder中做左液柱,固定中心(这里我将把GridPane - 主要部分)和液体右列放在ScrollPane上。这个想法非常简单 - 如果窗口的宽度是>然后主要部分的宽度必须位于窗口的中心。如果窗口的宽度小于1。然后显示主要部分的宽度,然后是水平条。我想为scenebuilder获得解决方案,因为我需要很多这样的形式,通过SB比通过代码更容易做到
答案 0 :(得分:1)
你会使用StackPane
,因为它总是以孩子为中心。在窗格内,您可以创建一个ScrollPane
,prefWidth
设置为与您内容上的prefWidth
相同的值。同时将maxWidth
设置为USE_PREF_SIZE
。
然后,您创建内容窗格并将其放在ScrollPane
。
示例输出fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<StackPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0"
xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<children>
<ScrollPane fitToHeight="true" maxWidth="-Infinity" minWidth="50.0"
prefHeight="200.0" prefWidth="550.0">
<content>
<GridPane gridLinesVisible="true" maxHeight="1.7976931348623157E308"
maxWidth="-Infinity" minHeight="-Infinity"
minWidth="-Infinity" prefHeight="500.0"
prefWidth="550.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
</GridPane>
</content>
</ScrollPane>
</children>
</StackPane>
答案 1 :(得分:0)
创建容器的自定义实现(例如VBox
)会更容易,您可以在其中操纵&#39的visible
和managed
属性;横杠&#39;根据容器的宽度。
您可以在Scene Builder