RichTextBox supports the spell check option, which is very nice. (SpellCheck.IsEnabled = true)
But I can not imagine it in another language. (I live in the Netherlands ..;))
Do any of you have experience using the SpellCheck option for a TextBox?
I know that this can be a change by changing the keyboard settings, but I want to change it in the application.
What I tried so far (and did not work):
- Change CurrentCulture on the current thread.
- Changing language property in xaml to "nl-nl"
- Change the language property in the code using
XmlLanguage.GetLanguage("nl-NL");
You should not receive spelling errors with the following line:
"Dit is een Nederlandse tekst."
The language key RFC 3066 of my language is "nl-NL"
Thanks a lot, Rick
source share