无法在处理事件中访问按钮/文本区域

时间:2019-04-05 15:50:17

标签: java javafx

我刚刚开始使用JavaFX,并且一直在尝试添加一个事件,该事件将在您按下“发送”按钮时将文本添加到文本区域并清除文本字段。但是,我似乎无法在handle方法中检查事件的来源。

我试图寻找一种解决方案,但是其他人似乎并没有遇到相同的问题-要么我错过了明显的事情。

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Menu;
import javafx.scene.control.MenuBar;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class ApplicationMain extends Application implements EventHandler<ActionEvent>{

    Stage window;

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

    // Scene Method
    @SuppressWarnings("static-access")
    @Override
    public void start(Stage primaryStage) {

        // Window Stuff
        window = primaryStage;
        window.setTitle("Chat Application");

        // Setup Grid Layout
        GridPane grid = new GridPane();
        grid.setAlignment(Pos.TOP_LEFT);
        grid.setHgap(10);
        grid.setStyle("-fx-background-color: #272828;");

        // MenuBar
        MenuBar menu = new MenuBar();

        menu.setPrefWidth(1000);
        menu.setPrefHeight(20);

        // Creation of File + Help
        Menu file = new Menu("File");
        Menu help = new Menu("Help");

        // Add the Menus to the MenuBar
        menu.getMenus().add(file);
        menu.getMenus().add(help);

        // Add MenuBar to Scene
        menu.setVisible(true);
        grid.add(menu, 0, 0);

        // Text Area Stuff
        TextArea area = new TextArea();

        area.setPrefWidth(1000);
        area.setPrefHeight(700);
        area.setEditable(false);
        area.setStyle("-fx-control-inner-background: #313233;");

        // Add Text Area to Grid
        grid.add(area, 0, 1);

        // Text Field
        TextField enter = new TextField();

        enter.setPromptText("Type here...");
        enter.setMaxWidth(920);
        enter.setMaxHeight(30);
        enter.setStyle("-fx-padding: 5px;");

        // Button
        Button send = new Button("Send!");

        // Set the Handler for the Send Button Event
        send.setOnAction(this);

        // Use of HBox to Space out Text Field & Send Button
        HBox row = new HBox();

        row.setSpacing(10);
        row.setHgrow(enter, Priority.ALWAYS);
        row.getChildren().addAll(enter, send);

        // Use of VBox to Space out Text Field
        VBox box = new VBox();
        box.setSpacing(10);
        box.setPadding(new Insets(10));
        box.getChildren().add(row);

        // Add HBox in VBox to Grid
        grid.add(box, 0, 2);

        // Scene Stuff
        Scene scene = new Scene(grid, 1000, 750);
        window.setScene(scene);

        // Display the Window
        window.show();
    }

    // Event Handler
    @Override
    public void handle(ActionEvent event) {

        if (event.getSource() == send) {

        }
    }
}

每当我尝试检查源是否为“发送”按钮时,它都不会显示-好像该方法无法访问它。我不确定如何解决此问题。

2 个答案:

答案 0 :(得分:3)

此代码有些错误,但我们可以解决它。

首先学习命名约定,并遵循它们,就像@kleopatra所说的,如果您使用Google Java命名约定,您会因阅读许多结果而超载

接下来,您不应该将make_unique_4称为Stage,已经存在另一个具有该名称的对象,因此它可能会使其他人感到困惑,但是我猜想,如果仅对您来说,那就可以了

如果您有一个错误修复程序,它不会忽略它,那么我不会像您那样window

@SuppressWarnings("static-access")不是处理事件的方法,请删除send.setOnAction(this);,您可以通过这样设置事件处理程序来使用它

implements EventHandler<ActionEvent>

这就是您要调用的方法的样子

send.setOnAction(event -> sendToTextArea(enter.getText(), area));

其他一切看起来不错,这就是您最终产品的外观

private void sendToTextArea(String string, TextArea textArea){
    //textArea.setText(string);Use setText if you want to set the whole area to something
    textArea.appendText(string+"\n");//Use appendText to append add new line because chat app
}

答案 1 :(得分:0)

设置TextAreaTextField类变量:

private TextArea area;
private TextField enter;

更改其初始化:

// Text Area Stuff
area = new TextArea();
// Text Field
enter = new TextField();

还有您的事件处理程序:

// Event Handler
@Override
public void handle(ActionEvent event) {
    area.setText(enter.getText());
}

如果其中任何变化不清楚,请随时询问。