i have a Textbox and some RadioButtons in C#.
Now i want to set a Text to a disabled Textbox.
What i tried:
private void RadioButton1_CheckedChanged(object sender, EventArgs e)
{
TextBox1.Text = "****";
TextBox1.Enabled = false;
}
This way i cant see the Text.
If i enable the Textbox, the TextBox shows me the String (****)
What can i do to set a Text to a disabled Textbox?