我有一个基于Tkinter的GUI,带有一系列按钮。我希望其中一个按钮从另一个脚本执行命令 - testExecute.py
- 按下时(下面包含两个脚本的代码)。
现在,当我启动GUI时,外部脚本功能似乎在import
上执行,而不是在我按下按钮时(按下按钮似乎也不执行该功能)。我做了一些研究并在if __name__ == "__main__":
中包含testExecute.py
位,但它仍然在我的主脚本中导入时执行。有什么想法吗?
对以下答案的额外问题:如果我想将参数传递给函数,我该怎么办?因为如果我包含参数,该函数会在导入时再次执行。但是,如果我不包括参数,我按下按钮时会出错。
主脚本:
from tkinter import *
from tkinter.ttk import *
import testExecute as testEx
class mainGUI(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
self.initUI()
def initUI(self):
self.parent.title("GUIV0.1")
self.pack(fill=BOTH, expand=True)
self.columnconfigure(1, weight = 1)
self.columnconfigure(3, pad = 7)
self.rowconfigure(3, weight = 1)
self.rowconfigure(5, pad = 7)
lbl = Label(self, text = "Windows")
lbl.grid(sticky = W, pady=4, padx=5)
area = Text(self)
area.grid(row=1, column=0, columnspan=2, rowspan=4, padx=5, sticky=E+W+S+N)
abtn = Button(self, text="Activate", command = testEx.testFunc())
abtn.grid(row=1, column=3)
cbtn = Button(self, text="Close")
cbtn.grid(row=2, column=3, pady=4)
hbtn = Button(self, text="Help")
hbtn.grid(row=5, column=0, padx=5)
obtn = Button(self, text="OK")
obtn.grid(row=5, column=3)
def main():
root = Tk()
app = mainGUI(root)
root.mainloop()
if __name__ == '__main__':
main()
testExecute.py:
def testFunc():
print("Test test test")
print("I do nothing, if you see this text, I am hiding in your code!")
if __name__ == "__main__":
testFunc()
答案 0 :(得分:4)
创建按钮时,您将直接执行该功能。相反,你应该绑定到函数本身。所以
abtn = Button(self, text="Activate", command = testEx.testFunc())
应该是
abtn = Button(self, text="Activate", command = testEx.testFunc)
答案 1 :(得分:3)
结帐http://effbot.org/tkinterbook/button.htm。
问题是您在初始化期间调用命令回调。改变,
abtn = Button(self, text="Activate", command = testEx.testFunc())
到
abtn = Button(self, text="Activate", command = testEx.testFunc)
你应该都很好。 (注意testFunc之后缺少括号)。