43

我需要显示多行只读文本 - 可以使用哪个控件?它应该只显示文本,就像标签一样,但是标签不支持多行?

感谢您的任何提示:-)

4

5 回答 5

79

您可以在Label.

如果文本中有\n(换行符)字符,则标签将换行到换行符所在的新行。

如果标签已wrapText设置为 true 并且没有足够的空间来显示单行文本,则标签会将文本换行到新行。


如果您想要不同样式的文本,那么,如果使用 JavaFX 2,请将多个标签放在 a 中FlowPane,或者,如果您使用 Java 8+,则将标签放在一个TextFlow组件中。


爱情观

由以下代码产生:

import javafx.scene.Scene;

import javafx.application.Application;
import javafx.scene.control.Label;
import javafx.scene.image.*;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class LoveMeNot extends Application {

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

  @Override public void start(final Stage stage) throws Exception {
    Label label = new Label(WORDS);
    label.setWrapText(true);
    label.setStyle("-fx-font-family: \"Comic Sans MS\"; -fx-font-size: 20; -fx-text-fill: darkred;");

    ImageView image = new ImageView(IMAGE);
    image.setOpacity(0.3);

    StackPane layout = new StackPane();
    layout.setStyle("-fx-background-color: mistyrose; -fx-padding: 10;");
    layout.getChildren().setAll(image, label);

    stage.setTitle("Love Me Not");
    stage.setScene(new Scene(layout));
    stage.show();
  }

  // creates a triangle.
  private static final String WORDS = 
    "Love not me for comely grace,\n" +
    "For my pleasing eye or face,\n" +
    "Nor for any outward part,\n" +
    "No, nor for my constant heart,\n" +
    "For these may fail, or turn to ill.\n" +
    "So thou and I must sever.\n" +
    "Keep therefore a true woman’s eye,\n" +
    "And love me still, but know not why,\n" +
    "So hast thou the same reason still\n" +
    "To doat upon me ever.";

  private static final Image IMAGE = 
    new Image("http://icons.iconarchive.com/icons/artdesigner/gentle-romantic/256/rose-icon.png");
}

尝试运行上述程序并调整窗口大小以查看\n标签文本中新行值的效果以及标签上的wrapText属性。将设置从 true 更改为 false,以查看打开和关闭wrapText之间的区别。wrapText

于 2013-04-13T00:43:29.180 回答
10

如果你为你的 设置一个你想要的最大宽度Label,那么你设置setWrapTexttrue它显示文本多行:

Label label = new Label("Your long text here");
label.setMaxWidth(180);
label.setWrapText(true);
于 2016-07-27T20:18:48.297 回答
9

您也可以使用Text多行显示,wrappingWidthProperty根据您的需要进行设置。

Text text = new Text();
text.wrappingWidthProperty().set(345);

在这段代码中,我将最大宽度设置为345.0,所以当文本的大小超过345像素时,将被换行到下一行。

于 2017-04-21T07:09:12.223 回答
6

如果文本中包含 \n (换行符)字符,则标签将在换行符所在的任何位置换行。

当您从 FXML 文件和可视 FXML 编辑器设置文本时,它不起作用。

于 2017-01-30T17:16:23.300 回答
1

文本类也可用。这个答案中的一个很好的解释label-and-text-differences-in-javafx基本上在没有输入的地方使用 Text,否则 Label 更好。

于 2016-04-24T22:04:45.313 回答