Qt LineEdit 边界

发布于 2024-12-01 10:43:42 字数 199 浏览 2 评论 0原文

我有一个 QLineEdit,我在它的 LineEdit 上及其末尾放置了一个 QPixmap。有没有一种方法可以告诉 LineEdit 在哪里考虑小部件的末尾,以便文本不会绘制在图片顶部?

很好,答案是 setTextMargins()

I have a QLineEdit which I have place a QPixmap on and at the end of the LineEdit. Is there a way where I can tell the LineEdit where to consider the end of the widget so that text is not drawn on top of the picutre?

All good the answer is setTextMargins()

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

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

发布评论

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

评论(2

裂开嘴轻声笑有多痛 2024-12-08 10:43:42

您可以使用 QLineEdit StyleSheet 属性。

padding-left: 10px;
padding-right: 10px;

You can use QLineEdit StyleSheet property.

padding-left: 10px;
padding-right: 10px;
我们的影子 2024-12-08 10:43:42

LineEdit 是一个矩形框 - 正确设置其大小,一切都应该没问题,否则您可能需要重新检查布局。

The LineEdit is a rectangular box - set its size correctly and everything should be fine, otherwise you might want to recheck your layouting.

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