当我尝试基于示例 Tkinter GUI 运行我的程序时,没有任何反应。我还是 Pydev 的新手,但我觉得这很不寻常。我有一个包含代码的 Main.py 文件,我尝试简单地运行该模块而没有任何成功。
我只是从这个参考中复制/粘贴,
# Main.py
import tkinter as tk;
class Application(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.pack()
self.create_widgets()
def create_widgets(self):
self.hi_there = tk.Button(self)
self.hi_there["text"] = "Hello World\n(click me)"
self.hi_there["command"] = self.say_hi
self.hi_there.pack(side="top")
self.quit = tk.Button(self, text="QUIT", fg="red",
command=root.destroy)
self.quit.pack(side="bottom")
def say_hi(self):
print("hi there, everyone!")
root = tk.Tk()
app = Application(master=root)
app.mainloop()
运行该模块的唯一结果是专用于 Main.py 的空 Liclipse 控制台。我还尝试了其他站点的其他示例,但没有运气。另外,如果重要的话,我目前正在使用 MacOS。