views:

87

answers:

1

I'd like to call the Select function on the TextBox used by the SL3 AutoCompleteBox. What's a good way to access this object?

+1  A: 

VisualTreeHelper.GetChild(VisualTreeHelper.GetChild("AutoCompleteBoxName", 0), 0) as TextBox

should give you the textbox