") root.configure...">

Tkinter root configuration

To add a title to the root of TKinter, we do something like:

root = Tk()
root.title("<Title Text>")
root.configure(bg = "<color>")

      

My question is how to change the font size and font color of the title text. It felt like a simple requirement, but instead of changing the root background color, I can't seem to do anything.

Many thanks

+3


source to share


1 answer


You cannot change the font or size of the title with tkinter. Tkinter has no control over how the / os window manager decorates the program.



+2


source







All Articles