为了账号安全,请及时绑定邮箱和手机立即绑定

如何更改“按ESC退出全屏”

如何更改“按ESC退出全屏”

白衣非少年 2021-04-08 14:09:15
如何使用setFullScreenExitHint?因为:无法解析方法“ setFullScreenExitHint”你有什么更好的方法像setFullScreen吗?JDK:jdk1.8.0_171package game;import javafx.application.Application;import javafx.fxml.FXMLLoader;import javafx.geometry.Rectangle2D;import javafx.scene.Parent;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Screen;import javafx.stage.Stage;import javafx.stage.StageStyle;public class main extends Application {@Overridepublic void start(Stage primaryStage) throws Exception {    Parent parent = FXMLLoader.load(getClass().getResource("/view/login.fxml"));    Rectangle2D screenBounds = Screen.getPrimary().getVisualBounds();    Scene scene = new Scene(parent, screenBounds.getWidth(),     screenBounds.getHeight());    primaryStage.setFullScreen(true);    primaryStage.setScene(scene);    primaryStage.show();}}
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 431 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信