Select the Initial Text in a Silverlight TextBox

Posted by Dan Auclair on Stack Overflow See other posts from Stack Overflow or by Dan Auclair
Published on 2010-03-17T18:31:26Z Indexed on 2010/03/18 3:31 UTC
Read the original article Hit count: 511

I am trying to figure out the best way to select all the text in a TextBox the first time the control is loaded. I am using the MVVM pattern, so I am using two-way binding for the Text property of the TextBox to a string on my ViewModel. I am using this TextBox to "rename" something that already has a name, so I would like to select the old name when the control loads so it can easily be deleted and renamed. The initial text (old name) is populated by setting it in my ViewModel, and it is then reflected in the TextBox after the data binding completes.

What I would really like to do is something like this:

<TextBox x:Name="NameTextBox" Text="{Binding NameViewModelProperty, Mode=TwoWay}" SelectedText="{Binding NameViewModelProperty, Mode=OneTime}" />

Basically just use the entire text as the SelectedText with OneTime binding. However, that does not work since the SelectedText is not a DependencyProperty.

I am not completely against adding the selection code in the code-behind of my view, but my problem in that case is determining when the initial text binding has completed. The TextBox always starts empty, so it can not be done in the constructor. The TextChanged event only seems to fire when a user enters new text, not when the text is changed from the initial binding of the ViewModel.

Any ideas are greatly appreciated!

© Stack Overflow or respective owner

Related posts about Silverlight

Related posts about textbox