Skip to content Skip to sidebar Skip to footer

Non Blocking Info Dialog In Tkinter

I need a simple info box to display some status output, that I would alternatively dump to the console using print. The easiest possibility that I found is the following: import Tk

Solution 1:

Don't use the tkMessageBox as it doesn't allow much configuration. Just create your own custom dialog that looks like one. This page talks a lot about creating custom Tkinter dialogs.


Post a Comment for "Non Blocking Info Dialog In Tkinter"