WinHtmlEditor-master
├── WinHtmlEditor
│ ├── Common
│ │ ├── ContextMenuForm.cs
│ │ ├── ContextMenuForm.designer.cs
│ │ ├── ContextMenuForm.resx
│ │ ├── CustomColors.cs
│ │ ├── ExtensionAttribute.cs
│ │ ├── GeneralUtil.cs
│ │ ├── HTMLEditHelper.cs
│ │ ├── HtmlEditorEvents.cs
│ │ ├── HtmlEnumerations.cs
│ │ ├── HtmlFontProperty.cs
│ │ ├── HtmlTableProperty.cs
│ │ ├── IOleCommandTarget.cs
│ │ ├── OfficeColorPicker.cs
│ │ ├── OfficeColorPicker.designer.cs
│ │ ├── OfficeColorPicker.resx
│ │ ├── SelectableColor.cs
│ │ ├── TableSizeControl.cs
│ │ ├── ToolStripColorPicker.cs
│ │ ├── ToolStripColorPicker.resx
│ │ ├── ToolStripFontComboBox.cs
│ │ └── ToolStripTableSizeSelector.cs
│ ├── Form
│ │ ├── EditHtmlForm.cs
│ │ ├── EditHtmlForm.designer.cs
│ │ ├── EditHtmlForm.resx
│ │ ├── FindReplaceForm.cs
│ │ ├── FindReplaceForm.designer.cs
│ │ ├── FindReplaceForm.resx
│ │ ├── TablePropertyForm.cs
│ │ ├── TablePropertyForm.designer.cs
│ │ └── TablePropertyForm.resx
│ ├── HtmlEditor.Designer.cs
│ ├── HtmlEditor.cs
│ ├── HtmlEditor.resx
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ ├── Resources
│ │ ├── About.png
│ │ ├── AutoLayout.png
│ │ ├── BackColor.bmp
│ │ ├── Bold.png
│ │ ├── Copy.png
│ │ ├── CreateLink.png
│ │ ├── Cut.png
│ │ ├── Date.png
│ │ ├── Delete.png
│ │ ├── Find.png
│ │ ├── ForeColor.bmp
│ │ ├── HTML.bmp
│ │ ├── Indent.png
│ │ ├── InsertHorizontalRule.png
│ │ ├── InsertImage.png
│ │ ├── InsertOrderedList.png
│ │ ├── InsertTable.png
│ │ ├── InsertUnorderedList.png
│ │ ├── Italic.png
│ │ ├── JustifyCenter.png
│ │ ├── JustifyFull.png
│ │ ├── JustifyLeft.png
│ │ ├── JustifyRight.png
│ │ ├── New.png
│ │ ├── Open.png
│ │ ├── Outdent.png
│ │ ├── Paste.png
│ │ ├── Preview.png
│ │ ├── Print.png
│ │ ├── Redo.png
│ │ ├── RemoveFormat.png
│ │ ├── Save.png
│ │ ├── ShowHTML.png
│ │ ├── SpellCheck.png
│ │ ├── StrikeThrough.png
│ │ ├── Subscript .png
│ │ ├── Superscript .png
│ │ ├── Time.gif
│ │ ├── Underline.png
│ │ ├── Undo.png
│ │ ├── Unlink.png
│ │ ├── Wordclean.png
│ │ └── wordcount.gif
│ ├── WinHtmlEditor.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── NetSpell.SpellChecker.dll
│ │ ├── WinHtmlEditor.dll
│ │ └── dic
│ │ └── en-US.dic
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── WinHtmlEditor.ContextMenuForm.resources
│ ├── WinHtmlEditor.EditHtmlForm.resources
│ ├── WinHtmlEditor.FindReplaceForm.resources
│ ├── WinHtmlEditor.HtmlEditor.resources
│ ├── WinHtmlEditor.OfficeColorPicker.resources
│ ├── WinHtmlEditor.Properties.Resources.resources
│ ├── WinHtmlEditor.TablePropertyForm.resources
│ ├── WinHtmlEditor.ToolStripColorPicker.resources
│ ├── WinHtmlEditor.csproj.FileListAbsolute.txt
│ ├── WinHtmlEditor.csproj.GenerateResource.Cache
│ ├── WinHtmlEditor.csprojResolveAssemblyReference.cache
│ ├── WinHtmlEditor.dll
│ ├── WinHtmlEditor.pdb
│ └── build.force
├── WinHtmlEditor.sln
├── WinHtmlEditor.suo
├── WinHtmlEditor.v12.suo
├── WinHtmlEditorTest
│ ├── App.config
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WinHtmlEditorTest.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── NetSpell.SpellChecker.dll
│ │ ├── WinHtmlEditor.dll
│ │ ├── WinHtmlEditorTest.exe
│ │ └── dic
│ │ └── en-US.dic
│ └── obj
│ └── x86
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── WinHtmlEditorTest.Form1.resources
│ ├── WinHtmlEditorTest.Properties.Resources.resources
│ ├── WinHtmlEditorTest.csproj.FileListAbsolute.txt
│ ├── WinHtmlEditorTest.csproj.GenerateResource.Cache
│ ├── WinHtmlEditorTest.csprojResolveAssemblyReference.cache
│ ├── WinHtmlEditorTest.exe
│ └── WinHtmlEditorTest.pdb
└── logo.jpg
20 directories, 125 files
评论