Python初心者です。
よろしくお願いします。
(ボタン1)と(ボタン2)でいくつかの変数データを共用したい場合には(例えばファイル名)、ファイル処理のopen(),write(),read()などの関数を使って、一時的なファイルを作成してファイルを開き読み書きをするものなのですか?
それとも他に方法が(例えばクリップボード的な何かが)ありますか?
例えば
0、ウインドウを作成し2つのボタンを配置。
1、(ボタン1)をクリックするとファイル名取得。
2、(ボタン2)をクリックするとそのファイル名を使用してのコードAを実行。
ということがしたい場合、「(1)で”ファイル名”を取得しファイルとして保存。(2)でファイルを開き”ファイル名”を読み込み、コードAに適応して実行」ということで普通でしょうか?
それとも(1)から(2)へもっとかんたんにデータを渡す方法がありますか?
アドバイスなどいただけたらと思います。
よろしくおねがいします。
Python
1 2import os 3import tkinter as tk 4import tkinter.messagebox as tkm 5import tkinter.filedialog as tkf 6import tempfile 7 8def getFiDir(self, event=None): 9 h_dir0 = os.path.dirname(__file__) 10 h_fileDir = tkf.askopenfilename(filetypes=[("","*.txt")], initialdir=h_dir0 ) 11 h_mojiichi = h_fileDir.rfind('/') 12 h_file_name = h_fileDir[h_mojiichi + 1:] 13 h_file_name = h_file_name [0:h_file_name.rfind('.')] 14 field1.config(text=str(h_file_name)) 15 field2.delete(0, tk.END) 16 field2.insert(0, h_fileDir) 17 h_clip = h_file_name +"\n" + h_fileDir 18 19def test(): 20 # h_clip を使用したい。 21 22# __ウインドウ______________ 23 24if __name__ == '__main__': 25 # 26 root = tk.Tk() 27 root.geometry('600x200+300+180') 28 root.title('Convert text to html') 29 f1 = tk.Frame(root, bg='#eee', padx=10, pady=10) 30 f1.pack(fill='x', side='top') 31 f2 = tk.Frame(root, bg='#eee', padx=10, pady=10) 32 f2.pack(fill='x', side='top') 33 f3 = tk.Frame(root, bg='#eee', padx=10, pady=20) 34 f3.pack(fill='x', side='top') 35 # 36 w1, w2, w3 = 12, 36, 8 37 l1 = tk.Label(f1, text=u'ファイル名',anchor='w', width=w1) 38 l1.pack(side='left') 39 field1 = tk.Label(f1, padx=5, anchor='w', width=w2) 40 field1.pack(side='left') 41 b1 = tk.Button(f1, text=u'参照', pady=1, width=w3) 42 b1.bind('<ButtonRelease-1>', ins_wAction.m_getFiDir) 43 b1.pack(side='left') 44 l2 = tk.Label(f2, text=u'ディレクトリ:', anchor='w', width=w1) 45 l2.pack(side='left') 46 field2 = tk.Entry(f2, bg='#efefef', width=w2+8) 47 field2.pack(side='left') 48 l2_2 = tk.Label(f2, text=u'', width=1) 49 l2_2.pack(side='left') 50 b_convert = tk.Button(f3, text='convert', padx=20, pady=2, width=w3) 51 b_convert.bind('<ButtonRelease-1>', test ) 52 b_convert.pack() 53 #. 54 root.mainloop() 55
回答2件
あなたの回答
tips
プレビュー