Please read my question its not a duplicate one.
I\'ve three radio buttons on windows form and all these buttons have common \'CheckedChanged\' event associated. Whe
To avoid it, just check if radioButton is checked
radioButton
for example:
private void radioButton1_CheckedChanged(object sender, EventArgs e) { if (radioButton1.Checked) //your code }