Scene.getWindow()总是一个舞台吗?

时间:2014-08-02 13:33:45

标签: java user-interface javafx window

来自How to reference primaryStage我了解到我可以使用Stage获取特定控件的control.getScene.getWindow(),但这会返回Window而不是Stage }。我知道StageWindow的一种类型,但我的问题是返回的对象是否始终是Stage,还是在某些情况下会是其他内容?另外,我会知道它会是别的什么吗?

1 个答案:

答案 0 :(得分:1)

JavaFX API中Window的子类是StagePopupWindowPopupWindow反过来是PopupContextMenuTooltip的超类,当然可以定义自己的子类。因此,设计control.getScene().getWindow()返回的内容不是Stage的情况相当容易:

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.ContextMenu;
import javafx.scene.control.Label;
import javafx.scene.control.MenuItem;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.stage.Window;

public class ContextMenuExample extends Application {

    @Override
    public void start(Stage primaryStage) {
        StackPane root = new StackPane();
        Label label = new Label("Right click here");
        root.getChildren().add(label);

        ContextMenu contextMenu = new ContextMenu();
        MenuItem menuItem = new MenuItem();
        contextMenu.getItems().add(menuItem);

        final Button button = new Button("Click Me");
        menuItem.setGraphic(button);
        button.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent event) {
                Window window = button.getScene().getWindow();
                System.out.println("window is a stage: "+(window instanceof Stage));
            }
        });
        label.setContextMenu(contextMenu);
        Scene scene = new Scene(root, 250, 100);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

如果您使用FXML,您可能不应该假设您的WindowStage,因为您可能会将FXML重新用作Popup的内容,或其他非Stage Window,将来。