質問編集履歴
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -100,7 +100,7 @@
|
|
100
100
|
|
101
101
|
|
102
102
|
|
103
|
-
ysb = t
|
103
|
+
ysb = tk.Scrollbar(frame, width=25, orient=tk.VERTICAL, command=tree.yview)
|
104
104
|
|
105
105
|
tree.configure(yscrollcommand=ysb.set)
|
106
106
|
|
@@ -108,7 +108,7 @@
|
|
108
108
|
|
109
109
|
|
110
110
|
|
111
|
-
xsb = t
|
111
|
+
xsb = tk.Scrollbar(frame, width=25, orient=tk.HORIZONTAL, command=tree.xview)
|
112
112
|
|
113
113
|
tree.configure(xscrollcommand=xsb.set)
|
114
114
|
|
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
tree.pack(side="
|
19
|
+
tree.pack(side="left")
|
20
20
|
|
21
21
|
```
|
22
22
|
|
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -119,3 +119,9 @@
|
|
119
119
|
win.mainloop()
|
120
120
|
|
121
121
|
```
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
実行結果
|
126
|
+
|
127
|
+
![実行結果画像](d5470f5f6ae356abc1cff26c61266ec3.png)
|