Python程序設計之GUI(7)

1.單選框

①聲明與初始化

import tkinter
import tkinter.messagebox
import tkinter.ttk
labelSex = tkinter.Label(root, text='Sex:', justify=tkinter.RIGHT, width=50)
labelSex.place(x=10, y=70, width=50, height=20)
#與性別關聯的變量,1:男;0:女,默認爲男
sex = tkinter.IntVar()
sex.set(1)
#單選鈕,男
radioMan = tkinter.Radiobutton(root,variable=sex,value=1,text='Man')
radioMan.place(x=70, y=70, width=50, height=20)
#單選鈕,女
radioWoman = tkinter.Radiobutton(root,variable=sex,value=0,text='Woman')
radioWoman.place(x=130, y=70, width=70, height=20)
2.組合框

①聲明以及初始化

#添加年齡組合框
studentAge=[]
for i in range(6,23):
    studentAge.append(i)
labelAge=tkinter.Label(root,text="Age:",justify=tkinter.RIGHT,width=50)
labelAge.place(x=250, y=40, width=50, height=20)
comboAge=tkinter.ttk.Combobox(root,width=80,value=tuple(studentAge))
comboAge.place(x=310, y=40, width=50, height=20)
3.複選框

①聲明以及初始化

#與是否班長關聯的變量,默認當前學生不是班長
monitor = tkinter.IntVar()
monitor.set(0)
#複選框,選中時變量值爲1,#未選中時變量值爲0
checkMonitor = tkinter.Checkbutton(root,text='Is Monitor?', variable=monitor,onvalue=1, offvalue=0)
checkMonitor.place(x=20, y=100, width=100, height=20)
4.列表框

①聲明以及初始化

listboxStudents = tkinter.Listbox(root, width=300)
listboxStudents.place(x=10, y=130, width=300, height=200)

②對其內容操作

 listboxStudents.insert(0, result)
5.組合框綁定

①實現兩個組合框的綁定(使用字典來實現)
a)第一個組合框

labelGrade = tkinter.Label(root, text='Grade:', justify=tkinter.RIGHT, width=50)
labelGrade.place(x=10, y=40, width=50, height=20)
#模擬學生所在年級,字典鍵爲年級,字典值爲班級
studentClasses = {'1':['1', '2', '3', '4'],
               '2':['1', '2'],
               '3':['1', '2', '3']}
 #學生年級組合框
comboGrade = tkinter.ttk.Combobox(root,width=50,values=tuple(studentClasses.keys()))
comboGrade.place(x=70, y=40, width=50, height=20)

b)第二個組合框

labelClass = tkinter.Label(root, text='Class:', justify=tkinter.RIGHT, width=50)
labelClass.place(x=130, y=40, width=50, height=20)
#學生年級組合框
comboClass = tkinter.ttk.Combobox(root, width=50)
comboClass.place(x=190, y=40, width=50, height=20)

c)綁定函數

#事件處理函數
def comboChange(event):
    grade = comboGrade.get()
    if grade:
        #動態改變組合框可選項
        comboClass["values"] = studentClasses.get(grade)
    else:
        comboClass.set([])
#綁定組合框事件處理函數
comboGrade.bind('<<ComboboxSelected>>', comboChange)
5.組件源代碼
import tkinter
import tkinter.messagebox
import tkinter.ttk

#創建tkinter應用程序
root = tkinter.Tk()
#設置窗口標題
root.title('Selection windows')
#定義窗口大小
root['height'] =400
root['width'] = 400

#與姓名關聯的變量
varName = tkinter.StringVar()
varName.set('')
#varName=tkinter.StringVar(value='')
#創建標籤,然後放到窗口上
labelName = tkinter.Label(root, text='Name:',justify=tkinter.RIGHT,width=50)
labelName.place(x=10, y=5, width=50, height=20)
#創建文本框,同時設置關聯的變量
entryName = tkinter.Entry(root, width=120,textvariable=varName)
entryName.place(x=70, y=5, width=120, height=20)

labelGrade = tkinter.Label(root, text='Grade:', justify=tkinter.RIGHT, width=50)
labelGrade.place(x=10, y=40, width=50, height=20)
#模擬學生所在年級,字典鍵爲年級,字典值爲班級
studentClasses = {'1':['1', '2', '3', '4'],
               '2':['1', '2'],
               '3':['1', '2', '3']}
 #學生年級組合框
comboGrade = tkinter.ttk.Combobox(root,width=50,values=tuple(studentClasses.keys()))
comboGrade.place(x=70, y=40, width=50, height=20)

#添加年齡組合框
studentAge=[]
for i in range(6,23):
    studentAge.append(i)
labelAge=tkinter.Label(root,text="Age:",justify=tkinter.RIGHT,width=50)
labelAge.place(x=250, y=40, width=50, height=20)
comboAge=tkinter.ttk.Combobox(root,width=80,value=tuple(studentAge))
comboAge.place(x=310, y=40, width=50, height=20)

#事件處理函數
def comboChange(event):
    grade = comboGrade.get()
    if grade:
        #動態改變組合框可選項
        comboClass["values"] = studentClasses.get(grade)
    else:
        comboClass.set([])
#綁定組合框事件處理函數
comboGrade.bind('<<ComboboxSelected>>', comboChange)

labelClass = tkinter.Label(root, text='Class:', justify=tkinter.RIGHT, width=50)
labelClass.place(x=130, y=40, width=50, height=20)
#學生年級組合框
comboClass = tkinter.ttk.Combobox(root, width=50)
comboClass.place(x=190, y=40, width=50, height=20)



labelSex = tkinter.Label(root, text='Sex:', justify=tkinter.RIGHT, width=50)
labelSex.place(x=10, y=70, width=50, height=20)
#與性別關聯的變量,1:男;0:女,默認爲男
sex = tkinter.IntVar()
sex.set(1)
#單選鈕,男
radioMan = tkinter.Radiobutton(root,variable=sex,value=1,text='Man')
radioMan.place(x=70, y=70, width=50, height=20)
#單選鈕,女
radioWoman = tkinter.Radiobutton(root,variable=sex,value=0,text='Woman')
radioWoman.place(x=130, y=70, width=70, height=20)

#與是否班長關聯的變量,默認當前學生不是班長
monitor = tkinter.IntVar()
monitor.set(0)
#複選框,選中時變量值爲1,#未選中時變量值爲0
checkMonitor = tkinter.Checkbutton(root,text='Is Monitor?', variable=monitor,onvalue=1, offvalue=0)
checkMonitor.place(x=20, y=100, width=100, height=20)


#添加按鈕單擊事件處理函數
def addInformation():
    result = 'Name:' + entryName.get()
    result =result+'Age'+comboAge.get()
    result = result + ';Grade:' + comboGrade.get()
    result = result + ';Class:' + comboClass.get()
    result = result + ';Sex:' + ('Man' if sex.get() else 'Woman')
    result = result + ';Monitor:' + ('Yes' if monitor.get() else 'No')
    listboxStudents.insert(0, result)
buttonAdd = tkinter.Button(root, text='Add',width=40, command=addInformation)
buttonAdd.place(x=130, y=100, width=40, height=20)

#刪除按鈕的事件處理函數
def deleteSelection():
    selection = listboxStudents.curselection()
    if  not selection:
        tkinter.messagebox.showinfo(title='Information', message='No Selection')
    else:
        listboxStudents.delete(selection)
buttonDelete = tkinter.Button(root, text='DeleteSelection',width=100, command=deleteSelection)
buttonDelete.place(x=180, y=100, width=100, height=20)
#創建列表框組件

listboxStudents = tkinter.Listbox(root, width=300)
listboxStudents.place(x=10, y=130, width=300, height=200)
#啓動消息循環
if __name__=="__main__":
    root.mainloop()

運行結果:
在這裏插入圖片描述

學習筆記

1.關於多個組合框的綁定可以使用字典來實現;

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章