WP7:带有建议的文本框

发布于 2024-12-08 19:43:54 字数 115 浏览 0 评论 0原文

在标准 Windows Phone 7 应用程序中,软键盘会为您提供完成正在键入的单词的建议。

当我创建 WP7 应用程序并添加普通的 TextBox 控件时,这些建议不会出现。如何让文本框提供建议?

In the standard Windows Phone 7 apps, the soft keyboard offers you suggestions to complete the word you are typing.

When I create a WP7 app and add a normal TextBox control, these suggestions don't apprear. How do I get the TextBox to offer suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

白芷 2024-12-15 19:43:54

您需要设置 InputScope 用于TextBoxText InputScope 打开建议。

<TextBox>
  <TextBox.InputScope>
    <InputScope>
      <InputScopeName NameValue="Text" />
    </InputScope>
  </TextBox.InputScope>
</TextBox>

博客文章列出了 < code>InputScope 在手机上可用。

You need to set the InputScope for the TextBox; the Text InputScope turns on suggestions.

<TextBox>
  <TextBox.InputScope>
    <InputScope>
      <InputScopeName NameValue="Text" />
    </InputScope>
  </TextBox.InputScope>
</TextBox>

This blog post has a list of the InputScopes available on the phone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文