I am trying to create an event for the button that captures the text entered in the TextField and PasswordField control. I know it has something to do with event-handling, but don't know how to implement it. You will see in my code the class I've started with called AddHandler. I am also trying to build a string that will greet and include the user and pass in the greeting label control in the new label that is marked empty (position 4 of my pane).
import javafx.application.Application;
import javafx.geometry.HPos;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.text.Text;
import javafx.scene.control.TextField;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
public class UserAndPass extends Application {
@Override // Override the start method in the Application class
public void start(Stage primaryStage) {
// Create a pane and set its properties
GridPane pane = new GridPane();
pane.setAlignment(Pos.CENTER);
pane.setPadding(new Insets(11.5, 12.5, 13.5, 14.5));
pane.setHgap(5.5);
pane.setVgap(5.5);
// Place nodes in the pane
pane.add(new Label("Please enter your username and password: "), 0, 0);
pane.add(new Label("Username: "), 0, 1);
pane.add(new TextField(), 1, 1);
pane.add(new Label("Password: "), 0, 2);
pane.add(new TextField(), 1, 2);
Button btAdd = new Button("Enter");
pane.add(btAdd, 1, 3);
// Create and register the handler
btAdd.setOnAction(new AddHandler());
GridPane.setHalignment(btAdd, HPos.RIGHT);
pane.add(new Label(""), 0, 4);
// Create a scene and place it in the stage
Scene scene = new Scene(pane);
primaryStage.setTitle("Login Display"); // Set the stage title
primaryStage.setScene(scene); // Place the scene in the stage
primaryStage.show(); // Display the stage
}
class AddHandler implements EventHandler<ActionEvent> {
@Override // Override the handle method
public void handle(ActionEvent e) {
AddHandler.enter();
}
}
/**
* The main method is only needed for the IDE with limited
* JavaFX support. Not needed for running from the command line.
*/
public static void main(String[] args) {
launch(args);
}
}