我从http://www.blog.pythonlibrary.org/2011/01/04/wxpython-wx-listctrl-tips-and-tricks/复制了一个可编辑ListCtrl的示例。我已将 InsertStringItem 和 SetStringItem 更改为 InsertItem 和 SetItem 。当我尝试运行此操作时,我收到以下错误
追踪(最近一次通话): OnLeftDown中的文件“C:\ Python27 \ lib \ site-packages \ wx \ lib \ mixins \ listctrl.py”,第560行 self.OpenEditor(col,row) OpenEditor中的文件“C:\ Python27 \ lib \ site-packages \ wx \ lib \ mixins \ listctrl.py”,第568行 evt.Index = row AttributeError:无法设置属性
我在Windows 10上使用Python 2.7.10。
我该如何解决这个问题?