This repository has been archived on 2022-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
GesMag/test.py
2021-11-25 18:01:05 +01:00

13 lines
224 B
Python

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()