标签: python tkinter
是否有一种简单的方法可以更改按钮中文本的颜色?
我使用button['text'] = 'input text here'来更改推送后按钮文本的内容。是否存在类似颜色变化button['color'] = 'red'?
button['text'] = 'input text here'
button['color'] = 'red'
答案 0 :(得分:7)
使用foreground选项设置按钮中文本的颜色。 例如:
foreground
button.configure(foreground="red")