下面看一下关于创建工具栏,状态栏和菜单的方法,看下面一个例子: import wx class ToolBarFrame(wx.Frame): def __init__(self,parent,id): wx.Frame.__init__(self,parent,id,'ToolBar',size=(300,200)) panel=wx.Panel(self) panel.SetBackgroundColour('white') statusBar=self.CreateStatusBar()…