我在场景生成器中将网格窗格添加到 AnchorPane 时遇到问题!将 GridPane 放入窗口后,它就完全变形了。实际的窗口位于它应该在的位置,但是带有行和列的网格被移位。屏幕截图显示了我的意思:
问问题
625 次
1 回答
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
我希望这有帮助。
于 2014-08-28T01:38:08.210 回答