gpt4 book ai didi

java - 如何翻译javaFX中的弹出窗口?

转载 作者:太空宇宙 更新时间:2023-11-04 06:37:32 25 4
gpt4 key购买 nike

有什么方法可以在java FX中翻译诸如弹出窗口(不是Node)之类的东西吗?例如淡入淡出过渡、平移过渡或任何时间线过渡......谢谢

最佳答案

创建一个属性并使用时间轴来“动画”该属性。使用该属性注册一个监听器,并在其值更改时更新窗口。

例如:

import javafx.animation.KeyFrame;
import javafx.animation.KeyValue;
import javafx.animation.Timeline;
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.util.Duration;

public class TranslateWindowExample extends Application {

@Override
public void start(Stage primaryStage) {
Button moveButton = new Button("Move");

moveButton.setOnAction(event -> {
double currentX = primaryStage.getX() ;
DoubleProperty x = new SimpleDoubleProperty(currentX);
x.addListener((obs, oldX, newX) -> primaryStage.setX(newX.doubleValue()));
KeyFrame keyFrame = new KeyFrame(Duration.seconds(1), new KeyValue(x, currentX + 100));
Timeline animation = new Timeline(keyFrame);
animation.play();
});

StackPane root = new StackPane(moveButton);
Scene scene = new Scene(root, 250, 150);
primaryStage.setScene(scene);
primaryStage.show();
}

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

关于java - 如何翻译javaFX中的弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25163923/

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