我是python的新手,所以我尝试使用python包和模块,但是我的项目出错了,不知道这有什么问题。
Menu.InitUI
TypeError:InitUI()缺少1个必需的位置参数:'self'
我有三个档案
的 1)__ INIT __。PY
的 2)Main.py
的 3)Menu.Py
`<----------------__init__.py file------------>`
from Main import main
from Menu import InitUI
<-------------------Menu.Py file------------>
import wx
def InitUI(self):
menubar = wx.MenuBar()
fileMenu = wx.Menu()
fileMenu.Append(wx.ID_NEW, '&New')
fileMenu.Append(wx.ID_OPEN, '&Open')
fileMenu.Append(wx.ID_SAVE, '&Save')
fileMenu.AppendSeparator()
imp = wx.Menu()
imp.Append(wx.ID_ANY,'Import File')
fileMenu.AppendMenu(wx.ID_ANY,'I&mport',imp)
qmi = wx.MenuItem(fileMenu,wx.ID_EXIT,'&Quit\tCtrl+Q')
fileMenu.AppendItem(qmi)
# EDIT Menu
editMenu = wx.Menu()
editMenu.Append(wx.ID_EDIT, '&Edit')
#Help Menu
helpMenu = wx.Menu()
helpMenu.Append(wx.ID_HELP,'&Help')
self.Bind(wx.EVT_MENU, self.OnQuit,qmi)
menubar.Append(fileMenu, '&File')
self.SetMenuBar(menubar)
menubar.Append(editMenu, '&Edit')
self.SetMenuBar(menubar)
menubar.Append(helpMenu, '&Help')
self.SetMenuBar(menubar)
self.Centre()
self.Show(True)
def OnQuit(self,e):
self.Close()
<----------------Main.py--------------------->
class Main_Frame(wx.Frame):
def __init__(self,parent,title):
super(Main_Frame,self).__init__(parent,title="Siemens MTBF",
size= (1280,960))
Menu.InitUI()
def main():
ex = wx.App()
Main_Frame(None,title='Center')
ex.MainLoop()
if __name__ == '__main__':
main()`
答案 0 :(得分:1)
简短的回答是def InitUI(self):
和def OnQuit(self, e):
属于一个班级,而且似乎你没有在班级中拥有它们。 self
指的是函数所属类的当前实例。
答案 1 :(得分:1)
如果def InitUI()方法不是任何“Menu”类,那么你不需要任何自我参数。因为您已导入InitUI()方法,所以无需执行Menu.InitUI()。所以简单地称它为InitUI()。正如你已经将函数声明为InitUI(self)但调用Menu.InitUI()这就是为什么问题就像我们期望para -ter self的方法一样。从InitUI()中删除self并简单地调用InitUI()而不使用“Menu”将解决您的问题。 就像是: 在Menu.py
中def InitUI():
---body---
在Main.py中:
----other peice of code----
InitUI()
----other peice of code----