Question

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.

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top