您好,欢迎来到爱问旅游网。
搜索
您的当前位置:首页python如何创建操作页面

python如何创建操作页面

时间:2024-07-17 来源:爱问旅游网

说明

Python自带tkinter模块,本质上是GUI工具包TK的Python编程界面,提供了快速方便地创建GUI应用的方法。

过程

(1)导入tkinter相关的模块。

(2)通过pack()方法定义初始化函数,将组件传递到父容器。

(3)定制创建组件的方法,我们创建一个标签和一个按钮,这个按钮被点击之后,就会触发who方法。

(4)通过messagebox显示提示框。

(5)对APP进行实例化,然后通过主线程监听界面操作。

实例

from tkinter import *
import tkinter.messagebox as messagebox
 
class MyApp(Frame):
 
    def __init__(self,master=None):
        Frame.__init__(self,master)
        self.pack()
        self.createWidgets()
 
    def createWidgets(self):
        self.helloLabel = Label(self,text="世界上最帅的人是谁?")
        self.helloLabel.pack()
        self.quitButton = Button(self,text="谁呢?",command=self.who)
        self.quitButton.pack()
 
    def who(self):
        messagebox.showinfo("答案","当然是小帅b啦")
 
myapp = MyApp()
myapp.master.title('hello')
myapp.mainloop()

以上就是python创建操作页面的方法,希望对大家有所帮助。更多Python学习指路:

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电

Copyright © 2019- awee.cn 版权所有

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务