1
如何動態更改Tkinter中按鈕的背景顏色?如何動態更改Tkinter中按鈕的顏色?
self.colorB = tk.Button(self.itemFrame, text="", bg="#234", width=10, command=self.pickColor)
我已經試過這:
self.colorB.bg = "#234"
,但它不工作.. 感謝
如何動態更改Tkinter中按鈕的背景顏色?如何動態更改Tkinter中按鈕的顏色?
self.colorB = tk.Button(self.itemFrame, text="", bg="#234", width=10, command=self.pickColor)
我已經試過這:
self.colorB.bg = "#234"
,但它不工作.. 感謝
使用配置
當我初始化按鈕,它只能方法
self.colorB.configure(bg = "#234")