well i have 2 radio buttons and each one exist in a different groupbox.
they they act as they are not related to each other.
but i want them to be as they exist in a same form.
is there a method to 2 that ?
i can do that by handling the the click and unchek the other checkbox but i was wondering if there is a better way?
thanks
Update:
currently i have
private void c_RadioButton1_CheckedChanged(object sender, EventArgs e)
{
if (RadioButton1.Checked)
RadioButton2.Checked = false;
}
private void c_RadioButton2_CheckedChanged(object sender, EventArgs e)
{
if (RadioButton2.Checked)
RadioButton1.Checked = false;
}
Update2: