這篇文章主要介紹“Python的Tkinter庫怎么用”,在日常操作中,相信很多人在Python的Tkinter庫怎么用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python的Tkinter庫怎么用”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
額爾古納網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,額爾古納網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為額爾古納成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請找那個售后服務(wù)好的額爾古納做網(wǎng)站的公司定做!
使用Tkinter庫可以定義每個控件的風(fēng)格,但這樣做的另一個側(cè)面就是軟件的風(fēng)格會獨立于操作系統(tǒng),多少會顯得有些另類。
為了解決這個問題,在8.5版以后,Tkinter有提供了另外一套ttk控件。這些控件在基本繼承tkinter控件用法的基礎(chǔ)上對控件的用法進(jìn)行了調(diào)整,用法更為一致的同時還可以自動使用操作系統(tǒng)的風(fēng)格。
和之前的控件的唯一區(qū)別就是更像一個普通的Windows程序了。接下來介紹代碼,首先是導(dǎo)入ttk庫。
from tkinter import *from tkinter.ttk import *
構(gòu)建主窗口沒有變化:
# create the main windowroot = Tk()
構(gòu)建最上層的標(biāo)準(zhǔn)按鈕:
s_frame = LabelFrame(root, text='Standard Button')s_frame.grid(row=0, column=0)s_button = Button(s_frame, text='Button', width=12)s_button.grid(row=0, column=0)
需要注意的是,由于ttk庫的導(dǎo)入方式,這里使用的是ttk庫中的控件。接下來構(gòu)建CheckButton示例:
c_frame = LabelFrame(root, text='CheckButton')
c_frame.grid(row=1, column=0)
def d_changed(*args):
c_text.set('Value={}{}{}{}'.format(d3.get(),d2.get(),d1.get(),d0.get()))
c_text = StringVar()
c_text.set('Value=0000')
c_label = Label(c_frame, textvariable=c_text, width=10)
c_label.grid(row=0, column=0)
d3 = IntVar()
d3.trace_variable('w', d_changed)
c_button = Checkbutton(c_frame, text='D3', variable=d3)
c_button.grid(row=0, column=1)
d2 = IntVar()
d2.trace_variable('w', d_changed)
c_button = Checkbutton(c_frame, text='D2', variable=d2)
c_button.grid(row=0, column=2)
d1 = IntVar()
d1.trace_variable('w', d_changed)
c_button = Checkbutton(c_frame, text='D1',variable=d1)
c_button.grid(row=0, column=3)
d0 = IntVar()
d0.trace_variable('w', d_changed)
c_button = Checkbutton(c_frame, text='D0', variable=d0)
c_button.grid(row=0, column=4)
d3.set(0)
d2.set(0)
d1.set(0)
d0.set(0)
構(gòu)建Radiobutton:
r_frame = LabelFrame(root, text='RadioButton')
r_frame.grid(row=2, column=0)
r_label = Label(r_frame, text='Value=0', width=10)
r_label.grid(row=0, column=0)
def r_changed(*arg):
r_label.configure(text='Value='+str(r_value.get()))
r_value = IntVar()
r_value.trace_variable('w', r_changed)
r_value.set(0)
r_button = Radiobutton(r_frame, text='0 ', variable=r_value, value=0)
r_button.grid(row=0, column=1)
r_button = Radiobutton(r_frame, text='1 ', variable=r_value, value=1)
r_button.grid(row=0, column=2)
r_button = Radiobutton(r_frame, text='2 ', variable=r_value, value=2)
r_button.grid(row=0, column=3)
r_button = Radiobutton(r_frame, text='3 ', variable=r_value, value=3)
r_button.grid(row=0, column=4)
最后啟動主循環(huán):
root.mainloop()
如果不實現(xiàn)說明,讀者很有可能不會注意到我們在使用ttk庫中的控件。
這是一件很了不起的事情。
到此,關(guān)于“Python的Tkinter庫怎么用”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
當(dāng)前文章:Python的Tkinter庫怎么用
本文路徑:http://muchs.cn/article8/pjpoip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、小程序開發(fā)、虛擬主機(jī)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計公司、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)