James Cadd
James Cadd

Reputation: 12216

How to access the TextBox in a SL3 AutoCompleteBox

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

Answers (1)

user122069
user122069

Reputation: 419

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

should give you the textbox

Upvotes: 2

Related Questions