gpt4 book ai didi

javafx-2 - 如何在 TextArea 中的多行上显示文本

转载 作者:行者123 更新时间:2023-12-04 04:53:08 26 4
gpt4 key购买 nike

我测试了这段代码以在几行上显示字符串:

TextArea dataPane = new TextArea();
dataPane.setEditable(false);
dataPane.prefWidthProperty().bind(hbox.widthProperty());

dataPane.setWrapText(true); // New line of the text exceeds the text area
dataPane.setPrefRowCount(10);
dataPane.setText("Testdata");
dataPane.setText("\ndata");

但结果我只得到字符串 data .在 JavaFX 中在多行上显示字符串的正确方法是什么?

最佳答案

使用 TextArea.appendText

TextArea dataPane = new TextArea();
dataPane.setEditable(false);
dataPane.prefWidthProperty().bind(hbox.widthProperty());

dataPane.setWrapText(true); // New line of the text exceeds the text area
dataPane.setPrefRowCount(10);
dataPane.setText("Testdata");
dataPane.appendText("\ndata");

关于javafx-2 - 如何在 TextArea 中的多行上显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17122435/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com