我试图在标签上显示根窗口(顶级窗口)的大小(尺寸)。每当用户调整窗口大小时,新的窗口尺寸应显示在标签上。我试图为根窗口绑定(bind)事件,但我收到如下错误
我使用的代码如下。它只是一个粗略的示例。谁能帮助我我做错了什么。
def main():
root=Tk()
root.title("Test Numbers")
root.geometry("550x350")
def d(event):
print event.width,event.height
root.bind('<configure>',d)
root.mainloop()
if __name__=="__main__":
main()
最佳答案
案件很重要
应该有大写的 C
root.bind( "<Configure>", d )