扫码一下
查看教程更方便
tkMessageBox 模块用于在您的应用程序中显示消息框。该模块提供了许多可用于显示适当消息的函数。
其中一些函数是 showinfo、showwarning、showerror、askquestion、askokcancel、askyesno 和 askretryignore。
这是创建此控件的简单语法 -
tkMessageBox.FunctionName(title, message [, options])
我们可以在对话框中使用以下功能之一
自己尝试以下示例 -
import Tkinter
import tkMessageBox
top = Tkinter.Tk()
def hello():
tkMessageBox.showinfo("Say Hello", "Hello World")
B1 = Tkinter.Button(top, text = "Say Hello", command = hello)
B1.pack()
top.mainloop()