随手写的,后续整理. 1. Entry如何调用父类的__init__? 以下错,原因后续分析 super(Your_Entry_Class, self).__init__(self,**kw) 报错:TypeError: must be type, not instance . 莫名其妙 谷歌了下,解决方案如下 apply(Entry.__init__, (self, parent), **kw) 即直接调用父类的__init__ 2. 如何将ttk treeview 的某一行转入编辑状态 事实…