remove useless file
This commit is contained in:
parent
5482c0d761
commit
d89a57eccf
1 changed files with 0 additions and 13 deletions
13
test.py
13
test.py
|
@ -1,13 +0,0 @@
|
||||||
from tkinter import *
|
|
||||||
|
|
||||||
ws = Tk()
|
|
||||||
frame = Frame(ws)
|
|
||||||
x = Frame(frame)
|
|
||||||
imgs = []
|
|
||||||
for i in range(0, 10):
|
|
||||||
imgs.append(PhotoImage(file='img/defaut.gif'))
|
|
||||||
Label(x, image=imgs[i]).grid()
|
|
||||||
|
|
||||||
x.grid()
|
|
||||||
frame.grid()
|
|
||||||
ws.mainloop()
|
|
Reference in a new issue