Python关闭窗体时释放资源

Python关闭窗体时,释放资源的简单实现如下:

class frmMainForm(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self,None,-1,u'', size=(700, 500))
        self.Center()
        self.SetBackgroundColour('silver')
        #关闭事件
        self.Bind(wx.EVT_CLOSE, self.OnFormClosed, self)

    ##关闭窗体时释放资源
    def OnFormClosed(self,event):
        self.Destroy()

 

你可能感兴趣的:(Python关闭窗体时释放资源)