문제

I am trying to place the cursor at the end of the text in textbox inside Microsoft.Phone.Controls.AutoCompleteBox. how can i do this?

It is strange that AutoCompleteBox has Focus function but no function for Select.

도움이 되었습니까?

해결책

It's pretty much explained on this blog

Basically, it comes down to getting the inner TextBox

var textbox = GetTemplateChild("Text") as TextBox;

And then from there you can easily do whatever you would otherwise do with a TextBox.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top