In this recipe, we will create our tkinter message boxes as standalone top-level GUI windows.
You will first notice that, by doing so, we end up with an extra window, so we will explore ways to hide this window.
In the previous recipe, we invoked tkinter message boxes via our Help | About menu from our main GUI form.
So, why would we wish to create an independent message box?
One reason is that we might customize our message boxes and reuse them in several of our GUIs. Instead of having to copy and paste the same code into every Python GUI we design, we can factor it out of our main GUI code. This creates a small reusable component, which we can then import into different Python GUIs.