如何检查用户单击关闭按钮是否退出了框架。我需要知道,因为我有两个 wx.frames,一个孩子和一个父母。当父框架关闭时,如何关闭子框架?我正在使用 wxpython
问问题
632 次
1 回答
2
可以说主要的父框架是父框架。
class parent(wx.Frame):
def __init__(self, parent):
## Ur GUI's code ##
self.Bind( wx.EVT_CLOSE, self.ParentFrameOnClose )
def ParentFrameOnClose(self, event):
self.DestroyChildren() ## Destroy the children first
self.Destroy() ## Destroy the parent then.
于 2012-07-11T11:05:39.877 回答