我正在尝试学习JavaFX,并且我编写了下面显示的代码,但是我似乎遇到了这行代码的问题:
btn.setOnAction(new EventHandler<ActionEvent>()
它强调setOnAction,并打印此错误:
The method setOnAction(EventHandler<ActionEvent>) in the type ButtonBase is not applicable for the arguments (new EventHandler<ActionEvent>(){})
import java.awt.event.ActionEvent;
import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class Test extends Application{
public static void main(String[] args){
launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Hello World!");
Button btn = new Button();
btn.setText("Say 'Hello World' ");
btn.setOnAction(new EventHandler<ActionEvent>(){
@Override
public void handle(ActionEvent event) {
System.out.println("Button clicked");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}
}
我做错了什么?
答案 0 :(得分:4)
您已导入awt事件侦听器只需更改此行代码
import java.awt.event.ActionEvent;
用这个
import javafx.event.ActionEvent;
你也可以像这样使用lambda表达式
btn.setOnAction((event) -> {
System.out.println("Button clicked");
});
答案 1 :(得分:1)
你正在将Javafx和Swing混在一起。取代
import java.awt.event.ActionEvent;
与
import javafx.event.ActionEvent;