标签: java javafx
我正在尝试将窗口标题的对齐方式从居中(默认)更改为最左侧。
在我的代码部分:
Scene scene = new Scene(mainPane,600,300); primaryStage.setTitle("My title goes here"); primaryStage.setScene(scene); primaryStage.setResizable(false); primaryStage.show();