嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
ICSharpCode.TextEditor编辑框
.
├── ICSharpCode.TextEditor
│ ├── Configuration
│ │ └── AssemblyInfo.cs
│ ├── ICSharpCode.TextEditor.csproj
│ ├── Migrated rules for ICSharpCode.TextEditor.ruleset
│ ├── Resources
│ │ ├── ASPX.xshd
│ │ ├── BAT-Mode.xshd
│ │ ├── Boo.xshd
│ │ ├── CPP-Mode.xshd
│ │ ├── CSharp-Mode.xshd
│ │ ├── Coco-Mode.xshd
│ │ ├── HTML-Mode.xshd
│ │ ├── ICSharpCode.TextEditor.snk
│ │ ├── Java-Mode.xshd
│ │ ├── JavaScript-Mode.xshd
│ │ ├── Mode.xsd
│ │ ├── PHP-Mode.xshd
│ │ ├── Patch-Mode.xshd
│ │ ├── RightArrow.cur
│ │ ├── SyntaxModes.xml
│ │ ├── Tex-Mode.xshd
│ │ ├── TextEditorControl.bmp
│ │ ├── VBNET-Mode.xshd
│ │ └── XML-Mode.xshd
│ └── Src
│ ├── Actions
│ │ ├── BookmarkActions.cs
│ │ ├── CaretActions.cs
│ │ ├── ClipBoardActions.cs
│ │ ├── FoldActions.cs
│ │ ├── FormatActions.cs
│ │ ├── HomeEndActions.cs
│ │ ├── IEditAction.cs
│ │ ├── MiscActions.cs
│ │ └── SelectionActions.cs
│ ├── Document
│ │ ├── AbstractSegment.cs
│ │ ├── BookmarkManager
│ │ │ ├── Bookmark.cs
│ │ │ ├── BookmarkEventHandler.cs
│ │ │ ├── BookmarkManager.cs
│ │ │ └── BookmarkManagerMemento.cs
│ │ ├── DefaultDocument.cs
│ │ ├── DefaultTextEditorProperties.cs
│ │ ├── DocumentEventArgs.cs
│ │ ├── DocumentFactory.cs
│ │ ├── FoldingStrategy
│ │ │ ├── FoldMarker.cs
│ │ │ ├── FoldingManager.cs
│ │ │ ├── IFoldingStrategy.cs
│ │ │ └── IndentFoldingStrategy.cs
│ │ ├── FormattingStrategy
│ │ │ ├── DefaultFormattingStrategy.cs
│ │ │ └── IFormattingStrategy.cs
│ │ ├── HighlightingStrategy
│ │ │ ├── DefaultHighlightingStrategy.cs
│ │ │ ├── FontContainer.cs
│ │ │ ├── HighlightBackground.cs
│ │ │ ├── HighlightColor.cs
│ │ │ ├── HighlightInfo.cs
│ │ │ ├── HighlightRuleSet.cs
│ │ │ ├── HighlightingColorNotFoundException.cs
│ │ │ ├── HighlightingDefinitionInvalidException.cs
│ │ │ ├── HighlightingDefinitionParser.cs
│ │ │ ├── HighlightingManager.cs
│ │ │ ├── HighlightingStrategyFactory.cs
│ │ │ ├── IHighlightingStrategy.cs
│ │ │ ├── NextMarker.cs
│ │ │ ├── PrevMarker.cs
│ │ │ ├── Span.cs
│ │ │ ├── SpanStack.cs
│ │ │ ├── SyntaxModes
│ │ │ │ ├── FileSyntaxModeProvider.cs
│ │ │ │ ├── ISyntaxModeFileProvider.cs
│ │ │ │ ├── ResourceSyntaxModeProvider.cs
│ │ │ │ └── SyntaxMode.cs
│ │ │ └── TextWord.cs
│ │ ├── IDocument.cs
│ │ ├── ISegment.cs
│ │ ├── ITextEditorProperties.cs
│ │ ├── LineManager
│ │ │ ├── DeferredEventList.cs
│ │ │ ├── LineManager.cs
│ │ │ ├── LineManagerEventArgs.cs
│ │ │ ├── LineSegment.cs
│ │ │ └── LineSegmentTree.cs
│ │ ├── MarkerStrategy
│ │ │ ├── MarkerStrategy.cs
│ │ │ └── TextMarker.cs
│ │ ├── Selection
│ │ │ ├── ColumnRange.cs
│ │ │ ├── DefaultSelection.cs
│ │ │ ├── ISelection.cs
│ │ │ └── SelectionManager.cs
│ │ ├── TextAnchor.cs
│ │ ├── TextBufferStrategy
│ │ │ ├── GapTextBufferStrategy.cs
│ │ │ ├── ITextBufferStrategy.cs
│ │ │ └── StringTextBufferStrategy.cs
│ │ ├── TextLocation.cs
│ │ └── TextUtilities.cs
│ ├── Gui
│ │ ├── AbstractMargin.cs
│ │ ├── BracketHighlighter.cs
│ │ ├── BrushRegistry.cs
│ │ ├── Caret.cs
│ │ ├── ClassDiagram1.cd
│ │ ├── CompletionWindow
│ │ │ ├── AbstractCompletionWindow.cs
│ │ │ ├── CodeCompletionListView.cs
│ │ │ ├── CodeCompletionWindow.cs
│ │ │ ├── DeclarationViewWindow.cs
│ │ │ ├── ICompletionData.cs
│ │ │ └── ICompletionDataProvider.cs
│ │ ├── DrawableLine.cs
│ │ ├── FoldMargin.cs
│ │ ├── GutterMargin.cs
│ │ ├── HRuler.cs
│ │ ├── IconBarMargin.cs
│ │ ├── Ime.cs
│ │ ├── InsightWindow
│ │ │ ├── IInsightDataProvider.cs
│ │ │ └── InsightWindow.cs
│ │ ├── TextArea.cs
│ │ ├── TextAreaClipboardHandler.cs
│ │ ├── TextAreaControl.cs
│ │ ├── TextAreaDragDropHandler.cs
│ │ ├── TextAreaMouseHandler.cs
│ │ ├── TextAreaUpdate.cs
│ │ ├── TextEditorControl.cs
│ │ ├── TextEditorControlBase.cs
│ │ ├── TextView.cs
│ │ └── ToolTipRequestEventArgs.cs
│ ├── Undo
│ │ ├── IUndoableOperation.cs
│ │ ├── UndoQueue.cs
│ │ ├── UndoStack.cs
│ │ ├── UndoableDelete.cs
│ │ ├── UndoableInsert.cs
│ │ └── UndoableReplace.cs
│ └── Util
│ ├── AugmentableRedBlackTree.cs
│ ├── CheckedList.cs
│ ├── FileReader.cs
│ ├── LoggingService.cs
│ ├── LookupTable.cs
│ ├── MouseWheelHandler.cs
│ ├── RedBlackTreeIterator.cs
│ ├── RtfWriter.cs
│ ├── TextUtility.cs
│ ├── TipPainter.cs
│ ├── TipPainterTools.cs
│ ├── TipSection.cs
│ ├── TipSpacer.cs
│ ├── TipSplitter.cs
│ ├── TipText.cs
│ └── WeakCollection.cs
├── ICSharpCode.TextEditor_Bingosoft.Workflow.XmlPad.rar
├── XmlPad
│ ├── App.config
│ ├── AssemblyInfo.cs
│ ├── FindAndReplaceForm.cs
│ ├── FindAndReplaceForm.designer.cs
│ ├── FindAndReplaceForm.resx
│ ├── Globals.cs
│ ├── InputBox.cs
│ ├── InputBox.resx
│ ├── Properties
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ ├── SharpPad.ico
│ ├── XmlEditor.Designer.cs
│ ├── XmlEditor.cs
│ ├── XmlEditor.resx
│ ├── XmlFoldingStrategy.cs
│ └── XmlPad.csproj
└── XmlPad.sln
22 directories, 156 files