我正在制作一个gui界面,让普通用户可以使用我的脚本。我的问题是 - 我有一个条目小部件,它采用'文件路径'当用户使用浏览按钮选择文件时的值。问题是条目小部件显示文件路径的开头(左端),但我更希望看到文件路径的右端。
这是我的剧本。
from Tkinter import *
from tkFileDialog import askopenfilename
app = Tk()
app.title("ABC")
app.geometry("300x100")
def browse_for_file(entry_name, filetype):
File_path = askopenfilename(filetypes = filetype)
entry_name.delete(0, END)
entry_name.insert(0, File_path)
templ_filename = StringVar()
templ_entry = Entry(app, textvariable = templ_filename, width = 30)
templ_entry.grid(row = 3, column = 1, sticky=W)
filetype_fasta = [('fasta files', '*.fasta'), ('All files', '*.*')]
button_templ = Button(app, text = 'Browse', width =6, command = lambda:browse_for_file(templ_entry, filetype_fasta))
button_templ.grid(row = 3, column = 2)
app.mainloop()
答案 0 :(得分:3)
使用
entry.xview_moveto(1)
xview_moveto()
取分数,其中0定义左边,1定义右边部分。