关于启用拼写检查的 WPF RichTextBox

发布于 2024-07-14 13:39:17 字数 170 浏览 5 评论 0原文

SpellCheck.IsEnabled="True"

...wpf 应用程序中的属性,它可以在使用 SO Windows XP 和 Office 2007 的计算机上运行,​​但是使用 Office 2003 的 PC 上有什么问题吗? 似乎拼写检查器被禁用,这个问题可以用代码解决吗? 提前致谢!

SpellCheck.IsEnabled="True"

...property in a wpf application, it works in machines with S.O Windows XP and with Office 2007, but whats the matter with Pc with Office 2003? it seems the spellchecker is disabled, this issue can be fixed with code? thanks in advance!

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

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

发布评论

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

评论(1

埋情葬爱 2024-07-21 13:39:17

检查以确保两台计算机处于相同的(或受支持的区域设置),因为 SpellCheck 对象的一个​​有趣问题是它仅适用于以下区域设置:

  • 英语
  • 法语
  • 德语
  • 西班牙语

您还可以尝试 Microsoft 的此代码块:

textBox1.Language =
    XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag);

Check to make sure both machines are in the same (or a supported locale), because an interesting problem with the SpellCheck object is it only works in the following locales:

  • English
  • French
  • German
  • Spanish

You can also try this block of code from Microsoft:

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