wxwindow 用按钮最小化窗口

我的程序创建了一个没有标题兰和边框的wxFrame,但是想在界面下加个button让程序能最小化到任务栏 。
该怎么实现,我试验过改写windowstyle,行不通:
我的frame是这样建立的
class MyFrame(wx.Frame):
    """
    This is the main frame of generation program
    """
    def __init__(self, parent,style, title):
        wx.Frame.__init__(self, parent, -1, title,pos=(0, 0), style=style)
         self.SetClientSizeWH(self.width,self.height)

class MyApp(wx.App):
    def OnInit(self):
        frame = MyFrame(parent=None,  title="Bingo",style=wx.MAXIMIZE)
        self.SetTopWindow(frame)