0
我想知道是否有可能在我的主Group Panel
包裝在其他類型的面板?其實我可以用代碼做到這一點,但我只想從場景構建器處理它,以更輕鬆地安排組件。例如,你可以看到一個簡單的代碼部分,我如何設法將我的主Group Panel
包裝在Boder Pane
中。是否可以在Scene Builder的其他類型面板中包裝Group Panel?
// My main panel which initialized automatically to Group Panel
rootPane = FXMLLoader.load(getClass().getResource("Risk3.fxml"));
FlowPane flowPane = new FlowPane();
//Text Box 1
TextArea countryInfoText = new TextArea();
countryInfoText.setPrefWidth(100.0);
countryInfoText.maxWidth(100.0);
flowPane.getChildren().add(countryInfoText);
flowPane.setPrefWidth(countryInfoText.getPrefWidth());
BorderPane borderPane = new BorderPane();
borderPane.setCenter(rootPane);
borderPane.setLeft(flowPane);
scene = new Scene(borderPane);
primaryStage.setScene(scene);
primaryStage.show();
但場景生成器犯規讓我把這個包root
(或組面板換句話說)在其他面板中。作爲示例,您可以看到下面的快照。
希望我已經清楚我和你會明白很多關於每個響應。無論如何,謝謝。