TextField用于单行文本输入。请看下面的示例 -

  1. import javafx.application.Application;
  2. import javafx.geometry.Insets;
  3. import javafx.scene.Group;
  4. import javafx.scene.Scene;
  5. import javafx.scene.control.Label;
  6. import javafx.scene.control.TextField;
  7. import javafx.scene.layout.GridPane;
  8. import javafx.stage.Stage;
  9. public class Main extends Application {
  10. public static void main(String[] args) {
  11. launch(args);
  12. }
  13. @Override
  14. public void start(Stage stage) {
  15. Scene scene = new Scene(new Group(), 450, 250);
  16. TextField notification = new TextField ();
  17. notification.setText("Label");
  18. notification.clear();
  19. GridPane grid = new GridPane();
  20. grid.setVgap(4);
  21. grid.setHgap(10);
  22. grid.setPadding(new Insets(5, 5, 5, 5));
  23. grid.add(new Label("To: "), 0, 0);
  24. grid.add(notification, 1, 0);
  25. Group root = (Group) scene.getRoot();
  26. root.getChildren().add(grid);
  27. stage.setScene(scene);
  28. stage.show();
  29. }
  30. }

image.png
TextField和Password字段扩展了TextInput类,它是JavaFX中所有文本控件的超类。

创建文本域

我们可以使用TextField类的构造函数来创建文本字段。
TextField只是一个带有光标的文本输入框,通常我们需要一个Label控件来告诉文本字段的目的。以下代码创建一个Label控件来标记对应的文本字段是用于名称输入。然后它创建一个TextField对象。之后,它使用HBox布局Label和TextField。

  1. Label label1 = new Label("Name:");
  2. TextField textField = new TextField ();
  3. HBox hb = new HBox();
  4. hb.getChildren().addAll(label1, textField);
  5. hb.setSpacing(10);

image.png
使用预定义文本创建文本字段。

  1. TextField textField = new TextField("sss")

image.png

TextField文本

要从文本字段获取值,请调用getTexfdt()方法。
从TextInput的setPrefColumnCount方法设置文本字段的大小。 通过设置一次可以显示的最大字符数。
我们可以使用提示字幕通知用户文本字段的用途。setPromptText()方法定义显示在文本字段中的字符串。无法通过getText()方法获取提示文本。
以下代码显示如何设置TextField的提示文本

  1. import javafx.application.Application;
  2. import javafx.geometry.Insets;
  3. import javafx.scene.Group;
  4. import javafx.scene.Scene;
  5. import javafx.scene.control.TextField;
  6. import javafx.scene.layout.GridPane;
  7. import javafx.stage.Stage;
  8. public class Main extends Application {
  9. @Override
  10. public void start(Stage stage) {
  11. Group root = new Group();
  12. Scene scene = new Scene(root, 300, 150);
  13. stage.setScene(scene);
  14. stage.setTitle("Text Field Sample");
  15. GridPane grid = new GridPane();
  16. grid.setPadding(new Insets(10, 10, 10, 10));
  17. grid.setVgap(5);
  18. grid.setHgap(5);
  19. scene.setRoot(grid);
  20. final TextField name = new TextField();
  21. name.setPromptText("Enter your first name.");
  22. name.setPrefColumnCount(10);
  23. name.getText();
  24. GridPane.setConstraints(name, 0, 0);
  25. grid.getChildren().add(name);
  26. stage.show();
  27. }
  28. public static void main(String[] args) {
  29. launch(args);
  30. }
  31. }

image.png
以下列表有一些有用的方法,可以使用它们在文本字段中进行文本编辑。

  • copy() - 将所选文本设置为剪贴板。
  • cut() - 将所选文本设置为剪贴板并删除当前选择。
  • selectAll() - 选择文本输入中的所有文本。
  • paste() - 将剪贴板中的内容设置为此文本并替换当前选择。

示例-1

以下代码显示如何将字符串值从TextField绑定到Stage Title

  1. import javafx.application.Application;
  2. import javafx.beans.property.SimpleStringProperty;
  3. import javafx.beans.property.StringProperty;
  4. import javafx.scene.Scene;
  5. import javafx.scene.control.Label;
  6. import javafx.scene.control.TextField;
  7. import javafx.scene.layout.HBox;
  8. import javafx.stage.Stage;
  9. public class Main extends Application {
  10. StringProperty title = new SimpleStringProperty();
  11. public static void main(String[] args) {
  12. Application.launch(args);
  13. }
  14. @Override
  15. public void start(Stage stage) {
  16. TextField titleTextField;
  17. titleTextField = new TextField();
  18. titleTextField.setText("Stage Coach");
  19. titleTextField.setPrefColumnCount(15);
  20. HBox hBox = new HBox();
  21. hBox.setSpacing(10);
  22. hBox.getChildren().add(new Label("title:"));
  23. hBox.getChildren().add(titleTextField);
  24. Scene scene = new Scene(hBox,270,270);
  25. title.bind(titleTextField.textProperty());
  26. stage.setScene(scene);
  27. stage.titleProperty().bind(title);
  28. stage.show();
  29. }
  30. }

Video_2022-04-28_161022.wmv (175.42KB)