skb
skb

Reputation: 31094

Can I make WPF RadioButtons look like CheckBoxes?

I want to have the behavior of RadioButtons, but show them as CheckBoxes to the user. Is this easy to do?

Upvotes: 1

Views: 2076

Answers (2)

thomasmartinsen
thomasmartinsen

Reputation: 1993

Yes you can easily do using a ControlTemplate. Edit the template of a CheckBox and copy it to your RadioButton.

I agree that you should do this with caution as you easily can confuse the user.

Upvotes: 6

Gordon Gustafson
Gordon Gustafson

Reputation: 41209

You probably can do it, but I wouldn't reccomend it. Giving a user one thing when they expect another is seldom a good idea. :D

Upvotes: 5

Related Questions