1 out of 2 rated this helpful - Rate this topic

How to: Set Focus in a TextBox Control

This example shows how to use the Focus method to set focus on a TextBox control.

The following Extensible Application Markup Language (XAML) example describes a simple TextBox control named tbFocusMe

<TextBox Name="tbFocusMe">
  This is the text in my text box.
</TextBox>

The following example calls the Focus method to set the focus on the TextBox control with the Name tbFocusMe.

tbFocusMe.Focus();
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.