Spell check in winforms

后端 未结 2 1571
孤独总比滥情好
孤独总比滥情好 2020-12-21 21:05

In my win forms C# app, I want to be able to add spell check functionality. But, I want to do it my own way, and NOT use any other components. All I need is just an online s

相关标签:
2条回答
  • 2020-12-21 21:11

    A quick google search turned up this:

    Search Web Services: Spelling Suggestion

    This is not c#/.NET specific. Its a simple REST service provided by Yahoo!. It looks like they do limit you to 5,000 queries per day for free and I'm not sure if Yahoo! lets you upgrade to a pay service.

    0 讨论(0)
  • 2020-12-21 21:25

    Personally, I wonder why you want only online access...what if you lose connection? Also, most online accesses come with restrictions.. which you might hit sooner than you think during debugging.

    If you were to use WPF, I'd suggest using the SpellCheck Class.

    Since you specified Windows.Forms, you might try the NetSpell library for offline access. You can also try and use Microsoft Word's spellchecker, but you might not have it installed on the machine (or use Linux & Mono)

    If you persist on using online access, you can use Yahoo, as Giovanni Galbo says. It's been done in C# before.

    0 讨论(0)
提交回复
热议问题