JavaFX Gridpane变形了

时间:2014-07-25 08:50:43

标签: javafx-2 scenebuilder gridpane

我在使用Scene Builder中的AnchorPane添加gridpane时遇到问题!一旦我将它放入窗口,GridPane就完全变形了。实际窗口位于应该是的位置,但是行和列的网格被移位。屏幕截图显示了我的意思:

Gridpane

1 个答案:

答案 0 :(得分:0)

尝试将场景构建器更新到2.0或更高版本并重新添加GridPane或尝试将布局设置从USE_COMPUTED_SIZE更改为常量。或者如果它涉及到它通过执行以下操作在java中添加GridPane:

    @FXML
    AnchorPane root;//This will be at the top of the page bellow where you define your class

    GridPane gridPane = new GridPane();
    root.getChildren().add(GridPane);//switch root out for the name of you anchor pane

我希望这会有所帮助。