WPF 中的预测输入功能

发布于 2024-08-27 16:58:34 字数 55 浏览 5 评论 0原文

预测打字是许多手机上的一项便捷功能。

您将/能够如何在 WPF 中实现预测类型?

Predictive typing is a handy feature on many mobile phones.

How would/can you implement predictive typing in WPF?

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

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

发布评论

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

评论(1

小糖芽 2024-09-03 16:58:34

预测打字实际上是与预测字符串的显示分开的一个问题。

您将实现预测键入算法,然后仅使用 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....

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