BoulderBum
Programmer
I have a group of RadioButtons in my Windows Form that has a CheckedChanged event handler attached. The event handler causes an update for a selected ListBox item. The problem? The ListBox has an event handler that sets the selected radio button, and the CheckedChanged event fires when that happens.
I am considering detaching the RadioButton's event handler temporarily while its value is being set, but that seems inefficient.
Is there a better approach?
I am considering detaching the RadioButton's event handler temporarily while its value is being set, but that seems inefficient.
Is there a better approach?