Q: how to change menubar background color

Itay L. itay at nolad.com
Sun Jul 4 04:59:23 EDT 2004


Dear all,

I am trying to figure out how to change the background color of my 
menubar under Windows.

I've tried the following:

from Tkinter import *
 
root = Tk()
menu = Menu(root,background="blue")
root.config(menu=menu)
menu.add_cascade(label="File", command=None)
root.mainloop()



but its a no go.



Maybe I should post a direct tk command or change the default 
"SystemButtonFace" color.

Or maybe its impossible - but I was told nothing is impossible so this 
may be traumatic for me :(


TIA.



More information about the Python-list mailing list