有没有一种方法可以更改python中禁用的条目小部件的颜色?
x = tk.Entry(parent)
x.configure({"background": "gray24"})
x.configure({"fg": "white"})
x.configure({"state": "disable"})
以上代码仅在窗口小部件的“状态”为“正常”时才有效。
答案 0 :(得分:2)
设置条目窗口小部件的disabledbackground
属性。
x.configure({"disabledbackground": "newcolour"})
"newcolour"
是禁用条目小部件时要查看的颜色。您还可以将disabledforeground
用作前景色,而不是背景色。