Tkinter:调整窗口大小后更新 GUI

发布于 2024-12-08 20:05:19 字数 194 浏览 0 评论 0原文

我有一个 GUI 布局,它对屏幕大小有两个依赖项:行编号和选项卡大小。但是,当调整屏幕大小时,我必须手动更新 winfo_height()winfo_width() 以通过直接调用来更改布局。在搜索互联网后,我认为我应该使用 update_idletasks,但是你到底如何使用这个方法呢?

I have a GUI layout that has two dependencies on the screen size: line numbering and tab sizing. When the screen is resized however, I have to manually update winfo_height() and winfo_width() to change the layout by calling it directly. After searching the interwebs I think I should use update_idletasks, but how exactly do you use this method?

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

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

发布评论

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

评论(1

木格 2024-12-15 20:05:19

update_idletasks 仅运行任何挂起的“空闲”任务,例如屏幕重绘。

我认为没有任何方法可以在屏幕分辨率发生变化时收到通知,这就是您正在寻找的吗?

update_idletasks merely runs any pending ‘idle' tasks, such as screen redraws.

I don't think there is any way to get a notification of when the resolution of the screen changes, is that what you are looking for?

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