简体   繁体   中英

JavaFX button listener not working

I am creating a simple calculator that adds two values entered in text fields and then displays the sum in a third text field when you press a button. However, when I press the button nothing happens and I cant figure out what is wrong. I don't get any error messages and the program compiles the button just doesn't seem to do anything.

import javafx.application.*;
import javafx.geometry.*;
import javafx.scene.*;
import javafx.stage.*;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.event.*;


public class Calculator extends Application{

private TextField sumField;
private TextField firstVField;
private TextField secondVField;

public void start(Stage myStage){
    myStage.setTitle("Simple Calculator");

    GridPane rootNode = new GridPane();
    rootNode.setPadding(new Insets(30));
    rootNode.setHgap(5);
    rootNode.setVgap(5);

    Scene myScene = new Scene(rootNode, 350,250);

    Label firstVLabel = new Label("First Value:");
    Label secondVLabel = new Label("Second Value:");
    Label sumLabel = new Label("Sum:");


    TextField firstVField = new TextField();
    TextField secondVField = new TextField();
    TextField sumField = new TextField();


    sumField.setEditable(false);

    Button calculate = new Button("Calculate");

    rootNode.add(firstVLabel, 0, 0);
    rootNode.add(firstVField, 1, 0);
    rootNode.add(secondVLabel, 0, 1);
    rootNode.add(secondVField, 1, 1);
    rootNode.add(sumLabel, 0, 2);
    rootNode.add(sumField, 1, 2);
    rootNode.add(calculate, 1, 3);

    myStage.setScene(myScene);
    myStage.setResizable(false);
    myStage.show();

}

class ButtonHandler implements EventHandler<ActionEvent>{

    public void handle(ActionEvent e) {
        int sum = (int)firstVField.getText() + (int)secondVField.getText();
        sumField.setText(Integer.toString(sum));

    }
}

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

}

您忘记了将ButtonHandler连接到calculate按钮

calculate.setOnAction(new ButtonHandler());

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM