英文:
Tkinter - Is it possibile to change the color of the ttk.Sizegrip widget?
问题
在我的代码中,我尝试使用以下指令更改此ttk小部件的颜色,但没有任何反应:
self.style.configure("TSizegrip", bg="red")
英文:
in my code I tried to change the color of this ttk widget using the following instruction, but nothing happened:
self.style.configure("TSizegrip", bg="red")
答案1
得分: 1
使用background
代替bg
:
self.style.configure("TSizegrip", background="red")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论