如何在 javaFX 中创建文本区域

How to create textAreas in javaFX

我正在开发一个文本框,该文本框将在其中提供有关主题的信息,但我想要 1 个长字符串来存储所有信息。我希望将此字符串返回到该框中的 "next line",我实际上是在尝试在 JavaFX

中创建一个文本框

如果您主要想创建一个 TextField,请尝试以下操作:

Label label1 = new Label("Name:");

TextField textField = new TextField ();

HBox hb = new HBox();

hb.getChildren().addAll(label1, textField);

hb.setSpacing(10);

所以我又做了一些挖掘,结果我要找的东西叫做 "Text Area"

package com.jenkov.javafx.controls;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextArea;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;


public class TextAreaExperiments extends Application  {


    @Override
    public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("TextArea Experiment 1");

        TextArea textArea = new TextArea();

        VBox vbox = new VBox(textArea);

        Scene scene = new Scene(vbox, 200, 100);
        primaryStage.setScene(scene);
        primaryStage.show();

    }

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

来源收到自:http://tutorials.jenkov.com/javafx/textarea.html