调整 QWidget 大小时忽略最小尺寸

发布于 2024-12-06 08:59:02 字数 86 浏览 0 评论 0原文

有没有办法让 QWidget(及其任何子类)完全忽略其最小大小?我想要的是 QPushButton 在尺寸太小时时被切断,而不是阻止窗口调整大小(默认行为)。

Is there a way to make a QWidget (and any subclass of it) completely ignore its minimum size? What I want is for a QPushButton to cut off when it is sized too small, rather than prevent the window from resizing (the default behavior).

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

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

发布评论

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

评论(1

任谁 2024-12-13 08:59:02

您可以使用:

button.setSizePolicy(QSizePolicy.Ignored, QSizePolicy.Ignored)

但您必须自己设置初始大小。
或者您可以将最小尺寸设置为一个小的非零值:

button.setMinimumSize(1,1)

要将其应用于小部件中的所有按钮,您可以尝试使用样式表,但是当按钮处于最小内容时,边框不会消失大小(至少在 Linux 上使用 QGtkStyle):

dialog.setStyleSheet("QPushButton { min-height: 0px; min-width: 0px }");

You can use:

button.setSizePolicy(QSizePolicy.Ignored, QSizePolicy.Ignored)

but you'll have to set the initial size yourself.
Or you can just set the minimum size to a small non-zero value:

button.setMinimumSize(1,1)

To apply that to all buttons within a widget, you could try to use a style sheet, but the borders don't disappear when the button is at its minimum content size (at least with QGtkStyle on Linux):

dialog.setStyleSheet("QPushButton { min-height: 0px; min-width: 0px }");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文