.NET 的拼写检查器

发布于 2024-08-22 16:36:09 字数 57 浏览 2 评论 0原文

有没有办法在不使用 Office 库的情况下创建 C# 拼写检查器?我会对最简单的解决方案感到满意。

Is there anyway to create C# spelling checker without using Office library? I would be happy with the simplest possible solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

2024-08-29 16:36:09

使用 NHunspell。

拼写检查、同义词库和连字:NHunspell< /a>


就我个人而言,我已经尝试过。很好。

来自 NHunspell 项目页面:

NHunspell 基于 Hunspell 和
带来 Open Office 拼写检查,
连字符和同义词库
Microsoft® .NE​​T 框架。 NH恩斯佩尔
是一个 .NET(C#、VB)库并包装
原生库 Hunspell、Hyphen
和 MyThes。

集成库用于
OpenOffice 并与
词典出版于
OpenOffice.org。

NHunspell 获得许可:
GPL/LGPL/MPL。免费用于商业用途
根据以下规定允许申请
LGPL 和 MPL 许可证。你的
商业应用可以链接
针对 NHunspell DLL。

use NHunspell.

Spell Check, Th­e­saurus and Hyphen­ation: NHun­spell

personally, i have tried it. its good.

From the NHunspell project page:

NHunspell is based on Hunspell and
brings the Open Office spell checking,
hyphenation and thesaurus to the
Microsoft® .NET Framework. NHunspell
is a .NET (C#, VB) library and wraps
the native libraries Hunspell, Hyphen
and MyThes.

The integrated libraries are used in
OpenOffice and work with the
dictionaries published on
OpenOffice.org.

NHunspell is licenced under:
GPL/LGPL/MPL. Free use in commercial
applications is permitted according to
the LGPL and MPL licenses. Your
commercial application can link
against the NHunspell DLLs.

梦断已成空 2024-08-29 16:36:09

最简单的解决方案是使用 WPF:WPF 的 TextBox 和 RichTextBox 控件默认支持拼写检查,只需添加控件,启用拼写检查即可!

这是示例代码:

<TextBox Margin="53,86,51,97" Name="textBox1" SpellCheck.IsEnabled="True"/>

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:

<TextBox Margin="53,86,51,97" Name="textBox1" SpellCheck.IsEnabled="True"/>
最丧也最甜 2024-08-29 16:36:09

我知道 NetSpell 这个项目。它在sourceforge中,你可以找到很多参考资料,在codeproject中讨论它或在google上搜索

不认为该项目最近很活跃,但仍然很好用

http://www.aspcode.net/Use-NetSpell-in-your-ASPNET-20-application.aspx

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

http://www.aspcode.net/Use-NetSpell-in-your-ASPNET-20-application.aspx
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文