【例子介绍】C# RICHEDIT 编辑器
RICHEDIT 编辑器可以打开C#程序代码,但受限于riched,打开比较大的文档时速度太慢
【相关图片】
【源码结构】
文件清单
└── TextEditor
├── TextEditor
│ ├── 1.cs
│ ├── app.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── csharp.xml
│ │ │ ├── TextEditor.application
│ │ │ ├── TextEditor.exe
│ │ │ ├── TextEditor.exe.config
│ │ │ ├── TextEditor.exe.manifest
│ │ │ ├── TextEditor.pdb
│ │ │ ├── TextEditor.vshost.application
│ │ │ ├── TextEditor.vshost.exe
│ │ │ ├── TextEditor.vshost.exe.config
│ │ │ └── TextEditor.vshost.exe.manifest
│ │ └── Release
│ │ ├── TextEditor.application
│ │ ├── TextEditor.exe
│ │ ├── TextEditor.exe.config
│ │ ├── TextEditor.exe.manifest
│ │ ├── TextEditor.pdb
│ │ ├── TextEditor.vshost.application
│ │ ├── TextEditor.vshost.exe
│ │ ├── TextEditor.vshost.exe.config
│ │ └── TextEditor.vshost.exe.manifest
│ ├── ClassDiagram1.cd
│ ├── csharp.xml
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Help.cs
│ ├── Help.Designer.cs
│ ├── Help.resx
│ ├── ico
│ │ ├── about.ico
│ │ ├── color.ico
│ │ ├── copy.ico
│ │ ├── cut.ico
│ │ ├── delete.ico
│ │ ├── editor.ico
│ │ ├── favicon.ico
│ │ ├── find.ico
│ │ ├── font.ico
│ │ ├── header.ico
│ │ ├── help.ico
│ │ ├── new.ico
│ │ ├── open.ico
│ │ ├── paste.ico
│ │ ├── replace.ico
│ │ ├── saveas.ico
│ │ ├── save.ico
│ │ ├── selectall.ico
│ │ ├── Thumbs.db
│ │ └── undo.ico
│ ├── InputBox.cs
│ ├── InputBox.resx
│ ├── myIcon.ico
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── TextEditor.application
│ │ │ ├── TextEditor.csproj.GenerateResource.Cache
│ │ │ ├── TextEditor.exe
│ │ │ ├── TextEditor.exe.manifest
│ │ │ ├── TextEditor.Form1.resources
│ │ │ ├── TextEditor.Help.resources
│ │ │ ├── TextEditor.InputBox.resources
│ │ │ ├── TextEditor.pdb
│ │ │ ├── TextEditor.Properties.Resources.resources
│ │ │ └── TextEditor.RepInputBox.resources
│ │ ├── Release
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ ├── TextEditor.application
│ │ │ ├── TextEditor.csproj.GenerateResource.Cache
│ │ │ ├── TextEditor.exe
│ │ │ ├── TextEditor.exe.manifest
│ │ │ ├── TextEditor.Form1.resources
│ │ │ ├── TextEditor.Help.resources
│ │ │ ├── TextEditor.InputBox.resources
│ │ │ ├── TextEditor.pdb
│ │ │ ├── TextEditor.Properties.Resources.resources
│ │ │ └── TextEditor.RepInputBox.resources
│ │ └── TextEditor.csproj.FileList.txt
│ ├── Parser.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RepInputBox.cs
│ ├── RepInputBox.resx
│ ├── Settings.cs
│ ├── SyntaxEditor.cs
│ ├── SyntaxEditor.Designer.cs
│ ├── TextEditor.csproj
│ ├── TextEditor.csproj.user
│ ├── TextEditor.sln
│ ├── TextEditor.suo
│ └── 程序说明.txt
└── 程序说明.txt
14 directories, 92 files
评论