无论如何将事件处理程序绑定到正在移动的Tkinter窗口?

时间:2011-05-08 01:43:49

标签: python windows-7 window tkinter drag

我正在尝试这样做,以便在以任何方式拖动或移动Tkinter窗口时,会调用一个函数。有没有办法做到这一点?

这是在Windows 7中。

1 个答案:

答案 0 :(得分:3)

可能是配置事件。

http://effbot.org/tkinterbook/tkinter-events-and-bindings.htm

搜索:

<Configure>
The widget changed size (or location, on some platforms). The new size is 
provided in the width and height attributes of the event object passed to the callback.