Javafx fxml文件TextArea换行符和文本选项卡

时间:2021-03-16 17:04:30

How to edit text in the TextArea in `.fxml file as such I can use line breaks and tabs. The Textarea is predefined and can not be edited.

如何在`.fxml文件中编辑TextArea中的文本,我可以使用换行符和制表符。 Textarea是预定义的,无法编辑。

Images to support

要支持的图像

FXML File

FXML文件

Javafx fxml文件TextArea换行符和文本选项卡

The View

风景

Javafx fxml文件TextArea换行符和文本选项卡

1 个解决方案

#1


11  

If you want to directly use the text you can use something :

如果您想直接使用该文本,您可以使用以下内容:

<TextArea prefHeight="200.0" prefWidth="200.0" text="${'Multi\nLine\tTab'}" />

In case you want to use in Scene Builder, you can switch to multi-line mode.

如果要在Scene Builder中使用,可以切换到多行模式。

Javafx fxml文件TextArea换行符和文本选项卡

Switching to multi-line mode, scene builder will insert:

切换到多线模式,场景构建器将插入:

&#10; for \n 
&#9;  for \t

#1


11  

If you want to directly use the text you can use something :

如果您想直接使用该文本,您可以使用以下内容:

<TextArea prefHeight="200.0" prefWidth="200.0" text="${'Multi\nLine\tTab'}" />

In case you want to use in Scene Builder, you can switch to multi-line mode.

如果要在Scene Builder中使用,可以切换到多行模式。

Javafx fxml文件TextArea换行符和文本选项卡

Switching to multi-line mode, scene builder will insert:

切换到多线模式,场景构建器将插入:

&#10; for \n 
&#9;  for \t