CustomTkinter
CustomTkinter copied to clipboard
CTKEntry - Change background color when (state = 'readonly')
How can I change the background color of CTKEntry when state is 'readonly'?
Thanks.
if my_entry.state == "readonly":
my_entry.configure(fg_color="black")
Valid colors, info, etc: https://github.com/TomSchimansky/CustomTkinter/wiki/Themes#colors
Fixed now with version 5.0.2. Thanks for reporting this.