Python - tkinter - _tkinter.TclError:未知选项“-comnmand”

时间:2014-12-06 21:55:59

标签: python tkinter

我是tkinter的新手,所有人和我都在按照教程进行操作,以便全面了解这些功能的工作原理。我使用与教程中完全相同的代码,但我仍然收到此错误 - " _tkinter.TclError:未知选项" -comnmand""

#!/usr/bin/env python
import tkinter as tk  # Import the module


class Application(tk.Frame):
    def __init__(self, master=None):
        tk.Frame.__init__(self, master)
        self.grid()
        self.create_widgets()

    def create_widgets(self):
        self.quitButton = tk.Button(self, text='Quit', comnmand=self.quit)
        self.quitButton.grid()

app = Application()
app.master.title('Sample App')
app.mainloop()

有谁知道解决方案或我做错了什么?我到处寻找......

1 个答案:

答案 0 :(得分:1)

应改为阅读

self.quitButton = tk.Button(self, text='Quit', command=self.quit)

而不是

 self.quitButton = tk.Button(self, text='Quit', comnmand=self.quit)