来自How to reference primaryStage我了解到我可以使用Stage
获取特定控件的control.getScene.getWindow()
,但这会返回Window
而不是Stage
}。我知道Stage
是Window
的一种类型,但我的问题是返回的对象是否始终是Stage
,还是在某些情况下会是其他内容?另外,我会知道它会是别的什么吗?
答案 0 :(得分:1)
JavaFX API中Window
的子类是Stage
和PopupWindow
。 PopupWindow
反过来是Popup
,ContextMenu
和Tooltip
的超类,当然可以定义自己的子类。因此,设计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,您可能不应该假设您的Window
是Stage
,因为您可能会将FXML重新用作Popup
的内容,或其他非Stage
Window
,将来。