1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## 트리뷰 활용
 
import csv
from tkinter import *
from tkinter.ttk import *
from tkinter.filedialog import *
 
 
window = Tk()
 
window.geometry("800x500")
sheet = Treeview(window)
 
#첫번째 열 만들기
sheet.column('#0', width = 70)  #첫 컬럼의 내부 이름
sheet.heading('#0', text = "제목 1")
 
#두번째 이후열 만들기
sheet['columns'= ("A""B""C")  # 두번쨰 이후 컬럼의 컬럼의 내부이름(내맘대로)
 
sheet.column("A" ,width = 70);  sheet.heading('A', text = "제목 1")
sheet.column("B" ,width = 70);  sheet.heading('B', text = "제목 2")
sheet.column("C" ,width = 70);  sheet.heading('C', text = "제목 3")
sheet.column("D" ,width = 70);  sheet.heading('C', text = "제목 3")
 
#내용 채우기.
sheet.insert('''end', text = '1열값1', values = ( '2열값1''3열값1''4열값1' ))
sheet.insert('''end', text = '1열값1', values = ( '2열값2''3열값2''4열값2' ))
sheet.insert('''end', text = '1열값1', values = ( '2열값3''3열값3''4열값3' ))
sheet.insert('''end', text = '1열값1', values = ( '2열값3''3열값3''4열값3' ))
sheet.insert('''end', text = '1열값1', values = ( '2열값3''3열값3''4열값3' ))
sheet.insert('''end', text = '1열값1', values = ( '2열값3''3열값3''4열값3' ))
 
 
 
sheet.pack()
window.mainloop()
 
 
cs


+ Recent posts