I’m looking to implement a spell checker on my win form app. The app need to be built in .Net 3.5 and I’m struggling to figure out what I need to do. I walked through an example of importing a Windows Presentation Form control that did this perfectly, but that control is only available in .Net 4 Framework.
Can anybody point me in the right direction on this please? I’m only using this control for the one richTextBox, so i dont want to spend too much time on this one element of my project.
Thanks
In the XAML tab, add the following code between TextBox tags:
SpellCheck.IsEnabled = "True"You can add the same code in the standard C# code window. Just enter:
3.Now, launch the application.
If you enter incorrect words, these are underlined in red. If you right-click the word, you get some spelling suggestions to correct.
I hope, thats what u wanted.