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文件
The View
风景
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中使用,可以切换到多行模式。
Switching to multi-line mode, scene builder will insert:
切换到多线模式,场景构建器将插入:
for \n
	 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中使用,可以切换到多行模式。
Switching to multi-line mode, scene builder will insert:
切换到多线模式,场景构建器将插入:
for \n
	 for \t