をクリックしたときにPanel
同じように追加のオプションを表示する必要がありますが、この動作を実現する方法がわかりません。パネルをルートに追加するとサイズが変更されない問題。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();
}
}
レイアウトを行うようにルート コンテナに通知するメソッドを呼び出す必要があると思いますが、試したすべてのメソッドで望ましい結果が得られませんでした。