0
Check Button
Hi I wanted to change the color background of checkbutton in tkinter I coded: Checkbutton(root,text,bg=âblackâ,font=()) But it gives me error: unknown option bg How can I change the background then? Also I canât change the fontâŠ
1 Answer
+ 1
You can change it by following:
checkbutton.configure(bg="black")