文本框中的新行 (JavaFX 2.0)

发布于 2024-11-24 22:37:59 字数 312 浏览 1 评论 0原文

我正在尝试使用 JavaFX 2.0 创建 TextBox。 我的来源如下:

TextBox textBox = new TextBox();
textBox.setPrefSize(150, 600);
textBox.setText("Hello\n world!");

结果是:

在此处输入图像描述

如何在 TextBox

I'm trying to create TextBox with JavaFX 2.0.
My source is following:

TextBox textBox = new TextBox();
textBox.setPrefSize(150, 600);
textBox.setText("Hello\n world!");

Result is:

enter image description here

How could I create new line in TextBox?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

物价感观 2024-12-01 22:37:59

创建多行文本框是 JavaFX 1.3 的一项功能。在 JavaFX 2.0 中,您必须使用 TextArea。

TextArea textArea = new TextArea();
textArea.setPrefRowCount(2);            
textArea.setText("Hello\nworld!");

JavaFX UI 控件教程没有提及 TextArea 控件。也许他们错过了什么。正如您在 JavaFX 1.3 TextBox 教程中看到的,TextBox 具有'multiline' 和 'lines' 属性。 JavaFX 1.3 没有 TextArea。

Creating a multilined TextBox is a JavaFX 1.3 feature. In JavaFX 2.0 you have to use a TextArea.

TextArea textArea = new TextArea();
textArea.setPrefRowCount(2);            
textArea.setText("Hello\nworld!");

The JavaFX UI Controls tutorial does not mention the TextArea control. Maybe they missed something. As you can see in this JavaFX 1.3 TextBox tutorial the TextBox had a 'multiline' and a 'lines' property. JavaFX 1.3 did not have a TextArea.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文