gpt4 book ai didi

JavaFX淡出阶段并关闭

转载 作者:可可西里 更新时间:2023-11-01 13:54:36 25 4
gpt4 key购买 nike

我很难确定这是否可能。大多数人想要的常见行为是淡出 node 的扩展,这完全可以通过 FadeTransition

实现

但是,我正试图淡出整个舞台,所以想象一下关闭正在运行的程序而不是简单地杀死窗口(即显示 -> 不显示),我想要窗口 (stage) 像 toast 或通知一样淡出 2 秒。

最佳答案

使用可更改舞台场景根节点不透明度的关键帧创建时间轴。还要确保将舞台样式和场景填充设置为透明。然后在时间线完成后让程序退出。

下面是一个带有单个大按钮的应用程序,单击该按钮会在 2 秒内淡出,然后程序将关闭。

public class StageFadeExample extends Application {

@Override
public void start(Stage arg0) throws Exception {
Stage stage = new Stage();
stage.initStyle(StageStyle.TRANSPARENT); //Removes window decorations

Button close = new Button("Fade away");
close.setOnAction((actionEvent) -> {
Timeline timeline = new Timeline();
KeyFrame key = new KeyFrame(Duration.millis(2000),
new KeyValue (stage.getScene().getRoot().opacityProperty(), 0));
timeline.getKeyFrames().add(key);
timeline.setOnFinished((ae) -> System.exit(1));
timeline.play();
});

Scene scene = new Scene(close, 300, 300);
scene.setFill(Color.TRANSPARENT); //Makes scene background transparent
stage.setScene(scene);
stage.show();
}

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

关于JavaFX淡出阶段并关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31589871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com