- 论坛徽章:
- 0
|
本帖最后由 wpdzyx 于 2010-11-13 09:41 编辑
wxWidget in Action中有一例程,有一处一直没有看明白:- import wx
- class MenuEventFrame(wx.Frame):
- def __init__(self,parent,id):
- wx.Frame.__init__(self,parent,id,"Menus",size=(300,200))
- menuBar = wx.MenuBar()
- menu1 = wx.Menu()
- menuItem = menu1.Append(-1,"&Exit...")
- menuBar.Append(menu1,"&File")
- self.SetMenuBar(menuBar)
- self.Bind(wx.EVT_MENU,self.OnCloseMe,menuItem)
- def OnCloseMe(self,event):
- self.Close(True) #self指向MenuEventFrame对象,但是MenuEventFrame本身没有Close()方法啊,这个方法来自何处?
- print self
- if __name__ == "__main__":
- app = wx.PySimpleApp()
- frame = MenuEventFrame(parent=None,id=-1)
- frame.Show()
- app.MainLoop()
复制代码 #-------------------------------
def OnCloseMe(self,event):
self.Close(True) #self指向MenuEventFrame对象,但是MenuEventFrame本身没有Close()方法啊,这个方法来自何处?
print self
#--------------------------------
下面是我从官网上查的wxFrame的方法列表,里面根本没close()方法,难道是继承在顶级window方法吗:
Frame __init__(self, parent, id, title, pos, size, style, name)
bool Command(self, winid)
bool Create(self, parent, id, pos, size, style, name)
StatusBar CreateStatusBar(self, number, style, winid, name)
wxToolBar CreateToolBar(self, style, winid, name)
DoGiveHelp(self, text, show)
DoMenuUpdates(self, menu)
VisualAttributes GetClassDefaultAttributes(variant)
MenuBar GetMenuBar(self)
StatusBar GetStatusBar(self)
int GetStatusBarPane(self)
wxToolBar GetToolBar(self)
PopStatusText(self, number)
bool ProcessCommand(self, winid)
PushStatusText(self, text, number)
SendSizeEvent(self)
SetMenuBar(self, menubar)
SetStatusBar(self, statBar)
SetStatusBarPane(self, n)
SetStatusText(self, text, number)
SetStatusWidths(self, widths)
SetToolBar(self, toolbar) |
|