标签: python tkinter
是否有快速访问我放置某个小部件的位置。
例如,如果我有一个按钮
self.exampleButton = tk.Button(self) self.exampleButton.grid(row=3,column=0,sticky="EW")
有没有办法可以获得行或列?像self.exampleButton.getPosition这样的东西?
self.exampleButton.getPosition
创建字典来存储信息,例如{self.exampleButton:(3,0)},最好的方法吗?
{self.exampleButton:(3,0)}