.NET text editor that accepts HTML and input/output with spellchecking

后端 未结 8 1980
臣服心动
臣服心动 2021-02-02 04:01

I have been searching for something that does this for a while now, but with no luck yet... We have an internal application that stores/uses text in HTML format. Now I am looki

8条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-02 04:26

    I am actually looking for .NET 2.0 winforms controls

    I looked for one a couple of years ago and didn't find one.

    So, I've developed one: see http://www.modeltext.com/html/

    It's a WYSIWYG XHTML editor, written in C#, with a .Net-native (i.e. not COM) API. It supports some (not all) CSS properties, derives from System.Windows.Forms.Control, and depends on version 2 of the .Net framework (and on nothing else).

    It doesn't include a spell-checker, but its API lets you walk and interact with the DOM, so you could develop spell-checker functionality yourself, if you wanted it.

提交回复
热议问题