Skip to content

Commit b0f67f2

Browse files
Pyton Tkinter Building Out Start
1 parent 23a4ff3 commit b0f67f2

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Python Tkinter
2+
3+
4+
from tkinter import *
5+
from PIL import ImageTk, Image
6+
7+
root = Tk()
8+
root.title('Pyhton Image Viewer') # titulo
9+
root.iconbitmap('Python Tkinter Building Out/db.ico')
10+
root.geometry("400x400")
11+
12+
13+
14+
root.mainloop()

Python Tkinter Building Out/db.ico

61.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)