.NET 的拼写检查器
有没有办法在不使用 Office 库的情况下创建 C# 拼写检查器?我会对最简单的解决方案感到满意。
Is there anyway to create C# spelling checker without using Office library? I would be happy with the simplest possible solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 NHunspell。
就我个人而言,我已经尝试过。很好。
来自 NHunspell 项目页面:
use NHunspell.
personally, i have tried it. its good.
From the NHunspell project page:
最简单的解决方案是使用 WPF:WPF 的 TextBox 和 RichTextBox 控件默认支持拼写检查,只需添加控件,启用拼写检查即可!
这是示例代码:
The simplest solution ever is to use WPF: TextBox and RichTextBox controls of WPF support spell checking by default, just add the control, enable spell checking, and you have done!
Here is a sample code:
我知道 NetSpell 这个项目。它在sourceforge中,你可以找到很多参考资料,在codeproject中讨论它或在google上搜索
不认为该项目最近很活跃,但仍然很好用
I know of this project NetSpell. It is in sourceforge and you can find many reference that discuss it in codeproject or search on google
Dont think the project is active recently, but still pretty good for use