我想在我的应用程序中为我的richtextbox添加拼写检查。如何使用visual studio express 2010中的内置类来实现这一目标?
答案 0 :(得分:2)
System.Windows.Controls.SpellCheck
http://msdn.microsoft.com/en-us/library/system.windows.controls.spellcheck.aspx
答案 1 :(得分:0)
如果您正在使用WPF,则可以使用System.Windows.Controls.SpellCheck。
但是如果你使用WinForms,你仍然可以使用WPF拼写检查进行一些工作。
检查this SO问题了解更多信息。
否则您需要使用第三方library。
答案 2 :(得分:0)
您可以使用第三方控制(Infragistics) UltraSpellChecker 。它很容易使用它。
this.ultraSpellChecker1.SetSpellCheckerSettings(this.txt_comment, new Infragistics.Win.UltraWinSpellChecker.SpellCheckerSettings(true));
其中txt_comment
是您要在其中检查拼写的richtextbox。