Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was trying to change the color of the words in my ttk.Entr widget when I set the state to disabled, I looked up the manual, there's an option called disabledforeground, so I wrote a test snippet as below: (BTW, I'm under Python 2.7)

from Tkinter import *
from ttk import *

root=Tk()

style=Style()
style.configure("TEntry",disabledforeground='red')

entry_var=StringVar()
entry=Entry(root,textvariable=entry_var,state='disabled')
entry.pack()

entry_var.set('test')

mainloop()

But the result shows no change in the color of "test", any idea what's wrong?
Thanks in advance

share|improve this question

1 Answer

up vote 1 down vote accepted

Try using Style.map instead of configure.

from Tkinter import *
from ttk import *

root=Tk()

style=Style()
style.map("TEntry",
          foreground=[("active", "black"), ("disabled", "red")]
          )

entry_var=StringVar()
entry=Entry(root,textvariable=entry_var,state='disabled')
entry.pack()

entry_var.set('test')

mainloop()
share|improve this answer
sorry, no change either. – Jonathan Pasa Gu Nov 20 '12 at 13:24
That's odd. I checked and it works for me. – Junuxx Nov 20 '12 at 13:25
oops!sorry, my bad, forgot to change the state, it works now! – Jonathan Pasa Gu Nov 20 '12 at 13:48
but whats the difference then? between configure and map? – Jonathan Pasa Gu Nov 20 '12 at 13:48
The main difference in this case seems to be that map avoids using disabledforeground, which doesn't appear to be recognized. – Junuxx Nov 20 '12 at 14:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.