-1

我有一个自定义菜单类继承自Tkinter.Menu. 我在根窗口中使用它,如下
所示:

root = Tk()
menu = customMenu(root)
root.config(menu = menu)
mainloop()

谁能告诉我怎么了,拜托。

4

1 回答 1

1

假设您的customMenu类正确继承自 TkinterMenu类,您向我们展示的内容非常好。这是一个完整的工作示例:

import Tkinter as tk

class CustomMenu(tk.Menu):
    def __init__(self, root, *args, **kwargs):
        tk.Menu.__init__(self, root, *args, **kwargs)
        self.root = root
        self.file_menu = tk.Menu(self, tearoff=False)
        self.file_menu.add_command(label="Exit", command=root.on_exit)
        self.add_cascade(label="File", underline=0, menu=self.file_menu)

class ExampleView(tk.Frame):
    def __init__(self, root):
        tk.Frame.__init__(self, root)
        root.configure(menu=CustomMenu(root))

        l = tk.Label(self, text="your widgets go here...", anchor="c")
        l.pack(side="top", fill="both", expand=True)

class Controller(tk.Tk):
    def on_exit(self):
        self.destroy()

if __name__=='__main__':
    root = Controller()
    view = ExampleView(root)
    view.pack(side="top", fill="both", expand=True)
    root.mainloop()
于 2012-11-07T17:04:47.483 回答