我有两个框架——mainWindow,它是“主”框架,以及 moreWindow,它是 mainWindow 的一个子框架。当单击 mainWindow 中的按钮时,我想显示 moreWindow 。这是我正在尝试的:
def showChild(nil):
moreWindow.Show()
class mainWindow(wx.Frame):
def __init__:
buttonMore.Bind(wx.EVT_BUTTON, showChild)
class moreWindow(wx.Frame):
TypeError: unbound method Show() must be called with moreWindow instance as first argument (got nothing instead)
我尝试使用moreWindow.Show(moreWindow)
,这只是给出了一个更神秘的错误。