lijuanfei fea454b6d7 新增责任人的字段 2 anni fa
..
Args 6fc17c92c5 临时提交 2 anni fa
Properties 6fc17c92c5 临时提交 2 anni fa
Resources 6fc17c92c5 临时提交 2 anni fa
screenshots 6fc17c92c5 临时提交 2 anni fa
.gitignore 6fc17c92c5 临时提交 2 anni fa
KBrowser.cs 6fc17c92c5 临时提交 2 anni fa
KEditor.cs fea454b6d7 新增责任人的字段 2 anni fa
KEditor.resx 6fc17c92c5 临时提交 2 anni fa
KSharpEditor.csproj 6fc17c92c5 临时提交 2 anni fa
README.md 6fc17c92c5 临时提交 2 anni fa

README.md

KWIG

!!! NOT IN MAINTENANCED.but accept pr.

KIWG is a WYSIWYG editor for WinForm based on summernote.

Instructions:

  1. Add a reference to kwig.dll

  2. Add KEditor control to your form

  3. Buid & Run

Events:

// open file button event
Void OnOpenButtonClicked();
// save button event
Void OnSaveButtonClicked();
// Insert picture button event
Void OnInsertImageClicked();
// Editor loads success event
Void OnEditorLoadComplete();
// editor error event
Void OnEditorErrorOccured(Exception ex);

Attributes:

// editor version, same as summernote version number
KEditor.Version
// Set or get the editor Html content
KEditor.Html

Methods:

// editor clear reset
KEditor.Reset();
// insert html code
KEditor.InsertNode(string html)
// insert text
KEditor.InsertText(string text)