我想制作一个GUI,询问用户要打开的两个文件。它显示为一个条目和一个按钮(两次:每个文件一个),它们都在同一帧中,本身在根中。
由于我想要两次相同的事情,因此我定义了一个类,然后实例化了两次,只是网格位置不同。 它包含一个由按钮调用的方法,用于更新Entry的值。
它可以工作,但是当我使用任意一个按钮选择文件时,它都会在 BOTH 条目中写入文件路径。我希望它只在与该实例相对应的条目中写。
这看起来是一个类变量问题,但是我的属性是实例级别的,因此应该与实例区分开来。
这是我的代码:
from tkinter import Tk, Frame, Label, Button, Entry, filedialog as fd
class Selection:
def __init__(self, master):
self.load_button = Button(master, text="...", command=self.loadFile)
self.filedir = Entry(master, text = " ")
def loadFile(self):
self.filename = fd.askopenfilename()
self.filedir.delete(0,"end")
self.filedir.insert(0, self.filename)
if __name__=='__main__':
#-------Defining the Root window
root = Tk()
root.geometry("1000x600+455+210")
root.grid_columnconfigure(0, weight=1)
root.grid_columnconfigure(1, weight=2)
root.grid_columnconfigure(2, weight=1)
root.grid_rowconfigure(0, weight=1)
root.grid_rowconfigure(1, weight=1)
root.grid_rowconfigure(2, weight=1)
root.grid_rowconfigure(3, weight=1)
#-------Defining the Frame
f2 = Frame(root, bg='#D5F4E4')
f2.grid_columnconfigure(0, weight=1)
f2.grid_columnconfigure(1, weight=2)
f2.grid_columnconfigure(2, weight=1)
f2.grid_rowconfigure(0, weight=1)
f2.grid_rowconfigure(1, weight=1)
f2.grid_rowconfigure(2, weight=1)
f2.grid_rowconfigure(3, weight=1)
#-------Instantiation here (Defining the Widgets)
TexteL = Label(f2, text="Please select file L :")
TexteT = Label(f2, text="Please select file T :")
k = Selection(f2)
j = Selection(f2)
#-------Grid everything
f2.grid(row=1,column=1, sticky="nsew")
TexteL.grid(row=0,column=1)
TexteT.grid(row=2,column=1)
k.load_button.grid(row=1, column=2)
k.filedir.grid(row=1, column=1, sticky='ew')
j.load_button.grid(row=3, column=2)
j.filedir.grid(row=3, column=1, sticky='ew')
root.mainloop()
答案 0 :(得分:2)
问题是由初始化text = " "
时的Entry
参数引起的。 text
参数不是用来设置要在Entry
中显示的初始文本,而是用来设置textvariable
参数。由于将其设置为相同的" "
,因此它将引用相同的内部variable
。只需删除text = " "
就可以解决问题。