1. 窗口最大化显示
Rectangle2D primaryScreenBounds = Screen.getPrimary().getVisualBounds();
stage.setX(primaryScreenBounds.getMinX());
stage.setY(primaryScreenBounds.getMinY());
stage.setWidth(primaryScreenBounds.getWidth());
stage.setHeight(primaryScreenBounds.getHeight());
2. 始终显示在其他窗口之上
stage.setAlwaysOnTop(true);
3. 全屏显示,Esc退出
stage.setFullScreen(true);
4. 最小化,任务栏可见图标
stage.setIconified(true);
5. 设置窗口风格
stage.initStyle(StageStyle);
StageStyle有几种类型
1) DECORATED——白色背景,带有最小化/最大化/关闭等有操作系统平台装饰( 默认设置)
2) UNDECORATED——白色背景,没有操作系统平台装饰
3) TRANSPARENT——透明背景,没有操作系统平台装饰
4) UTILITY——白色背景,只有关闭操作系统平台装饰
5) UNIFIED——有操作系统平台装饰,消除装饰和内容之间的边框,内容背景和边框背景一致,(但要视平台支持),可以通过javafx.application.Platform.isSupported(javafx.application.ConditionalFeature)
判断