PyGTK,如何锁定窗口使其无法调整大小?
我正在寻找一种锁窗户的方法。我发现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您可以在调用
set_ressized()
之前使用当前窗口大小(来自window_get_size()
)来set_size_request()
?Perhaps you could
set_size_request()
with the current window size (fromwindow_get_size()
) before you callset_resizable()
?您可以使用:
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)