ボタン[File]に読み込んだファイル名をrootのlabelに表示したいです。
ファイル名(infile)変数を定義出来ていないエラーが発生しました。
エラー:
text.set(infile) #でも定義できていない
NameError: name 'infile' is not defined
お願いですが、関数とrootとの間のデータ交換方法を教えてください。
よろしくお願いします。
Python
1import tkinter,os, tkinter.filedialog, tkinter.messagebox 2from tkinter import * 3from tkinter import ttk 4 5class openfile(): 6 """ 7 これはファイルの開くツールです 8 """ 9 def __init__(self,file_type,iDir): 10 fTyp = [("",file_type)] 11 tkinter.messagebox.showinfo("test","ファイルを選択してください!") 12 input_file = tkinter.filedialog.askopenfilenames(filetype = fTyp,initialdir = iDir) 13 self.infile = input_file 14 15def button_file(): 16 """ 17 ファイルを選択するボタンです。 18 """ 19 global infile #root に渡すつもりです. 20** iDir = os.chdir(os.path.dirname(os.path.abspath("__file__"))) 21 infile = openfile(".txt",iDir).infile 22 23def button_end(): 24 root.quit() 25 root.destroy() 26 27def button_close(): 28 second.destroy() 29 30def button_set(): 31 pass 32 33if __name__=="__main()__": 34 def main(): 35 pass 36global infile # infile を受けたつもりです. 37root = tkinter.Tk() 38root.title() 39root.geometry() 40 41frame_top = Frame(root, bd=4, relief=GROOVE) 42frame_display = Frame(root, bd=0, relief=GROOVE) 43 44# widgetの設定 45btn_end = ttk.Button(frame_top,text='END',command = button_end) 46btn_set = ttk.Button(frame_top,text='Set',command = button_set) 47btn_file = ttk.Button(frame_top,text='File',command = button_file) 48 49text = tkinter.StringVar() 50 51text.set(infile) #でも定義できていない 52 53display = ttk.Label(frame_display, text =text.get()) 54 55# widgetの配置 56frame_top.grid (row = 0, column = 0) #in root 57 58frame_display.grid (row = 1, column = 0, sticky = W ) #in root 59 60btn_file.grid(row=0,column=0,sticky = W) #in frame_top 61btn_set.grid(row=0,column=1,sticky = W+N) #in frame_top 62btn_end.grid(row=0,column=2,sticky = N) #in frame_top 63 64display.grid (row = 0, column = 0) #in root 65 66root.mainloop()
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/13 07:37