質問編集履歴
1
code部分への記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
教えていただけるとありがたいです
|
12
12
|
|
13
13
|
|
14
|
+
|
15
|
+
```python
|
14
16
|
|
15
17
|
import sys
|
16
18
|
|
@@ -76,9 +78,15 @@
|
|
76
78
|
|
77
79
|
label1.grid(row = 0, column = 0)
|
78
80
|
|
79
|
-
label2 = tkinter.Label(root)
|
81
|
+
label2 = tkinter.Label(root,image=img2)
|
80
82
|
|
81
83
|
label2.grid(row = 0, column = 0)
|
84
|
+
|
85
|
+
label3 = tkinter.Label(root,image=img3)
|
86
|
+
|
87
|
+
label3.grid(row = 0, column = 0)
|
88
|
+
|
89
|
+
|
82
90
|
|
83
91
|
|
84
92
|
|
@@ -99,3 +107,5 @@
|
|
99
107
|
#Button2.grid(row = 1, column = 1)
|
100
108
|
|
101
109
|
Button2.place(x=1100,y=400)
|
110
|
+
|
111
|
+
```
|