Skip to content

Commit c5e949d

Browse files
Python Tkinter Treeview start
1 parent 2f1cb09 commit c5e949d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
66.1 KB
Binary file not shown.

Python Tkinter Treeview/treeview.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python Tkinter Treeview
2+
# Vista de árbol de Python Tkinter
3+
4+
from tkinter import *
5+
6+
root = Tk()
7+
root.title('Python Tkinter Treeview')
8+
root.iconbitmap('Python Tkinter Treeview/Icons/cocoa.ico')
9+
root.geometry("400x400")
10+
11+
12+
13+
14+
15+
16+
root.mainloop()

0 commit comments

Comments
 (0)