Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to remove the focus from several textboxes; I tried using:

textBox.Focused = false;

but the property is read only. 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 focus from a textbox?

Thanks in advance.

share|improve this question
1000 views - Wow! – Callum Rogers Dec 8 '09 at 19:26
30K views - Wow! – msbg Apr 15 at 18:52

7 Answers

up vote 34 down vote accepted

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 [Tab] 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.

share|improve this answer
Thanks; I just tried focusing on a label and now the textbox becomes unfocused. It seems you cannot focus on a form for some reason. – Callum Rogers Jul 16 '09 at 21:05
5  
Container Controls (Form, Panel) will pass the Focus on to their first child control. – Henk Holterman Jul 16 '09 at 21:09
Great suggestion. This solved my problem. I'm using KeyPress against the form itself and have several buttons etc. Problem is that the app is taking input from a cardreader, so if focus goes away from the form itself then all hell breaks loose. Having focus on a label after a button-click solved my problem. Thanks so much! – haxor Apr 17 at 5:55

Try disabling and enabling the textbox.

share|improve this answer
2  
This works pretty slick as it automatically selects the next control in the tab list in the meantime. – Nick May 12 '10 at 23:50
2  
I am developing in Silverlight using MVVM and implemented this using a behavior targeting a TextBox. Since I didn't have another UIElement handy to set focus to the Disable/Enable solution worked wonders. Thanks! – Albert Oldfield Jun 10 '10 at 22:31
this works like a charm – grabah Feb 7 '12 at 15:31

Focus sets the input focus, so setting it to the form won't work because forms don't accept input. Try setting the form's ActiveControl property to a different control. You could also use Select to select a specific control or SelectNextControl to select the next control in the tab order.

share|improve this answer

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;       
}
share|improve this answer
i wish i could give you million arrow up's. i tried EVERYTHING else that people suggested, this is the only one that worked. for some reason, the textbox ALWAYS stole the focus from everything... – eladyanai22 Mar 12 at 14:58
1  
This works also for container controls like panels. I just wanted to remove focus completely and it worked: this.ActiveControl = panelOnMyForm; – Tim Schmelter Apr 9 at 14:32

try this one..

first set up tab order..

then in form load event we can send a tab key press programmatically to application. so that application will give focus to 1st contol in the tab order..

in form load even write this line.

SendKeys.Send("{TAB}");

this did work for me.

share|improve this answer
Great solution! – Yuriy Nov 29 '12 at 19:25

I've found a good alternative! It works best for me, without setting the focus on smth else.

Try that:

private void richTextBox_KeyDown(object sender, KeyEventArgs e)
{    
    e.SuppressKeyPress = true;
}
share|improve this answer

It seems that I don't have to set the focus to any other elements. On a Windows Phone 7 application, I've been using the Focus method to unset the Focus of a Textbox.

Giving the following command will set the focus to nothing:

void SearchBox_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        Focus();
    }
}

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.focus.aspx

It worked for me, but I don't know why didn't it work for you :/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.