PyGTK,如何锁定窗口使其无法调整大小?

发布于 2024-08-18 12:58:36 字数 126 浏览 7 评论 0原文

我正在寻找一种锁窗户的方法。我发现 window.set_ressized(False),但这会将窗口大小调整到其请求的大小,然后将其锁定。我希望能够调整窗口大小,然后将其锁定为我调整后的大小。

I am looking for a way to lock the window. I found window.set_resizable(False), but that resizes the window to its requested size and then locks it. I would like to be able to resize my window, and then lock it into the size I have resized it to.

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

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

发布评论

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

评论(2

平安喜乐 2024-08-25 12:58:36

也许您可以在调用 set_ressized() 之前使用当前窗口大小(来自 window_get_size())来 set_size_request()

Perhaps you could set_size_request() with the current window size (from window_get_size()) before you call set_resizable()?

从来不烧饼 2024-08-25 12:58:36

您可以使用:

window.set_geometry_hints(window, min_width, min_height, max_width, max_height)

You can use this:

window.set_geometry_hints(window, min_width, min_height, max_width, max_height)

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