I have a ComboBox declared as follows:
<ComboBox Name="txtUserName" IsEditable="True" />
I want to select the ComboBox's text field on focus, but I can't figure out how to do this. Currently, when the ComboBox is focused on programmatically (through "txtUserName.Focus()"), it allows the user to scroll through the different items, but requires an additional click to highlight the text field.
Any thoughts?