我是python的新手,我刚开始使用Tkinter。我正在尝试制作一些自我锻炼文件。到目前为止,一切都很好,但是我遇到了一个问题(我将发布整个代码,然后继续解决该问题,以便您可以看到我想做的事情以及我不知道该怎么做的地方)。
#!/usr/bin/python
from tkinter import *
from PIL import Image, ImageTk
import subprocess
class Window(Frame):
def __init__(self, master = None):
Frame.__init__(self, master)
self.master = master
self.init_window()
def init_window(self):
self.master.title("ez-Installer")
self.pack(fill=BOTH, expand=1)
updateButton = Button(self, text="Update", command=self.system_update)
updateButton.place(x=50, y=50)
syncButton = Button(self, text="Sync packages", command=self.system_sync)
syncButton.place(x=150, y=50)
cmd1 = StringVar()
mEntry = Entry(self,textvariable=cmd1).pack()
installButton = Button(self, text="Install", command=self.system_install)
installButton.place(x=50, y=150)
def system_install(self):
package = cmd1.get()
install = "sudo pacman -S {} --noconfirm".format(package)
subprocess.call([install], shell=True)
def system_exit(self):
exit()
def system_update(self):
subprocess.call(["sudo pacman -Su --noconfirm"], shell=True)
def system_sync(self):
subprocess.call(["sudo pacman -Syy --noconfirm"], shell=True)
root = Tk()
root.geometry("400x300")
app = Window(root)
root.mainloop()
错误是按“安装”按钮时。 “ cmd1未定义”。
def system_install(self):
package = cmd1.get()
install = "sudo pacman -S {} --noconfirm".format(package)
subprocess.call([install], shell=True)
如您所见,我希望它从我在此处添加的搜索框“条目”中获取文本:
cmd1 = StringVar()
mEntry = Entry(self,textvariable=cmd1).pack()
installButton = Button(self, text="Install", command=self.system_install)
installButton.place(x=50, y=150)
我知道我的条目在
def init_window(self):
下,但是如何从中获取cmd1
的值?可能吗?如果不是,或者麻烦太多,那么类似的选择是什么? 最佳答案
在您的system_install
方法中,您没有访问cmd1
变量的权限,因为您没有将其附加到对象实例。您只是在init_window
方法中将其创建为局部变量。要解决此问题,请在每个位置使用self.cmd1
使其成为实例变量,该实例变量可通过self
参数对所有方法可见。
一个单独的问题是,由于mEntry
方法不返回任何内容,因此将None
定义为pack()
。我怀疑您的意思应该是:
self.cmd1 = StringVar()
self.mEntry = Entry(self,textvariable=self.cmd1)
self.mEntry.pack()
关于python - 使用按钮从Tkinter条目搜索框中获取文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40060383/