While I use this construct in my code and type Russian text in a text box, nothing happens:
<TextBox SpellCheck.IsEnabled="True" />
While I use this construct, the English text is spell-checked, but not Russian
<TextBox xml:lang="en-US" SpellCheck.IsEnabled="True" />
What am I doing wrong? How to check the spelling of other languages? Or maybe someone can advise me on a control that checks Russian?
source
share