I need to remove the focus from several TextBoxes. I tried using:
textBox1.Focused = false;
Its ReadOnly
property value is true
.
I then tried setting the focus on the form, so as to remove it from all the TextBoxes, but this also fails to work:
this.Focus();
and the function returns false
when a textbox is selected.
So, how do I remove the focus from a TextBox?
Textbox. Focus() "Tries" to set focus on the textbox element. In case of the element visibility is hidden for example, Focus() will not work. So make sure that your element is visible before calling Focus() . Follow this answer to receive notifications.
In your form Load event you can set the focus on some other control. If you do not want the control to ever get focus via keyboard, you can also set its TabStop property to false. If you want that the button should not have focus when you open the form, then you need to correct the TabIndex property.
public void ClearTextBoxes(Form form) { foreach (Control control in form. Controls) { if (control. GetType() == typeof(TextBox)) { control. Text = ""; } } } //Calling this Function var fm1 = new Form1(); ClearTextBoxes(fm1); //Smilarly From Form2 and So on var fm2 = new Form2(); ClearTextBoxes(fm2);
You need some other focusable control to move the focus to.
Note that you can set the Focus to a Label. You might want to consider where you want the [Tab] key to take it next.
Also note that you cannot set it to the Form. Container controls like Form and Panel will pass the Focus on to their first child control. Which could be the TextBox you wanted it to move away from.
Focusing on the label didn't work for me, doing something like label1.Focus()
right? the textbox still has focus when loading the form, however trying Velociraptors answer, worked for me, setting the Form's Active control to the label like this:
private void Form1_Load(object sender, EventArgs e) { this.ActiveControl = label1; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With