自动修剪 QLineEdit:可能吗?

发布于 2024-12-19 13:48:58 字数 99 浏览 1 评论 0原文

我想限制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 技术交流群。

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

发布评论

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

评论(2

怪我鬧 2024-12-26 13:48:58

您可以使用 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.

一身软味 2024-12-26 13:48:58

根据您的需求,还可以考虑使用验证器 - 这样您就可以拒绝输入前导空格。

Depending on your needs, also consider a validator - you can reject leading spaces from being entered at all, that way.

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