Reputation: 12216
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?
Upvotes: 0
Views: 823
Reputation: 419
VisualTreeHelper.GetChild(VisualTreeHelper.GetChild("AutoCompleteBoxName", 0), 0) as TextBox
should give you the textbox
Upvotes: 2