urema
urema

Reputation: 731

Several RadioButtons in a group unhandling event

If you have several radiobuttons in a group, and you have Checked event handlers in your code behind, if a radiobutton is checked how do you cancel this event handling so that the new radiobutton clicked does not get selected and your original checked button stays checked? The code in the event handler in the code behind distinguishes this - radiobutton is clicked the event handler checks some condition, if condition is false do not check new button.

Upvotes: 0

Views: 453

Answers (1)

Ragunathan
Ragunathan

Reputation: 2015

On Mouse PreviewDown event, you can check the condition and set e.Handled=true (IF you don't want to check or uncheck)

Upvotes: 2

Related Questions