我想在未修饰的JavaFX窗口中添加标题栏,并显示要在那里显示的默认图标(关闭,最小化)。
我的舞台包含一个内部有HBox的边框窗格
BorderPane root = new BorderPane();
HBox title = new HBox();
Button close = new Button();
Button min = new Button();
title.getChildren().addAll(close, min);
root.setTop(title);
root.setBottom(grid);