1.创建简单界面

import tkinter
from tkinter import messagebox#导入messagebox对话框模块
def myGUI():
    mygui = tkinter.Tk()
    mygui.geometry('200x300')#界面大小
     mygui.mainloop()
##################################
if __name__ == '__main__':
    myGUI()

2.添加按钮

button = tkinter.Button(mygui, text='点击', width=5, \
    height=2, command=helloCallBack,\
    activeforeground='red')
    button.pack()

command=helloCallBack是点击按钮之后的回调函数
3.messagebox对话框使用

def helloCallBack():
   messagebox.showinfo("hello","world")

4.效果

python 操作界面 python3.7界面_gui


python 操作界面 python3.7界面_tkinter_02