Does SpellCheck.Net class support Russian?

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?

+3
source share
3 answers

WPF supports only four languages ​​by default, and none of them is Russian.

However, this page on MSDN Social suggests that this is possible when installing .Net Language Packs

+5
source

en-US , , , , ru-RU, .

: SpellCheck:

, WPF . .NET Framework 4 WPF , , .

, , , , , .

+1

: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/06a2cc61-f2ae-4534-b35a-6c676bc2bcb2/?prof=required Wiki http://msdn.microsoft.com/en-us/library/system.windows.controls.spellcheck(v=VS.100).aspx

, .NET 3.5 .NET 4.0 , TextBox Language = "ru-RU" SpellCheck.IsEnable = "True". .NET 4.0 Windows Vista ( ). - . , Microsoft , , .

+1

All Articles