JavaFX TextFlow ScrollBar

问题描述 投票:2回答:1

我在JavaFX中创建小项目。我创建了一个TextFlow字段来显示我聊天的消息。

它看起来不错,但是,

enter image description here

当我添加更多消息时,此字段不会使ScrollBar像TextArea一样。

enter image description here

我在SceneBuilder中设置了最大高度,但它不起作用。

有没有办法像TextArea一样创建自动ScrollBar?

javafx scenebuilder
1个回答
0
投票

在发布该问题一年后,可能会有人来到这里寻找答案

答案是

尝试使用与Netbeans一起使用的场景生成器只需googl它并绘制第一个TextFlow然后单击右键并使用ScrollPane进行扭曲

或者您可以将此代码粘贴到FXML上

  <ScrollPane fx:id="sp" layoutX="1.0" layoutY="1.0" prefHeight="189.0" prefViewportHeight="148.0" prefViewportWidth="139.0" prefWidth="288.0" AnchorPane.bottomAnchor="66.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0">
     <content>

              <TextFlow fx:id="pan1" prefHeight="193.0" prefWidth="276.0">


     </content>
  </ScrollPane>
© www.soinside.com 2019 - 2024. All rights reserved.