我设法有了一个打开的页面,后面是第二个页面,其中包含一个文件浏览器按钮。我希望用户可以选择在此文件浏览器中输入(复制并粘贴到输入栏中)。在用户输入或使用按钮浏览的目录之后,我希望该目录显示在栏中。
import tkinter as tk
from tkinter import ttk
from tkinter.filedialog import askdirectory
LARGE_FONT= ("Calibri", 12)
class RevitJournalSearch(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
container = tk.Frame(self)
container.pack(side="top", fill="both", expand = True)
container.grid_rowconfigure(0, weight=1)
container.grid_columnconfigure(0, weight=1)
self.frames = {}
for F in (StartPage, PageOne):
frame = F(container, self)
self.frames[F] = frame
frame.grid(row=0, column=0, sticky="nsew")
self.show_frame(StartPage)
def show_frame(self, cont):
frame = self.frames[cont]
frame.tkraise()
class StartPage(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self,parent)
label = ttk.Label(self, text="""What to expect from this...
n
n-Browse folder location""", font=LARGE_FONT)
label.pack(pady=10,padx=10)
button1 = ttk.Button(self, text="Continue",
command=lambda: controller.show_frame(PageOne))
button1.pack()
button2 = ttk.Button(self, text="Close",
command=quit)
button2.pack()
class PageOne(tk.Frame):
def __init__(self, parent, controller, master):
tk.Frame.__init__(self,parent)
label = ttk.Label(self, text="File Select", font=LARGE_FONT)
label.pack(pady=10,padx=10)
errmsg = 'Error!'
button_browser = ttk.Button(self, text="BROWSE",
command= self.callback)
button_browser.pack()
def callback(self):
self.name= askdirectory()
app = RevitJournalSearch()
app.mainloop()
我不知道把self.entry
代码放在哪里。
我认为这是这个问题的重复。它可以归结为以下内容。
-
创建一个
StringVar
变量,然后创建一个依赖于该StringVar
的条目框。该框将显示该变量当前所包含的内容。self.name = tk.StringVar() dir_box = tk.Entry(self, textvariable=self.name)
-
使用
askdirectory
调用的返回值设置此变量。def callback(self): filename = tkFileDialog.askdirectory() self.name.set(filename)