WPF - Changing Radio Button to have Command Button Style???

  • Thread starter Thread starter samadams_2006
  • Start date Start date
S

samadams_2006

Hello,

I have a series of wpf radio buttons in a group that I would like to
have the look and feel of regular wpf command buttons. For example,
instead of a little circle with the label beside it, I would like to
have it shaped like a command button. When the user clicks on this
radiobutton, instead of the little circle being highlighted, I would
like it to have the look of a depressed command button.

I believe that this can be done via styles? Does anyone know or have
a style that I can use that will give this "command button" look and
feel?

Thanks
Sam
 
You could change the template but I think it would be easier to just
use ToggleButtons and make the Checked event on one uncheck the others.
 
Back
Top