wxpython求教
wxpytho in action中的例子(P155):
......
def OnColor(self,event):
menubar=self.GetMenuBar()
itemId=event.GetId()
item=menubar.FindItemById(itemId)
color=item.GetLabel()
self.sketch.SetColor(color)
......
我查了wxpython的API手册,FindItemById()是wxMenu的成员函数,不是wxMenuBar的成员函数,这里为什么用menubar.FindItemById(itemId)?
[解决办法]
google wx.MenuBar