来自不同类的python调用方法

时间:2015-05-22 14:01:37

标签: python class wxwidgets

我正在尝试从另一个类(prefWindow)调用驻留在一个类(Main)中的方法(OnOpen)。我使用wx python作为GUI。 问题是每当我尝试使用这个parent.OnOpen时,它会错误地说它没有被定义。 我绝不是蟒蛇专家,最近才开始。

class Main(wx.Frame):
    def __init__(self, *args, **kwargs):
        super(Main, self).__init__(*args, **kwargs)
        self.initUI()

    def initUI(self):
       *more code here*

    def OnOpen(self,e): 
      global dirname
      dlg = wx.FileDialog(self, "Choose a file to open", self.dirname, "", "*.apk", wx.OPEN) #open the dialog box to open file

class prefWindow(wx.Frame):

    def __init__(self,parent,id):
        wx.Frame.__init__(self, parent, id)  
        self.initPref()

    def initPref(self):
       browseBtn = wx.Button(panel, -1, "Browse")
       self.Bind(wx.EVT_BUTTON, parent.OnOpen, browseBtn)

感谢。

1 个答案:

答案 0 :(得分:0)

使用类继承并创建自己的基类:

class MyWindow(wx.Frame):
    def OnOpen(self,e): 
      global dirname
      dlg = wx.FileDialog(self, "Choose a file to open", self.dirname, "", "*.apk", wx.OPEN) #open the dialog box to open file

class Main(MyWindow):
    ...

class prefWindow(MyWindow):
    ...

现在onOpen()方法以及wx.Frame MainprefWindow实例上的所有方法都可用。