python如何創(chuàng)建操作頁(yè)面
說(shuō)明
Python自帶tkinter模塊,本質(zhì)上是GUI工具包TK的Python編程界面,提供了快速方便地創(chuàng)建GUI應(yīng)用的方法。
過(guò)程
(1)導(dǎo)入tkinter相關(guān)的模塊。
(2)通過(guò)pack()方法定義初始化函數(shù),將組件傳遞到父容器。
(3)定制創(chuàng)建組件的方法,我們創(chuàng)建一個(gè)標(biāo)簽和一個(gè)按鈕,這個(gè)按鈕被點(diǎn)擊之后,就會(huì)觸發(fā)who方法。
(4)通過(guò)messagebox顯示提示框。
(5)對(duì)APP進(jìn)行實(shí)例化,然后通過(guò)主線程監(jiān)聽界面操作。
實(shí)例
fromtkinterimport*
importtkinter.messageboxasmessagebox
classMyApp(Frame):
def__init__(self,master=None):
Frame.__init__(self,master)
self.pack()
self.createWidgets()
defcreateWidgets(self):
self.helloLabel=Label(self,text="世界上最帥的人是誰(shuí)?")
self.helloLabel.pack()
self.quitButton=Button(self,text="誰(shuí)呢?",command=self.who)
self.quitButton.pack()
defwho(self):
messagebox.showinfo("答案","當(dāng)然是小帥b啦")
myapp=MyApp()
myapp.master.title('hello')
myapp.mainloop()
以上就是python創(chuàng)建操作頁(yè)面的方法,希望對(duì)大家有所幫助。更多Python學(xué)習(xí)教程請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。