如何从 Qt Creator 的文本字段中获取文本?

发布于 2024-12-15 17:08:43 字数 72 浏览 2 评论 0原文

我在 Qt 创建者中有一个 QML TextField 。我想从文本字段用户界面获取文本。 我该怎么做?

I have a QML TextField in Qt creator. I want to get the text from the textfield UI.
How do I do that?

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

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

发布评论

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

评论(1

衣神在巴黎 2024-12-22 17:08:43

您需要使用 id 来“命名”您的 TextField。如果一个对象有一个id,您可以使用它作为句柄来访问它的属性。 例如,假设您要将文本从一个文本字段克隆到另一个文本字段:

TextField {
  id: textField1
  text: "Text"
}

TextField {
  id: textField2
  text: textField1.text
}

您可以找到更多详细信息此处

You need to have 'named' your TextFields with ids. If an object has an id, you can use it as a handle to access properties from it. For example, imagine you want to clone the text from one textfield to another:

TextField {
  id: textField1
  text: "Text"
}

TextField {
  id: textField2
  text: textField1.text
}

You can find more detail here.

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