国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

Python GUI之如何使用tkinter控件

瀏覽:78日期:2022-06-18 10:38:04
目錄一、功能按鈕二、文本框三、練習一四、練習二:計算器一、功能按鈕

格式:Button(父對象,options,…)

父對象:表示當前按鈕建立在哪一個窗口下。

options:下面總結一部常用的。

1.bg或者background:背景色

2.fg或者foreground:前景色

3.command:單擊按鈕時,執(zhí)行此方案

4.font:字體

5.height:字符高度

6.width:字符寬度

7.image:按鈕上的圖片

8.padx:設置文字與按鈕左右間隔

9.pady:設置文字與按鈕上下間隔

10.state:NORMAL表示啟用按鈕,DISABLED表示禁用按鈕

11.text:字符

Button 初體驗:這里我們建造一個制造女朋友的工廠,你只需要點一下按鈕就可以告別單身狗

from tkinter import *def msgShow(): label['text']='我是你的女朋友,恭喜你告別單身' label['bg']='lightyellow' label['fg']='blue'# 實例對象root=Tk()root.title('女朋友工廠')root.geometry('300x200+500+500')label=Label(root)btn=Button(root,text='開始制造',command=msgShow,width=15)btnCls=Button(root,text='結束',command=root.destroy,width=15)# 控件顯示label.pack(side=TOP)btn.pack(side=LEFT,padx=20)btnCls.pack(side=RIGHT,padx=20)# 窗體暫停root.mainloop()

Python GUI之如何使用tkinter控件

Button 進階體驗:上面的工廠只能造一個女朋友,但是作為一個海王,你現(xiàn)在想多擁有幾個女朋友,那么現(xiàn)在你需要一個能制造多個女朋友的工廠【使用Lambda表達式】

from tkinter import *# 工廠def mkGrilFriend(name): lbl.config(text=str('我是'+name+'小姐姐,從現(xiàn)在開始我就是你的女朋友啦!!!'))root=Tk()root.title('改變窗體顏色')root.geometry('500x100')lbl=Label(root)lbl.pack()exitBtn=Button(root,text='退出',command=root.destroy)# 制造女友oneBtn=Button(root,text='1號女友',command=lambda:mkGrilFriend('田園my 老師'))twoBtn=Button(root,text='2號女友',command=lambda:mkGrilFriend('三上yy 老師'))exitBtn.pack(anchor=S,side=RIGHT,padx=5,pady=5)twoBtn.pack(anchor=S,side=RIGHT,padx=5,pady=5)oneBtn.pack(anchor=S,side=RIGHT,padx=5,pady=5)root.mainloop()

運行結果:

Python GUI之如何使用tkinter控件

二、文本框

格式:Entry(父對象,options,…)

options參數(shù)主要包括以下:

1.bg:背景色

2.fg:字體顏色

3.command:當用戶更改內容時,觸發(fā)此函數(shù)

4.font:字體

5.height:字符高度

6.width:字符寬度

7.selectbackground:被選定字符的背景色

8.show:常用于隱藏顯示密碼字段,ps:show= ’ * ’

9.state: NORMAL正常輸入,DISABLE表示禁止輸入

10.xscrollcommand:在x軸顯示滾動條

包括方法:

1.get() 獲取文本框內的字符串內容:ety.get()

2.insert() 插入字符串到文本框:ety.insert(開始位置索引,要插入的字符串)

3.delete() 刪除文本框中的字符串:ety.delete(開始位置索引,截止位置索引:END等于全刪)

4.eval() 數(shù)學表達公式:results=eval(2+3*5)

三、練習一

from tkinter import *root=Tk()root.title('輸入表格')root.geometry('300x200')nameLbl=Label(root,text='Name')nameLbl.grid(row=0,column=0)addressLbl=Label(root,text='Address')addressLbl.grid(row=1,column=0)nameEty=Entry(root)addressEty=Entry(root)nameEty.grid(row=0,column=1)addressEty.grid(row=1,column=1)root.mainloop()

運行:

Python GUI之如何使用tkinter控件

四、練習二:計算器

from tkinter import *# 計算函數(shù)def calculate(): result=eval(equ.get()) # 獲取輸入公式 equ.set(equ.get()+'=n'+str(result)) # 輸入公式 + 回車換行 + 結果# 顯示到 Labeldef show(buttonString): content=equ.get() # 獲取公式變量,并拼接到content后面 if content=='0':content='' equ.set(content+buttonString) # 顯示到labeldef backspace(): equ.set(str(equ.get()[:-1])) # equ 變量-1def clear(): equ.set('0')root=Tk()root.title('計算器')# 公共變量,記錄公式equ=StringVar()equ.set('0')# textvariable:指定一個變量刷新text值,這里的equ的set屬性改變,label的text也會變化label=Label(root,width=50,height=2,relief='raised',anchor=SE,textvariable=equ)# columnspan:橫跨4個按鈕label.grid(row=0,column=0,columnspan=4,padx=5,pady=5)# 第二行 [0,1,2,3列]clearBtn=Button(root,text='C',fg='blue',width=10,command=clear).grid(row=1,column=0,pady=5)Button(root,text='DEL',width=10,command=backspace).grid(row=1,column=1)Button(root,text='%',width=10,command=lambda:show('%')).grid(row=1,column=2)Button(root,text='/',width=10,command=lambda:show('/')).grid(row=1,column=3)# 第三行 [0,1,2,3列]Button(root,text='7',width=10,command=lambda:show('7')).grid(row=2,column=0,pady=5)Button(root,text='8',width=10,command=lambda:show('8')).grid(row=2,column=1)Button(root,text='9',width=10,command=lambda:show('9')).grid(row=2,column=2)Button(root,text='*',width=10,command=lambda:show('*')).grid(row=2,column=3)# 第四行 [0,1,2,3列]Button(root,text='4',width=10,command=lambda:show('4')).grid(row=3,column=0,pady=5)Button(root,text='5',width=10,command=lambda:show('5')).grid(row=3,column=1)Button(root,text='6',width=10,command=lambda:show('6')).grid(row=3,column=2)Button(root,text='-',width=10,command=lambda:show('-')).grid(row=3,column=3)# 第五行 [0,1,2,3列]Button(root,text='1',width=10,command=lambda:show('1')).grid(row=4,column=0,pady=5)Button(root,text='2',width=10,command=lambda:show('2')).grid(row=4,column=1)Button(root,text='3',width=10,command=lambda:show('3')).grid(row=4,column=2)Button(root,text='+',width=10,command=lambda:show('+')).grid(row=4,column=3)# 第六行 [0,1,2,3列]Button(root,text='0',width=24,command=lambda:show('0')).grid(row=5,column=0,columnspan=2,pady=5)Button(root,text='.',width=10,command=lambda:show('.')).grid(row=5,column=2)Button(root,text='=',width=10,bg='yellow',command=lambda:calculate()).grid(row=5,column=3)mainloop()

運行:

Python GUI之如何使用tkinter控件

到此這篇關于Python GUI之如何使用tkinter控件的文章就介紹到這了,更多相關tkinter控件的使用內容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持好吧啦網(wǎng)!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 高清性色生活片欧美在线 | 欧美三级日韩三级 | 久久欧美精品欧美久久欧美 | 国产成人久久精品一区二区三区 | 正在播放国产精品 | 久久精品国产亚洲高清 | 亚洲另类视频 | 国产三级日本三级美三级 | 久久三级国产 | 亚洲精品播放 | 国产成人毛片视频不卡在线 | 精品三级国产一区二区三区四区 | 日本一区二区三区在线 视频 | 成人免费一区二区三区视频软件 | 欧美日韩综合高清一区二区 | 一区二区三区日韩精品 | 亚洲国产精品久久 | 日本道久久 | 99久久精品免费国产一区二区三区 | 免费人成年短视频在线观看免费网站 | 精品欧美日韩一区二区三区 | www.91亚洲| 洋老外米糕国产一区二区 | 国产精品夜色视频一级区 | 国内精品美女写真视频 | 最新理论三级中文在线观看 | 伊大人香蕉久久网 | 性久久久久久久 | 日本成aⅴ人片日本伦 | 97青娱国产盛宴精品视频 | 一级做a爱片久久蜜桃 | 一本不卡| 日本国产免费一区不卡在线 | 亚洲国产精品成 | 国产精品久久久精品三级 | 欧美一级专区免费大片野外交 | 国产欧美视频在线观看 | 国产精品久久永久免费 | 日韩 欧美 国产 师生 制服 | 亚洲视频男人的天堂 | 一级毛片免费观看不卡视频 |