强制聚焦 Silverlight Toolkit for Windows Phone 中的 AutoCompleteBox
不可能执行 autocompletebox.Focus() ,但似乎有一种解决方法: TextBox textBox = autoBox.Template.FindName("Text", autoBox) as TextBox;< /code>
但是,Windows Phone 中没有 FindName
方法。我该如何解决这个问题?
It's not possible to do a autocompletebox.Focus()
, but there seems to be a work around : TextBox textBox = autoBox.Template.FindName("Text", autoBox) as TextBox;
However, there is no method FindName
in Windows Phone. How can I work around this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从此博客中获取有关 VisualTreeEnumeration 的一小段源代码。 (请注意,有关 Toolkit 自己的 VisualTreeExtensions 类的注释不适用于 WP7 工具包)。
现在您可以使用以下命令检索内部文本框:-
Fetch the short chunk of source code from this blog about VisualTreeEnumeration. (Note the comment about Toolkit's own VisualTreeExtensions class doesn't apply the the WP7 toolkit).
Now you can retrieve the internal TextBox with:-