编程语言
首页 > 编程语言> > Python GUI编程1—入门

Python GUI编程1—入门

作者:互联网

入门
创建GUI程序包括4步:
1创建应用程序主窗口对象(根窗口)

from tkinter import *

root = TK()

#中间写其他代码

root.mainloop() #事件循环

2.添加按钮、文本框等组件

btn01=Button(root)
btn01["text"]="我爱python"

3用布局管理器布局

btn01.pack()

4事件处理

4.1响应鼠标事件(单击,双击)

def talk(e): #e为事件对象
    tk.messagebox.showinfo("提示","我爱python")#def showinfo(title=None, message=None, **options):
    print("我爱python")
    btn01.bind("<Button-1>",talk)#def bind(self, sequence=None, func=None, add=None):

4.2响应键盘事件

标签:None,showinfo,Python,root,GUI,编程,python,btn01,def
来源: https://blog.csdn.net/qq_37071348/article/details/113791153