tkinter中spinbox遞增和遞減控制元件(十)

Tynam.Yang發表於2018-04-11

spinbox遞增和遞減控制元件

 1 import tkinter
 2 
 3 wuya = tkinter.Tk()
 4 wuya.title("wuya")
 5 wuya.geometry("300x200+10+20")
 6 
 7 # 建立一個frame
 8 frm1 = tkinter.Frame(wuya)
 9 frm1.pack(side='left')
10 
11 def func1():
12     text1.delete(0.0,'end')
13     text1.insert('insert',spb1.get())
14 
15 # 建立遞增或遞減控制元件,放置在frm1中
16 spb1 = tkinter.Spinbox(frm1,from_=0,to=20,command=func1)
17 # from_為開始的值,to為終止的值
18 spb1.pack()
19 
20 text1 = tkinter.Text(frm1)
21 text1.pack()
22 
23 
24 
25 # 建立一個frame
26 frm2 = tkinter.Frame(wuya)
27 frm2.pack(side='left')
28 
29 def func2():
30     text2.delete(0.0,'end')
31     text2.insert('insert', spb2.get())
32 
33 # 設定遞增或遞減的值
34 val = ('上海','北京','天津','海南')
35 # 建立遞增或遞減控制元件,放置在frm1中
36 spb2 = tkinter.Spinbox(frm2, values=val, increment=1,command=func2)
37 # from_為開始的值,to為終止的值,increment為遞增或遞減的步長
38 spb2.pack()
39 
40 text2 = tkinter.Text(frm2)
41 text2.pack()
42 
43 wuya.mainloop()

 

結果:

相關文章