我可以在自定义 .net 应用程序中使用手写个性化吗

发布于 2024-09-04 03:39:02 字数 181 浏览 3 评论 0原文

Windows Vista 和 7 都包含个性化手写识别的功能。您可以训练平板电脑识别您的特定风格。

我知道个性化是由本机 Windows 平板电脑输入面板 (TIP)(操作系统的手写控件)使用的。

.NET SDK 是否提供对此个性化数据的访问,以便我的 .net 应用程序可以将其用于应用程序中基于墨迹的控件?

Windows Vista and 7 both contain the ability to personlize the handwriting recognition. You can train the tablet to recognize your specific style.

I know the personlization is used by the Native Windows Tablet Input Panel (TIP), the OS's handwriting control.

Does the .NET SDK provide access to this personlization data so that my .net application can use it for the ink based controls in the app?

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

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

发布评论

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

评论(1

嗳卜坏 2024-09-11 03:39:02

您可以使用 Microsoft.Ink 类。这些是 Winform,您可以在以下位置找到 DLL:
C:\Program Files\Reference Assemblies\Microsoft\Tablet PC\v6.0\Microsoft.Ink.dll

或者如果您使用 WPF,则可以使用 InkAnalyzer 类
http://msdn.microsoft.com/en-us/library/ms754080.aspx
但我在引用 .net 4 程序集中的 dll 之一时遇到了问题。但我发现将以下配置添加到程序集中可以解决问题。

<?xml version="1.0"?>
  <configuration>
   <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" />
   </startup>
  </configuration>

在这里检查一些信息:
http://social. msdn.microsoft.com/forums/en-US/tabletandtouch/thread/dccb93b9-5f0e-4824-8e0f-eb7f0b6cab15/

You can use the Microsoft.Ink classes. These are Winforms and you can find the DLL at
C:\Program Files\Reference Assemblies\Microsoft\Tablet PC\v6.0\Microsoft.Ink.dll

or if you use WPF you can use the InkAnalyzer class
http://msdn.microsoft.com/en-us/library/ms754080.aspx
but I had trouble referencing one of the dlls from a .net 4 assembly. But I found out that adding the following config to the assembly solves the problems.

<?xml version="1.0"?>
  <configuration>
   <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" />
   </startup>
  </configuration>

Check some info here:
http://social.msdn.microsoft.com/forums/en-US/tabletandtouch/thread/dccb93b9-5f0e-4824-8e0f-eb7f0b6cab15/

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