According to the ActiveTcl 8.5 Documentation:
ttk::radiobutton widgets are used in groups to show or change a set of mutually-exclusive options. Radiobuttons are linked to a Tcl variable, and have an associated value; when a radiobutton is clicked, it sets the variable to its associated value.
And a more general definition:
You use radio buttons for mutually exclusive settings. Clicking on one causes any other that has been pressed to pop up, just like on an old car radio.
I really prefer to use the look and feel of buttons instead of radio buttons. How can I achieve the same behaviour of radiobuttons in a group of buttons?
I found on http://wiki.tcl.tk/17899 about toggle buttons, but these behaves more like checkbuttons.
Any insights really appreacited. Thank you
You can set the button’s
reliefto maintain it’s sunken-ness.