Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

You can find oryginal MessageBox

import tkinter.messagebox

print(tkinter.messagebox.__file__)

and see how it was made.

But you can use tkinter.Toplevel() to create own MsgBox

example-1.py

It uses function

#1

example-1.py

It uses class MsgBox and shows how to change elements inside class.

For example it changes: label font, button text and position

#2