Tkinter Radiobutton Indicatoron Not Recognised
I'd like my Radiobuttons to use the button box interface as mentioned on this page, by setting indicatoron=0: http://effbot.org/tkinterbook/radiobutton.htm Code snippet: import tt
Solution 1:
The documentation you linked is for the Tkinter.Radiobutton
class. You are using the ttk.Radiobutton
class, which does not support an indicatoron
attribute.
Post a Comment for "Tkinter Radiobutton Indicatoron Not Recognised"