如何从 Qt Creator 的文本字段中获取文本?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
id
来“命名”您的TextField
。如果一个对象有一个id
,您可以使用它作为句柄来访问它的属性。 例如,假设您要将文本从一个文本字段克隆到另一个文本字段:您可以找到更多详细信息此处。
You need to have 'named' your
TextField
s withid
s. If an object has anid
, 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:You can find more detail here.