当我点击 时,我需要显示一个Panel
额外的选项,但我不知道如何实现这种行为。将面板添加到 root 时未调整大小的问题。Scene
Button
Stage
VBox
我编写了简单的代码来演示这个问题。
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();
}
}
我想我需要调用一些方法来通知根容器进行布局,但是我尝试的所有方法都没有给我带来想要的结果。