WPF 的 TextBox 支持荷兰语拼写检查词典吗?

发布于 2024-07-07 14:01:30 字数 469 浏览 7 评论 0原文

RichTextBox 支持拼写检查选项,这非常好。 (SpellCheck.IsEnabled = true)

但我似乎无法将其转换为另一种语言。 (我住在荷兰..;))

你们中有人有使用 TextBox 的拼写检查选项的经验吗?

我知道可以通过更改键盘设置来更改它,但我想在应用程序中更改它。

到目前为止我已经尝试过(但没有成功):

  • 更改当前线程上的 CurrentCulture。
  • 更改“nl-NL”中 xaml 中的语言属性
  • 使用 XmlLanguage.GetLanguage("nl-NL"); 更改代码中的语言属性;

以下行不应出现任何拼写错误:

“这就是荷兰人的技术。”

我的语言的 RFC 3066 语言密钥是“nl-NL”

非常感谢, 瑞克

The RichTextBox supports a spellcheck option which is very nice. (SpellCheck.IsEnabled = true)

But I cannot seem to get it to another language. (I live in the Netherlands.. ;))

Does any of you have an experience with the SpellCheck option of TextBox?

I know it can be change by changing the keyboard settings, but I want to change it in the application.

What I have tried so far (and did not work):

  • Changing the CurrentCulture on the current Thread.
  • Changing the Language property in xaml in "nl-NL"
  • Changing the Language property in code with the XmlLanguage.GetLanguage("nl-NL");

You should not get any spelling errors with the following line:

"Dit is een Nederlandse tekst."

The RFC 3066 language key of my language is "nl-NL"

Many thanks,
Rick

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

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

发布评论

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

评论(1

廻憶裏菂餘溫 2024-07-14 14:01:30

WPF 的拼写支持仅限于 4 种语言; 英语、西班牙语、法语和德语。

使用自定义词典只会将“特殊单词”添加到当前词典中。 它不会允许新的语言词典。

Spelling support for WPF is limited to just 4 languages; English, Spanish, French, and German.

Using a custom dictionary will only add "special words" to the current dictionary. It will not allow a new language dictionary.

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