QLineEdit 占位符文本在 Qt 4.6.3 中不起作用
我正在使用 Qt 4.6.3,并尝试设置一些 占位符QLineEdit 上的文本。但这些方法不起作用:
- 通过代码使用Qt设计器(uic)
ui->lineedit.setPlaceholderText("phtext")
setProperty("placeholderText","phtext")
code>
错误是 setPlaceholderText
不是 QLineEdit 类的成员。
这是 bug 和\或者有办法修复它吗?
I am using Qt 4.6.3, and tried to set some placeholder text on a QLineEdit. But these methods didn't work:
- using Qt designer (uic)
- through code
ui->lineedit.setPlaceholderText("phtext")
setProperty("placeholderText","phtext")
The error is that setPlaceholderText
is not a member of the QLineEdit class.
Is this a bug and\or is there a way to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
placeholderText 属性是在 Qt 4.7 中引入的(请参阅文档),所以它在 Qt 4.6 中不存在。
The placeholderText property was introduced in Qt 4.7 (see documentation), so it doesn't exist in Qt 4.6.
虽然 placeholderText 属性 存在于 Qt 中4.6.3,它仅适用于 Maemo5 版本:
看起来您正在以某种方式混合 Qt 平台。
While the placeholderText property exists in Qt 4.6.3, it's only enabled for Maemo5 builds:
It seems like you're somehow mixing Qt platforms.