├── HTMLDataGridViewTest ├── HTMLDataGridViewTest.sln ├── HTMLDataGridViewTest.v12.suo ├── HTMLDataGridViewTest │ ├── 3rdParty │ │ ├── HtmlRenderer.WinForms │ │ │ ├── Adapters │ │ │ │ ├── BrushAdapter.cs │ │ │ │ ├── ContextMenuAdapter.cs │ │ │ │ ├── ControlAdapter.cs │ │ │ │ ├── FontAdapter.cs │ │ │ │ ├── FontFamilyAdapter.cs │ │ │ │ ├── GraphicsAdapter.cs │ │ │ │ ├── GraphicsPathAdapter.cs │ │ │ │ ├── ImageAdapter.cs │ │ │ │ ├── PenAdapter.cs │ │ │ │ └── WinFormsAdapter.cs │ │ │ ├── HtmlContainer.cs │ │ │ ├── HtmlLabel.cs │ │ │ ├── HtmlPanel.cs │ │ │ ├── HtmlRender.cs │ │ │ ├── HtmlRenderer.WinForms.csproj │ │ │ ├── HtmlToolTip.cs │ │ │ ├── Utilities │ │ │ │ ├── ClipboardHelper.cs │ │ │ │ ├── Utils.cs │ │ │ │ └── Win32Utils.cs │ │ │ ├── bin │ │ │ │ └── DebugNet20 │ │ │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ │ │ ├── HtmlRenderer.WinForms.pdb │ │ │ │ │ ├── HtmlRenderer.dll │ │ │ │ │ └── HtmlRenderer.pdb │ │ │ └── obj │ │ │ │ └── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── HtmlRenderer.WinForms.csproj.FileListAbsolute.txt │ │ │ │ ├── HtmlRenderer.WinForms.csprojResolveAssemblyReference.cache │ │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ │ ├── HtmlRenderer.WinForms.pdb │ │ │ │ └── build.force │ │ ├── HtmlRenderer │ │ │ ├── Adapters │ │ │ │ ├── Entities │ │ │ │ │ ├── RColor.cs │ │ │ │ │ ├── RDashStyle.cs │ │ │ │ │ ├── RFontStyle.cs │ │ │ │ │ ├── RKeyEvent.cs │ │ │ │ │ ├── RMouseEvent.cs │ │ │ │ │ ├── RPoint.cs │ │ │ │ │ ├── RRect.cs │ │ │ │ │ └── RSize.cs │ │ │ │ ├── RAdapter.cs │ │ │ │ ├── RBrush.cs │ │ │ │ ├── RContextMenu.cs │ │ │ │ ├── RControl.cs │ │ │ │ ├── RFont.cs │ │ │ │ ├── RFontFamily.cs │ │ │ │ ├── RGraphics.cs │ │ │ │ ├── RGraphicsPath.cs │ │ │ │ ├── RImage.cs │ │ │ │ └── RPen.cs │ │ │ ├── Core │ │ │ │ ├── CssData.cs │ │ │ │ ├── CssDefaults.cs │ │ │ │ ├── Dom │ │ │ │ │ ├── Border.cs │ │ │ │ │ ├── CssBox.cs │ │ │ │ │ ├── CssBoxFrame.cs │ │ │ │ │ ├── CssBoxHr.cs │ │ │ │ │ ├── CssBoxImage.cs │ │ │ │ │ ├── CssBoxProperties.cs │ │ │ │ │ ├── CssLayoutEngine.cs │ │ │ │ │ ├── CssLayoutEngineTable.cs │ │ │ │ │ ├── CssLength.cs │ │ │ │ │ ├── CssLineBox.cs │ │ │ │ │ ├── CssRect.cs │ │ │ │ │ ├── CssRectImage.cs │ │ │ │ │ ├── CssRectWord.cs │ │ │ │ │ ├── CssSpacingBox.cs │ │ │ │ │ ├── CssUnit.cs │ │ │ │ │ ├── HoverBoxBlock.cs │ │ │ │ │ └── HtmlTag.cs │ │ │ │ ├── Entities │ │ │ │ │ ├── CssBlock.cs │ │ │ │ │ ├── CssBlockSelectorItem.cs │ │ │ │ │ ├── HtmlGenerationStyle.cs │ │ │ │ │ ├── HtmlImageLoadEventArgs.cs │ │ │ │ │ ├── HtmlLinkClickedEventArgs.cs │ │ │ │ │ ├── HtmlLinkClickedException.cs │ │ │ │ │ ├── HtmlRefreshEventArgs.cs │ │ │ │ │ ├── HtmlRenderErrorEventArgs.cs │ │ │ │ │ ├── HtmlRenderErrorType.cs │ │ │ │ │ ├── HtmlScrollEventArgs.cs │ │ │ │ │ ├── HtmlStylesheetLoadEventArgs.cs │ │ │ │ │ └── LinkElementData.cs │ │ │ │ ├── Handlers │ │ │ │ │ ├── BackgroundImageDrawHandler.cs │ │ │ │ │ ├── BordersDrawHandler.cs │ │ │ │ │ ├── ContextMenuHandler.cs │ │ │ │ │ ├── FontsHandler.cs │ │ │ │ │ ├── ImageLoadHandler.cs │ │ │ │ │ ├── SelectionHandler.cs │ │ │ │ │ └── StylesheetLoadHandler.cs │ │ │ │ ├── HtmlContainerInt.cs │ │ │ │ ├── HtmlRendererUtils.cs │ │ │ │ ├── Parse │ │ │ │ │ ├── CssParser.cs │ │ │ │ │ ├── CssValueParser.cs │ │ │ │ │ ├── DomParser.cs │ │ │ │ │ ├── HtmlParser.cs │ │ │ │ │ ├── RegexParserHelper.cs │ │ │ │ │ └── RegexParserUtils.cs │ │ │ │ └── Utils │ │ │ │ │ ├── ArgChecker.cs │ │ │ │ │ ├── CommonUtils.cs │ │ │ │ │ ├── CssConstants.cs │ │ │ │ │ ├── CssUtils.cs │ │ │ │ │ ├── DomUtils.cs │ │ │ │ │ ├── HtmlConstants.cs │ │ │ │ │ ├── HtmlUtils.cs │ │ │ │ │ ├── ImageError.png │ │ │ │ │ ├── ImageLoad.png │ │ │ │ │ ├── RenderUtils.cs │ │ │ │ │ └── SubString.cs │ │ │ ├── HtmlRenderer.csproj │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── HtmlRenderer.dll │ │ │ │ │ └── HtmlRenderer.pdb │ │ │ └── obj │ │ │ │ └── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── HtmlRenderer.csproj.FileListAbsolute.txt │ │ │ │ ├── HtmlRenderer.dll │ │ │ │ └── HtmlRenderer.pdb │ │ └── HtmlRenderer1.5.0.6 │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ └── HtmlRenderer.WinForms.pdb │ ├── App.config │ ├── DataGridViewColumns │ │ ├── DataGridViewHTMLColumn.cs │ │ └── DataGridViewHTMLColumnScrollbars.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HTMLDataGridViewTest.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── apple.png │ │ └── bomb.png │ ├── bin │ │ └── Debug │ │ │ ├── HTMLDataGridViewTest.exe │ │ │ ├── HTMLDataGridViewTest.exe.config │ │ │ ├── HTMLDataGridViewTest.pdb │ │ │ ├── HTMLDataGridViewTest.vshost.exe │ │ │ ├── HTMLDataGridViewTest.vshost.exe.config │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ ├── HtmlRenderer.WinForms.pdb │ │ │ ├── HtmlRenderer.dll │ │ │ └── HtmlRenderer.pdb │ ├── elipsis.png │ ├── obj │ │ └── Debug │ │ │ ├── CSC521E0668C2264705B7F7164BF4E64D9C.TMP │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── HTMLDataGridViewTest.Form1.resources │ │ │ ├── HTMLDataGridViewTest.Properties.Resources.resources │ │ │ ├── HTMLDataGridViewTest.csproj.FileListAbsolute.txt │ │ │ ├── HTMLDataGridViewTest.csproj.GenerateResource.Cache │ │ │ ├── HTMLDataGridViewTest.exe │ │ │ ├── HTMLDataGridViewTest.pdb │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── packages.config │ └── red-triangle.png └── packages │ ├── HtmlRenderer.Core.1.5.0.6 │ ├── HtmlRenderer.Core.1.5.0.6.nupkg │ ├── HtmlRenderer.Core.1.5.0.6.nuspec │ └── lib │ │ ├── net20 │ │ ├── HtmlRenderer.dll │ │ └── HtmlRenderer.pdb │ │ ├── net30 │ │ ├── HtmlRenderer.dll │ │ └── HtmlRenderer.pdb │ │ ├── net35-client │ │ ├── HtmlRenderer.dll │ │ └── HtmlRenderer.pdb │ │ ├── net40-client │ │ ├── HtmlRenderer.dll │ │ └── HtmlRenderer.pdb │ │ └── net45 │ │ ├── HtmlRenderer.dll │ │ └── HtmlRenderer.pdb │ ├── HtmlRenderer.WinForms.1.5.0.6 │ ├── HtmlRenderer.WinForms.1.5.0.6.nupkg │ ├── HtmlRenderer.WinForms.1.5.0.6.nuspec │ ├── lib │ │ ├── net20 │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ └── HtmlRenderer.WinForms.pdb │ │ ├── net35-client │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ └── HtmlRenderer.WinForms.pdb │ │ ├── net40-client │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ └── HtmlRenderer.WinForms.pdb │ │ └── net45 │ │ │ ├── HtmlRenderer.WinForms.dll │ │ │ └── HtmlRenderer.WinForms.pdb │ └── readme.txt │ └── repositories.config ├── README.md └── Screenshots └── image001.png /HTMLDataGridViewTest/HTMLDataGridViewTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest.sln -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest.v12.suo -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/BrushAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/BrushAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/ContextMenuAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/ContextMenuAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/ControlAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/ControlAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/FontAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/FontAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/FontFamilyAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/FontFamilyAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/GraphicsAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/GraphicsAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/GraphicsPathAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/GraphicsPathAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/ImageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/ImageAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/PenAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/PenAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/WinFormsAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Adapters/WinFormsAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlContainer.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlLabel.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlPanel.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlRender.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlRenderer.WinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlRenderer.WinForms.csproj -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/HtmlToolTip.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Utilities/ClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Utilities/ClipboardHelper.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Utilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Utilities/Utils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Utilities/Win32Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/Utilities/Win32Utils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/bin/DebugNet20/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer.WinForms/obj/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RColor.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RDashStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RDashStyle.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RFontStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RFontStyle.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RKeyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RKeyEvent.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RMouseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RMouseEvent.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RPoint.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RRect.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/Entities/RSize.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RAdapter.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RBrush.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RContextMenu.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RControl.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RFont.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RFontFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RFontFamily.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RGraphics.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RGraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RGraphicsPath.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RImage.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Adapters/RPen.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/CssData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/CssData.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/CssDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/CssDefaults.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/Border.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBox.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxFrame.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxHr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxHr.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxImage.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssBoxProperties.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLayoutEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLayoutEngine.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLayoutEngineTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLayoutEngineTable.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLength.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLineBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssLineBox.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssRect.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssRectImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssRectImage.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssRectWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssRectWord.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssSpacingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssSpacingBox.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/CssUnit.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/HoverBoxBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/HoverBoxBlock.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/HtmlTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Dom/HtmlTag.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/CssBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/CssBlock.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/CssBlockSelectorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/CssBlockSelectorItem.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlGenerationStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlGenerationStyle.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlImageLoadEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlImageLoadEventArgs.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlLinkClickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlLinkClickedEventArgs.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlLinkClickedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlLinkClickedException.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlRefreshEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlRefreshEventArgs.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlRenderErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlRenderErrorEventArgs.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlRenderErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlRenderErrorType.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlScrollEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlScrollEventArgs.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlStylesheetLoadEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/HtmlStylesheetLoadEventArgs.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/LinkElementData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Entities/LinkElementData.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/BackgroundImageDrawHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/BackgroundImageDrawHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/BordersDrawHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/BordersDrawHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/ContextMenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/ContextMenuHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/FontsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/FontsHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/ImageLoadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/ImageLoadHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/SelectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/SelectionHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/StylesheetLoadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Handlers/StylesheetLoadHandler.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/HtmlContainerInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/HtmlContainerInt.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/HtmlRendererUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/HtmlRendererUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/CssParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/CssParser.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/CssValueParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/CssValueParser.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/DomParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/DomParser.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/HtmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/HtmlParser.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/RegexParserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/RegexParserHelper.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/RegexParserUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Parse/RegexParserUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/ArgChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/ArgChecker.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/CommonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/CommonUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/CssConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/CssConstants.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/CssUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/CssUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/DomUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/DomUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/HtmlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/HtmlConstants.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/HtmlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/HtmlUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/ImageError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/ImageError.png -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/ImageLoad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/ImageLoad.png -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/RenderUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/RenderUtils.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/SubString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/Core/Utils/SubString.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/HtmlRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/HtmlRenderer.csproj -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/bin/Debug/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/bin/Debug/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/bin/Debug/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/bin/Debug/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/HtmlRenderer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/HtmlRenderer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer/obj/Debug/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer1.5.0.6/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer1.5.0.6/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer1.5.0.6/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/3rdParty/HtmlRenderer1.5.0.6/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/App.config -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/DataGridViewColumns/DataGridViewHTMLColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/DataGridViewColumns/DataGridViewHTMLColumn.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/DataGridViewColumns/DataGridViewHTMLColumnScrollbars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/DataGridViewColumns/DataGridViewHTMLColumnScrollbars.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Form1.Designer.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Form1.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Form1.resx -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/HTMLDataGridViewTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/HTMLDataGridViewTest.csproj -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Program.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Resources.resx -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Properties/Settings.settings -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Resources/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Resources/apple.png -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/Resources/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/Resources/bomb.png -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.exe -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.exe.config -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.vshost.exe -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HTMLDataGridViewTest.vshost.exe.config -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/bin/Debug/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/elipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/elipsis.png -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/CSC521E0668C2264705B7F7164BF4E64D9C.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/CSC521E0668C2264705B7F7164BF4E64D9C.TMP -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.Form1.resources -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.Properties.Resources.resources -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.exe -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/HTMLDataGridViewTest.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/packages.config -------------------------------------------------------------------------------- /HTMLDataGridViewTest/HTMLDataGridViewTest/red-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/HTMLDataGridViewTest/red-triangle.png -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/HtmlRenderer.Core.1.5.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/HtmlRenderer.Core.1.5.0.6.nupkg -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/HtmlRenderer.Core.1.5.0.6.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/HtmlRenderer.Core.1.5.0.6.nuspec -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net20/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net20/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net20/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net20/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net30/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net30/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net30/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net30/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net35-client/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net35-client/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net35-client/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net35-client/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net40-client/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net40-client/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net40-client/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net40-client/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net45/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net45/HtmlRenderer.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net45/HtmlRenderer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.Core.1.5.0.6/lib/net45/HtmlRenderer.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/HtmlRenderer.WinForms.1.5.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/HtmlRenderer.WinForms.1.5.0.6.nupkg -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/HtmlRenderer.WinForms.1.5.0.6.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/HtmlRenderer.WinForms.1.5.0.6.nuspec -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net20/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net20/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net20/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net20/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net35-client/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net35-client/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net35-client/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net35-client/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net40-client/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net40-client/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net40-client/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net40-client/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net45/HtmlRenderer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net45/HtmlRenderer.WinForms.dll -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net45/HtmlRenderer.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/lib/net45/HtmlRenderer.WinForms.pdb -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/HtmlRenderer.WinForms.1.5.0.6/readme.txt -------------------------------------------------------------------------------- /HTMLDataGridViewTest/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/HTMLDataGridViewTest/packages/repositories.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanAirdrop/DataGridViewHTMLCell/HEAD/Screenshots/image001.png --------------------------------------------------------------------------------