I want to add spell check to my richtextboxes in my application. How can i do that with built in classes in visual studio express 2010?
Asked
Active
Viewed 1.0k times
1
-
http://stackoverflow.com/questions/453611/what-is-the-best-spell-checking-library-for-c – albertjan Jun 03 '12 at 13:31
-
i tried to use System.Windows.Controls SpellCheck Class but i don''t know what are the references i should add to get it working. – aroshlakshan Jun 03 '12 at 13:35
-
possible duplicate of [Trying to use the C# SpellCheck class](http://stackoverflow.com/questions/4024798/trying-to-use-the-c-sharp-spellcheck-class) – Damith Jun 03 '12 at 13:48
-
It is WinForms application. Yes – aroshlakshan Jun 03 '12 at 14:50
3 Answers
2
Have you looked at this? System.Windows.Controls.SpellCheck
http://msdn.microsoft.com/en-us/library/system.windows.controls.spellcheck.aspx

Rob P.
- 14,921
- 14
- 73
- 109
-
I did but when i tried to insert "using System.Windows.Controls;" it doesn't get recognized in my code – aroshlakshan Jun 03 '12 at 13:39
-
3that because you need to reference the PresentationFramework.dll – Jeremy Thompson Jun 04 '12 at 03:16
0
You Can Use Third Party Control (Infragistics) UltraSpellChecker. Its really easy to work with it.
this.ultraSpellChecker1.SetSpellCheckerSettings(this.txt_comment, new Infragistics.Win.UltraWinSpellChecker.SpellCheckerSettings(true));
where txt_comment
is the richtextbox in which you want your spellings to be checked.

zdan
- 28,667
- 7
- 60
- 71

Shilpa Gurnani
- 61
- 1
- 8