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

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)