创建一个新窗口
要在新窗口中显示某些内容,需要创建 Stage
。创建和初始化后,需要在 Stage
对象上调用 show
或 showAndWait
:
// create sample content
Rectangle rect = new Rectangle(100, 100, 200, 300);
Pane root = new Pane(rect);
root.setPrefSize(500, 500);
Parent content = root;
// create scene containing the content
Scene scene = new Scene(content);
Stage window = new Stage();
window.setScene(scene);
// make window visible
window.show();
注意: 此代码需要在 JavaFX 应用程序线程上执行。