How To Change Font Size Of Messages Inside Messagebox.showinfo(message='hello') In Tkinter Python3.7
I am trying to make displayed message fonts bigger for certain messages when it get displayed so that its easier for eyes to read than standard size. I checked on past post regardi
Solution 1:
In the Tcler's wiki it says: "With recent versions, the Windows messageBox is "native"...", which as far as I can tell means it's using a windows component and you can't change the mesage box font.
You could try to make your own custom dialog with the help of tkinters simpledialog. Have a look at effbot: Dialog Windows
Post a Comment for "How To Change Font Size Of Messages Inside Messagebox.showinfo(message='hello') In Tkinter Python3.7"