I would like to know how to check if the filled-in letter in a textBox
is A or B to as the result gives Checked
to a RadioButton
.
I would like to know how to check if the filled-in letter in a textBox
is A or B to as the result gives Checked
to a RadioButton
.
radioButtonA.Checked = textBox.Text == "A";
radioButtonB.Checked = textBox.Text == "B";