下載本文檔
版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
6.1以例程為例,運(yùn)行結(jié)果如圖1所示圖1GUI控件包括:窗口、菜單等。6.2參考程序(注意文件名稱(chēng)不能是jpg,且需要放置在當(dāng)前目錄下)importtkinterastkroot=tk.Tk()#增加背景圖片photo=tk.PhotoImage(file="bg.png")theLabel=tk.Label(root,text="大家好,才是真的好.",#內(nèi)容justify=tk.LEFT,#對(duì)齊方式image=photo,#加入圖片compound=tk.CENTER,#關(guān)鍵:設(shè)置為背景圖片font=("華文行楷",20),#字體和字號(hào)fg="white")#前景色theLabel.pack()tk.mainloop()6.3參考程序(這里是復(fù)選框)importtkinterastktop=tk.Tk()CheckVar1=tk.IntVar()CheckVar2=tk.IntVar()CheckVar3=tk.IntVar()C1=tk.Checkbutton(top,text="One",variable=CheckVar1,\onvalue=1,offvalue=0,height=1,\width=20)C2=tk.Checkbutton(top,text="Two",variable=CheckVar2,\onvalue=1,offvalue=0,height=1,\width=20)C3=tk.Checkbutton(top,text="Three",variable=CheckVar3,\onvalue=1,offvalue=0,height=1,\width=20)C1.pack()C2.pack()C3.pack()top.mainloop()6.4參考程序importtkinterasTK#主窗口root=TK.Tk()root.title("Caculator")root.resizable(0,0)root.geometry('320x420')result=TK.StringVar()equation=TK.StringVar()result.set('')equation.set('0')#獲得按下的數(shù)字或者符號(hào)defgetnum(num):temp=equation.get()temp2=result.get()print(temp)print(temp2)iftemp2!='':temp='0'temp2=''result.set(temp2)if(temp=='0'):temp=''temp=temp+numequation.set(temp)print(equation)#按下退格鍵時(shí),去除最后一個(gè)字符defback():temp=equation.get()equation.set(temp[:-1])#按下MC時(shí),清空算式行與結(jié)果行defclear():equation.set('0')result.set('')#按下等于號(hào)時(shí)計(jì)算結(jié)果defrun():temp=equation.get()temp=temp.replace('x','*')temp=temp.replace('÷','/')print(temp)answer=eval(temp)answer='%.2f'%answerresult.set(str(answer))#結(jié)果顯示框show_uresult=TK.Label(root,bg='white',fg='black',font=('Arail','15'),bd='0',textvariable=equation,anchor='se')show_dresult=TK.Label(root,bg='white',fg='black',font=('Arail','30'),bd='0',textvariable=result,anchor='se')show_uresult.place(x='10',y='10',width='300',height='50')show_dresult.place(x='10',y='60',width='300',height='50')#按鈕#第1行按鈕button_7=TK.Button(root,text='7',bg='DarkGray',command=lambda:getnum('7'))button_7.place(x='10',y='150',width='60',height='40')button_8=TK.Button(root,text='8',bg='DarkGray',command=lambda:getnum('8'))button_8.place(x='90',y='150',width='60',height='40')button_9=TK.Button(root,text='9',bg='DarkGray',command=lambda:getnum('9'))button_9.place(x='170',y='150',width='60',height='40')button_multiplication=TK.Button(root,text='X',bg='DarkGray',command=lambda:getnum('x'))button_multiplication.place(x='250',y='260',width='60',height='40')#第2行按鈕button_4=TK.Button(root,text='4',bg='DarkGray',command=lambda:getnum('4'))button_4.place(x='10',y='205',width='60',height='40')button_5=TK.Button(root,text='5',bg='DarkGray',command=lambda:getnum('5'))button_5.place(x='90',y='205',width='60',height='40')button_6=TK.Button(root,text='6',bg='DarkGray',command=lambda:getnum('6'))button_6.place(x='170',y='205',width='60',height='40')button_minus=TK.Button(root,text='—',bg='DarkGray',command=lambda:getnum('-'))button_minus.place(x='250',y='205',width='60',height='40')#第3行按鈕button_1=TK.Button(root,text='1',bg='DarkGray',command=lambda:getnum('1'))button_1.place(x='10',y='260',width='60',height='40')button_2=TK.Button(root,text='2',bg='DarkGray',command=lambda:getnum('2'))button_2.place(x='90',y='260',width='60',height='40')button_3=TK.Button(root,text='3',bg='DarkGray',command=lambda:getnum('3'))button_3.place(x='170',y='260',width='60',height='40')button_plus=TK.Button(root,text='+',bg='DarkGray',command=lambda:getnum('+'))button_plus.place(x='250',y='150',width='60',height='40')#第4、5按鈕button_MC=TK.Button(root,text='C',bg='DarkGray',command=clear)button_MC.place(x='90',y='370',width='60',height='40')button_0=TK.Button(root,text='0',bg='DarkGray',command=lambda:getnum('0'))button_0.place(x='10',y='315',width='140',height='40')button_point=TK.Button(root,text='.',bg='DarkGray',command=lambda:getnum('.'))button_point.place(x='170',y='315',width='60',height='40')button_equal=TK.Button(root,text='=',bg='DarkGray',command=run)button_equal.place(x='170',y='370',width='140',height='40')button_back=TK.Button(root,text='<-',bg='DarkGray',comman
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 廣東科貿(mào)職業(yè)學(xué)院《鋼筋混凝土結(jié)構(gòu)設(shè)計(jì)原理》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東警官學(xué)院《工程結(jié)構(gòu)抗震設(shè)計(jì)》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東江門(mén)中醫(yī)藥職業(yè)學(xué)院《化工新產(chǎn)品開(kāi)發(fā)概論》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東技術(shù)師范大學(xué)《JavaScript與jQuery開(kāi)發(fā)》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東環(huán)境保護(hù)工程職業(yè)學(xué)院《故事片創(chuàng)作》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東海洋大學(xué)《測(cè)繪工程案例》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東工商職業(yè)技術(shù)大學(xué)《材料成形數(shù)值分析》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣東財(cái)貿(mào)職業(yè)學(xué)院《世界歷史文選》2023-2024學(xué)年第一學(xué)期期末試卷
- 八年級(jí)物理《電功率和用電安全》課件
- 贛南醫(yī)學(xué)院《音樂(lè)劇表演》2023-2024學(xué)年第一學(xué)期期末試卷
- 人教版六年級(jí)數(shù)學(xué)上冊(cè)練習(xí)題及參考答案
- 虛假信息的傳播與倫理
- 獾子油壓瘡護(hù)理
- 某27層高層住宅樓施工組織設(shè)計(jì)方案
- 化工(危險(xiǎn)化學(xué)品)企業(yè)主要負(fù)責(zé)人、安管員安全生產(chǎn)管理專(zhuān)項(xiàng)培訓(xùn)考核試卷(附參考答案)
- 中華人民共和國(guó)殘疾評(píng)定表
- 人教版美術(shù)五年級(jí)上冊(cè)《第2課 色彩的和諧》說(shuō)課稿2
- 2024年6月浙江省高考?xì)v史試卷(真題+答案)
- 住友(SWS)汽車(chē)連接器(Connectors)產(chǎn)品配套手冊(cè)
- 辦公樓室內(nèi)裝飾工程施工設(shè)計(jì)方案技術(shù)標(biāo)范本
- 2023年香港華夏杯六年級(jí)競(jìng)賽初賽數(shù)學(xué)試卷
評(píng)論
0/150
提交評(píng)論