强制聚焦 Silverlight Toolkit for Windows Phone 中的 AutoCompleteBox

发布于 2024-10-12 03:37:36 字数 215 浏览 2 评论 0原文

不可能执行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舟遥客 2024-10-19 03:37:36

从此博客中获取有关 VisualTreeEnumeration 的一小段源代码。 (请注意,有关 Toolkit 自己的 VisualTreeExtensions 类的注释不适用于 WP7 工具包)。

现在您可以使用以下命令检索内部文本框:-

textBox = autoBox.Descendents().OfType<TextBox>().FirstOrDefault(t => t.Name == "Text");

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:-

textBox = autoBox.Descendents().OfType<TextBox>().FirstOrDefault(t => t.Name == "Text");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文