Pydev中没有打开Tkinter GUI(Liclipse)

时间:2017-04-19 13:00:02

标签: macos tkinter pydev python-3.6 liclipse

当我尝试根据示例Tkinter GUI运行我的程序时,没有任何反应。我还是Pydev的新手,但我觉得这很不寻常。我有一个包含代码的Main.py文件,我尝试简单地运行该模块而没有任何成功。

我只是从this reference

复制/粘贴
# 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。

1 个答案:

答案 0 :(得分:0)

你确定你在Liclipse中配置了正确的一切(工作目录,python路径......)吗?我刚刚尝试了全新安装,在配置Liclipse以在Python 3.6中运行当前项目并在选择主项目文件作为此源代码之后,它运行并按预期显示带有按钮的窗口,它也是将文本打印到控制台。

此外,感觉不太好" pythonic"以这种方式初始化按钮。我宁愿这样建议:​​

# 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):
        mytext = "Hello World\n(click me)"
        self.hi_there = tk.Button(self, text=mytext, 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()

代码看起来更具可读性,并以相同的方式工作。当你开始增长你的界面时,它会有很多行,每个按钮减少两行,你可以缩短它。我一直在编写一个包含1500行代码的tkinter应用程序,在那时我向自己承诺,我会尝试学习如何让它更有条理和简短;)