我试图在标签上显示根窗口(顶层窗口)的大小(尺寸)。每当用户调整窗口大小时,标签上都应显示新的窗口尺寸。我试图绑定根窗口的事件,但我得到一个错误如下
TclError:错误的事件类型或keysym"配置"
我使用的代码如下。它只是一个粗略的样本。任何人都可以帮助我做错。
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()
答案 0 :(得分:3)
应该有资本 C
root.bind( "<Configure>", d )