我该如何解决此__init__ self.init_window()错误

时间:2019-10-18 18:42:13

标签: python tkinter compiler-errors pycharm tlc

我已经开始使用pyCharm设置GUI,但是由于添加了菜单栏,我在编译时遇到了一些错误。

我已经删除了所有与菜单栏有关的代码,并且可以正常工作,但是由于我想添加菜单栏而没有帮助。

from tkinter import *

class Window(Frame):

        def __init__(self, master = None) :
            Frame.__init__(self, master)

            self.master = master
            self.init_window()

        def init_window(self) :

            self.master.title("GUI")
            self.pack(fill=BOTH, expand=1)

            #quitButton = Button(self, text="Quit", command=self.client_exit)
            #quitButton.place(x=0, y=0)

            menu = Menu(self.master)
            self.master.config(menu=menu)

            file = Menu(menu)
            file.add_command(label='Exit', command=self.client_exit)
            menu.add_cascade(label='File', menu=file)

            edit = Menu(menu)
            edit.add_command(label='Undo')
            menu.add_command(label='Edit', menu=edit)




        def client_exit(self) :
            exit()


root = Tk()
root.geometry("400x350")

app = Window(root)

1 个答案:

答案 0 :(得分:1)

首先,您需要将menu传递到另一个函数中以创建菜单栏。 其次,使用该新变量代替menu,并使用add_cascad e代替add_command。确保add_cascade添加了正确的菜单选项。

from tkinter import *

class Window(Frame):

    def __init__(self, master = None) :
        Frame.__init__(self, master)
        self.master = master
        self.init_window()

    def init_window(self) :
        self.master.title("GUI")
        self.pack(fill=BOTH, expand=1)
        # quitButton = Button(self, text="Quit", command=self.client_exit)
        # quitButton.place(x=0, y=0)
        menu = Menu(self.master)
        # add a new variable called menubar 
        menubar = Menu(menu)
        # pass 'menubar' into your root's config instead of 'menu'
        self.master.config(menu=menubar)
        filemenu = Menu(menubar, tearoff=0)
        filemenu.add_command(label="Exit", command=self.client_exit)
        # call add_cascade on menubar, and pass your filemenu as the menu param
        menubar.add_cascade(label="File", menu=filemenu)
        edit = Menu(menubar, tearoff=0)
        edit.add_command(label="Undo")
        # Again, add_cascade from your menubar.
        menubar.add_cascade(label="Edit", menu=edit)


    def client_exit(self) :
        exit()

root = Tk()
root.geometry("400x350")
app = Window(root)
root.mainloop()