python 来自不同 class 的调用方法
python call method from different class
我正在尝试从另一个 class (prefWindow) 调用驻留在一个 class (Main) 中的方法 (OnOpen)。我正在使用 wx python 作为 GUI。
问题是每当我尝试使用这个 parent.OnOpen 时,它都会出错,说它没有定义。
我绝不是python专家,最近才开始。
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)
谢谢。
使用class继承并创建自己的基础class:
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
中的所有方法都将在 Main
和 prefWindow
实例上可用。
我正在尝试从另一个 class (prefWindow) 调用驻留在一个 class (Main) 中的方法 (OnOpen)。我正在使用 wx python 作为 GUI。 问题是每当我尝试使用这个 parent.OnOpen 时,它都会出错,说它没有定义。 我绝不是python专家,最近才开始。
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)
谢谢。
使用class继承并创建自己的基础class:
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
中的所有方法都将在 Main
和 prefWindow
实例上可用。