Tkinter: Updating GUI after resizing a window
I have a GUI layout that has two dependencies on the screen size: line numbering and tab sizing. When the screen is resized how开发者_C百科ever, 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?
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?
精彩评论