WPF 中的预测输入功能
预测打字是许多手机上的一项便捷功能。
您将/能够如何在 WPF 中实现预测类型?
Predictive typing is a handy feature on many mobile phones.
How would/can you implement predictive typing in WPF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
预测打字实际上是与预测字符串的显示分开的一个问题。
您将实现预测键入算法,然后仅使用 WPF 来显示选项。在显示方面,有很多替代方案,包括使用 Popup、单独的 TextBlock、自定义控件(在当前入口点之后显示“预测”文本等)。这主要可能是一个仅采用标准 TextBox 和但
请注意,T9 是专利算法,由大多数手机供应商许可 - 因此您在实现自己的版本时可能会遇到专利问题......
Predictive Typing is really a separate concern from the display of the predicted string.
You'd implement the predictive typing algorithm, then just use WPF to display the options. In terms of display, there are many alternatives, including using Popup, a separate TextBlock, a custom control (to show the "predicted" text after the current entry point, etc. This could mainly be a control that just takes a standard TextBox and templates it with the prediction over the top/after/etc.
Be aware, though, that T9 is a patented algorithm, licensed by most phone vendors - so you may run into patent issues implementing your own versions....