我正在将文本输出到Java FX中的textarea但是如何阻止用户使用滚动条导航到文本末尾并阻止文本溢出? (请看下面的图片)
以下是我的GUI.fxml类中的代码
<Tab closable="false" text="Second Link">
<content>
<SplitPane dividerPositions="0.5" prefHeight="160.0" prefWidth="200.0">
<items>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="100.0">
<children>
<TextArea fx:id="secondText" layoutX="22.0" layoutY="48.0" prefHeight="511.0" prefWidth="571.0" />
<TextField layoutX="215.0" layoutY="14.0" text=" Original Text" />
</children></AnchorPane>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="363.0" prefWidth="292.0">
<children>
<TextField layoutX="215.0" layoutY="14.0" text=" Summary" />
<TextArea layoutX="16.0" layoutY="48.0" prefHeight="511.0" prefWidth="571.0" />
</children>
</AnchorPane>
</items>
</SplitPane>
</content>
</Tab>
非常感谢任何帮助,提前谢谢。
答案 0 :(得分:1)
将wrapText=true
添加到TextArea
个元素中。它会将文本换行到新行而不是滚动。