我的javafx应用程序出了问题。
它只在命令行中工作,但在进行javafx设置时我遇到了问题。我每次都有一个按钮,例如点击时应该隐藏另一个按钮,它不会更新或刷新。我被告知动画制作者应该解决我的问题,但我的问题是如何在每次点击一个按钮时刷新示例?
答案 0 :(得分:1)
请添加Minimal, Complete, and Verifiable example,以便其他人有机会查看代码中的实际问题。以下是您的问题的答案,以及每次点击按钮时如何更新?'。
您可以使用AnimationTimer
来实现此行为,但最简单的解决方案通常是使用回调。回调是一个在单击按钮时调用的函数,您可以编写该函数。因此,单击按钮时可以执行任何操作。
您可以通过调用Button.setOnAction()
函数来设置此回调。你可以通过,例如lambda函数或EventHandler
。这是一个示例,其中有两个按钮在单击时相互隐藏(如您所述):
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.Group;
import javafx.scene.control.Button;
public class main extends Application{
@Override public void start(Stage primaryStage) {
Button button1 = new Button("Button 1");
Button button2 = new Button("Button 2");
button1.setOnAction(event -> {
// This code is executed when button1 is pressed
if(button2.isVisible())
button2.setVisible(false);
else button2.setVisible(true);
});
button2.setOnAction(event -> {
// This code is executed when button2 is pressed
if(button1.isVisible())
button1.setVisible(false);
else button1.setVisible(true);
});
button2.setLayoutX(75);
Group root = new Group(button1, button2);
Scene scene = new Scene(root, 200, 150);
primaryStage.setScene(scene);
primaryStage.setWidth(200);
primaryStage.setHeight(150);
primaryStage.show();
}
public static void main(String[] args){
launch();
}
}
我建议您查看the callback concept和first class functions. 这些是非常有用的概念,具有多种应用。