您好,登錄后才能下訂單哦!
這篇文章主要介紹“Python tkinter多選按鈕控件Checkbutton怎么使用”,在日常操作中,相信很多人在Python tkinter多選按鈕控件Checkbutton怎么使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python tkinter多選按鈕控件Checkbutton怎么使用”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
以下為常用的方法:
方法描述deselect()清除多選按鈕選中選項。flash()在激活狀態(tài)顏色和正常顏色之間閃爍幾次多選按鈕,但保持它開始時的狀態(tài)。invoke()可以調(diào)用此方法來獲得與用戶單擊多選按鈕以更改其狀態(tài)時發(fā)生的操作相同的操作select()設(shè)置多選按鈕為選中。toggle()選中與沒有選中之間切換
設(shè)置某一個多選按鈕為選中的狀態(tài),可以通過select()指定特定的單選按鈕被選中。
import tkinter as tk root=tk.Tk() root.geometry('300x240') b1 = tk.Checkbutton(root,bg='red',text='紅色',bd=5) b1.pack() b2 = tk.Checkbutton(root,text='藍(lán)色',bg='blue',bd=5) b2.pack() b3 = tk.Checkbutton(root,text='綠色',bg='green',bd=5) b3.pack() b2.select() root.mainloop()
結(jié)果:
跟select方法是相反的操作,取消某個單選按鈕被選中。
import tkinter as tk root=tk.Tk() root.geometry('300x240') b1 = tk.Checkbutton(root,bg='red',text='紅色',bd=5) b1.pack() b2 = tk.Checkbutton(root,text='藍(lán)色',bg='blue',bd=5) b2.pack() b3 = tk.Checkbutton(root,text='綠色',bg='green',bd=5) b3.pack() def deselect(): b2.deselect() b4=tk.Button(root,text='取消藍(lán)色',command=deselect) b4.pack() root.mainloop()
結(jié)果:
在激活狀態(tài)顏色和正常顏色之間閃爍幾次多選按鈕,但保持它開始時的狀態(tài)。必須設(shè)置activeforeground或者activebackground中的任何一個或者全部,否則沒有效果。注意只有被選中的按鈕才會起作用。
import tkinter as tk root=tk.Tk() root.geometry('300x240') check=[tk.StringVar(),tk.StringVar(),tk.StringVar()] for i in range(0,3): check[i].set("0") b1 = tk.Checkbutton(root,bg='red',text='紅色',bd=5, variable=check[0],activebackground='green', activeforeground='yellow') b1.pack() b2 = tk.Checkbutton(root,text='藍(lán)色',bg='blue',bd=5, variable=check[1],activebackground='red', activeforeground='yellow') b2.pack() b3 = tk.Checkbutton(root,text='綠色',bg='green',bd=5, variable=check[2],activebackground='blue', activeforeground='yellow') b3.pack() def flash(): if check[0].get()=="1": b1.flash() if check[1].get()=="1": b2.flash() if check[2].get()=="1": b3.flash() b4=tk.Button(root,text='Flash',command=flash) b4.pack() root.mainloop()
模擬多選按鈕被選中的情況。
import tkinter as tk root=tk.Tk() root.geometry('300x240') b1 = tk.Checkbutton(root,bg='red',text='紅色',bd=5) b1.pack() b2 = tk.Checkbutton(root,text='藍(lán)色',bg='blue',bd=5) b2.pack() b3 = tk.Checkbutton(root,text='綠色',bg='green',bd=5) b3.pack() def invoke(): b2.invoke() b4=tk.Button(root,text='Invoke',command=invoke) b4.pack() root.mainloop()
結(jié)果:
切換多選按鈕的狀態(tài)。如果目前是選中的狀態(tài),則變?yōu)槲催x中。反之亦然。toggle()的效果也invoke()是一樣的。
import tkinter as tk root=tk.Tk() root.geometry('300x240') b1 = tk.Checkbutton(root,bg='red',text='紅色',bd=5) b1.pack() b2 = tk.Checkbutton(root,text='藍(lán)色',bg='blue',bd=5) b2.pack() b3 = tk.Checkbutton(root,text='綠色',bg='green',bd=5) b3.pack() def toggle(): b2.toggle() b4=tk.Button(root,text='Toggle',command=toggle) b4.pack() root.mainloop()
結(jié)果:
到此,關(guān)于“Python tkinter多選按鈕控件Checkbutton怎么使用”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。