Tkinter GUI 未在 Pydev 中打开(Liclipse)
Tkinter GUI Not Opening in Pydev (Liclipse)
当我尝试 运行 我的程序基于示例 Tkinter GUI 时,没有任何反应。我对 Pydev 还是个新手,但我觉得这很不寻常。我有一个包含代码的 Main.py 文件,我尝试简单地 运行 模块但没有成功。
我只是 copy/pasted 从 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()
运行启用该模块的唯一结果是空的 Liclipse 控制台专用于 Main.py。
我也试过其他网站的其他例子,但没有成功。另外,如果重要的话,我目前正在使用 MacOS。
您确定在 Liclipse 中正确配置了所有内容(工作目录,python 路径...)吗?我刚刚尝试全新安装,在将 Liclipse 配置为 运行 Python 3.6 中的当前项目并选择主项目文件作为此源代码后,它 运行s 和按预期显示带有按钮的 window,它还会将文本打印到控制台。
另外,这样初始化一个按钮感觉不太"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 应用程序,那时我向自己保证我会尝试学习如何让它更有条理和简短 ;)
当我尝试 运行 我的程序基于示例 Tkinter GUI 时,没有任何反应。我对 Pydev 还是个新手,但我觉得这很不寻常。我有一个包含代码的 Main.py 文件,我尝试简单地 运行 模块但没有成功。
我只是 copy/pasted 从 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()
运行启用该模块的唯一结果是空的 Liclipse 控制台专用于 Main.py。 我也试过其他网站的其他例子,但没有成功。另外,如果重要的话,我目前正在使用 MacOS。
您确定在 Liclipse 中正确配置了所有内容(工作目录,python 路径...)吗?我刚刚尝试全新安装,在将 Liclipse 配置为 运行 Python 3.6 中的当前项目并选择主项目文件作为此源代码后,它 运行s 和按预期显示带有按钮的 window,它还会将文本打印到控制台。
另外,这样初始化一个按钮感觉不太"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 应用程序,那时我向自己保证我会尝试学习如何让它更有条理和简短 ;)