Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I do spell check on strings?

does anybody know any C# multilingual spell check library ? I don't need a real time spell check. Only check on strings.

thanks!

like image 782
hello B Avatar asked Oct 26 '25 03:10

hello B


1 Answers

For what it's worth, this was the first hit on google:

SpellCheck class

enter image description here

From MSDN:

Provides real-time spell-checking functionality to text-editing controls, such as TextBox and RichTextBox.

To enable the spelling checker, set the SpellCheck.IsEnabled property to true on a text-editing control. When this spelling checker is enabled, misspelled words are underlined by using a red wavy line, as shown in the following illustration. Spelling checker is supported only when WPF provides a default dictionary. In .NET Framework 4, WPF provides dictionaries for English, French, German, and Spanish.

Edit I've only just recognized that it's for WPF only. Then you could have a look at this SO-question: Spell check in winforms

like image 58
Tim Schmelter Avatar answered Oct 27 '25 18:10

Tim Schmelter