我想在不缩小..的情况下将ui节点动态地添加到gridapanes行中,而不是缩小gridpane应该使滚动滚动(网格窗格在滚动窗格中)..但是它们都不令人高兴...
IAM的所有尝试都是创建一个事件日历,以便能够在第一行中将整个月的事件以天为单位查看(因此,所有东方30科隆)
--->控制器类 包装样品;
import javafx.fxml.Initializable;
import javafx.geometry.Pos;
import javafx.scene.control.Label;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.VBox;
import java.net.URL;
import java.util.ResourceBundle;
public class Controller implements Initializable {
public GridPane gridPane;
@Override
public void initialize(URL location, ResourceBundle resources) {
for (int i = 0; i <= 20; i++) {
VBox box = new VBox();
Label label = new Label(Integer.toString(i));
label.setMinHeight(50);
label.prefHeight(50);
label.setMaxHeight(50);
gridPane.setGridLinesVisible(true);
label.setStyle("-fx-background-color:yellow;");
box.getChildren().add(label);
box.setAlignment(Pos.CENTER);
gridPane.add(box, 0, i);
}
Label labe2 = new Label("HelloWorld");
labe2.setMinHeight(80);
gridPane.add(labe2, 0, 15);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.RowConstraints?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0"
prefWidth="600.0" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="sample.Controller">
<children>
<AnchorPane layoutX="39.0" layoutY="15.0" prefHeight="400.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0"
AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<ScrollPane fitToHeight="true" fitToWidth="true" pannable="true" prefHeight="239.0" prefWidth="331.0"
AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0"
AnchorPane.topAnchor="0.0">
<content>
<GridPane fx:id="gridPane" prefHeight="239.0" prefWidth="331.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
<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 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>
</AnchorPane>
</children>
</AnchorPane>
答案 0 :(得分:1)
解决了此问题。.而不是在场景构建器中创建网格平移。.仅使用代码创建网格并通过代码设置约束...尝试按代码的执行顺序尽早创建约束。 / p>
使用场景创建器创建的网格窗格无法帮我解决
答案 1 :(得分:0)
您的GridPane
行的minHeight
为10.0
。这意味着在使用ScrollPane
之前,它们将始终缩小到该大小。
将每行的minHeight
更改为-Infinity
,这基本上使其与您的prefHeight
相匹配:
<RowConstraints minHeight="-Infinity" prefHeight="30.0" vgrow="SOMETIMES" />
或者,为了在控制器中以编程方式设置这些约束,请在添加RowConstraints
之后添加新的VBox
:
gridPane.getRowConstraints().add(new RowConstraints(30));