├── .gitignore ├── Binary ├── FastColoredTextBox.dll ├── FastColoredTextBox.xml ├── TabStrip.dll ├── Tester.exe └── htmlDesc.xml ├── FastColoredTextBox.sln ├── FastColoredTextBox ├── AutocompleteItem.cs ├── AutocompleteMenu.cs ├── Bookmarks.cs ├── Char.cs ├── CommandManager.cs ├── Commands.cs ├── DocumentMap.cs ├── EncodingDetector.cs ├── ExportToHTML.cs ├── ExportToRTF.cs ├── FCTB_key.snk ├── FastColoredTextBox.cs ├── FastColoredTextBox.csproj ├── FastColoredTextBox.resx ├── FileTextSource.cs ├── FindForm.Designer.cs ├── FindForm.cs ├── FindForm.resx ├── GoToForm.Designer.cs ├── GoToForm.cs ├── GoToForm.resx ├── Hints.cs ├── Hotkeys.cs ├── HotkeysEditorForm.Designer.cs ├── HotkeysEditorForm.cs ├── HotkeysEditorForm.resx ├── LimitedStack.cs ├── Line.cs ├── LineNumberFormatting.cs ├── LinesAccessor.cs ├── MacrosManager.cs ├── Place.cs ├── PlatformType.cs ├── Properties │ └── AssemblyInfo.cs ├── Range.cs ├── ReplaceForm.Designer.cs ├── ReplaceForm.cs ├── ReplaceForm.resx ├── Ruler.Designer.cs ├── Ruler.cs ├── Style.cs ├── SyntaxDescriptor.cs ├── SyntaxHighlighter.cs ├── SyntaxHighlighter.cs.old ├── TextSource.cs ├── TypeDescriptor.cs ├── UnfocusablePanel.cs └── VisualMarker.cs ├── FastColoredTextBoxVS2008.sln ├── Help └── FastColoredTextBox_Help.chm ├── README.md ├── Tester ├── AutoIndentCharsSample.Designer.cs ├── AutoIndentCharsSample.cs ├── AutoIndentCharsSample.resx ├── AutoIndentSample.Designer.cs ├── AutoIndentSample.cs ├── AutoIndentSample.resx ├── AutocompleteSample.Designer.cs ├── AutocompleteSample.cs ├── AutocompleteSample.resx ├── AutocompleteSample2.Designer.cs ├── AutocompleteSample2.cs ├── AutocompleteSample2.resx ├── AutocompleteSample3.Designer.cs ├── AutocompleteSample3.cs ├── AutocompleteSample3.resx ├── AutocompleteSample4.Designer.cs ├── AutocompleteSample4.cs ├── AutocompleteSample4.resx ├── BilingualHighlighterSample.Designer.cs ├── BilingualHighlighterSample.cs ├── BilingualHighlighterSample.resx ├── BookmarksSample.Designer.cs ├── BookmarksSample.cs ├── BookmarksSample.resx ├── ConsoleSample.Designer.cs ├── ConsoleSample.cs ├── ConsoleSample.resx ├── CustomFoldingSample.Designer.cs ├── CustomFoldingSample.cs ├── CustomFoldingSample.resx ├── CustomHint.Designer.cs ├── CustomHint.cs ├── CustomHint.resx ├── CustomScrollBarsSample.Designer.cs ├── CustomScrollBarsSample.cs ├── CustomScrollBarsSample.resx ├── CustomStyleSample.Designer.cs ├── CustomStyleSample.cs ├── CustomStyleSample.resx ├── CustomTextSourceSample.Designer.cs ├── CustomTextSourceSample.cs ├── CustomTextSourceSample.resx ├── CustomTextSourceSample2.Designer.cs ├── CustomTextSourceSample2.cs ├── CustomTextSourceSample2.resx ├── CustomWordWrapSample.Designer.cs ├── CustomWordWrapSample.cs ├── CustomWordWrapSample.resx ├── DiffMergeSample.Designer.cs ├── DiffMergeSample.cs ├── DiffMergeSample.resx ├── DocumentMapSample.Designer.cs ├── DocumentMapSample.cs ├── DocumentMapSample.resx ├── DynamicSyntaxHighlighting.Designer.cs ├── DynamicSyntaxHighlighting.cs ├── DynamicSyntaxHighlighting.resx ├── GifImageDrawingSample.Designer.cs ├── GifImageDrawingSample.cs ├── GifImageDrawingSample.resx ├── HintSample.Designer.cs ├── HintSample.cs ├── HintSample.resx ├── HyperlinkSample.Designer.cs ├── HyperlinkSample.cs ├── HyperlinkSample.resx ├── IMEsample.Designer.cs ├── IMEsample.cs ├── IMEsample.resx ├── JokeSample.Designer.cs ├── JokeSample.cs ├── JokeSample.resx ├── LazyLoadingSample.Designer.cs ├── LazyLoadingSample.cs ├── LazyLoadingSample.resx ├── LoggerSample.Designer.cs ├── LoggerSample.cs ├── LoggerSample.resx ├── MacrosSample.Designer.cs ├── MacrosSample.cs ├── MacrosSample.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MarkerToolSample.Designer.cs ├── MarkerToolSample.cs ├── MarkerToolSample.resx ├── OpenTypeFontSample.Designer.cs ├── OpenTypeFontSample.cs ├── OpenTypeFontSample.resx ├── PowerfulCSharpEditor.Designer.cs ├── PowerfulCSharpEditor.cs ├── PowerfulCSharpEditor.resx ├── PowerfulSample.Designer.cs ├── PowerfulSample.cs ├── PowerfulSample.resx ├── PredefinedStylesSample.Designer.cs ├── PredefinedStylesSample.cs ├── PredefinedStylesSample.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReadOnlyBlocksSample.Designer.cs ├── ReadOnlyBlocksSample.cs ├── ReadOnlyBlocksSample.resx ├── Resources │ ├── backward0_16x16.png │ ├── bookmark--plus.png │ ├── box.png │ ├── bye.gif │ ├── class_libraries.png │ ├── edit-padding-top.png │ ├── forward_16x16.png │ ├── layer--minus.png │ ├── layer--plus.png │ ├── lightning.png │ ├── lol.gif │ ├── property.png │ ├── redo_16x16.png │ ├── rolleyes.gif │ ├── sad_16x16.png │ ├── smile_16x16.png │ ├── undo_16x16.png │ └── unsure.gif ├── RulerSample.Designer.cs ├── RulerSample.cs ├── RulerSample.resx ├── Sandbox.Designer.cs ├── Sandbox.cs ├── Sandbox.resx ├── SimplestCodeFoldingSample.Designer.cs ├── SimplestCodeFoldingSample.cs ├── SimplestCodeFoldingSample.resx ├── SimplestSyntaxHighlightingSample.Designer.cs ├── SimplestSyntaxHighlightingSample.cs ├── SimplestSyntaxHighlightingSample.resx ├── SplitSample.Designer.cs ├── SplitSample.cs ├── SplitSample.resx ├── SyntaxHighlightingByXmlDescription.Designer.cs ├── SyntaxHighlightingByXmlDescription.cs ├── SyntaxHighlightingByXmlDescription.resx ├── TabStrip.dll ├── Tester.csproj ├── TooltipSample.Designer.cs ├── TooltipSample.cs ├── TooltipSample.resx ├── VisibleRangeChangedDelayedSample.Designer.cs ├── VisibleRangeChangedDelayedSample.cs ├── VisibleRangeChangedDelayedSample.resx └── htmlDesc.xml ├── TesterVB ├── App.config ├── AutoIndentSample.Designer.vb ├── AutoIndentSample.resx ├── AutoIndentSample.vb ├── AutocompleteSample.Designer.vb ├── AutocompleteSample.resx ├── AutocompleteSample.vb ├── AutocompleteSample2.Designer.vb ├── AutocompleteSample2.resx ├── AutocompleteSample2.vb ├── BookmarksSample.Designer.vb ├── BookmarksSample.resx ├── BookmarksSample.vb ├── ConsoleSample.resx ├── ConsoleSample.vb ├── ConsoleTextBox.vb ├── CustomFoldingSample.vb ├── CustomStyleSample.resx ├── CustomStyleSample.vb ├── DynamicSyntaxHighlighting.vb ├── EllipseStyle.vb ├── GifImageDrawingSample.vb ├── GifImageStyle.vb ├── IMEsample.vb ├── InvisibleCharsRenderer.vb ├── JokeSample.resx ├── JokeSample.vb ├── JokeStyle.vb ├── LazyLoadingSample.resx ├── LazyLoadingSample.vb ├── LoggerSample.vb ├── MainForm.Designer.vb ├── MainForm.resx ├── MainForm.vb ├── MarkerToolSample.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── PowerfulCSharpEditor.designer.vb ├── PowerfulCSharpEditor.resx ├── PowerfulCSharpEditor.vb ├── PowerfulSample.Designer.vb ├── PowerfulSample.resx ├── PowerfulSample.vb ├── Resources │ ├── 99.jpeg │ ├── backward0_16x16.png │ ├── bookmark--plus.png │ ├── box.png │ ├── bye.gif │ ├── class_libraries.png │ ├── edit-padding-top.png │ ├── forward_16x16.png │ ├── layer--minus.png │ ├── layer--plus.png │ ├── lightning.png │ ├── lol.gif │ ├── property.png │ ├── redo_16x16.png │ ├── rolleyes.gif │ ├── sad_16x16.png │ ├── smile_16x16.png │ ├── undo_16x16.png │ └── unsure.gif ├── SimplestCodeFoldingSample.vb ├── SimplestSyntaxHighlightingSample.vb ├── SplitSample.resx ├── SplitSample.vb ├── SyntaxHighlightingByXmlDescription.vb ├── TabStrip.dll ├── TbInfo.vb ├── TesterVB.vbproj ├── TooltipSample.resx ├── TooltipSample.vb ├── VisibleRangeChangedDelayedSample.vb └── htmlDesc.xml └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/.gitignore -------------------------------------------------------------------------------- /Binary/FastColoredTextBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Binary/FastColoredTextBox.dll -------------------------------------------------------------------------------- /Binary/FastColoredTextBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Binary/FastColoredTextBox.xml -------------------------------------------------------------------------------- /Binary/TabStrip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Binary/TabStrip.dll -------------------------------------------------------------------------------- /Binary/Tester.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Binary/Tester.exe -------------------------------------------------------------------------------- /Binary/htmlDesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Binary/htmlDesc.xml -------------------------------------------------------------------------------- /FastColoredTextBox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox.sln -------------------------------------------------------------------------------- /FastColoredTextBox/AutocompleteItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/AutocompleteItem.cs -------------------------------------------------------------------------------- /FastColoredTextBox/AutocompleteMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/AutocompleteMenu.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Bookmarks.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Char.cs -------------------------------------------------------------------------------- /FastColoredTextBox/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/CommandManager.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Commands.cs -------------------------------------------------------------------------------- /FastColoredTextBox/DocumentMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/DocumentMap.cs -------------------------------------------------------------------------------- /FastColoredTextBox/EncodingDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/EncodingDetector.cs -------------------------------------------------------------------------------- /FastColoredTextBox/ExportToHTML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/ExportToHTML.cs -------------------------------------------------------------------------------- /FastColoredTextBox/ExportToRTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/ExportToRTF.cs -------------------------------------------------------------------------------- /FastColoredTextBox/FCTB_key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FCTB_key.snk -------------------------------------------------------------------------------- /FastColoredTextBox/FastColoredTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FastColoredTextBox.cs -------------------------------------------------------------------------------- /FastColoredTextBox/FastColoredTextBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FastColoredTextBox.csproj -------------------------------------------------------------------------------- /FastColoredTextBox/FastColoredTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FastColoredTextBox.resx -------------------------------------------------------------------------------- /FastColoredTextBox/FileTextSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FileTextSource.cs -------------------------------------------------------------------------------- /FastColoredTextBox/FindForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FindForm.Designer.cs -------------------------------------------------------------------------------- /FastColoredTextBox/FindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FindForm.cs -------------------------------------------------------------------------------- /FastColoredTextBox/FindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/FindForm.resx -------------------------------------------------------------------------------- /FastColoredTextBox/GoToForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/GoToForm.Designer.cs -------------------------------------------------------------------------------- /FastColoredTextBox/GoToForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/GoToForm.cs -------------------------------------------------------------------------------- /FastColoredTextBox/GoToForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/GoToForm.resx -------------------------------------------------------------------------------- /FastColoredTextBox/Hints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Hints.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Hotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Hotkeys.cs -------------------------------------------------------------------------------- /FastColoredTextBox/HotkeysEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/HotkeysEditorForm.Designer.cs -------------------------------------------------------------------------------- /FastColoredTextBox/HotkeysEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/HotkeysEditorForm.cs -------------------------------------------------------------------------------- /FastColoredTextBox/HotkeysEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/HotkeysEditorForm.resx -------------------------------------------------------------------------------- /FastColoredTextBox/LimitedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/LimitedStack.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Line.cs -------------------------------------------------------------------------------- /FastColoredTextBox/LineNumberFormatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/LineNumberFormatting.cs -------------------------------------------------------------------------------- /FastColoredTextBox/LinesAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/LinesAccessor.cs -------------------------------------------------------------------------------- /FastColoredTextBox/MacrosManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/MacrosManager.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Place.cs -------------------------------------------------------------------------------- /FastColoredTextBox/PlatformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/PlatformType.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Range.cs -------------------------------------------------------------------------------- /FastColoredTextBox/ReplaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/ReplaceForm.Designer.cs -------------------------------------------------------------------------------- /FastColoredTextBox/ReplaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/ReplaceForm.cs -------------------------------------------------------------------------------- /FastColoredTextBox/ReplaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/ReplaceForm.resx -------------------------------------------------------------------------------- /FastColoredTextBox/Ruler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Ruler.Designer.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Ruler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Ruler.cs -------------------------------------------------------------------------------- /FastColoredTextBox/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/Style.cs -------------------------------------------------------------------------------- /FastColoredTextBox/SyntaxDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/SyntaxDescriptor.cs -------------------------------------------------------------------------------- /FastColoredTextBox/SyntaxHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/SyntaxHighlighter.cs -------------------------------------------------------------------------------- /FastColoredTextBox/SyntaxHighlighter.cs.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/SyntaxHighlighter.cs.old -------------------------------------------------------------------------------- /FastColoredTextBox/TextSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/TextSource.cs -------------------------------------------------------------------------------- /FastColoredTextBox/TypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/TypeDescriptor.cs -------------------------------------------------------------------------------- /FastColoredTextBox/UnfocusablePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/UnfocusablePanel.cs -------------------------------------------------------------------------------- /FastColoredTextBox/VisualMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBox/VisualMarker.cs -------------------------------------------------------------------------------- /FastColoredTextBoxVS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/FastColoredTextBoxVS2008.sln -------------------------------------------------------------------------------- /Help/FastColoredTextBox_Help.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Help/FastColoredTextBox_Help.chm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/README.md -------------------------------------------------------------------------------- /Tester/AutoIndentCharsSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutoIndentCharsSample.Designer.cs -------------------------------------------------------------------------------- /Tester/AutoIndentCharsSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutoIndentCharsSample.cs -------------------------------------------------------------------------------- /Tester/AutoIndentCharsSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutoIndentCharsSample.resx -------------------------------------------------------------------------------- /Tester/AutoIndentSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutoIndentSample.Designer.cs -------------------------------------------------------------------------------- /Tester/AutoIndentSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutoIndentSample.cs -------------------------------------------------------------------------------- /Tester/AutoIndentSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutoIndentSample.resx -------------------------------------------------------------------------------- /Tester/AutocompleteSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample.Designer.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample.resx -------------------------------------------------------------------------------- /Tester/AutocompleteSample2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample2.Designer.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample2.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample2.resx -------------------------------------------------------------------------------- /Tester/AutocompleteSample3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample3.Designer.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample3.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample3.resx -------------------------------------------------------------------------------- /Tester/AutocompleteSample4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample4.Designer.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample4.cs -------------------------------------------------------------------------------- /Tester/AutocompleteSample4.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/AutocompleteSample4.resx -------------------------------------------------------------------------------- /Tester/BilingualHighlighterSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/BilingualHighlighterSample.Designer.cs -------------------------------------------------------------------------------- /Tester/BilingualHighlighterSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/BilingualHighlighterSample.cs -------------------------------------------------------------------------------- /Tester/BilingualHighlighterSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/BilingualHighlighterSample.resx -------------------------------------------------------------------------------- /Tester/BookmarksSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/BookmarksSample.Designer.cs -------------------------------------------------------------------------------- /Tester/BookmarksSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/BookmarksSample.cs -------------------------------------------------------------------------------- /Tester/BookmarksSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/BookmarksSample.resx -------------------------------------------------------------------------------- /Tester/ConsoleSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/ConsoleSample.Designer.cs -------------------------------------------------------------------------------- /Tester/ConsoleSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/ConsoleSample.cs -------------------------------------------------------------------------------- /Tester/ConsoleSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/ConsoleSample.resx -------------------------------------------------------------------------------- /Tester/CustomFoldingSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomFoldingSample.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomFoldingSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomFoldingSample.cs -------------------------------------------------------------------------------- /Tester/CustomFoldingSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomFoldingSample.resx -------------------------------------------------------------------------------- /Tester/CustomHint.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomHint.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomHint.cs -------------------------------------------------------------------------------- /Tester/CustomHint.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomHint.resx -------------------------------------------------------------------------------- /Tester/CustomScrollBarsSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomScrollBarsSample.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomScrollBarsSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomScrollBarsSample.cs -------------------------------------------------------------------------------- /Tester/CustomScrollBarsSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomScrollBarsSample.resx -------------------------------------------------------------------------------- /Tester/CustomStyleSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomStyleSample.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomStyleSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomStyleSample.cs -------------------------------------------------------------------------------- /Tester/CustomStyleSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomStyleSample.resx -------------------------------------------------------------------------------- /Tester/CustomTextSourceSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomTextSourceSample.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomTextSourceSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomTextSourceSample.cs -------------------------------------------------------------------------------- /Tester/CustomTextSourceSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomTextSourceSample.resx -------------------------------------------------------------------------------- /Tester/CustomTextSourceSample2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomTextSourceSample2.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomTextSourceSample2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomTextSourceSample2.cs -------------------------------------------------------------------------------- /Tester/CustomTextSourceSample2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomTextSourceSample2.resx -------------------------------------------------------------------------------- /Tester/CustomWordWrapSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomWordWrapSample.Designer.cs -------------------------------------------------------------------------------- /Tester/CustomWordWrapSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomWordWrapSample.cs -------------------------------------------------------------------------------- /Tester/CustomWordWrapSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/CustomWordWrapSample.resx -------------------------------------------------------------------------------- /Tester/DiffMergeSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DiffMergeSample.Designer.cs -------------------------------------------------------------------------------- /Tester/DiffMergeSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DiffMergeSample.cs -------------------------------------------------------------------------------- /Tester/DiffMergeSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DiffMergeSample.resx -------------------------------------------------------------------------------- /Tester/DocumentMapSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DocumentMapSample.Designer.cs -------------------------------------------------------------------------------- /Tester/DocumentMapSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DocumentMapSample.cs -------------------------------------------------------------------------------- /Tester/DocumentMapSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DocumentMapSample.resx -------------------------------------------------------------------------------- /Tester/DynamicSyntaxHighlighting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DynamicSyntaxHighlighting.Designer.cs -------------------------------------------------------------------------------- /Tester/DynamicSyntaxHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DynamicSyntaxHighlighting.cs -------------------------------------------------------------------------------- /Tester/DynamicSyntaxHighlighting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/DynamicSyntaxHighlighting.resx -------------------------------------------------------------------------------- /Tester/GifImageDrawingSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/GifImageDrawingSample.Designer.cs -------------------------------------------------------------------------------- /Tester/GifImageDrawingSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/GifImageDrawingSample.cs -------------------------------------------------------------------------------- /Tester/GifImageDrawingSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/GifImageDrawingSample.resx -------------------------------------------------------------------------------- /Tester/HintSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/HintSample.Designer.cs -------------------------------------------------------------------------------- /Tester/HintSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/HintSample.cs -------------------------------------------------------------------------------- /Tester/HintSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/HintSample.resx -------------------------------------------------------------------------------- /Tester/HyperlinkSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/HyperlinkSample.Designer.cs -------------------------------------------------------------------------------- /Tester/HyperlinkSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/HyperlinkSample.cs -------------------------------------------------------------------------------- /Tester/HyperlinkSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/HyperlinkSample.resx -------------------------------------------------------------------------------- /Tester/IMEsample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/IMEsample.Designer.cs -------------------------------------------------------------------------------- /Tester/IMEsample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/IMEsample.cs -------------------------------------------------------------------------------- /Tester/IMEsample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/IMEsample.resx -------------------------------------------------------------------------------- /Tester/JokeSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/JokeSample.Designer.cs -------------------------------------------------------------------------------- /Tester/JokeSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/JokeSample.cs -------------------------------------------------------------------------------- /Tester/JokeSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/JokeSample.resx -------------------------------------------------------------------------------- /Tester/LazyLoadingSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/LazyLoadingSample.Designer.cs -------------------------------------------------------------------------------- /Tester/LazyLoadingSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/LazyLoadingSample.cs -------------------------------------------------------------------------------- /Tester/LazyLoadingSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/LazyLoadingSample.resx -------------------------------------------------------------------------------- /Tester/LoggerSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/LoggerSample.Designer.cs -------------------------------------------------------------------------------- /Tester/LoggerSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/LoggerSample.cs -------------------------------------------------------------------------------- /Tester/LoggerSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/LoggerSample.resx -------------------------------------------------------------------------------- /Tester/MacrosSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MacrosSample.Designer.cs -------------------------------------------------------------------------------- /Tester/MacrosSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MacrosSample.cs -------------------------------------------------------------------------------- /Tester/MacrosSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MacrosSample.resx -------------------------------------------------------------------------------- /Tester/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MainForm.Designer.cs -------------------------------------------------------------------------------- /Tester/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MainForm.cs -------------------------------------------------------------------------------- /Tester/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MainForm.resx -------------------------------------------------------------------------------- /Tester/MarkerToolSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MarkerToolSample.Designer.cs -------------------------------------------------------------------------------- /Tester/MarkerToolSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MarkerToolSample.cs -------------------------------------------------------------------------------- /Tester/MarkerToolSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/MarkerToolSample.resx -------------------------------------------------------------------------------- /Tester/OpenTypeFontSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/OpenTypeFontSample.Designer.cs -------------------------------------------------------------------------------- /Tester/OpenTypeFontSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/OpenTypeFontSample.cs -------------------------------------------------------------------------------- /Tester/OpenTypeFontSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/OpenTypeFontSample.resx -------------------------------------------------------------------------------- /Tester/PowerfulCSharpEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PowerfulCSharpEditor.Designer.cs -------------------------------------------------------------------------------- /Tester/PowerfulCSharpEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PowerfulCSharpEditor.cs -------------------------------------------------------------------------------- /Tester/PowerfulCSharpEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PowerfulCSharpEditor.resx -------------------------------------------------------------------------------- /Tester/PowerfulSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PowerfulSample.Designer.cs -------------------------------------------------------------------------------- /Tester/PowerfulSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PowerfulSample.cs -------------------------------------------------------------------------------- /Tester/PowerfulSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PowerfulSample.resx -------------------------------------------------------------------------------- /Tester/PredefinedStylesSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PredefinedStylesSample.Designer.cs -------------------------------------------------------------------------------- /Tester/PredefinedStylesSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PredefinedStylesSample.cs -------------------------------------------------------------------------------- /Tester/PredefinedStylesSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/PredefinedStylesSample.resx -------------------------------------------------------------------------------- /Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Program.cs -------------------------------------------------------------------------------- /Tester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tester/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tester/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Properties/Resources.resx -------------------------------------------------------------------------------- /Tester/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tester/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Properties/Settings.settings -------------------------------------------------------------------------------- /Tester/ReadOnlyBlocksSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/ReadOnlyBlocksSample.Designer.cs -------------------------------------------------------------------------------- /Tester/ReadOnlyBlocksSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/ReadOnlyBlocksSample.cs -------------------------------------------------------------------------------- /Tester/ReadOnlyBlocksSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/ReadOnlyBlocksSample.resx -------------------------------------------------------------------------------- /Tester/Resources/backward0_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/backward0_16x16.png -------------------------------------------------------------------------------- /Tester/Resources/bookmark--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/bookmark--plus.png -------------------------------------------------------------------------------- /Tester/Resources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/box.png -------------------------------------------------------------------------------- /Tester/Resources/bye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/bye.gif -------------------------------------------------------------------------------- /Tester/Resources/class_libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/class_libraries.png -------------------------------------------------------------------------------- /Tester/Resources/edit-padding-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/edit-padding-top.png -------------------------------------------------------------------------------- /Tester/Resources/forward_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/forward_16x16.png -------------------------------------------------------------------------------- /Tester/Resources/layer--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/layer--minus.png -------------------------------------------------------------------------------- /Tester/Resources/layer--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/layer--plus.png -------------------------------------------------------------------------------- /Tester/Resources/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/lightning.png -------------------------------------------------------------------------------- /Tester/Resources/lol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/lol.gif -------------------------------------------------------------------------------- /Tester/Resources/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/property.png -------------------------------------------------------------------------------- /Tester/Resources/redo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/redo_16x16.png -------------------------------------------------------------------------------- /Tester/Resources/rolleyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/rolleyes.gif -------------------------------------------------------------------------------- /Tester/Resources/sad_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/sad_16x16.png -------------------------------------------------------------------------------- /Tester/Resources/smile_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/smile_16x16.png -------------------------------------------------------------------------------- /Tester/Resources/undo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/undo_16x16.png -------------------------------------------------------------------------------- /Tester/Resources/unsure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Resources/unsure.gif -------------------------------------------------------------------------------- /Tester/RulerSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/RulerSample.Designer.cs -------------------------------------------------------------------------------- /Tester/RulerSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/RulerSample.cs -------------------------------------------------------------------------------- /Tester/RulerSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/RulerSample.resx -------------------------------------------------------------------------------- /Tester/Sandbox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Sandbox.Designer.cs -------------------------------------------------------------------------------- /Tester/Sandbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Sandbox.cs -------------------------------------------------------------------------------- /Tester/Sandbox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Sandbox.resx -------------------------------------------------------------------------------- /Tester/SimplestCodeFoldingSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SimplestCodeFoldingSample.Designer.cs -------------------------------------------------------------------------------- /Tester/SimplestCodeFoldingSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SimplestCodeFoldingSample.cs -------------------------------------------------------------------------------- /Tester/SimplestCodeFoldingSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SimplestCodeFoldingSample.resx -------------------------------------------------------------------------------- /Tester/SimplestSyntaxHighlightingSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SimplestSyntaxHighlightingSample.Designer.cs -------------------------------------------------------------------------------- /Tester/SimplestSyntaxHighlightingSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SimplestSyntaxHighlightingSample.cs -------------------------------------------------------------------------------- /Tester/SimplestSyntaxHighlightingSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SimplestSyntaxHighlightingSample.resx -------------------------------------------------------------------------------- /Tester/SplitSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SplitSample.Designer.cs -------------------------------------------------------------------------------- /Tester/SplitSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SplitSample.cs -------------------------------------------------------------------------------- /Tester/SplitSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SplitSample.resx -------------------------------------------------------------------------------- /Tester/SyntaxHighlightingByXmlDescription.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SyntaxHighlightingByXmlDescription.Designer.cs -------------------------------------------------------------------------------- /Tester/SyntaxHighlightingByXmlDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SyntaxHighlightingByXmlDescription.cs -------------------------------------------------------------------------------- /Tester/SyntaxHighlightingByXmlDescription.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/SyntaxHighlightingByXmlDescription.resx -------------------------------------------------------------------------------- /Tester/TabStrip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/TabStrip.dll -------------------------------------------------------------------------------- /Tester/Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/Tester.csproj -------------------------------------------------------------------------------- /Tester/TooltipSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/TooltipSample.Designer.cs -------------------------------------------------------------------------------- /Tester/TooltipSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/TooltipSample.cs -------------------------------------------------------------------------------- /Tester/TooltipSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/TooltipSample.resx -------------------------------------------------------------------------------- /Tester/VisibleRangeChangedDelayedSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/VisibleRangeChangedDelayedSample.Designer.cs -------------------------------------------------------------------------------- /Tester/VisibleRangeChangedDelayedSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/VisibleRangeChangedDelayedSample.cs -------------------------------------------------------------------------------- /Tester/VisibleRangeChangedDelayedSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/VisibleRangeChangedDelayedSample.resx -------------------------------------------------------------------------------- /Tester/htmlDesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/Tester/htmlDesc.xml -------------------------------------------------------------------------------- /TesterVB/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/App.config -------------------------------------------------------------------------------- /TesterVB/AutoIndentSample.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutoIndentSample.Designer.vb -------------------------------------------------------------------------------- /TesterVB/AutoIndentSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutoIndentSample.resx -------------------------------------------------------------------------------- /TesterVB/AutoIndentSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutoIndentSample.vb -------------------------------------------------------------------------------- /TesterVB/AutocompleteSample.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutocompleteSample.Designer.vb -------------------------------------------------------------------------------- /TesterVB/AutocompleteSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutocompleteSample.resx -------------------------------------------------------------------------------- /TesterVB/AutocompleteSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutocompleteSample.vb -------------------------------------------------------------------------------- /TesterVB/AutocompleteSample2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutocompleteSample2.Designer.vb -------------------------------------------------------------------------------- /TesterVB/AutocompleteSample2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutocompleteSample2.resx -------------------------------------------------------------------------------- /TesterVB/AutocompleteSample2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/AutocompleteSample2.vb -------------------------------------------------------------------------------- /TesterVB/BookmarksSample.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/BookmarksSample.Designer.vb -------------------------------------------------------------------------------- /TesterVB/BookmarksSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/BookmarksSample.resx -------------------------------------------------------------------------------- /TesterVB/BookmarksSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/BookmarksSample.vb -------------------------------------------------------------------------------- /TesterVB/ConsoleSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/ConsoleSample.resx -------------------------------------------------------------------------------- /TesterVB/ConsoleSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/ConsoleSample.vb -------------------------------------------------------------------------------- /TesterVB/ConsoleTextBox.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/ConsoleTextBox.vb -------------------------------------------------------------------------------- /TesterVB/CustomFoldingSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/CustomFoldingSample.vb -------------------------------------------------------------------------------- /TesterVB/CustomStyleSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/CustomStyleSample.resx -------------------------------------------------------------------------------- /TesterVB/CustomStyleSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/CustomStyleSample.vb -------------------------------------------------------------------------------- /TesterVB/DynamicSyntaxHighlighting.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/DynamicSyntaxHighlighting.vb -------------------------------------------------------------------------------- /TesterVB/EllipseStyle.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/EllipseStyle.vb -------------------------------------------------------------------------------- /TesterVB/GifImageDrawingSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/GifImageDrawingSample.vb -------------------------------------------------------------------------------- /TesterVB/GifImageStyle.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/GifImageStyle.vb -------------------------------------------------------------------------------- /TesterVB/IMEsample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/IMEsample.vb -------------------------------------------------------------------------------- /TesterVB/InvisibleCharsRenderer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/InvisibleCharsRenderer.vb -------------------------------------------------------------------------------- /TesterVB/JokeSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/JokeSample.resx -------------------------------------------------------------------------------- /TesterVB/JokeSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/JokeSample.vb -------------------------------------------------------------------------------- /TesterVB/JokeStyle.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/JokeStyle.vb -------------------------------------------------------------------------------- /TesterVB/LazyLoadingSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/LazyLoadingSample.resx -------------------------------------------------------------------------------- /TesterVB/LazyLoadingSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/LazyLoadingSample.vb -------------------------------------------------------------------------------- /TesterVB/LoggerSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/LoggerSample.vb -------------------------------------------------------------------------------- /TesterVB/MainForm.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/MainForm.Designer.vb -------------------------------------------------------------------------------- /TesterVB/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/MainForm.resx -------------------------------------------------------------------------------- /TesterVB/MainForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/MainForm.vb -------------------------------------------------------------------------------- /TesterVB/MarkerToolSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/MarkerToolSample.vb -------------------------------------------------------------------------------- /TesterVB/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /TesterVB/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/Application.myapp -------------------------------------------------------------------------------- /TesterVB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /TesterVB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /TesterVB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/Resources.resx -------------------------------------------------------------------------------- /TesterVB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /TesterVB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/My Project/Settings.settings -------------------------------------------------------------------------------- /TesterVB/PowerfulCSharpEditor.designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/PowerfulCSharpEditor.designer.vb -------------------------------------------------------------------------------- /TesterVB/PowerfulCSharpEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/PowerfulCSharpEditor.resx -------------------------------------------------------------------------------- /TesterVB/PowerfulCSharpEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/PowerfulCSharpEditor.vb -------------------------------------------------------------------------------- /TesterVB/PowerfulSample.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/PowerfulSample.Designer.vb -------------------------------------------------------------------------------- /TesterVB/PowerfulSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/PowerfulSample.resx -------------------------------------------------------------------------------- /TesterVB/PowerfulSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/PowerfulSample.vb -------------------------------------------------------------------------------- /TesterVB/Resources/99.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/99.jpeg -------------------------------------------------------------------------------- /TesterVB/Resources/backward0_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/backward0_16x16.png -------------------------------------------------------------------------------- /TesterVB/Resources/bookmark--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/bookmark--plus.png -------------------------------------------------------------------------------- /TesterVB/Resources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/box.png -------------------------------------------------------------------------------- /TesterVB/Resources/bye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/bye.gif -------------------------------------------------------------------------------- /TesterVB/Resources/class_libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/class_libraries.png -------------------------------------------------------------------------------- /TesterVB/Resources/edit-padding-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/edit-padding-top.png -------------------------------------------------------------------------------- /TesterVB/Resources/forward_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/forward_16x16.png -------------------------------------------------------------------------------- /TesterVB/Resources/layer--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/layer--minus.png -------------------------------------------------------------------------------- /TesterVB/Resources/layer--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/layer--plus.png -------------------------------------------------------------------------------- /TesterVB/Resources/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/lightning.png -------------------------------------------------------------------------------- /TesterVB/Resources/lol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/lol.gif -------------------------------------------------------------------------------- /TesterVB/Resources/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/property.png -------------------------------------------------------------------------------- /TesterVB/Resources/redo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/redo_16x16.png -------------------------------------------------------------------------------- /TesterVB/Resources/rolleyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/rolleyes.gif -------------------------------------------------------------------------------- /TesterVB/Resources/sad_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/sad_16x16.png -------------------------------------------------------------------------------- /TesterVB/Resources/smile_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/smile_16x16.png -------------------------------------------------------------------------------- /TesterVB/Resources/undo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/undo_16x16.png -------------------------------------------------------------------------------- /TesterVB/Resources/unsure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/Resources/unsure.gif -------------------------------------------------------------------------------- /TesterVB/SimplestCodeFoldingSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/SimplestCodeFoldingSample.vb -------------------------------------------------------------------------------- /TesterVB/SimplestSyntaxHighlightingSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/SimplestSyntaxHighlightingSample.vb -------------------------------------------------------------------------------- /TesterVB/SplitSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/SplitSample.resx -------------------------------------------------------------------------------- /TesterVB/SplitSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/SplitSample.vb -------------------------------------------------------------------------------- /TesterVB/SyntaxHighlightingByXmlDescription.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/SyntaxHighlightingByXmlDescription.vb -------------------------------------------------------------------------------- /TesterVB/TabStrip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/TabStrip.dll -------------------------------------------------------------------------------- /TesterVB/TbInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/TbInfo.vb -------------------------------------------------------------------------------- /TesterVB/TesterVB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/TesterVB.vbproj -------------------------------------------------------------------------------- /TesterVB/TooltipSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/TooltipSample.resx -------------------------------------------------------------------------------- /TesterVB/TooltipSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/TooltipSample.vb -------------------------------------------------------------------------------- /TesterVB/VisibleRangeChangedDelayedSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/VisibleRangeChangedDelayedSample.vb -------------------------------------------------------------------------------- /TesterVB/htmlDesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/TesterVB/htmlDesc.xml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelTorgashov/FastColoredTextBox/HEAD/license.txt --------------------------------------------------------------------------------