我在JavaFX中有一个非常简单的应用程序:带有一个退出按钮的全屏幕阶段。问题是在点击&#34后不时(不知道为什么不总是)#退出"按钮我的应用程序闪烁(似乎最小化并以毫秒为单位最大化)。 有什么想法吗?
import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.Scene;
import javafx.scene.control.Alert;
import javafx.scene.control.Button;
import javafx.scene.control.ButtonType;
import javafx.scene.input.KeyCombination;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import java.util.Optional;
public class FullScreenExample extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
Button button = new Button("Exit");
button.setOnAction(event -> {
Alert alert = new Alert(Alert.AlertType.CONFIRMATION);
alert.initOwner(stage);
alert.initStyle(StageStyle.UNDECORATED);
alert.initModality(Modality.WINDOW_MODAL);
Optional<ButtonType> result = alert.showAndWait();
if (result.get() == ButtonType.OK){
Platform.exit();
}
});
VBox box = new VBox();
box.getChildren().add(button);
final Scene scene = new Scene(box);
scene.setFill(null);
stage.setScene(scene);
stage.setFullScreenExitHint("");
stage.setFullScreenExitKeyCombination(KeyCombination.NO_MATCH);
stage.setFullScreen(true);
stage.show();
}
}
答案 0 :(得分:0)
您正在使用舞台风格未修饰:
alert.initStyle(StageStyle.UNDECORATED);
尝试使用
alert.initStyle(StageStyle.TRANSPARENT);
这可以解决你的问题。
它是Windows中未修饰帧的已知问题。