我需要在同一個Scene
中顯示一個Panel
並附加選項,當我單擊Button
時,但我不知道如何實現此行爲。 Stage
當我將面板添加到根VBox
時沒有調整大小的問題。JavaFX:在將子項添加到根父項後自動調整階段
我寫了簡單的代碼來演示這個問題。
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Main extends Application {
public static void main(String[] args) {
launch(args);
}
public void start(Stage stage) throws Exception {
final VBox root = new VBox();
Button button = new Button("add label");
root.getChildren().add(button);
button.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent event) {
root.getChildren().add(new Label("hello"));
}
});
stage.setScene(new Scene(root));
stage.show();
}
}
我想我需要調用一些方法來通知根容器做佈局,但我嘗試並沒有把所有的方法我想要的結果。