質問編集履歴
2
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
filepath = filedialog.askopenfilename(filetypes = fTyp,initialdir = iDir)
|
20
20
|
|
21
|
-
file1.set(filepath)
|
21
|
+
file1.set(filepath) # ←こんな感じで書けるのが理想なのですが
|
22
22
|
|
23
23
|
|
24
24
|
|
1
ソースコードのミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,7 +46,7 @@
|
|
46
46
|
|
47
47
|
# 参照ボタンの作成
|
48
48
|
|
49
|
-
select_button = ttk.Button(frame1, text=u'参照')
|
49
|
+
select_button = ttk.Button(frame1, text=u'参照', command=button_click)
|
50
50
|
|
51
51
|
select_button.grid(row=0, column=3)
|
52
52
|
|