WP7:带有建议的文本框
在标准 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置
InputScope
用于TextBox
; TextInputScope
打开建议。此博客文章列出了 < code>InputScope 在手机上可用。
You need to set the
InputScope
for theTextBox
; the TextInputScope
turns on suggestions.This blog post has a list of the
InputScope
s available on the phone.