建立一個新視窗

要在新視窗中顯示某些內容,需要建立 Stage。建立和初始化後,需要在 Stage 物件上呼叫 showshowAndWait

// 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 應用程式執行緒上執行。