Hello friends how are you, today in this blog i will teach you what is Messgebox , syntax of Messgebox , how to create Messgebox , how Messgebox works in a very simple way.
Let's start
TKinter Messagebox
- It is used to display Message box in Python.
- It contains various functions which are used to display the relevant messages depending upon the application requirements.
- Syntax:
messagebox.function_name(title, message [, options])
- Description:
- function_name:It is the name of the appropriate message box function.
- title :It is the title of the messagebox.
- message :It is the text to be displayed as a message on the message box.
- options:There are various options which can be used to configure the message dialog box.
- Functions used with messagebox
- showinfo():This is used to show normal message to the user.
- showwarning():This is used to show warning message to the user.
- showerror ():This is used to show error message to the user.
- askquestion():This function asks a question to user that can be answered in either yes or no.
- askokcancel():It confirm the user's action regarding some application activity.
- askyesno ():This function asks the user about some action that can be answered in either yes or no.
- askretrycancel ():This method is used to ask the user about doing a particular task again or not.
from tkinter import messagebox from tkinter import * top = Tk() top.geometry("200x250") top['bg']="#51E1DC" def info(): messagebox.showinfo("Info","Info") def warning(): messagebox.showwarning("Warning", "Warning") def error(): messagebox.showerror("Error", "Error") def askq(): messagebox.askquestion("Question","Are you okay?") def askyes(): messagebox.askyesno("Application","Do you want to install?") def askok(): messagebox.askokcancel("Storage", "Allow storage") def askretry(): messagebox.askretrycancel("Failed", "Try again!") Button(top,text="ShowInfo",command=info).pack(pady=2) Button(top,text="ShowWarning",command=warning).pack(pady=2) Button(top,text="ShowError",command=error).pack(pady=2) Button(top,text="AskQuestion",command=askq).pack(pady=2) Button(top,text="AskOkCancel",command=askok).pack(pady=2) Button(top,text="AskYesNo",command=askyes).pack(pady=2) Button(top,text="AskRetry",command=askretry).pack(pady=2) top.mainloop()
Request:-If you found this post helpful then let me know by your comment and share it with your friend.
If you want to ask a question or want to suggest then type your question or suggestion in comment box so that we could do something new for you all.
If you have not subscribed my website then please subscribe my website. Try to learn something new and teach something new to other.
Thanks.😊
0 Comments