Python tkinter之ComboBox(下拉框)的使用簡(jiǎn)介
# -*- encoding=utf-8 -*-import tkinterfrom tkinter import *from tkinter import ttkif __name__ == ’__main__’: win = tkinter.Tk() # 窗口 win.title(’南風(fēng)丶輕語(yǔ)’) # 標(biāo)題 screenwidth = win.winfo_screenwidth() # 屏幕寬度 screenheight = win.winfo_screenheight() # 屏幕高度 width = 600 height = 500 x = int((screenwidth - width) / 2) y = int((screenheight - height) / 2) win.geometry(’{}x{}+{}+{}’.format(width, height, x, y)) # 大小以及位置 value = StringVar() value.set(’CCC’) values = [’AAA’, ’BBB’, ’CCC’, ’DDD’] combobox = ttk.Combobox( master=win, # 父容器 height=10, # 高度,下拉顯示的條目數(shù)量 width=20, # 寬度 state=’readonly’, # 設(shè)置狀態(tài) normal(可選可輸入)、readonly(只可選)、 disabled cursor=’arrow’, # 鼠標(biāo)移動(dòng)時(shí)樣式 arrow, circle, cross, plus... font=(’’, 20), # 字體 textvariable=value, # 通過(guò)StringVar設(shè)置可改變的值 values=values, # 設(shè)置下拉框的選項(xiàng) ) print(combobox.keys()) # 可以查看支持的參數(shù) combobox.pack() win.mainloop()
# -*- encoding=utf-8 -*-import tkinterfrom tkinter import *from tkinter import ttkdef choose(event): # 選中事件 print(’選中的數(shù)據(jù):{}’.format(combobox.get())) print(’value的值:{}’.format(value.get()))if __name__ == ’__main__’: win = tkinter.Tk() # 窗口 win.title(’南風(fēng)丶輕語(yǔ)’) # 標(biāo)題 screenwidth = win.winfo_screenwidth() # 屏幕寬度 screenheight = win.winfo_screenheight() # 屏幕高度 width = 600 height = 500 x = int((screenwidth - width) / 2) y = int((screenheight - height) / 2) win.geometry(’{}x{}+{}+{}’.format(width, height, x, y)) # 大小以及位置 value = StringVar() value.set(’CCC’) # 默認(rèn)選中CCC==combobox.current(2) values = [’AAA’, ’BBB’, ’CCC’, ’DDD’] combobox = ttk.Combobox( master=win, # 父容器 height=10, # 高度,下拉顯示的條目數(shù)量 width=20, # 寬度 state=’normal’, # 設(shè)置狀態(tài) normal(可選可輸入)、readonly(只可選)、 disabled cursor=’arrow’, # 鼠標(biāo)移動(dòng)時(shí)樣式 arrow, circle, cross, plus... font=(’’, 20), # 字體 textvariable=value, # 通過(guò)StringVar設(shè)置可改變的值 values=values, # 設(shè)置下拉框的選項(xiàng) ) combobox.bind(’<<ComboboxSelected>>’, choose) print(combobox.keys()) # 可以查看支持的參數(shù) combobox.pack() win.mainloop()
以上就是Python tkinter之ComboBox(下拉框)的使用簡(jiǎn)介的詳細(xì)內(nèi)容,更多關(guān)于Python tkinter之ComboBox 下拉框的使用的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. CSS自定義滾動(dòng)條樣式案例詳解2. 通過(guò)工廠模式返回Spring Bean方法解析3. JSP實(shí)現(xiàn)客戶信息管理系統(tǒng)4. PHP 面向?qū)ο蟪绦蛟O(shè)計(jì)之類(lèi)屬性與類(lèi)常量實(shí)現(xiàn)方法分析5. Java Spring WEB應(yīng)用實(shí)例化如何實(shí)現(xiàn)6. python 批量下載bilibili視頻的gui程序7. Intellij IDEA連接Navicat數(shù)據(jù)庫(kù)的方法8. 關(guān)于Mysql-connector-java驅(qū)動(dòng)版本問(wèn)題總結(jié)9. 使用css實(shí)現(xiàn)全兼容tooltip提示框10. python numpy庫(kù)np.percentile用法說(shuō)明
