自动修剪 QLineEdit:可能吗?
我想限制QLineEdit
的输入:没有前导空格。这可能吗?
我不应该使用例如 textEdited()
信号,对吧?
I wanted to limit the input of QLineEdit
: no leading space. Is that possible ?
I shouldn't be using, e.g. the textEdited()
signal, right ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
editingFinished()
信号来实现此目的,当文本输入失去焦点或用户按下 Enter 键时会触发该信号。You can use the
editingFinished()
signal for that, it will be triggered when the text input loses focus or the user presses the enter key.根据您的需求,还可以考虑使用验证器 - 这样您就可以拒绝输入前导空格。
Depending on your needs, also consider a validator - you can reject leading spaces from being entered at all, that way.