├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ ├── other-issues.yml │ └── post-a-question.yml ├── dependabot.yml └── workflows │ ├── auto-assign-pr-author.yml │ ├── auto-label-issue-areas.yml │ ├── build.yml │ ├── nightly.yml │ └── release.yml ├── .gitignore ├── AGENTS.md ├── Assets ├── ICO │ └── Main Icon │ │ ├── 24 x 24 │ │ ├── Krypton Canary.ico │ │ └── Krypton Stable.ico │ │ ├── 256 x 256 │ │ ├── Krypton Canary.ico │ │ └── Krypton Stable.ico │ │ └── 48 x 48 │ │ ├── Krypton Canary.ico │ │ └── Krypton Stable.ico └── PNG │ ├── Help │ ├── Help-6656410655.png │ ├── Help-7372613239.png │ ├── Help_1_48_x_48.png │ └── help-6525410648.png │ ├── Main Icon │ ├── 128 x 128 │ │ ├── Krypton 128 x 128 Canary.png │ │ ├── Krypton 128 x 128 LTS.png │ │ ├── Krypton 128 x 128 Nightly.png │ │ └── Krypton 128 x 128 Stable.png │ ├── 16 x 16 │ │ ├── Krypton 16 x 16 Canary.png │ │ ├── Krypton 16 x 16 LTS.png │ │ ├── Krypton 16 x 16 Nightly.png │ │ └── Krypton 16 x 16 Stable.png │ ├── 24 x 24 │ │ ├── Krypton 24 x 24 Canary.png │ │ ├── Krypton 24 x 24 LTS.png │ │ ├── Krypton 24 x 24 Nightly.png │ │ └── Krypton 24 x 24 Stable.png │ ├── 256 x 256 │ │ ├── Krypton 256 x 256 Canary.png │ │ ├── Krypton 256 x 256 LTS.png │ │ ├── Krypton 256 x 256 Nightly.png │ │ └── Krypton 256 x 256 Stable.png │ ├── 32 x 32 │ │ ├── Krypton 32 x 32 Canary.png │ │ ├── Krypton 32 x 32 LTS.png │ │ ├── Krypton 32 x 32 Nightly.png │ │ └── Krypton 32 x 32 Stable.png │ ├── 48 x 48 │ │ ├── Krypton 48 x 48 Canary.png │ │ ├── Krypton 48 x 48 LTS.png │ │ ├── Krypton 48 x 48 Nightly.png │ │ └── Krypton 48 x 48 Stable.png │ ├── 512 x 512 │ │ ├── Krypton 512 x 512 Canary.png │ │ ├── Krypton 512 x 512 LTS.png │ │ ├── Krypton 512 x 512 Nightly.png │ │ └── Krypton 512 x 512 Stable.png │ └── 64 x 64 │ │ ├── Krypton 64 x 64 Canary.png │ │ ├── Krypton 64 x 64 LTS.png │ │ ├── Krypton 64 x 64 Nightly.png │ │ └── Krypton 64 x 64 Stable.png │ └── NuGet Package Icons │ ├── Krypton Canary.png │ ├── Krypton LTS.png │ ├── Krypton Nightly.png │ └── Krypton Stable.png ├── Directory.Build.props ├── Documents ├── 2021-palette-unification.md ├── Changelog │ └── Changelog.md ├── License │ └── License.md └── palette-mechanics-intro.md ├── Krypton.png ├── LICENSE ├── README.md ├── Scripts ├── Build │ ├── build-canary.cmd │ ├── build-installer.cmd │ ├── build-lts.cmd │ ├── build-nightly-custom.cmd │ ├── build-nightly.cmd │ ├── build-stable.cmd │ ├── build.proj │ ├── buildsolution.cmd │ ├── canary.proj │ ├── createnightlyzip.cmd │ ├── debug.cmd │ ├── debug.proj │ ├── installer.proj │ ├── longtermstable.proj │ ├── nightly.proj │ ├── publish-to-github.cmd │ ├── publish.cmd │ ├── purge.cmd │ ├── rebuild-build-nightly.cmd │ └── update-nuget.cmd ├── Current │ ├── build-canary.cmd │ ├── build-installer.cmd │ ├── build-lts.cmd │ ├── build-nightly-custom.cmd │ ├── build-nightly.cmd │ ├── build-stable.cmd │ ├── build.proj │ ├── buildsolution.cmd │ ├── canary.proj │ ├── createnightlyzip.cmd │ ├── debug.cmd │ ├── debug.proj │ ├── installer.proj │ ├── longtermstable.proj │ ├── nightly.proj │ ├── publish-to-github.cmd │ ├── publish.cmd │ ├── purge.cmd │ ├── rebuild-build-nightly.cmd │ └── update-nuget.cmd ├── ModernBuild │ ├── General │ │ ├── AppState.cs │ │ ├── BuildLogic.cs │ │ ├── BuildUI.cs │ │ └── Definitions.cs │ ├── Global │ │ └── GlobalDeclarations.cs │ ├── ModernBuild.csproj │ ├── ModernBuild.sln │ ├── Program.cs │ ├── README.md │ └── global.json ├── VS2022 │ ├── build-canary.cmd │ ├── build-installer.cmd │ ├── build-lts.cmd │ ├── build-nightly-custom.cmd │ ├── build-nightly.cmd │ ├── build-stable.cmd │ ├── build.proj │ ├── buildsolution.cmd │ ├── canary.proj │ ├── createnightlyzip.cmd │ ├── debug.cmd │ ├── debug.proj │ ├── installer.proj │ ├── longtermstable.proj │ ├── nightly.proj │ ├── publish-to-github.cmd │ ├── publish.cmd │ ├── purge.cmd │ ├── rebuild-build-nightly.cmd │ └── update-nuget.cmd ├── main-menu.cmd └── make_calc_icon.py ├── Source ├── .editorconfig ├── Krypton Components │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Krypton Toolkit Suite 2022 - VS2022.sln │ ├── Krypton Toolkit Suite 2022 - VS2022.sln.DotSettings │ ├── Krypton Toolkit Suite 2022 - VS2022.slnx │ ├── Krypton.Docking │ │ ├── Control Docking │ │ │ ├── KryptonAutoHiddenGroup.cs │ │ │ ├── KryptonAutoHiddenPanel.cs │ │ │ ├── KryptonAutoHiddenProxyPage.cs │ │ │ ├── KryptonAutoHiddenSlidePanel.cs │ │ │ ├── KryptonDockableNavigator.cs │ │ │ ├── KryptonDockableWorkspace.cs │ │ │ ├── KryptonDockspace.cs │ │ │ ├── KryptonDockspaceSeparator.cs │ │ │ ├── KryptonDockspaceSlide.cs │ │ │ ├── KryptonFloatingWindow.cs │ │ │ ├── KryptonFloatspace.cs │ │ │ ├── KryptonSpace.cs │ │ │ └── KryptonStorePage.cs │ │ ├── Dragging │ │ │ ├── DockingDragManager.cs │ │ │ ├── DockingDragTargetProvider.cs │ │ │ ├── DragTargetControlEdge.cs │ │ │ └── DragTargetNull.cs │ │ ├── Elements Base │ │ │ ├── DockingElement.cs │ │ │ ├── DockingElementClosedCollection.cs │ │ │ └── DockingElementOpenCollection.cs │ │ ├── Elements Impl │ │ │ ├── KryptonDockingAutoHiddenGroup.cs │ │ │ ├── KryptonDockingControl.cs │ │ │ ├── KryptonDockingDockspace.cs │ │ │ ├── KryptonDockingEdge.cs │ │ │ ├── KryptonDockingEdgeAutoHidden.cs │ │ │ ├── KryptonDockingEdgeDocked.cs │ │ │ ├── KryptonDockingFloating.cs │ │ │ ├── KryptonDockingFloatingWindow.cs │ │ │ ├── KryptonDockingFloatspace.cs │ │ │ ├── KryptonDockingManager.cs │ │ │ ├── KryptonDockingNavigator.cs │ │ │ ├── KryptonDockingSpace.cs │ │ │ └── KryptonDockingWorkspace.cs │ │ ├── Event Args │ │ │ ├── AutoHiddenGroupEventArgs.cs │ │ │ ├── AutoHiddenGroupPanelEventArgs.cs │ │ │ ├── AutoHiddenSeparatorResizeEventArgs.cs │ │ │ ├── AutoHiddenShowingStateEventArgs.cs │ │ │ ├── CancelDropDownEventArgs.cs │ │ │ ├── CancelUniqueNameEventArgs.cs │ │ │ ├── CloseRequestEventArgs.cs │ │ │ ├── ContextPageEventArgs.cs │ │ │ ├── DockGlobalLoadingEventArgs.cs │ │ │ ├── DockGlobalSavingEventArgs.cs │ │ │ ├── DockPageLoadingEventArgs.cs │ │ │ ├── DockPageSavingEventArgs.cs │ │ │ ├── DockableNavigatorEventArgs.cs │ │ │ ├── DockableWorkspaceCellEventArgs.cs │ │ │ ├── DockableWorkspaceEventArgs.cs │ │ │ ├── DockspaceCellEventArgs.cs │ │ │ ├── DockspaceEventArgs.cs │ │ │ ├── DockspaceSeparatorEventArgs.cs │ │ │ ├── DockspaceSeparatorResizeEventArgs.cs │ │ │ ├── FloatingWindowEventArgs.cs │ │ │ ├── FloatspaceCellEventArgs.cs │ │ │ ├── FloatspaceEventArgs.cs │ │ │ ├── PagesEventArgs.cs │ │ │ ├── ScreenAndOffsetEventArgs.cs │ │ │ ├── StorePageEventArgs.cs │ │ │ ├── UniqueNameEventArgs.cs │ │ │ └── UniqueNamesEventArgs.cs │ │ ├── General │ │ │ ├── Definitions.cs │ │ │ ├── DockingHelper.cs │ │ │ ├── DockingMultiUpdate.cs │ │ │ ├── KryptonBuildFlags.cs │ │ │ └── ObscureControl.cs │ │ ├── Global │ │ │ └── GlobalDeclarations.cs │ │ ├── Krypton.Docking 2022.csproj │ │ ├── Krypton.Docking 2022.csproj.DotSettings │ │ ├── Krypton.Docking.licenseheader │ │ ├── Krypton.ico │ │ ├── Palette │ │ │ └── DockingManagerStrings.cs │ │ ├── Resources │ │ │ ├── Check.png │ │ │ ├── Delete.png │ │ │ ├── GenericImageResources.Designer.cs │ │ │ ├── GenericImageResources.resx │ │ │ └── Help.png │ │ ├── StrongKrypton.snk │ │ ├── ToolboxBitmaps │ │ │ ├── KryptonDockableNavigator.bmp │ │ │ ├── KryptonDockableWorkspace.bmp │ │ │ └── KryptonDockingManager.bmp │ │ └── ViewDraw │ │ │ └── ViewDrawAutoHiddenTab.cs │ ├── Krypton.Navigator │ │ ├── ButtonSpecs │ │ │ ├── ButtonSpecNavClose.cs │ │ │ ├── ButtonSpecNavContext.cs │ │ │ ├── ButtonSpecNavFixed.cs │ │ │ ├── ButtonSpecNavFixedConverter.cs │ │ │ ├── ButtonSpecNavFormClose.cs │ │ │ ├── ButtonSpecNavFormMaximize.cs │ │ │ ├── ButtonSpecNavFormMinimize.cs │ │ │ ├── ButtonSpecNavManagerLayoutBar.cs │ │ │ ├── ButtonSpecNavManagerLayoutHeaderBar.cs │ │ │ ├── ButtonSpecNavNext.cs │ │ │ ├── ButtonSpecNavPrevious.cs │ │ │ ├── ButtonSpecNavRemap.cs │ │ │ └── ButtonSpecNavigator.cs │ │ ├── Controller │ │ │ ├── DragViewController.cs │ │ │ ├── OutlookMiniController.cs │ │ │ └── PageButtonController.cs │ │ ├── Controls Navigator │ │ │ ├── KryptonNavigator.cs │ │ │ └── KryptonNavigatorControlCollection.cs │ │ ├── Controls Visuals │ │ │ └── VisualPopupPage.cs │ │ ├── Converters │ │ │ ├── BarItemSizingConverter.cs │ │ │ ├── ButtonDisplayConverter.cs │ │ │ ├── ButtonDisplayLogicConverter.cs │ │ │ ├── CloseButtonActionConverter.cs │ │ │ ├── ContextButtonActionConverter.cs │ │ │ ├── DirectionButtonActionConverter.cs │ │ │ ├── MapKryptonPageImageConverter.cs │ │ │ ├── MapKryptonPageTextConverter.cs │ │ │ ├── NavigatorModeConverter.cs │ │ │ ├── PaletteButtonSpecStyleConverter.cs │ │ │ ├── PopupPageAllowConverter.cs │ │ │ └── PopupPagePositionConverter.cs │ │ ├── Dragging │ │ │ ├── DragFeedback.cs │ │ │ ├── DragFeedbackDocking.cs │ │ │ ├── DragFeedbackSolid.cs │ │ │ ├── DragManager.cs │ │ │ ├── DragTarget.cs │ │ │ ├── DragTargetNavigatorTransfer.cs │ │ │ ├── DropDockingIndicatorsRounded.cs │ │ │ ├── DropDockingIndicatorsSquare.cs │ │ │ ├── DropSolidWindow.cs │ │ │ └── PageDragEndData.cs │ │ ├── EventArgs │ │ │ ├── CloseActionEventArgs.cs │ │ │ ├── ContextActionEventArgs.cs │ │ │ ├── CtrlTabCancelEventArgs.cs │ │ │ ├── DirectionActionEventArgs.cs │ │ │ ├── KryptonContextMenuStripEventArgs.cs │ │ │ ├── KryptonPageCancelEventArgs.cs │ │ │ ├── KryptonPageFlagsEventArgs.cs │ │ │ ├── PageDragCancelEventArgs.cs │ │ │ ├── PageDragEndEventArgs.cs │ │ │ ├── PageDragEventArgs.cs │ │ │ ├── PageDropEventArgs.cs │ │ │ ├── PageMovedEventArgs.cs │ │ │ ├── PageReorderEventArgs.cs │ │ │ ├── PopupPageEventArgs.cs │ │ │ └── ShowContextMenuArgs.cs │ │ ├── General │ │ │ ├── Definitions.cs │ │ │ ├── KryptonBuildFlags.cs │ │ │ └── PageToToolTipMapping.cs │ │ ├── Global │ │ │ └── GlobalDeclarations.cs │ │ ├── Krypton.Navigator 2022.csproj │ │ ├── Krypton.Navigator 2022.csproj.DotSettings │ │ ├── Krypton.Navigator.licenseheader │ │ ├── Krypton.ico │ │ ├── Navigator │ │ │ ├── KryptonNavigatorActionList.cs │ │ │ ├── KryptonNavigatorDesigner.cs │ │ │ ├── KryptonPageActionList.cs │ │ │ ├── KryptonPageDesigner.cs │ │ │ ├── KryptonPageFormEditFlags.Designer.cs │ │ │ ├── KryptonPageFormEditFlags.cs │ │ │ ├── KryptonPageFormEditFlags.resx │ │ │ └── NavigatorPageCollectionEditor.cs │ │ ├── Page │ │ │ ├── KryptonPage.cs │ │ │ └── KryptonPageCollection.cs │ │ ├── Palette │ │ │ ├── HeaderGroupMappingBase.cs │ │ │ ├── HeaderGroupMappingPrimary.cs │ │ │ ├── HeaderGroupMappingSecondary.cs │ │ │ ├── NavigatorBar.cs │ │ │ ├── NavigatorButton.cs │ │ │ ├── NavigatorGroup.cs │ │ │ ├── NavigatorHeader.cs │ │ │ ├── NavigatorOutlook.cs │ │ │ ├── NavigatorOutlookFull.cs │ │ │ ├── NavigatorOutlookMini.cs │ │ │ ├── NavigatorPanel.cs │ │ │ ├── NavigatorPopupPages.cs │ │ │ ├── NavigatorStack.cs │ │ │ ├── NavigatorToolTips.cs │ │ │ ├── PaletteBarRedirect.cs │ │ │ ├── PaletteMetrics.cs │ │ │ ├── PaletteNavContent.cs │ │ │ ├── PaletteNavContentText.cs │ │ │ ├── PaletteNavigator.cs │ │ │ ├── PaletteNavigatorHeaderGroup.cs │ │ │ ├── PaletteNavigatorHeaderGroupRedirect.cs │ │ │ ├── PaletteNavigatorOther.cs │ │ │ ├── PaletteNavigatorOtherEx.cs │ │ │ ├── PaletteNavigatorOtherOverride.cs │ │ │ ├── PaletteNavigatorOtherRedirect.cs │ │ │ ├── PaletteNavigatorRedirect.cs │ │ │ ├── PalettePage.cs │ │ │ ├── PalettePageRedirect.cs │ │ │ ├── PaletteRedirectRibbonTabContent.cs │ │ │ ├── PaletteRibbonGeneralRedirect.cs │ │ │ ├── PaletteRibbonTabContent.cs │ │ │ ├── PaletteRibbonTabContentInheritOverride.cs │ │ │ ├── PaletteRibbonTabContentRedirect.cs │ │ │ └── RibbonTabToContent.cs │ │ ├── Resources │ │ │ ├── BlueDown.bmp │ │ │ ├── BlueUp.bmp │ │ │ ├── Check.png │ │ │ ├── CursorResources.Designer.cs │ │ │ ├── CursorResources.resx │ │ │ ├── Delete.png │ │ │ ├── DocumentInvalid.cur │ │ │ ├── DocumentValid.cur │ │ │ ├── GeneralImageResources.Designer.cs │ │ │ ├── GeneralImageResources.resx │ │ │ ├── Help.png │ │ │ ├── PageLarge.png │ │ │ ├── PageMedium.png │ │ │ └── PageSmall.png │ │ ├── StrongKrypton.snk │ │ ├── ToolboxBitmaps │ │ │ ├── KryptonNavigator.bmp │ │ │ └── KryptonPage.bmp │ │ ├── View Builder │ │ │ ├── ViewBuilderBarCheckButtonGroupInside.cs │ │ │ ├── ViewBuilderBarCheckButtonGroupOnly.cs │ │ │ ├── ViewBuilderBarCheckButtonGroupOutside.cs │ │ │ ├── ViewBuilderBarCheckButtonOnly.cs │ │ │ ├── ViewBuilderBarItemBase.cs │ │ │ ├── ViewBuilderBarRibbonTabBase.cs │ │ │ ├── ViewBuilderBarRibbonTabGroup.cs │ │ │ ├── ViewBuilderBarRibbonTabOnly.cs │ │ │ ├── ViewBuilderBarTabBase.cs │ │ │ ├── ViewBuilderBarTabGroup.cs │ │ │ ├── ViewBuilderBarTabOnly.cs │ │ │ ├── ViewBuilderBase.cs │ │ │ ├── ViewBuilderGroup.cs │ │ │ ├── ViewBuilderHeaderBarCheckButtonBase.cs │ │ │ ├── ViewBuilderHeaderBarCheckButtonGroup.cs │ │ │ ├── ViewBuilderHeaderBarCheckButtonHeaderGroup.cs │ │ │ ├── ViewBuilderHeaderBarCheckButtonOnly.cs │ │ │ ├── ViewBuilderHeaderBarTabGroup.cs │ │ │ ├── ViewBuilderHeaderGroup.cs │ │ │ ├── ViewBuilderItemBase.cs │ │ │ ├── ViewBuilderOutlookBase.cs │ │ │ ├── ViewBuilderOutlookFull.cs │ │ │ ├── ViewBuilderOutlookMini.cs │ │ │ ├── ViewBuilderPanel.cs │ │ │ ├── ViewBuilderStackCheckButtonBase.cs │ │ │ ├── ViewBuilderStackCheckButtonGroup.cs │ │ │ ├── ViewBuilderStackCheckButtonHeaderGroup.cs │ │ │ ├── ViewletHeaderGroup.cs │ │ │ └── ViewletHeaderGroupOutlook.cs │ │ ├── View Draw │ │ │ ├── ViewDrawNavCheckButtonBar.cs │ │ │ ├── ViewDrawNavCheckButtonBase.cs │ │ │ ├── ViewDrawNavCheckButtonStack.cs │ │ │ ├── ViewDrawNavCheckButtonTab.cs │ │ │ ├── ViewDrawNavOutlookMini.cs │ │ │ ├── ViewDrawNavOutlookOverflow.cs │ │ │ ├── ViewDrawNavOutlookStack.cs │ │ │ └── ViewDrawNavRibbonTab.cs │ │ └── View Layout │ │ │ ├── ViewLayoutBar.cs │ │ │ ├── ViewLayoutBarForTabs.cs │ │ │ ├── ViewLayoutDockerOverlap.cs │ │ │ ├── ViewLayoutInsetOverlap.cs │ │ │ ├── ViewLayoutOutlookFull.cs │ │ │ ├── ViewLayoutOutlookMini.cs │ │ │ ├── ViewLayoutPageHide.cs │ │ │ ├── ViewLayoutPageShow.cs │ │ │ └── ViewLayoutPopupPage.cs │ ├── Krypton.Ribbon │ │ ├── ButtonSpec │ │ │ ├── ButtonSpecAppMenu.cs │ │ │ ├── ButtonSpecExpandRibbon.cs │ │ │ ├── ButtonSpecManagerLayoutAppButton.cs │ │ │ ├── ButtonSpecManagerLayoutRibbon.cs │ │ │ ├── ButtonSpecMdiChildClose.cs │ │ │ ├── ButtonSpecMdiChildFixed.cs │ │ │ ├── ButtonSpecMdiChildMin.cs │ │ │ ├── ButtonSpecMdiChildRestore.cs │ │ │ ├── ButtonSpecMinimizeRibbon.cs │ │ │ ├── ButtonSpecViewAppButton.cs │ │ │ └── ButtonSpecViewRibbon.cs │ │ ├── Controller │ │ │ ├── AppButtonController.cs │ │ │ ├── AppTabController.cs │ │ │ ├── ButtonSpecAppButtonController.cs │ │ │ ├── ButtonSpecRibbonController.cs │ │ │ ├── CollapsedGroupController.cs │ │ │ ├── ComboBoxController.cs │ │ │ ├── ContextClickController.cs │ │ │ ├── ContextTitleController.cs │ │ │ ├── CustomControlController.cs │ │ │ ├── DateTimePickerController.cs │ │ │ ├── DialogLauncherButtonController.cs │ │ │ ├── DomainUpDownController.cs │ │ │ ├── GalleryButtonController.cs │ │ │ ├── GalleryController.cs │ │ │ ├── GalleryItemController.cs │ │ │ ├── GroupButtonController.cs │ │ │ ├── GroupCheckBoxController.cs │ │ │ ├── GroupRadioButtonController.cs │ │ │ ├── LeftDownButtonController.cs │ │ │ ├── LeftUpButtonController.cs │ │ │ ├── MaskedTextBoxController.cs │ │ │ ├── NullController.cs │ │ │ ├── NumericUpDownController.cs │ │ │ ├── QATButtonController.cs │ │ │ ├── QATExtraButtonController.cs │ │ │ ├── RecentDocController.cs │ │ │ ├── RepeatButtonController.cs │ │ │ ├── RibbonTabController.cs │ │ │ ├── RibbonTabsController.cs │ │ │ ├── RichTextBoxController.cs │ │ │ ├── TextBoxController.cs │ │ │ ├── TrackBarController.cs │ │ │ └── ViewHighlightController.cs │ │ ├── Controls Ribbon │ │ │ ├── KryptonGallery.cs │ │ │ ├── KryptonGalleryRange.cs │ │ │ ├── KryptonGalleryRangeCollection.cs │ │ │ ├── KryptonRibbon.cs │ │ │ ├── KryptonRibbonContext.cs │ │ │ ├── KryptonRibbonContextCollection.cs │ │ │ ├── KryptonRibbonGroup.cs │ │ │ ├── KryptonRibbonGroupCollection.cs │ │ │ ├── KryptonRibbonQATButton.cs │ │ │ ├── KryptonRibbonQATButtonCollection.cs │ │ │ ├── KryptonRibbonRecentDoc.cs │ │ │ ├── KryptonRibbonRecentDocCollection.cs │ │ │ ├── KryptonRibbonTab.cs │ │ │ └── KryptonRibbonTabCollection.cs │ │ ├── Controls Visuals │ │ │ ├── KeyTipControl.cs │ │ │ ├── VisualPopupAppMenu.cs │ │ │ ├── VisualPopupGroup.cs │ │ │ ├── VisualPopupMinimized.cs │ │ │ └── VisualPopupQATOverflow.cs │ │ ├── Designers │ │ │ ├── Action Lists │ │ │ │ ├── KryptonGalleryActionList.cs │ │ │ │ └── KryptonRibbonActionList.cs │ │ │ ├── Collection Editors │ │ │ │ ├── KryptonRibbonGroupClusterCollectionEditor.cs │ │ │ │ ├── KryptonRibbonGroupContainerCollectionEditor.cs │ │ │ │ ├── KryptonRibbonGroupLinesCollectionEditor.cs │ │ │ │ ├── KryptonRibbonGroupTripleCollectionEditor.cs │ │ │ │ ├── KryptonRibbonQATButtonCollectionEditor.cs │ │ │ │ └── KryptonRibbonRecentDocCollectionEditor.cs │ │ │ └── Designers │ │ │ │ ├── KryptonGalleryDesigner.cs │ │ │ │ ├── KryptonRibbonDesigner.cs │ │ │ │ ├── KryptonRibbonGroupButtonDesigner.cs │ │ │ │ ├── KryptonRibbonGroupCheckBoxDesigner.cs │ │ │ │ ├── KryptonRibbonGroupClusterButtonDesigner.cs │ │ │ │ ├── KryptonRibbonGroupClusterColorButtonDesigner.cs │ │ │ │ ├── KryptonRibbonGroupClusterDesigner.cs │ │ │ │ ├── KryptonRibbonGroupColorButtonDesigner.cs │ │ │ │ ├── KryptonRibbonGroupComboBoxDesigner.cs │ │ │ │ ├── KryptonRibbonGroupCustomControlDesigner.cs │ │ │ │ ├── KryptonRibbonGroupDateTimePickerDesigner.cs │ │ │ │ ├── KryptonRibbonGroupDesigner.cs │ │ │ │ ├── KryptonRibbonGroupDomainUpDownDesigner.cs │ │ │ │ ├── KryptonRibbonGroupGalleryDesigner.cs │ │ │ │ ├── KryptonRibbonGroupLabelDesigner.cs │ │ │ │ ├── KryptonRibbonGroupLinesDesigner.cs │ │ │ │ ├── KryptonRibbonGroupMaskedTextBoxDesigner.cs │ │ │ │ ├── KryptonRibbonGroupNumericUpDownDesigner.cs │ │ │ │ ├── KryptonRibbonGroupRadioButtonDesigner.cs │ │ │ │ ├── KryptonRibbonGroupRichTextBoxDesigner.cs │ │ │ │ ├── KryptonRibbonGroupSeparatorDesigner.cs │ │ │ │ ├── KryptonRibbonGroupTextBoxDesigner.cs │ │ │ │ ├── KryptonRibbonGroupThemeComboBoxDesigner.cs │ │ │ │ ├── KryptonRibbonGroupTrackBarDesigner.cs │ │ │ │ ├── KryptonRibbonGroupTripleDesigner.cs │ │ │ │ └── KryptonRibbonTabDesigner.cs │ │ ├── EventArgs │ │ │ └── GalleryDropMenuEventArgs.cs │ │ ├── General │ │ │ ├── AppButtonMenuProvider.cs │ │ │ ├── CalculatedValues.cs │ │ │ ├── Definitions.cs │ │ │ ├── DesignTimeDraw.cs │ │ │ ├── ItemGroupSizeWidth.cs │ │ │ ├── KeyTipInfo.cs │ │ │ └── KryptonBuildFlags.cs │ │ ├── Global │ │ │ └── GlobalDeclarations.cs │ │ ├── Group Contents │ │ │ ├── KryptonRibbonGroupButton.cs │ │ │ ├── KryptonRibbonGroupCheckBox.cs │ │ │ ├── KryptonRibbonGroupCluster.cs │ │ │ ├── KryptonRibbonGroupClusterButton.cs │ │ │ ├── KryptonRibbonGroupClusterCollection.cs │ │ │ ├── KryptonRibbonGroupClusterColorButton.cs │ │ │ ├── KryptonRibbonGroupColorButton.cs │ │ │ ├── KryptonRibbonGroupComboBox.cs │ │ │ ├── KryptonRibbonGroupContainer.cs │ │ │ ├── KryptonRibbonGroupContainerCollection.cs │ │ │ ├── KryptonRibbonGroupCustomControl.cs │ │ │ ├── KryptonRibbonGroupDateTimePicker.cs │ │ │ ├── KryptonRibbonGroupDomainUpDown.cs │ │ │ ├── KryptonRibbonGroupGallery.cs │ │ │ ├── KryptonRibbonGroupItem.cs │ │ │ ├── KryptonRibbonGroupLabel.cs │ │ │ ├── KryptonRibbonGroupLines.cs │ │ │ ├── KryptonRibbonGroupLinesCollection.cs │ │ │ ├── KryptonRibbonGroupMaskedTextBox.cs │ │ │ ├── KryptonRibbonGroupNumericUpDown.cs │ │ │ ├── KryptonRibbonGroupRadioButton.cs │ │ │ ├── KryptonRibbonGroupRichTextBox.cs │ │ │ ├── KryptonRibbonGroupSeparator.cs │ │ │ ├── KryptonRibbonGroupTextBox.cs │ │ │ ├── KryptonRibbonGroupThemeComboBox.cs │ │ │ ├── KryptonRibbonGroupTrackBar.cs │ │ │ ├── KryptonRibbonGroupTriple.cs │ │ │ └── KryptonRibbonGroupTripleCollection.cs │ │ ├── Krypton.Ribbon 2022.csproj │ │ ├── Krypton.Ribbon.licenseheader │ │ ├── Krypton.ico │ │ ├── Palette │ │ │ ├── AppButtonToolTipToContent.cs │ │ │ ├── ContextTabSet.cs │ │ │ ├── ContextToContent.cs │ │ │ ├── DesignTextToContent.cs │ │ │ ├── FileApplicationTabToContent.cs │ │ │ ├── PaletteCaptionRedirect.cs │ │ │ ├── PaletteGalleryBackBorder.cs │ │ │ ├── PaletteGalleryRedirect.cs │ │ │ ├── PaletteGalleryState.cs │ │ │ ├── PaletteRedirectRibbonAeroOverride.cs │ │ │ ├── PaletteRibbonAppButton.cs │ │ │ ├── PaletteRibbonAppGroupTab.cs │ │ │ ├── PaletteRibbonContextBack.cs │ │ │ ├── PaletteRibbonContextDouble.cs │ │ │ ├── PaletteRibbonDisabled.cs │ │ │ ├── PaletteRibbonFocus.cs │ │ │ ├── PaletteRibbonGroupAreaTab.cs │ │ │ ├── PaletteRibbonGroupTab.cs │ │ │ ├── PaletteRibbonImages.cs │ │ │ ├── PaletteRibbonJustGroup.cs │ │ │ ├── PaletteRibbonJustTab.cs │ │ │ ├── PaletteRibbonNormal.cs │ │ │ ├── PaletteRibbonRedirect.cs │ │ │ ├── PaletteRibbonStyles.cs │ │ │ ├── QATButtonToContent.cs │ │ │ ├── QATButtonToolTipToContent.cs │ │ │ ├── RibbonFileAppButton.cs │ │ │ ├── RibbonFileAppTab.cs │ │ │ ├── RibbonGroupLabelTextToContent.cs │ │ │ ├── RibbonGroupNormalDisabledTextToContent.cs │ │ │ ├── RibbonGroupTextToContent.cs │ │ │ ├── RibbonRecentDocsEntryToContent.cs │ │ │ ├── RibbonRecentDocsShortCutToContent.cs │ │ │ ├── RibbonRecentDocsTitleToContent.cs │ │ │ ├── RibbonShortcuts.cs │ │ │ ├── RibbonTabToContent.cs │ │ │ └── RibbonToContent.cs │ │ ├── Resources │ │ │ ├── AppButtonDefault.png │ │ │ ├── ButtonColorImageLarge.png │ │ │ ├── ButtonColorImageSmall.png │ │ │ ├── ButtonImageLarge.png │ │ │ ├── ButtonImageSmall.png │ │ │ ├── ButtonNoColor.png │ │ │ ├── Check.png │ │ │ ├── Delete.png │ │ │ ├── GenericImageResources.Designer.cs │ │ │ ├── GenericImageResources.resx │ │ │ ├── GroupImageDefault.png │ │ │ ├── Help.png │ │ │ ├── MoveFirst.png │ │ │ ├── MoveLast.png │ │ │ ├── MoveNext.png │ │ │ ├── MovePrevious.png │ │ │ └── QATButtonDefault.png │ │ ├── StrongKrypton.snk │ │ ├── ToolboxBitmaps │ │ │ ├── KryptonGallery.bmp │ │ │ ├── KryptonGalleryRange.bmp │ │ │ ├── KryptonRibbon.bmp │ │ │ ├── KryptonRibbonContext.bmp │ │ │ ├── KryptonRibbonGroup.bmp │ │ │ ├── KryptonRibbonGroupButton.bmp │ │ │ ├── KryptonRibbonGroupCheckBox.bmp │ │ │ ├── KryptonRibbonGroupCluster.bmp │ │ │ ├── KryptonRibbonGroupClusterButton.bmp │ │ │ ├── KryptonRibbonGroupClusterColorButton.bmp │ │ │ ├── KryptonRibbonGroupColorButton.bmp │ │ │ ├── KryptonRibbonGroupComboBox.bmp │ │ │ ├── KryptonRibbonGroupCustomControl.bmp │ │ │ ├── KryptonRibbonGroupDateTimePicker.bmp │ │ │ ├── KryptonRibbonGroupDomainUpDown.bmp │ │ │ ├── KryptonRibbonGroupLabel.bmp │ │ │ ├── KryptonRibbonGroupLines.bmp │ │ │ ├── KryptonRibbonGroupMaskedTextBox.bmp │ │ │ ├── KryptonRibbonGroupNumericUpDown.bmp │ │ │ ├── KryptonRibbonGroupRadioButton.bmp │ │ │ ├── KryptonRibbonGroupRichTextBox.bmp │ │ │ ├── KryptonRibbonGroupSeparator.bmp │ │ │ ├── KryptonRibbonGroupTextBox.bmp │ │ │ ├── KryptonRibbonGroupTrackBar.bmp │ │ │ ├── KryptonRibbonGroupTriple.bmp │ │ │ ├── KryptonRibbonQATButton.bmp │ │ │ ├── KryptonRibbonRecentDoc.png │ │ │ └── KryptonRibbonTab.bmp │ │ ├── Utilities │ │ │ ├── BiDictionary.cs │ │ │ ├── KryptonRibbonMerger.cs │ │ │ └── MathExtensions.cs │ │ ├── View Base │ │ │ ├── ViewRibbonManager.cs │ │ │ ├── ViewRibbonMinimizedManager.cs │ │ │ ├── ViewRibbonPopupGroupManager.cs │ │ │ └── ViewRibbonQATOverflowManager.cs │ │ ├── View Draw │ │ │ ├── ViewDrawRibbonAppButton.cs │ │ │ ├── ViewDrawRibbonAppMenu.cs │ │ │ ├── ViewDrawRibbonAppMenuDocs.cs │ │ │ ├── ViewDrawRibbonAppMenuInner.cs │ │ │ ├── ViewDrawRibbonAppMenuOuter.cs │ │ │ ├── ViewDrawRibbonAppMenuRecentDoc.cs │ │ │ ├── ViewDrawRibbonCaptionArea.cs │ │ │ ├── ViewDrawRibbonCompoRightBorder.cs │ │ │ ├── ViewDrawRibbonContextTitle.cs │ │ │ ├── ViewDrawRibbonDesignBase.cs │ │ │ ├── ViewDrawRibbonDesignCluster.cs │ │ │ ├── ViewDrawRibbonDesignGroup.cs │ │ │ ├── ViewDrawRibbonDesignGroupContainer.cs │ │ │ ├── ViewDrawRibbonDesignGroupLines.cs │ │ │ ├── ViewDrawRibbonDesignGroupTriple.cs │ │ │ ├── ViewDrawRibbonDesignTab.cs │ │ │ ├── ViewDrawRibbonDropArrow.cs │ │ │ ├── ViewDrawRibbonFileAppTab.cs │ │ │ ├── ViewDrawRibbonGalleryButton.cs │ │ │ ├── ViewDrawRibbonGalleryItem.cs │ │ │ ├── ViewDrawRibbonGroup.cs │ │ │ ├── ViewDrawRibbonGroupButton.cs │ │ │ ├── ViewDrawRibbonGroupButtonBackBorder.cs │ │ │ ├── ViewDrawRibbonGroupButtonImage.cs │ │ │ ├── ViewDrawRibbonGroupButtonText.cs │ │ │ ├── ViewDrawRibbonGroupCheckBox.cs │ │ │ ├── ViewDrawRibbonGroupCheckBoxImage.cs │ │ │ ├── ViewDrawRibbonGroupCheckBoxText.cs │ │ │ ├── ViewDrawRibbonGroupClusterButton.cs │ │ │ ├── ViewDrawRibbonGroupClusterButtonImage.cs │ │ │ ├── ViewDrawRibbonGroupClusterButtonText.cs │ │ │ ├── ViewDrawRibbonGroupClusterColorButton.cs │ │ │ ├── ViewDrawRibbonGroupClusterColorButtonImage.cs │ │ │ ├── ViewDrawRibbonGroupClusterColorButtonText.cs │ │ │ ├── ViewDrawRibbonGroupClusterEdge.cs │ │ │ ├── ViewDrawRibbonGroupClusterSeparator.cs │ │ │ ├── ViewDrawRibbonGroupColorButton.cs │ │ │ ├── ViewDrawRibbonGroupColorButtonImage.cs │ │ │ ├── ViewDrawRibbonGroupColorButtonText.cs │ │ │ ├── ViewDrawRibbonGroupComboBox.cs │ │ │ ├── ViewDrawRibbonGroupCustomControl.cs │ │ │ ├── ViewDrawRibbonGroupDateTimePicker.cs │ │ │ ├── ViewDrawRibbonGroupDialogButton.cs │ │ │ ├── ViewDrawRibbonGroupDomainUpDown.cs │ │ │ ├── ViewDrawRibbonGroupGallery.cs │ │ │ ├── ViewDrawRibbonGroupGalleryImage.cs │ │ │ ├── ViewDrawRibbonGroupGalleryText.cs │ │ │ ├── ViewDrawRibbonGroupImage.cs │ │ │ ├── ViewDrawRibbonGroupImageBase.cs │ │ │ ├── ViewDrawRibbonGroupLabel.cs │ │ │ ├── ViewDrawRibbonGroupLabelImage.cs │ │ │ ├── ViewDrawRibbonGroupLabelText.cs │ │ │ ├── ViewDrawRibbonGroupMaskedTextBox.cs │ │ │ ├── ViewDrawRibbonGroupNumericUpDown.cs │ │ │ ├── ViewDrawRibbonGroupRadioButton.cs │ │ │ ├── ViewDrawRibbonGroupRadioButtonImage.cs │ │ │ ├── ViewDrawRibbonGroupRadioButtonText.cs │ │ │ ├── ViewDrawRibbonGroupRichTextBox.cs │ │ │ ├── ViewDrawRibbonGroupSeparator.cs │ │ │ ├── ViewDrawRibbonGroupText.cs │ │ │ ├── ViewDrawRibbonGroupTextBox.cs │ │ │ ├── ViewDrawRibbonGroupTitle.cs │ │ │ ├── ViewDrawRibbonGroupTrackBar.cs │ │ │ ├── ViewDrawRibbonGroupsBorder.cs │ │ │ ├── ViewDrawRibbonGroupsBorderSynch.cs │ │ │ ├── ViewDrawRibbonKeyTip.cs │ │ │ ├── ViewDrawRibbonMinimizeBar.cs │ │ │ ├── ViewDrawRibbonPanel.cs │ │ │ ├── ViewDrawRibbonQATBorder.cs │ │ │ ├── ViewDrawRibbonQATButton.cs │ │ │ ├── ViewDrawRibbonQATExtraButton.cs │ │ │ ├── ViewDrawRibbonQATExtraButtonMini.cs │ │ │ ├── ViewDrawRibbonQATOverflow.cs │ │ │ ├── ViewDrawRibbonRecentDocs.cs │ │ │ ├── ViewDrawRibbonRecentShortcut.cs │ │ │ ├── ViewDrawRibbonScrollButton.cs │ │ │ ├── ViewDrawRibbonTab.cs │ │ │ └── ViewDrawRibbonTabSep.cs │ │ └── View Layout │ │ │ ├── ViewLayoutRibbonAppButton.cs │ │ │ ├── ViewLayoutRibbonAppTab.cs │ │ │ ├── ViewLayoutRibbonCenter.cs │ │ │ ├── ViewLayoutRibbonCenterPadding.cs │ │ │ ├── ViewLayoutRibbonCheckBox.cs │ │ │ ├── ViewLayoutRibbonContextTitles.cs │ │ │ ├── ViewLayoutRibbonGalleryButtons.cs │ │ │ ├── ViewLayoutRibbonGalleryItems.cs │ │ │ ├── ViewLayoutRibbonGroupButton.cs │ │ │ ├── ViewLayoutRibbonGroupCluster.cs │ │ │ ├── ViewLayoutRibbonGroupContent.cs │ │ │ ├── ViewLayoutRibbonGroupLines.cs │ │ │ ├── ViewLayoutRibbonGroupTriple.cs │ │ │ ├── ViewLayoutRibbonGroups.cs │ │ │ ├── ViewLayoutRibbonGroupsArea.cs │ │ │ ├── ViewLayoutRibbonPadding.cs │ │ │ ├── ViewLayoutRibbonQATContents.cs │ │ │ ├── ViewLayoutRibbonQATFromOverflow.cs │ │ │ ├── ViewLayoutRibbonQATFromRibbon.cs │ │ │ ├── ViewLayoutRibbonQATMini.cs │ │ │ ├── ViewLayoutRibbonRadioButton.cs │ │ │ ├── ViewLayoutRibbonRowCenter.cs │ │ │ ├── ViewLayoutRibbonScrollPort.cs │ │ │ ├── ViewLayoutRibbonScroller.cs │ │ │ ├── ViewLayoutRibbonSeparator.cs │ │ │ ├── ViewLayoutRibbonTabs.cs │ │ │ ├── ViewLayoutRibbonTabsArea.cs │ │ │ ├── ViewLayoutRibbonTabsSpare.cs │ │ │ └── ViewLayoutRibbonTitle.cs │ ├── Krypton.Toolkit │ │ ├── AccurateText │ │ │ ├── AccurateText.cs │ │ │ └── AccurateTextMemento.cs │ │ ├── ButtonSpec │ │ │ ├── ButtonSpec.cs │ │ │ ├── ButtonSpecAny.cs │ │ │ ├── ButtonSpecCalendar.cs │ │ │ ├── ButtonSpecCollection.cs │ │ │ ├── ButtonSpecFormFixed.cs │ │ │ ├── ButtonSpecFormWindowClose.cs │ │ │ ├── ButtonSpecFormWindowMax.cs │ │ │ ├── ButtonSpecFormWindowMin.cs │ │ │ ├── ButtonSpecHeaderGroup.cs │ │ │ ├── ButtonSpecManagerBase.cs │ │ │ ├── ButtonSpecManagerDraw.cs │ │ │ ├── ButtonSpecManagerLayout.cs │ │ │ ├── ButtonSpecRemapByContentBase.cs │ │ │ ├── ButtonSpecRemapByContentCache.cs │ │ │ ├── ButtonSpecRemapByContentView.cs │ │ │ ├── ButtonSpecToContent.cs │ │ │ ├── ButtonSpecView.cs │ │ │ └── ButtonSpecViewControllers.cs │ │ ├── ContextMenu │ │ │ ├── KryptonContextMenuCheckBox.cs │ │ │ ├── KryptonContextMenuCheckButton.cs │ │ │ ├── KryptonContextMenuCollections.cs │ │ │ ├── KryptonContextMenuColorColumns.cs │ │ │ ├── KryptonContextMenuComboBox.cs │ │ │ ├── KryptonContextMenuHeading.cs │ │ │ ├── KryptonContextMenuImageSelect.cs │ │ │ ├── KryptonContextMenuItem.cs │ │ │ ├── KryptonContextMenuItemBase.cs │ │ │ ├── KryptonContextMenuItems.cs │ │ │ ├── KryptonContextMenuLinkLabel.cs │ │ │ ├── KryptonContextMenuMonthCalendar.cs │ │ │ ├── KryptonContextMenuProgressBar.cs │ │ │ ├── KryptonContextMenuRadioButton.cs │ │ │ └── KryptonContextMenuSeparator.cs │ │ ├── Controller │ │ │ ├── ButtonController.cs │ │ │ ├── CheckBoxController.cs │ │ │ ├── ContextMenuController.cs │ │ │ ├── ControllerDefinitions.cs │ │ │ ├── LinkLabelController.cs │ │ │ ├── MenuCheckBoxController.cs │ │ │ ├── MenuCheckButtonController.cs │ │ │ ├── MenuColorBlockController.cs │ │ │ ├── MenuImageSelectController.cs │ │ │ ├── MenuItemController.cs │ │ │ ├── MenuLinkLabelController.cs │ │ │ ├── MenuRadioButtonController.cs │ │ │ ├── MonthCalendarController.cs │ │ │ ├── RadioButtonController.cs │ │ │ ├── SeparatorController.cs │ │ │ ├── TooltipController.cs │ │ │ ├── TrackBarController.cs │ │ │ └── TrackPositionController.cs │ │ ├── Controls Toolkit │ │ │ ├── KryptonAboutBox.cs │ │ │ ├── KryptonAlternateCommandLinkButton.cs │ │ │ ├── KryptonBorderEdge.cs │ │ │ ├── KryptonBreadCrumb.cs │ │ │ ├── KryptonBreadCrumbItem.cs │ │ │ ├── KryptonButton.cs │ │ │ ├── KryptonButtonPanel.cs │ │ │ ├── KryptonButtonPanel.resx │ │ │ ├── KryptonCalcInput.cs │ │ │ ├── KryptonCheckBox.cs │ │ │ ├── KryptonCheckButton.cs │ │ │ ├── KryptonCheckSet.cs │ │ │ ├── KryptonCheckedListBox.cs │ │ │ ├── KryptonColorButton.cs │ │ │ ├── KryptonColorDialog.cs │ │ │ ├── KryptonComboBox.cs │ │ │ ├── KryptonCommand.cs │ │ │ ├── KryptonCommandLinkButton.cs │ │ │ ├── KryptonContextMenu.cs │ │ │ ├── KryptonCustomPaletteBase.cs │ │ │ ├── KryptonDataGridView.cs │ │ │ ├── KryptonDataGridViewButtonCell.cs │ │ │ ├── KryptonDataGridViewButtonColumn.cs │ │ │ ├── KryptonDataGridViewCellIndicatorImage.cs │ │ │ ├── KryptonDataGridViewCheckBoxCell.cs │ │ │ ├── KryptonDataGridViewCheckBoxColumn.cs │ │ │ ├── KryptonDataGridViewComboBoxCell.cs │ │ │ ├── KryptonDataGridViewComboBoxColumn.cs │ │ │ ├── KryptonDataGridViewComboBoxEditingControl.cs │ │ │ ├── KryptonDataGridViewCustomEditingControl.cs │ │ │ ├── KryptonDataGridViewDateTimePickerCell.cs │ │ │ ├── KryptonDataGridViewDateTimePickerColumn.cs │ │ │ ├── KryptonDataGridViewDateTimePickerEditingControl.cs │ │ │ ├── KryptonDataGridViewDomainUpDownCell.cs │ │ │ ├── KryptonDataGridViewDomainUpDownColumn.cs │ │ │ ├── KryptonDataGridViewDomainUpDownEditingControl.cs │ │ │ ├── KryptonDataGridViewIconColumn.cs │ │ │ ├── KryptonDataGridViewImageColumn.cs │ │ │ ├── KryptonDataGridViewLinkCell.cs │ │ │ ├── KryptonDataGridViewLinkColumn.cs │ │ │ ├── KryptonDataGridViewMaskedTextBoxCell.cs │ │ │ ├── KryptonDataGridViewMaskedTextBoxColumn.cs │ │ │ ├── KryptonDataGridViewMaskedTextBoxEditingControl.cs │ │ │ ├── KryptonDataGridViewNumericUpDownCell.cs │ │ │ ├── KryptonDataGridViewNumericUpDownColumn.cs │ │ │ ├── KryptonDataGridViewNumericUpDownEditingControl.cs │ │ │ ├── KryptonDataGridViewProgressCell.cs │ │ │ ├── KryptonDataGridViewProgressColumn.cs │ │ │ ├── KryptonDataGridViewProgressEditingControl.cs │ │ │ ├── KryptonDataGridViewRatingCell.cs │ │ │ ├── KryptonDataGridViewRatingColumn.cs │ │ │ ├── KryptonDataGridViewTextBoxCell.cs │ │ │ ├── KryptonDataGridViewTextBoxColumn.cs │ │ │ ├── KryptonDataGridViewTextBoxEditingControl.cs │ │ │ ├── KryptonDataGridViewUtilities.cs │ │ │ ├── KryptonDateTimePicker.cs │ │ │ ├── KryptonDomainUpDown.cs │ │ │ ├── KryptonDropButton.cs │ │ │ ├── KryptonExceptionDialog.cs │ │ │ ├── KryptonExceptionHandler.cs │ │ │ ├── KryptonFolderBrowserDialog.cs │ │ │ ├── KryptonFontDialog.cs │ │ │ ├── KryptonForm.cs │ │ │ ├── KryptonGroup.cs │ │ │ ├── KryptonGroupBox.cs │ │ │ ├── KryptonGroupBoxPanel.cs │ │ │ ├── KryptonGroupPanel.cs │ │ │ ├── KryptonHeader.cs │ │ │ ├── KryptonHeaderGroup.cs │ │ │ ├── KryptonHelpCommand.cs │ │ │ ├── KryptonInformationBox.cs │ │ │ ├── KryptonInputBox.cs │ │ │ ├── KryptonInputBoxManager.cs │ │ │ ├── KryptonIntegratedToolBarManager.cs │ │ │ ├── KryptonIntegratedToolbarCopyCommand.cs │ │ │ ├── KryptonIntegratedToolbarCutCommand.cs │ │ │ ├── KryptonIntegratedToolbarNewCommand.cs │ │ │ ├── KryptonIntegratedToolbarOpenCommand.cs │ │ │ ├── KryptonIntegratedToolbarPageSetupCommand.cs │ │ │ ├── KryptonIntegratedToolbarPasteCommand.cs │ │ │ ├── KryptonIntegratedToolbarPrintCommand.cs │ │ │ ├── KryptonIntegratedToolbarPrintPreviewCommand.cs │ │ │ ├── KryptonIntegratedToolbarQuickPrintCommand.cs │ │ │ ├── KryptonIntegratedToolbarRedoCommand.cs │ │ │ ├── KryptonIntegratedToolbarSaveAllCommand.cs │ │ │ ├── KryptonIntegratedToolbarSaveAsCommand.cs │ │ │ ├── KryptonIntegratedToolbarSaveCommand.cs │ │ │ ├── KryptonIntegratedToolbarUndoCommand.cs │ │ │ ├── KryptonLabel.cs │ │ │ ├── KryptonLinkLabel.cs │ │ │ ├── KryptonLinkWrapLabel.cs │ │ │ ├── KryptonListBox.cs │ │ │ ├── KryptonListItem.cs │ │ │ ├── KryptonListView.cs │ │ │ ├── KryptonManager.cs │ │ │ ├── KryptonMaskedTextBox.cs │ │ │ ├── KryptonMessageBox.cs │ │ │ ├── KryptonMonthCalendar.cs │ │ │ ├── KryptonMultilineStringEditor.cs │ │ │ ├── KryptonNumericUpDown.cs │ │ │ ├── KryptonOpenFileDialog.cs │ │ │ ├── KryptonPanel.cs │ │ │ ├── KryptonPictureBox.cs │ │ │ ├── KryptonPoweredByButton.cs │ │ │ ├── KryptonPrintDialog.cs │ │ │ ├── KryptonProgressBar.cs │ │ │ ├── KryptonProgressBarToolStripItem.cs │ │ │ ├── KryptonPropertyGrid.cs │ │ │ ├── KryptonRadioButton.cs │ │ │ ├── KryptonRichTextBox.cs │ │ │ ├── KryptonSaveFileDialog.cs │ │ │ ├── KryptonScrollBar.cs │ │ │ ├── KryptonSeparator.cs │ │ │ ├── KryptonSplashScreen.cs │ │ │ ├── KryptonSplitContainer.cs │ │ │ ├── KryptonSplitterPanel.cs │ │ │ ├── KryptonStatusStrip.cs │ │ │ ├── KryptonStringCollectionEditor.cs │ │ │ ├── KryptonStringCollectionEditor.resx │ │ │ ├── KryptonSystemMenu.cs │ │ │ ├── KryptonSystemMenuListener.cs │ │ │ ├── KryptonTableLayoutPanel.cs │ │ │ ├── KryptonTaskDialog │ │ │ │ ├── Elements │ │ │ │ │ ├── KryptonTaskDialogElementBase.cs │ │ │ │ │ ├── KryptonTaskDialogElementCheckBox.cs │ │ │ │ │ ├── KryptonTaskDialogElementComboBox.cs │ │ │ │ │ ├── KryptonTaskDialogElementCommandLinkButtons.ButtonsCollectionEditor.cs │ │ │ │ │ ├── KryptonTaskDialogElementCommandLinkButtons.cs │ │ │ │ │ ├── KryptonTaskDialogElementContent.ImageStorage.cs │ │ │ │ │ ├── KryptonTaskDialogElementContent.cs │ │ │ │ │ ├── KryptonTaskDialogElementContentTest.cs │ │ │ │ │ ├── KryptonTaskDialogElementEmpty.cs │ │ │ │ │ ├── KryptonTaskDialogElementFooterBar.CommonButtonProperties.cs │ │ │ │ │ ├── KryptonTaskDialogElementFooterBar.FooterProperties.cs │ │ │ │ │ ├── KryptonTaskDialogElementFooterBar.cs │ │ │ │ │ ├── KryptonTaskDialogElementFreeWheeler1.cs │ │ │ │ │ ├── KryptonTaskDialogElementFreeWheeler2.cs │ │ │ │ │ ├── KryptonTaskDialogElementHeading.cs │ │ │ │ │ ├── KryptonTaskDialogElementHyperLink.cs │ │ │ │ │ ├── KryptonTaskDialogElementProgresBar.Properties.cs │ │ │ │ │ ├── KryptonTaskDialogElementProgressBar.cs │ │ │ │ │ ├── KryptonTaskDialogElementRichTextBox.cs │ │ │ │ │ └── KryptonTaskDialogElementSingleLineControlBase.cs │ │ │ │ ├── Enums │ │ │ │ │ ├── KryptonTaskDialogCommonButtonTypes.cs │ │ │ │ │ ├── KryptonTaskDialogElementContent.ContentImageStorageProperties.cs │ │ │ │ │ ├── KryptonTaskDialogElementFooterBar.cs │ │ │ │ │ └── KryptonTaskDialogIconType.cs │ │ │ │ ├── Interfaces │ │ │ │ │ ├── IKryptonTaskDialogElementBase.cs │ │ │ │ │ ├── IKryptonTaskDialogElementCommonButtons.cs │ │ │ │ │ ├── IKryptonTaskDialogElementContent.cs │ │ │ │ │ ├── IKryptonTaskDialogElementDescription.cs │ │ │ │ │ ├── IKryptonTaskDialogElementEventSizeChanged.cs │ │ │ │ │ ├── IKryptonTaskDialogElementFlowDirection.cs │ │ │ │ │ ├── IKryptonTaskDialogElementFont.cs │ │ │ │ │ ├── IKryptonTaskDialogElementFooterBar.cs │ │ │ │ │ ├── IKryptonTaskDialogElementForeColor.cs │ │ │ │ │ ├── IKryptonTaskDialogElementHeight.cs │ │ │ │ │ ├── IKryptonTaskDialogElementIconType.cs │ │ │ │ │ ├── IKryptonTaskDialogElementImage.cs │ │ │ │ │ ├── IKryptonTaskDialogElementPropertyChanged.cs │ │ │ │ │ ├── IKryptonTaskDialogElementRoundedCorners.cs │ │ │ │ │ ├── IKryptonTaskDialogElementText.cs │ │ │ │ │ ├── IKryptonTaskDialogElementTextAlignment.cs │ │ │ │ │ └── IKryptonTaskDialogElementUrl.cs │ │ │ │ ├── KryptonTaskDialog.cs │ │ │ │ ├── KryptonTaskDialogDefaults.cs │ │ │ │ ├── KryptonTaskDialogExtensions.cs │ │ │ │ ├── KryptonTaskDialogFormProperties.cs │ │ │ │ ├── KryptonTaskDialogIconController.cs │ │ │ │ ├── KryptonTaskDialogKryptonForm.cs │ │ │ │ ├── KryptonTaskDialogKryptonPanel.cs │ │ │ │ └── KryptonTaskDialogKryptonRichTextBox.cs │ │ │ ├── KryptonTextBox.cs │ │ │ ├── KryptonThemeBrowser.cs │ │ │ ├── KryptonThemeComboBox.cs │ │ │ ├── KryptonThemeListBox.cs │ │ │ ├── KryptonToastNotification.cs │ │ │ ├── KryptonToastNotificationManager.cs │ │ │ ├── KryptonToggleSwitch.cs │ │ │ ├── KryptonToolStrip.cs │ │ │ ├── KryptonToolStripComboBox.cs │ │ │ ├── KryptonToolStripMenuItem.cs │ │ │ ├── KryptonToolStripThemeComboBox.cs │ │ │ ├── KryptonToolkitPoweredByControl.Designer.cs │ │ │ ├── KryptonToolkitPoweredByControl.cs │ │ │ ├── KryptonToolkitPoweredByControl.resx │ │ │ ├── KryptonTrackBar.cs │ │ │ ├── KryptonTreeNode.cs │ │ │ ├── KryptonTreeView.cs │ │ │ ├── KryptonWebBrowser.cs │ │ │ └── KryptonWrapLabel.cs │ │ ├── Controls Visuals │ │ │ ├── CommonDialogHandler.cs │ │ │ ├── Notification Toast │ │ │ │ ├── Base │ │ │ │ │ ├── VisualToastNotificationBaseForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationBaseForm.cs │ │ │ │ │ └── VisualToastNotificationBaseForm.resx │ │ │ │ ├── Basic │ │ │ │ │ ├── LTR │ │ │ │ │ │ ├── VisualToastNotificationBasicForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationBasicForm.cs │ │ │ │ │ │ ├── VisualToastNotificationBasicForm.resx │ │ │ │ │ │ ├── VisualToastNotificationBasicWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationBasicWithProgressBarForm.cs │ │ │ │ │ │ └── VisualToastNotificationBasicWithProgressBarForm.resx │ │ │ │ │ └── RTL │ │ │ │ │ │ ├── VisualToastNotificationBasicRtlAwareForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationBasicRtlAwareForm.cs │ │ │ │ │ │ ├── VisualToastNotificationBasicRtlAwareForm.resx │ │ │ │ │ │ ├── VisualToastNotificationBasicWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationBasicWithProgressBarRtlAwareForm.cs │ │ │ │ │ │ └── VisualToastNotificationBasicWithProgressBarRtlAwareForm.resx │ │ │ │ └── User Input │ │ │ │ │ ├── LTR │ │ │ │ │ ├── Normal │ │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputForm.cs │ │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputForm.resx │ │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputForm.cs │ │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputForm.resx │ │ │ │ │ │ ├── VisualToastNotificationDomainUpDownUserInputForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationDomainUpDownUserInputForm.cs │ │ │ │ │ │ ├── VisualToastNotificationDomainUpDownUserInputForm.resx │ │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxUserInputForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxUserInputForm.cs │ │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxUserInputForm.resx │ │ │ │ │ │ ├── VisualToastNotificationNUDUserInputForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationNUDUserInputForm.cs │ │ │ │ │ │ ├── VisualToastNotificationNUDUserInputForm.resx │ │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputForm.cs │ │ │ │ │ │ └── VisualToastNotificationTextBoxUserInputForm.resx │ │ │ │ │ └── ProgressBar │ │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputWithProgressBarForm.cs │ │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputWithProgressBarForm.resx │ │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputWithProgressBarForm.cs │ │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputWithProgressBarForm.resx │ │ │ │ │ │ ├── VisualToastNotificationDomianUpDownInputWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationDomianUpDownInputWithProgressBarForm.cs │ │ │ │ │ │ ├── VisualToastNotificationDomianUpDownInputWithProgressBarForm.resx │ │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxInputWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxInputWithProgressBarForm.cs │ │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxInputWithProgressBarForm.resx │ │ │ │ │ │ ├── VisualToastNotificationNUDUserInputWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationNUDUserInputWithProgressBarForm.cs │ │ │ │ │ │ ├── VisualToastNotificationNUDUserInputWithProgressBarForm.resx │ │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputWithProgressBarForm.Designer.cs │ │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputWithProgressBarForm.cs │ │ │ │ │ │ └── VisualToastNotificationTextBoxUserInputWithProgressBarForm.resx │ │ │ │ │ └── RTL │ │ │ │ │ ├── Normal │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationDomainUpDownUserInputRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationDomainUpDownUserInputRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationDomainUpDownUserInputRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxUserInputRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxUserInputRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxUserInputRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationNUDUserInputRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationNUDUserInputRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationNUDUserInputRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputRtlAwareForm.cs │ │ │ │ │ └── VisualToastNotificationTextBoxUserInputRtlAwareForm.resx │ │ │ │ │ └── ProgressBar │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputWithProgressBarRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationComboBoxUserInputWithProgressBarRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputWithProgressBarRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationDateTimeUserInputWithProgressBarRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationDomainUpDownInputWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationDomainUpDownInputWithProgressBarRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationDomainUpDownInputWithProgressBarRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxInputWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxInputWithProgressBarRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationMaskedTextBoxInputWithProgressBarRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationNUDUserInputWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationNUDUserInputWithProgressBarRtlAwareForm.cs │ │ │ │ │ ├── VisualToastNotificationNUDUserInputWithProgressBarRtlAwareForm.resx │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputWithProgressBarRtlAwareForm.Designer.cs │ │ │ │ │ ├── VisualToastNotificationTextBoxUserInputWithProgressBarRtlAwareForm.cs │ │ │ │ │ └── VisualToastNotificationTextBoxUserInputWithProgressBarRtlAwareForm.resx │ │ │ ├── RTL Aware │ │ │ │ ├── VisualAboutBoxRtlAwareForm.Designer.cs │ │ │ │ ├── VisualAboutBoxRtlAwareForm.cs │ │ │ │ ├── VisualAboutBoxRtlAwareForm.resx │ │ │ │ ├── VisualInputBoxRtlAwareForm.Designer.cs │ │ │ │ ├── VisualInputBoxRtlAwareForm.cs │ │ │ │ ├── VisualInputBoxRtlAwareForm.resx │ │ │ │ ├── VisualMessageBoxRtlAwareForm.Designer.cs │ │ │ │ ├── VisualMessageBoxRtlAwareForm.cs │ │ │ │ ├── VisualMessageBoxRtlAwareForm.resx │ │ │ │ ├── VisualThemeBrowserFormRtlAware.Designer.cs │ │ │ │ ├── VisualThemeBrowserFormRtlAware.cs │ │ │ │ └── VisualThemeBrowserFormRtlAware.resx │ │ │ ├── VisualAboutBoxForm.Designer.cs │ │ │ ├── VisualAboutBoxForm.cs │ │ │ ├── VisualAboutBoxForm.resx │ │ │ ├── VisualBlur.cs │ │ │ ├── VisualChangeLogForm.Designer.cs │ │ │ ├── VisualChangeLogForm.cs │ │ │ ├── VisualChangeLogForm.resx │ │ │ ├── VisualContainerControl.cs │ │ │ ├── VisualContainerControlBase.cs │ │ │ ├── VisualContextMenu.cs │ │ │ ├── VisualContextMenuDTP.cs │ │ │ ├── VisualControl.cs │ │ │ ├── VisualControlBase.cs │ │ │ ├── VisualControlContainment.cs │ │ │ ├── VisualConversionForm.Designer.cs │ │ │ ├── VisualConversionForm.cs │ │ │ ├── VisualConversionForm.resx │ │ │ ├── VisualExceptionDialogForm.Designer.cs │ │ │ ├── VisualExceptionDialogForm.cs │ │ │ ├── VisualExceptionDialogForm.resx │ │ │ ├── VisualForm.cs │ │ │ ├── VisualForm.resx │ │ │ ├── VisualInformationBoxForm.Designer.cs │ │ │ ├── VisualInformationBoxForm.cs │ │ │ ├── VisualInformationBoxForm.resx │ │ │ ├── VisualInputBoxForm.Designer.cs │ │ │ ├── VisualInputBoxForm.cs │ │ │ ├── VisualInputBoxForm.resx │ │ │ ├── VisualMessageBoxForm.Designer.cs │ │ │ ├── VisualMessageBoxForm.cs │ │ │ ├── VisualMessageBoxForm.resx │ │ │ ├── VisualMultilineStringEditor.cs │ │ │ ├── VisualMultilineStringEditorForm.Designer.cs │ │ │ ├── VisualMultilineStringEditorForm.cs │ │ │ ├── VisualMultilineStringEditorForm.resx │ │ │ ├── VisualPanel.cs │ │ │ ├── VisualPopup.cs │ │ │ ├── VisualPopupManager.cs │ │ │ ├── VisualPopupShadow.cs │ │ │ ├── VisualPopupShadow.resx │ │ │ ├── VisualPopupTooltip.cs │ │ │ ├── VisualShadowBase.cs │ │ │ ├── VisualSimple.cs │ │ │ ├── VisualSimpleBase.cs │ │ │ ├── VisualSplashScreenForm.Designer.cs │ │ │ ├── VisualSplashScreenForm.cs │ │ │ ├── VisualSplashScreenForm.resx │ │ │ ├── VisualThemeBrowserForm.Designer.cs │ │ │ ├── VisualThemeBrowserForm.cs │ │ │ ├── VisualThemeBrowserForm.resx │ │ │ ├── VisualToolkitBinaryInformationForm.Designer.cs │ │ │ ├── VisualToolkitBinaryInformationForm.cs │ │ │ └── VisualToolkitBinaryInformationForm.resx │ │ ├── Converters │ │ │ ├── ButtonSpecFormFixedConverter.cs │ │ │ ├── ButtonStyleConverter.cs │ │ │ ├── DataGridViewStyleConverter.cs │ │ │ ├── DateTimeNullableConverter.cs │ │ │ ├── GridStyleConverter.cs │ │ │ ├── HeaderGroupCollapseTargetConverter.cs │ │ │ ├── HeaderStyleConverter.cs │ │ │ ├── InputControlStyleConverter.cs │ │ │ ├── KryptonCheckedButtonConverter.cs │ │ │ ├── KryptonLinkBehaviorConverter.cs │ │ │ ├── KryptonMessageBoxIconConverter.cs │ │ │ ├── KryptonToastNotificationIconConverter.cs │ │ │ ├── LabelStyleConverter.cs │ │ │ ├── PaletteBackStyleConverter.cs │ │ │ ├── PaletteBorderStyleConverter.cs │ │ │ ├── PaletteButtonOrientationConverter.cs │ │ │ ├── PaletteButtonSpecStyleConverter.cs │ │ │ ├── PaletteButtonStyleConverter.cs │ │ │ ├── PaletteClassTypeConverter.cs │ │ │ ├── PaletteContentStyleConverter.cs │ │ │ ├── PaletteDrawBordersConverter.cs │ │ │ ├── PaletteImageEffectConverter.cs │ │ │ ├── PaletteImageStyleConverter.cs │ │ │ ├── PaletteModeConverter.cs │ │ │ ├── PaletteTextTrimConverter.cs │ │ │ ├── PlacementModeConverter.cs │ │ │ ├── SeparatorStyleConverter.cs │ │ │ ├── StringLookupConverter.cs │ │ │ ├── TabBorderStyleConverter.cs │ │ │ └── TabStyleConverter.cs │ │ ├── Designers │ │ │ ├── Action Lists │ │ │ │ ├── KryptonBorderEdgeActionList.cs │ │ │ │ ├── KryptonBreadCrumbActionList.cs │ │ │ │ ├── KryptonButtonActionList.cs │ │ │ │ ├── KryptonCalcButtonActionList.cs │ │ │ │ ├── KryptonCheckBoxActionList.cs │ │ │ │ ├── KryptonCheckButtonActionList.cs │ │ │ │ ├── KryptonCheckSetActionList.cs │ │ │ │ ├── KryptonCheckedListBoxActionList.cs │ │ │ │ ├── KryptonColorButtonActionList.cs │ │ │ │ ├── KryptonComboBoxActionList.cs │ │ │ │ ├── KryptonCommandActionList.cs │ │ │ │ ├── KryptonCommandLinkButtonActionList.cs │ │ │ │ ├── KryptonContextMenuActionList.cs │ │ │ │ ├── KryptonCustomPaletteBaseActionList.cs │ │ │ │ ├── KryptonDateTimePickerActionList.cs │ │ │ │ ├── KryptonDomainUpDownActionList.cs │ │ │ │ ├── KryptonDropButtonActionList.cs │ │ │ │ ├── KryptonFormActionList.cs │ │ │ │ ├── KryptonGroupActionList.cs │ │ │ │ ├── KryptonGroupBoxActionList.cs │ │ │ │ ├── KryptonHeaderActionList.cs │ │ │ │ ├── KryptonHeaderGroupActionList.cs │ │ │ │ ├── KryptonIntegratedToolBarManagerActionList.cs │ │ │ │ ├── KryptonLabelActionList.cs │ │ │ │ ├── KryptonLinkLabelActionList.cs │ │ │ │ ├── KryptonLinkWrapLabelActionList.cs │ │ │ │ ├── KryptonListBoxActionList.cs │ │ │ │ ├── KryptonListViewActionList.cs │ │ │ │ ├── KryptonManagerActionList.cs │ │ │ │ ├── KryptonMaskedTextBoxActionList.cs │ │ │ │ ├── KryptonMonthCalendarActionList.cs │ │ │ │ ├── KryptonNumericUpDownActionList.cs │ │ │ │ ├── KryptonPanelActionList.cs │ │ │ │ ├── KryptonPropertyGridActionList.cs │ │ │ │ ├── KryptonRadioButtonActionList.cs │ │ │ │ ├── KryptonRichTextBoxActionList.cs │ │ │ │ ├── KryptonScrollBarActionList.cs │ │ │ │ ├── KryptonSeparatorActionList.cs │ │ │ │ ├── KryptonSplitContainerActionList.cs │ │ │ │ ├── KryptonTextBoxActionList.cs │ │ │ │ ├── KryptonThemeBrowserActionList.cs │ │ │ │ ├── KryptonThemeComboBoxActionList.cs │ │ │ │ ├── KryptonTrackBarActionList.cs │ │ │ │ ├── KryptonTreeViewActionList.cs │ │ │ │ └── KryptonWrapLabelActionList.cs │ │ │ ├── Designers │ │ │ │ ├── KryptonBorderEdgeDesigner.cs │ │ │ │ ├── KryptonBreadCrumbDesigner.cs │ │ │ │ ├── KryptonBreadCrumbItemDesigner.cs │ │ │ │ ├── KryptonButtonDesigner.cs │ │ │ │ ├── KryptonCalcButtonDesigner.cs │ │ │ │ ├── KryptonCheckBoxDesigner.cs │ │ │ │ ├── KryptonCheckButtonDesigner.cs │ │ │ │ ├── KryptonCheckSetDesigner.cs │ │ │ │ ├── KryptonCheckedListBoxDesigner.cs │ │ │ │ ├── KryptonColorButtonDesigner.cs │ │ │ │ ├── KryptonComboBoxColumnDesigner.cs │ │ │ │ ├── KryptonComboBoxDesigner.cs │ │ │ │ ├── KryptonCommandDesigner.cs │ │ │ │ ├── KryptonCommandLinkButtonDesigner.cs │ │ │ │ ├── KryptonContextMenuDesigner.cs │ │ │ │ ├── KryptonContextMenuItemDesigner.cs │ │ │ │ ├── KryptonContextMenuItemsDesigner.cs │ │ │ │ ├── KryptonCustomPaletteBaseDesigner.cs │ │ │ │ ├── KryptonDataGridViewDesigner.cs │ │ │ │ ├── KryptonDateTimePickerColumnDesigner.cs │ │ │ │ ├── KryptonDateTimePickerDesigner.cs │ │ │ │ ├── KryptonDomainUpDownColumnDesigner.cs │ │ │ │ ├── KryptonDomainUpDownDesigner.cs │ │ │ │ ├── KryptonDropButtonDesigner.cs │ │ │ │ ├── KryptonFormDesigner.cs │ │ │ │ ├── KryptonGroupBoxDesigner.cs │ │ │ │ ├── KryptonGroupDesigner.cs │ │ │ │ ├── KryptonGroupPanelDesigner.cs │ │ │ │ ├── KryptonHeaderDesigner.cs │ │ │ │ ├── KryptonHeaderGroupDesigner.cs │ │ │ │ ├── KryptonIntegratedToolBarManagerDesigner.cs │ │ │ │ ├── KryptonLabelDesigner.cs │ │ │ │ ├── KryptonLinkLabelDesigner.cs │ │ │ │ ├── KryptonLinkWrapLabelDesigner.cs │ │ │ │ ├── KryptonListBoxDesigner.cs │ │ │ │ ├── KryptonListViewDesigner.cs │ │ │ │ ├── KryptonManagerDesigner.cs │ │ │ │ ├── KryptonMaskedTextBoxColumnDesigner.cs │ │ │ │ ├── KryptonMaskedTextBoxDesigner.cs │ │ │ │ ├── KryptonMonthCalendarDesigner.cs │ │ │ │ ├── KryptonNumericUpDownColumnDesigner.cs │ │ │ │ ├── KryptonNumericUpDownDesigner.cs │ │ │ │ ├── KryptonPanelDesigner.cs │ │ │ │ ├── KryptonPropertyGridDesigner.cs │ │ │ │ ├── KryptonRadioButtonDesigner.cs │ │ │ │ ├── KryptonRichTextBoxDesigner.cs │ │ │ │ ├── KryptonScrollBarDesigner.cs │ │ │ │ ├── KryptonSeparatorDesigner.cs │ │ │ │ ├── KryptonSplitContainerDesigner.cs │ │ │ │ ├── KryptonSplitterPanelDesigner.cs │ │ │ │ ├── KryptonStubDesigner.cs │ │ │ │ ├── KryptonTextBoxColumnDesigner.cs │ │ │ │ ├── KryptonTextBoxDesigner.cs │ │ │ │ ├── KryptonThemeBrowserDesigner.cs │ │ │ │ ├── KryptonThemeComboBoxDesigner.cs │ │ │ │ ├── KryptonTrackBarDesigner.cs │ │ │ │ ├── KryptonTreeViewDesigner.cs │ │ │ │ ├── KryptonWebBrowserDesigner.cs │ │ │ │ ├── KryptonWrapLabelDesigner.cs │ │ │ │ └── ScrollBarControlDesigner.cs │ │ │ ├── Editors │ │ │ │ ├── KryptonBreadCrumbItemsEditor.cs │ │ │ │ ├── KryptonCheckButtonCollectionEditor.cs │ │ │ │ ├── KryptonContextMenuCollectionEditor.cs │ │ │ │ ├── KryptonContextMenuItemCollectionEditor.cs │ │ │ │ ├── KryptonInitialDirectoryEditor.cs │ │ │ │ └── PaletteDrawBordersEditor.cs │ │ │ ├── Other │ │ │ │ ├── KryptonDesignerActionItem.cs │ │ │ │ ├── KryptonSplitContainerBehavior.cs │ │ │ │ ├── KryptonSplitContainerGlyph.cs │ │ │ │ ├── OverrideComboBoxStyleDropDownStyle.cs │ │ │ │ ├── PaletteDrawBordersSelector.Designer.cs │ │ │ │ ├── PaletteDrawBordersSelector.cs │ │ │ │ └── PaletteDrawBordersSelector.resx │ │ │ ├── System.ComponentModel.Design.png │ │ │ ├── System.Windows.Forms.Design.png │ │ │ └── UX │ │ │ │ ├── KryptonCheckButtonCollectionForm.Designer.cs │ │ │ │ ├── KryptonCheckButtonCollectionForm.cs │ │ │ │ ├── KryptonCheckButtonCollectionForm.resx │ │ │ │ └── KryptonContextMenuCollectionForm.cs │ │ ├── EventArgs │ │ │ ├── BreadCrumbMenuArgs.cs │ │ │ ├── ButtonDragOffsetEventArgs.cs │ │ │ ├── ButtonDragRectangleEventArgs.cs │ │ │ ├── ButtonSpecEventArgs.cs │ │ │ ├── CloseReasonEventArgs.cs │ │ │ ├── ColorEventArgs.cs │ │ │ ├── ContextMenuArgs.cs │ │ │ ├── ContextPositionMenuArgs.cs │ │ │ ├── DataGridViewButtonSpecClickEventArgs.cs │ │ │ ├── DateTimePickerCloseArgs.cs │ │ │ ├── DateTimePickerDropArgs.cs │ │ │ ├── HoveredSelectionChangedEventArgs.cs │ │ │ ├── ImageSelectEventArgs.cs │ │ │ ├── NeedLayoutEventArgs.cs │ │ │ ├── PaletteLayoutEventArgs.cs │ │ │ ├── PointEventArgs.cs │ │ │ ├── PointEventCancelArgs.cs │ │ │ ├── PointOffsetEventCancelArgs.cs │ │ │ ├── SplitterMoveRectEventArgs.cs │ │ │ ├── ToolTipNeededEventArgs.cs │ │ │ ├── TooltipEventArgs.cs │ │ │ ├── TypedCollectionEventArgs.cs │ │ │ └── ViewControlHitTestArgs.cs │ │ ├── General │ │ │ ├── AntiAlias.cs │ │ │ ├── BlurManager.cs │ │ │ ├── BoolFlags31.cs │ │ │ ├── Clipping.cs │ │ │ ├── CommonHelper.cs │ │ │ ├── CommonHelperThemeSelectors.cs │ │ │ ├── CommonHelperUpDownBase.cs │ │ │ ├── ContextMenuProvider.cs │ │ │ ├── ControlObscurer.cs │ │ │ ├── ConversionPaths.cs │ │ │ ├── CorrectContextControl.cs │ │ │ ├── DataGridViewColumnSpecCollection.cs │ │ │ ├── DebugLogger.cs │ │ │ ├── Definitions.cs │ │ │ ├── DesignTimeUtilities.cs │ │ │ ├── Extensions.cs │ │ │ ├── GlobalId.cs │ │ │ ├── GlobalStaticValues.cs │ │ │ ├── GlobalStrings.cs │ │ │ ├── GlobalSuppressions.cs │ │ │ ├── GraphicsHint.cs │ │ │ ├── GraphicsTextHint.cs │ │ │ ├── HResult.cs │ │ │ ├── HSL.cs │ │ │ ├── IntegratedToolbarManager.cs │ │ │ ├── KryptonAboutBoxData.cs │ │ │ ├── KryptonAboutBoxUtilities.cs │ │ │ ├── KryptonAboutToolkitData.cs │ │ │ ├── KryptonCommandType.cs │ │ │ ├── KryptonControlCollection.cs │ │ │ ├── KryptonDefaultColorAttribute.cs │ │ │ ├── KryptonFormFadeController.cs │ │ │ ├── KryptonFormFadeSpeed.cs │ │ │ ├── KryptonGlobalToolkitStrings.cs │ │ │ ├── KryptonInputBoxData.cs │ │ │ ├── KryptonMessageBoxController.cs │ │ │ ├── KryptonMessageBoxNativeWindow.cs │ │ │ ├── KryptonReadOnlyControls.cs │ │ │ ├── KryptonSplashScreenData.cs │ │ │ ├── KryptonThemeBrowserData.cs │ │ │ ├── ModalWaitDialog.Designer.cs │ │ │ ├── ModalWaitDialog.cs │ │ │ ├── ModalWaitDialog.resx │ │ │ ├── NullContentValues.cs │ │ │ ├── OperationThread.cs │ │ │ ├── PlatformInvoke.cs │ │ │ ├── Scroll Bars │ │ │ │ ├── Enumerations.cs │ │ │ │ ├── HScrollSkin.cs │ │ │ │ ├── KryptonScrollBarRenderer.cs │ │ │ │ ├── ScrollBarExtendedRenderer.cs │ │ │ │ ├── VScrollSkin.cs │ │ │ │ └── WIN32ScrollBars.cs │ │ │ ├── ShadowManager.cs │ │ │ ├── Storage.cs │ │ │ ├── ThemeChangeCoordinator.cs │ │ │ ├── Toast Notification │ │ │ │ ├── KryptonBasicToastNotificationData.cs │ │ │ │ ├── KryptonCommonToastNotificationData.cs │ │ │ │ ├── KryptonToastNotificationController.cs │ │ │ │ └── KryptonUserInputToastNotificationData.cs │ │ │ ├── ToolStripControlHostFixed.cs │ │ │ ├── TooltipManager.cs │ │ │ ├── TypedCollection.cs │ │ │ ├── TypedRestrictCollection.cs │ │ │ ├── WinFormsDefinitions.cs │ │ │ ├── WindowStylesHelper.cs │ │ │ └── XmlHelper.cs │ │ ├── Global │ │ │ └── GlobalDeclarations.cs │ │ ├── Krypton.Toolkit 2022.csproj │ │ ├── Krypton.Toolkit 2022.csproj.DotSettings │ │ ├── Krypton.Toolkit.licenseheader │ │ ├── Krypton.ico │ │ ├── Palette Base │ │ │ ├── PaletteBack │ │ │ │ ├── PaletteBack.cs │ │ │ │ ├── PaletteBackColor1.cs │ │ │ │ ├── PaletteBackInherit.cs │ │ │ │ ├── PaletteBackInheritForced.cs │ │ │ │ ├── PaletteBackInheritOverride.cs │ │ │ │ ├── PaletteBackInheritRedirect.cs │ │ │ │ ├── PaletteBackLightenColors.cs │ │ │ │ └── PaletteBackToPalette.cs │ │ │ ├── PaletteBorder │ │ │ │ ├── PaletteBorder.cs │ │ │ │ ├── PaletteBorderInherit.cs │ │ │ │ ├── PaletteBorderInheritForced.cs │ │ │ │ ├── PaletteBorderInheritOverride.cs │ │ │ │ ├── PaletteBorderInheritRedirect.cs │ │ │ │ ├── PaletteBorderToPalette.cs │ │ │ │ └── PaletteFormBorder.cs │ │ │ ├── PaletteContent │ │ │ │ ├── PaletteContent.cs │ │ │ │ ├── PaletteContentImage.cs │ │ │ │ ├── PaletteContentInherit.cs │ │ │ │ ├── PaletteContentInheritForced.cs │ │ │ │ ├── PaletteContentInheritOverride.cs │ │ │ │ ├── PaletteContentInheritRedirect.cs │ │ │ │ ├── PaletteContentJustImage.cs │ │ │ │ ├── PaletteContentJustShortText.cs │ │ │ │ ├── PaletteContentJustText.cs │ │ │ │ ├── PaletteContentText.cs │ │ │ │ └── PaletteContentToPalette.cs │ │ │ ├── PaletteDefinitions.cs │ │ │ ├── PaletteDouble │ │ │ │ ├── PaletteDouble.cs │ │ │ │ ├── PaletteDoubleMetric.cs │ │ │ │ ├── PaletteDoubleMetricRedirect.cs │ │ │ │ ├── PaletteDoubleOverride.cs │ │ │ │ ├── PaletteDoubleRedirect.cs │ │ │ │ └── PaletteFormDoubleRedirect.cs │ │ │ ├── PaletteDragDrop │ │ │ │ └── PaletteDragDrop.cs │ │ │ ├── PaletteElementColor │ │ │ │ ├── PaletteElementColor.cs │ │ │ │ ├── PaletteElementColorInherit.cs │ │ │ │ ├── PaletteElementColorInheritOverride.cs │ │ │ │ ├── PaletteElementColorInheritRedirect.cs │ │ │ │ └── PaletteElementColorRedirect.cs │ │ │ ├── PaletteMetric │ │ │ │ └── PaletteMetricRedirect.cs │ │ │ ├── PaletteMode.cs │ │ │ ├── PaletteRedirect │ │ │ │ ├── PaletteRedirect.cs │ │ │ │ ├── PaletteRedirectBack.cs │ │ │ │ ├── PaletteRedirectBorder.cs │ │ │ │ ├── PaletteRedirectBorderEdge.cs │ │ │ │ ├── PaletteRedirectButtonSpec.cs │ │ │ │ ├── PaletteRedirectContent.cs │ │ │ │ ├── PaletteRedirectDouble.cs │ │ │ │ ├── PaletteRedirectDoubleMetric.cs │ │ │ │ ├── PaletteRedirectGrids.cs │ │ │ │ ├── PaletteRedirectMetric.cs │ │ │ │ ├── PaletteRedirectRibbonBack.cs │ │ │ │ ├── PaletteRedirectRibbonDouble.cs │ │ │ │ ├── PaletteRedirectRibbonGeneral.cs │ │ │ │ ├── PaletteRedirectTriple.cs │ │ │ │ └── PaletteRedirectTripleMetric.cs │ │ │ ├── PaletteRibbon │ │ │ │ ├── PaletteRibbonBack.cs │ │ │ │ ├── PaletteRibbonBackInherit.cs │ │ │ │ ├── PaletteRibbonBackInheritRedirect.cs │ │ │ │ ├── PaletteRibbonBackRedirect.cs │ │ │ │ ├── PaletteRibbonDouble.cs │ │ │ │ ├── PaletteRibbonDoubleInherit.cs │ │ │ │ ├── PaletteRibbonDoubleInheritOverride.cs │ │ │ │ ├── PaletteRibbonDoubleInheritRedirect.cs │ │ │ │ ├── PaletteRibbonDoubleRedirect.cs │ │ │ │ ├── PaletteRibbonFileAppTab.cs │ │ │ │ ├── PaletteRibbonFileAppTabInherit.cs │ │ │ │ ├── PaletteRibbonFileAppTabInheritRedirect.cs │ │ │ │ ├── PaletteRibbonGeneral.cs │ │ │ │ ├── PaletteRibbonGeneralInherit.cs │ │ │ │ ├── PaletteRibbonGeneralInheritRedirect.cs │ │ │ │ ├── PaletteRibbonText.cs │ │ │ │ ├── PaletteRibbonTextInherit.cs │ │ │ │ └── PaletteRibbonTextInheritRedirect.cs │ │ │ ├── PaletteTab │ │ │ │ ├── PaletteTabBorder.cs │ │ │ │ ├── PaletteTabTriple.cs │ │ │ │ └── PaletteTabTripleRedirect.cs │ │ │ ├── PaletteTools │ │ │ │ └── PaletteTools.cs │ │ │ └── PaletteTriple │ │ │ │ ├── PaletteTriple.cs │ │ │ │ ├── PaletteTripleJustImage.cs │ │ │ │ ├── PaletteTripleJustImageRedirect.cs │ │ │ │ ├── PaletteTripleMetric.cs │ │ │ │ ├── PaletteTripleMetricRedirect.cs │ │ │ │ ├── PaletteTripleOverride.cs │ │ │ │ ├── PaletteTripleRedirect.cs │ │ │ │ └── PaletteTripleToPalette.cs │ │ ├── Palette Builtin │ │ │ ├── Base │ │ │ │ ├── KryptonColorSchemeBase.cs │ │ │ │ ├── PaletteBase.cs │ │ │ │ ├── README.md │ │ │ │ └── Schemes │ │ │ │ │ └── EmptySchemeBase.cs │ │ │ ├── Enumerations │ │ │ │ └── PaletteEnumerations.cs │ │ │ ├── Material │ │ │ │ ├── Bases │ │ │ │ │ └── PaletteMaterialBase.cs │ │ │ │ ├── PaletteMaterialDark.cs │ │ │ │ ├── PaletteMaterialDarkRipple.cs │ │ │ │ ├── PaletteMaterialLight.cs │ │ │ │ ├── PaletteMaterialLightRipple.cs │ │ │ │ └── Schemes │ │ │ │ │ ├── PaletteMaterialDark_BaseScheme.cs │ │ │ │ │ └── PaletteMaterialLight_BaseScheme.cs │ │ │ ├── Microsoft 365 │ │ │ │ ├── Bases │ │ │ │ │ └── PaletteMicrosoft365Base.cs │ │ │ │ ├── Extra Themes │ │ │ │ │ ├── Bases │ │ │ │ │ │ ├── PaletteMicrosoft365BlackDarkModeAlternateBase.cs │ │ │ │ │ │ ├── PaletteMicrosoft365BlackDarkModeBase.cs │ │ │ │ │ │ ├── PaletteMicrosoft365BlueDarkModeBase.cs │ │ │ │ │ │ ├── PaletteMicrosoft365BlueLightModeBase.cs │ │ │ │ │ │ ├── PaletteMicrosoft365SilverDarkModeBase.cs │ │ │ │ │ │ └── PaletteMicrosoft365SilverLightModeBase.cs │ │ │ │ │ ├── PaletteMicrosoft365BlackDarkMode.cs │ │ │ │ │ ├── PaletteMicrosoft365BlackDarkModeAlternate.cs │ │ │ │ │ ├── PaletteMicrosoft365BlueDarkMode.cs │ │ │ │ │ ├── PaletteMicrosoft365BlueLightMode.cs │ │ │ │ │ ├── PaletteMicrosoft365SilverDarkMode.cs │ │ │ │ │ ├── PaletteMicrosoft365SilverLightMode.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ ├── PaletteMicrosoft365BlackDarkModeAlternate_BaseScheme.cs │ │ │ │ │ │ ├── PaletteMicrosoft365BlackDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteMicrosoft365BlueDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteMicrosoft365BlueLightMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteMicrosoft365SilverDarkMode_BaseScheme.cs │ │ │ │ │ │ └── PaletteMicrosoft365SilverLightMode_BaseScheme.cs │ │ │ │ ├── Non Official Themes │ │ │ │ │ ├── PaletteMicrosoft365Blue.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ └── PaletteMicrosoft365Blue_BaseScheme.cs │ │ │ │ └── Official Themes │ │ │ │ │ ├── PaletteMicrosoft365Black.cs │ │ │ │ │ ├── PaletteMicrosoft365DarkGray.cs │ │ │ │ │ ├── PaletteMicrosoft365LightGray.cs │ │ │ │ │ ├── PaletteMicrosoft365Silver.cs │ │ │ │ │ ├── PaletteMicrosoft365White.cs │ │ │ │ │ └── Schemes │ │ │ │ │ ├── PaletteMicrosoft365Black_BaseScheme.cs │ │ │ │ │ ├── PaletteMicrosoft365DarkGray_BaseScheme.cs │ │ │ │ │ ├── PaletteMicrosoft365Silver_BaseScheme.cs │ │ │ │ │ └── PaletteMicrosoft365White_BaseScheme.cs │ │ │ ├── Office 2007 │ │ │ │ ├── Bases │ │ │ │ │ └── PaletteOffice2007Base.cs │ │ │ │ ├── Extra Themes │ │ │ │ │ ├── PaletteOffice2007BlackDarkMode.cs │ │ │ │ │ ├── PaletteOffice2007BlueDarkMode.cs │ │ │ │ │ ├── PaletteOffice2007BlueLightMode.cs │ │ │ │ │ ├── PaletteOffice2007SilverDarkMode.cs │ │ │ │ │ ├── PaletteOffice2007SilverLightMode.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ ├── PaletteOffice2007BlackDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteOffice2007BlueDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteOffice2007BlueLightMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteOffice2007SilverDarkMode_BaseScheme.cs │ │ │ │ │ │ └── PaletteOffice2007SilverLightMode_BaseScheme.cs │ │ │ │ ├── Non Official Themes │ │ │ │ │ ├── PaletteOffice2007DarkGray.cs │ │ │ │ │ ├── PaletteOffice2007LightGray.cs │ │ │ │ │ ├── PaletteOffice2007White.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ ├── PaletteOffice2007DarkGray_BaseScheme.cs │ │ │ │ │ │ └── PaletteOffice2007White_BaseScheme.cs │ │ │ │ └── Official Themes │ │ │ │ │ ├── PaletteOffice2007Black.cs │ │ │ │ │ ├── PaletteOffice2007Blue.cs │ │ │ │ │ ├── PaletteOffice2007Silver.cs │ │ │ │ │ └── Schemes │ │ │ │ │ ├── PaletteOffice2007Black_BaseScheme.cs │ │ │ │ │ ├── PaletteOffice2007Blue_BaseScheme.cs │ │ │ │ │ └── PaletteOffice2007Silver_BaseScheme.cs │ │ │ ├── Office 2010 │ │ │ │ ├── Bases │ │ │ │ │ ├── PaletteOffice2010Base.cs │ │ │ │ │ └── PaletteOffice2010BlackBase.cs │ │ │ │ ├── Extra Themes │ │ │ │ │ ├── PaletteOffice2010BlackDarkMode.cs │ │ │ │ │ ├── PaletteOffice2010BlueDarkMode.cs │ │ │ │ │ ├── PaletteOffice2010BlueLightMode.cs │ │ │ │ │ ├── PaletteOffice2010SilverDarkMode.cs │ │ │ │ │ ├── PaletteOffice2010SilverLightMode.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ ├── PaletteOffice2010BlackDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteOffice2010BlueDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteOffice2010BlueLightMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteOffice2010SilverDarkMode_BaseScheme.cs │ │ │ │ │ │ └── PaletteOffice2010SilverLightMode_BaseScheme.cs │ │ │ │ ├── Non Official Themes │ │ │ │ │ ├── PaletteOffice2010DarkGray.cs │ │ │ │ │ ├── PaletteOffice2010LightGray.cs │ │ │ │ │ ├── PaletteOffice2010White.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ ├── PaletteOffice2010DarkGray_BaseScheme.cs │ │ │ │ │ │ └── PaletteOffice2010White_BaseScheme.cs │ │ │ │ └── Official Themes │ │ │ │ │ ├── PaletteOffice2010Black.cs │ │ │ │ │ ├── PaletteOffice2010Blue.cs │ │ │ │ │ ├── PaletteOffice2010Silver.cs │ │ │ │ │ └── Schemes │ │ │ │ │ ├── PaletteOffice2010Black_BaseScheme.cs │ │ │ │ │ ├── PaletteOffice2010Blue_BaseScheme.cs │ │ │ │ │ └── PaletteOffice2010Silver_BaseScheme.cs │ │ │ ├── Office 2013 │ │ │ │ ├── Bases │ │ │ │ │ ├── PaletteOffice2013Base.cs │ │ │ │ │ └── PaletteOffice2013WhiteBase.cs │ │ │ │ └── Official Themes │ │ │ │ │ ├── PaletteOffice2013DarkGray.cs │ │ │ │ │ ├── PaletteOffice2013LightGray.cs │ │ │ │ │ ├── PaletteOffice2013White.cs │ │ │ │ │ └── Schemes │ │ │ │ │ ├── PaletteOffice2013DarkGray_BaseScheme.cs │ │ │ │ │ └── PaletteOffice2013White_BaseScheme.cs │ │ │ ├── Professional │ │ │ │ ├── PaletteProfessionalOffice2003.cs │ │ │ │ ├── PaletteProfessionalSystem.cs │ │ │ │ └── Schemes │ │ │ │ │ └── PaletteProfessionalSystem_BaseScheme.cs │ │ │ ├── Sparkle │ │ │ │ ├── Base │ │ │ │ │ ├── PaletteSparkleBase.cs │ │ │ │ │ └── PaletteSparkleBlueDarkModeBase.cs │ │ │ │ ├── Extra Themes │ │ │ │ │ ├── PaletteSparkleBlueDarkMode.cs │ │ │ │ │ ├── PaletteSparkleBlueLighMode.cs │ │ │ │ │ ├── PaletteSparkleOrangeDarkMode.cs │ │ │ │ │ ├── PaletteSparkleOrangeLightMode.cs │ │ │ │ │ ├── PaletteSparklePurpleDarkMode.cs │ │ │ │ │ ├── PaletteSparklePurpleLightMode.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ ├── PaletteSparkleBlueDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteSparkleBlueLighMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteSparkleOrangeDarkMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteSparkleOrangeLightMode_BaseScheme.cs │ │ │ │ │ │ ├── PaletteSparklePurpleDarkMode_BaseScheme.cs │ │ │ │ │ │ └── PaletteSparklePurpleLightMode_BaseScheme.cs │ │ │ │ └── Official Themes │ │ │ │ │ ├── PaletteSparkleBlue.cs │ │ │ │ │ ├── PaletteSparkleOrange.cs │ │ │ │ │ ├── PaletteSparklePurple.cs │ │ │ │ │ └── Schemes │ │ │ │ │ ├── PaletteSparkleBlue_BaseScheme.cs │ │ │ │ │ ├── PaletteSparkleOrange_BaseScheme.cs │ │ │ │ │ └── PaletteSparklePurple_BaseScheme.cs │ │ │ └── Visual Studio │ │ │ │ ├── Base │ │ │ │ ├── PaletteVisualStudioBase.cs │ │ │ │ └── Visual Studio 2010 │ │ │ │ │ └── Renderers │ │ │ │ │ ├── 365 │ │ │ │ │ └── PaletteVisualStudio2010With365Base.cs │ │ │ │ │ ├── 2007 │ │ │ │ │ └── PaletteVisualStudio2010With2007Base.cs │ │ │ │ │ ├── 2010 │ │ │ │ │ └── PaletteVisualStudio2010With2010Base.cs │ │ │ │ │ └── 2013 │ │ │ │ │ └── PaletteVisualStudio2010With2013Base.cs │ │ │ │ └── Official Themes │ │ │ │ ├── 2010 │ │ │ │ └── Variations │ │ │ │ │ ├── 365 │ │ │ │ │ ├── PaletteVisualStudio2010Microsoft365Variation.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ └── PaletteVisualStudio2010Microsoft365Variation_BaseScheme.cs │ │ │ │ │ ├── 2007 │ │ │ │ │ ├── PaletteVisualStudio2010Office2007Variation.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ └── PaletteVisualStudio2010Office2007Variation_BaseScheme.cs │ │ │ │ │ ├── 2010 │ │ │ │ │ ├── PaletteVisualStudio2010Office2010Variation.cs │ │ │ │ │ └── Schemes │ │ │ │ │ │ └── PaletteVisualStudio2010Office2010Variation_BaseScheme.cs │ │ │ │ │ └── 2013 │ │ │ │ │ ├── PaletteVisualStudio2010Office2013Variation.cs │ │ │ │ │ └── Schemes │ │ │ │ │ └── PaletteVisualStudio2010Office2013Variation_BaseScheme.cs │ │ │ │ ├── 2012 │ │ │ │ ├── PaletteVisualStudio2012DarkMode.cs │ │ │ │ └── PaletteVisualStudio2012LightMode.cs │ │ │ │ ├── 2013 │ │ │ │ ├── PaletteVisualStudio2013DarkMode.cs │ │ │ │ └── PaletteVisualStudio2013LightMode.cs │ │ │ │ ├── 2015 │ │ │ │ ├── PaletteVisualStudio2015DarkMode.cs │ │ │ │ └── PaletteVisualStudio2015LightMode.cs │ │ │ │ ├── 2017 │ │ │ │ ├── PaletteVisualStudio2017DarkMode.cs │ │ │ │ └── PaletteVisualStudio2017LightMode.cs │ │ │ │ ├── 2019 │ │ │ │ ├── PaletteVisualStudio2019DarkMode.cs │ │ │ │ └── PaletteVisualStudio2019LightMode.cs │ │ │ │ └── 2022 │ │ │ │ ├── PaletteVisualStudio2022DarkMode.cs │ │ │ │ └── PaletteVisualStudio2022LightMode.cs │ │ ├── Palette Component │ │ │ ├── KryptonInternalKCT.cs │ │ │ ├── KryptonPaletteButtonSpecBase.cs │ │ │ ├── KryptonPaletteButtonSpecTyped.cs │ │ │ ├── KryptonPaletteButtonSpecs.cs │ │ │ ├── KryptonPaletteCalendarDay.cs │ │ │ ├── KryptonPaletteCargo.cs │ │ │ ├── KryptonPaletteCheckButton.cs │ │ │ ├── KryptonPaletteCheckButtons.cs │ │ │ ├── KryptonPaletteCommon.cs │ │ │ ├── KryptonPaletteContextMenu.cs │ │ │ ├── KryptonPaletteControl.cs │ │ │ ├── KryptonPaletteControls.cs │ │ │ ├── KryptonPaletteCueHintText.cs │ │ │ ├── KryptonPaletteDouble3.cs │ │ │ ├── KryptonPaletteFont.cs │ │ │ ├── KryptonPaletteForm.cs │ │ │ ├── KryptonPaletteForms.cs │ │ │ ├── KryptonPaletteGrid.cs │ │ │ ├── KryptonPaletteGrids.cs │ │ │ ├── KryptonPaletteHeader.cs │ │ │ ├── KryptonPaletteHeaderGroup.cs │ │ │ ├── KryptonPaletteHeaderGroupState.cs │ │ │ ├── KryptonPaletteHeaders.cs │ │ │ ├── KryptonPaletteImages.cs │ │ │ ├── KryptonPaletteImagesCheckBox.cs │ │ │ ├── KryptonPaletteImagesContextMenu.cs │ │ │ ├── KryptonPaletteImagesGalleryButton.cs │ │ │ ├── KryptonPaletteImagesGalleryButtons.cs │ │ │ ├── KryptonPaletteImagesIntegratedToolBar.cs │ │ │ ├── KryptonPaletteImagesRadioButton.cs │ │ │ ├── KryptonPaletteImagesTreeView.cs │ │ │ ├── KryptonPaletteInputControl.cs │ │ │ ├── KryptonPaletteInputControls.cs │ │ │ ├── KryptonPaletteLabel.cs │ │ │ ├── KryptonPaletteLabels.cs │ │ │ ├── KryptonPaletteNavigator.cs │ │ │ ├── KryptonPaletteNavigatorState.cs │ │ │ ├── KryptonPaletteNavigatorStateBar.cs │ │ │ ├── KryptonPalettePanel.cs │ │ │ ├── KryptonPalettePanels.cs │ │ │ ├── KryptonPalettePropertyGrid.cs │ │ │ ├── KryptonPaletteRibbon.cs │ │ │ ├── KryptonPaletteRibbonAppButton.cs │ │ │ ├── KryptonPaletteRibbonGroupArea.cs │ │ │ ├── KryptonPaletteRibbonGroupBaseText.cs │ │ │ ├── KryptonPaletteRibbonGroupButtonText.cs │ │ │ ├── KryptonPaletteRibbonGroupCheckBoxText.cs │ │ │ ├── KryptonPaletteRibbonGroupCollapsedBack.cs │ │ │ ├── KryptonPaletteRibbonGroupCollapsedBorder.cs │ │ │ ├── KryptonPaletteRibbonGroupCollapsedFrameBack.cs │ │ │ ├── KryptonPaletteRibbonGroupCollapsedFrameBorder.cs │ │ │ ├── KryptonPaletteRibbonGroupCollapsedText.cs │ │ │ ├── KryptonPaletteRibbonGroupLabelText.cs │ │ │ ├── KryptonPaletteRibbonGroupNormalBorder.cs │ │ │ ├── KryptonPaletteRibbonGroupNormalTitle.cs │ │ │ ├── KryptonPaletteRibbonGroupRadioButtonText.cs │ │ │ ├── KryptonPaletteRibbonQATMinibar.cs │ │ │ ├── KryptonPaletteRibbonTab.cs │ │ │ ├── KryptonPaletteSeparator.cs │ │ │ ├── KryptonPaletteSeparators.cs │ │ │ ├── KryptonPaletteTMS.cs │ │ │ ├── KryptonPaletteTMSBase.cs │ │ │ ├── KryptonPaletteTMSButton.cs │ │ │ ├── KryptonPaletteTMSGrip.cs │ │ │ ├── KryptonPaletteTMSMenu.cs │ │ │ ├── KryptonPaletteTMSMenuStrip.cs │ │ │ ├── KryptonPaletteTMSRafting.cs │ │ │ ├── KryptonPaletteTMSSeparator.cs │ │ │ ├── KryptonPaletteTMSStatusStrip.cs │ │ │ ├── KryptonPaletteTMSToolStrip.cs │ │ │ ├── KryptonPaletteTabButton.cs │ │ │ ├── KryptonPaletteTabButtons.cs │ │ │ └── KryptonPaletteTrackBar.cs │ │ ├── Palette Controls │ │ │ ├── KryptonColorTable.cs │ │ │ ├── KryptonColorTable2007.cs │ │ │ ├── KryptonColorTable2010.cs │ │ │ ├── KryptonColorTable2013.cs │ │ │ ├── KryptonColorTable365.cs │ │ │ ├── KryptonColorTableMicrosoft365.cs │ │ │ ├── KryptonColorTableSparkle.cs │ │ │ ├── KryptonColorTableVisualStudio.cs │ │ │ ├── KryptonDataGridViewStyles.cs │ │ │ ├── KryptonPersistAttribute.cs │ │ │ ├── KryptonProfessionalCustomKCT.cs │ │ │ ├── KryptonProfessionalKCT.cs │ │ │ ├── KryptonVisualStudio2010With2007ColorTable.cs │ │ │ ├── KryptonVisualStudio2010With2010ColorTable.cs │ │ │ ├── KryptonVisualStudio2010With2013ColorTable.cs │ │ │ ├── KryptonVisualStudio2010WithMicrosoft365ColorTable.cs │ │ │ ├── LinkLabelBehaviorInherit.cs │ │ │ ├── PaletteBackInheritNode.cs │ │ │ ├── PaletteBackInheritStatusStrip.cs │ │ │ ├── PaletteBorderEdge.cs │ │ │ ├── PaletteBorderEdgeRedirect.cs │ │ │ ├── PaletteBreadCrumbDoubleState.cs │ │ │ ├── PaletteBreadCrumbRedirect.cs │ │ │ ├── PaletteBreadCrumbState.cs │ │ │ ├── PaletteColorButtonStrings.cs │ │ │ ├── PaletteComboBoxJustComboStates.cs │ │ │ ├── PaletteComboBoxJustItemStates.cs │ │ │ ├── PaletteComboBoxRedirect.cs │ │ │ ├── PaletteComboBoxStates.cs │ │ │ ├── PaletteContentInheritNode.cs │ │ │ ├── PaletteContextMenuItemState.cs │ │ │ ├── PaletteContextMenuItemStateChecked.cs │ │ │ ├── PaletteContextMenuItemStateHighlight.cs │ │ │ ├── PaletteContextMenuItemStateRedirect.cs │ │ │ ├── PaletteContextMenuRedirect.cs │ │ │ ├── PaletteCueHintText.cs │ │ │ ├── PaletteDataGridViewAll.cs │ │ │ ├── PaletteDataGridViewBackInherit.cs │ │ │ ├── PaletteDataGridViewCells.cs │ │ │ ├── PaletteDataGridViewContentCommon.cs │ │ │ ├── PaletteDataGridViewContentInherit.cs │ │ │ ├── PaletteDataGridViewContentStates.cs │ │ │ ├── PaletteDataGridViewHeaders.cs │ │ │ ├── PaletteDataGridViewRedirect.cs │ │ │ ├── PaletteDataGridViewTripleCommon.cs │ │ │ ├── PaletteDataGridViewTripleRedirect.cs │ │ │ ├── PaletteDataGridViewTripleStates.cs │ │ │ ├── PaletteForm.cs │ │ │ ├── PaletteFormRedirect.cs │ │ │ ├── PaletteGroupBox.cs │ │ │ ├── PaletteGroupBoxRedirect.cs │ │ │ ├── PaletteHeaderButtonRedirect.cs │ │ │ ├── PaletteHeaderGroup.cs │ │ │ ├── PaletteHeaderGroupRedirect.cs │ │ │ ├── PaletteHeaderPaddingRedirect.cs │ │ │ ├── PaletteHeaderRedirect.cs │ │ │ ├── PaletteInputControlBackStates.cs │ │ │ ├── PaletteInputControlContentStates.cs │ │ │ ├── PaletteInputControlTripleRedirect.cs │ │ │ ├── PaletteInputControlTripleStates.cs │ │ │ ├── PaletteListItemTriple.cs │ │ │ ├── PaletteListItemTripleRedirect.cs │ │ │ ├── PaletteListState.cs │ │ │ ├── PaletteListStateRedirect.cs │ │ │ ├── PaletteMonthCalendarDoubleState.cs │ │ │ ├── PaletteMonthCalendarRedirect.cs │ │ │ ├── PaletteMonthCalendarState.cs │ │ │ ├── PaletteMonthCalendarStateRedirect.cs │ │ │ ├── PaletteNodeOverride.cs │ │ │ ├── PaletteRedirectBreadCrumb.cs │ │ │ ├── PaletteRedirectCheckBox.cs │ │ │ ├── PaletteRedirectCommon.cs │ │ │ ├── PaletteRedirectContextMenu.cs │ │ │ ├── PaletteRedirectRadioButton.cs │ │ │ ├── PaletteRedirectTreeView.cs │ │ │ ├── PaletteSeparatorPadding.cs │ │ │ ├── PaletteSeparatorPaddingRedirect.cs │ │ │ ├── PaletteSplitContainer.cs │ │ │ ├── PaletteSplitContainerRedirect.cs │ │ │ ├── PaletteTrackBarPositionStates.cs │ │ │ ├── PaletteTrackBarPositionStatesOverride.cs │ │ │ ├── PaletteTrackBarRedirect.cs │ │ │ ├── PaletteTrackBarStates.cs │ │ │ ├── PaletteTrackBarStatesOverride.cs │ │ │ ├── PaletteTreeNodeTriple.cs │ │ │ ├── PaletteTreeNodeTripleRedirect.cs │ │ │ ├── PaletteTreeState.cs │ │ │ ├── PaletteTreeStateRedirect.cs │ │ │ └── PaletteWrapLabel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Rendering │ │ │ ├── KryptonMaterialRenderer.cs │ │ │ ├── KryptonMicrosoft365Renderer.cs │ │ │ ├── KryptonOffice2007Renderer.cs │ │ │ ├── KryptonOffice2010Renderer.cs │ │ │ ├── KryptonOffice2013Renderer.cs │ │ │ ├── KryptonProfessionalRenderer.cs │ │ │ ├── KryptonSparkleRenderer.cs │ │ │ ├── KryptonStandardRenderer.cs │ │ │ ├── KryptonVisualStudio2010With2007Renderer.cs │ │ │ ├── KryptonVisualStudio2010With2010Renderer.cs │ │ │ ├── KryptonVisualStudio2010With2013Renderer.cs │ │ │ ├── KryptonVisualStudio2010WithMicrosoft365Renderer.cs │ │ │ ├── KryptonVisualStudioRender.cs │ │ │ ├── MaterialSelectionGlyphFactory.cs │ │ │ ├── RenderBase.cs │ │ │ ├── RenderContext.cs │ │ │ ├── RenderDefinitions.cs │ │ │ ├── RenderDragDockingData.cs │ │ │ ├── RenderExpertHelpers.cs │ │ │ ├── RenderGlassHelpers.cs │ │ │ ├── RenderMaterial.cs │ │ │ ├── RenderMementos.cs │ │ │ ├── RenderMicrosoft365.cs │ │ │ ├── RenderOffice2007.cs │ │ │ ├── RenderOffice2010.cs │ │ │ ├── RenderOffice2013.cs │ │ │ ├── RenderProfessional.cs │ │ │ ├── RenderSparkle.cs │ │ │ ├── RenderStandard.cs │ │ │ ├── RenderVisualStudio.cs │ │ │ ├── RenderVisualStudio2010With2007.cs │ │ │ ├── RenderVisualStudio2010With2010.cs │ │ │ ├── RenderVisualStudio2010With2013.cs │ │ │ ├── RenderVisualStudio2010WithMicrosoft365.cs │ │ │ ├── ThemeManager.cs │ │ │ └── Win10Glass │ │ │ │ ├── AccentColorService.cs │ │ │ │ ├── ThemeService.cs │ │ │ │ └── UserSystemPreferencesService.cs │ │ ├── ResourceFiles │ │ │ ├── AboutToolkit │ │ │ │ ├── AboutToolkitImageResources.Designer.cs │ │ │ │ └── AboutToolkitImageResources.resx │ │ │ ├── Arrows │ │ │ │ ├── BlueArrowResources.Designer.cs │ │ │ │ ├── BlueArrowResources.resx │ │ │ │ ├── Office2010ArrowResources.Designer.cs │ │ │ │ ├── Office2010ArrowResources.resx │ │ │ │ ├── RibbonArrowImageResources.Designer.cs │ │ │ │ ├── RibbonArrowImageResources.resx │ │ │ │ ├── SortArrowImageResources.Designer.cs │ │ │ │ └── SortArrowImageResources.resx │ │ │ ├── ButtonSpecs │ │ │ │ ├── ProfessionalButtonSpecResources.Designer.cs │ │ │ │ └── ProfessionalButtonSpecResources.resx │ │ │ ├── Buttons │ │ │ │ ├── ButtonImageResources.Designer.cs │ │ │ │ └── ButtonImageResources.resx │ │ │ ├── CheckBoxes │ │ │ │ ├── CheckBoxStripResources.Designer.cs │ │ │ │ └── CheckBoxStripResources.resx │ │ │ ├── ColourScales │ │ │ │ ├── ColourScaleImageResources.Designer.cs │ │ │ │ └── ColourScaleImageResources.resx │ │ │ ├── CommandLink │ │ │ │ ├── CommandLinkImageResources.Designer.cs │ │ │ │ └── CommandLinkImageResources.resx │ │ │ ├── ControlBox │ │ │ │ ├── Microsoft365ControlBoxResources.Designer.cs │ │ │ │ ├── Microsoft365ControlBoxResources.resx │ │ │ │ ├── Office2003ControlBoxResources.Designer.cs │ │ │ │ ├── Office2003ControlBoxResources.resx │ │ │ │ ├── Office2007ControlBoxResources.Designer.cs │ │ │ │ ├── Office2007ControlBoxResources.resx │ │ │ │ ├── Office2010ControlBoxResources.Designer.cs │ │ │ │ ├── Office2010ControlBoxResources.resx │ │ │ │ ├── Office2013ControlBoxResources.Designer.cs │ │ │ │ ├── Office2013ControlBoxResources.resx │ │ │ │ ├── ProfessionalControlBoxResources.Designer.cs │ │ │ │ ├── ProfessionalControlBoxResources.resx │ │ │ │ ├── SparkleControlBoxResources.Designer.cs │ │ │ │ └── SparkleControlBoxResources.resx │ │ │ ├── Cursors │ │ │ │ ├── CursorResources.Designer.cs │ │ │ │ └── CursorResources.resx │ │ │ ├── DataBars │ │ │ │ ├── DataBarImageResources.Designer.cs │ │ │ │ └── DataBarImageResources.resx │ │ │ ├── Dialogs │ │ │ │ ├── DialogImageResources.Designer.cs │ │ │ │ └── DialogImageResources.resx │ │ │ ├── DropDown │ │ │ │ ├── DropDownArrowImageResources.Designer.cs │ │ │ │ └── DropDownArrowImageResources.resx │ │ │ ├── Elements │ │ │ │ ├── ElementsImageResources.Designer.cs │ │ │ │ └── ElementsImageResources.resx │ │ │ ├── Gallery │ │ │ │ ├── GalleryImageResources.Designer.cs │ │ │ │ └── GalleryImageResources.resx │ │ │ ├── Generic │ │ │ │ ├── GenericImageResources.Designer.cs │ │ │ │ ├── GenericImageResources.resx │ │ │ │ ├── GenericKryptonImageResources.Designer.cs │ │ │ │ ├── GenericKryptonImageResources.resx │ │ │ │ ├── GenericOffice2007ImageResources.Designer.cs │ │ │ │ ├── GenericOffice2007ImageResources.resx │ │ │ │ ├── GenericProfessionalImageResources.Designer.cs │ │ │ │ ├── GenericProfessionalImageResources.resx │ │ │ │ ├── GenericSparkleImageResources.Designer.cs │ │ │ │ ├── GenericSparkleImageResources.resx │ │ │ │ ├── GenericWhiteImageResources.Designer.cs │ │ │ │ └── GenericWhiteImageResources.resx │ │ │ ├── Grid │ │ │ │ ├── GridImageResources.Designer.cs │ │ │ │ └── GridImageResources.resx │ │ │ ├── Logos │ │ │ │ ├── ToolkitLogoImageResources.Designer.cs │ │ │ │ └── ToolkitLogoImageResources.resx │ │ │ ├── MDI │ │ │ │ ├── GenericMDIImageResources.Designer.cs │ │ │ │ ├── GenericMDIImageResources.resx │ │ │ │ ├── Office2010MDIImageResources.Designer.cs │ │ │ │ └── Office2010MDIImageResources.resx │ │ │ ├── MessageBox │ │ │ │ ├── MessageBoxImageResources.Designer.cs │ │ │ │ └── MessageBoxImageResources.resx │ │ │ ├── OutlookGrid │ │ │ │ ├── OutlookGridImageResources.Designer.cs │ │ │ │ ├── OutlookGridImageResources.resx │ │ │ │ └── Strings │ │ │ │ │ ├── OutlookGridStringResources.Designer.cs │ │ │ │ │ └── OutlookGridStringResources.resx │ │ │ ├── PaletteSchemas │ │ │ │ ├── PaletteSchemaResources.Designer.cs │ │ │ │ └── PaletteSchemaResources.resx │ │ │ ├── Pendants │ │ │ │ ├── ProfessionalPendantImageResources.Designer.cs │ │ │ │ └── ProfessionalPendantImageResources.resx │ │ │ ├── Pin │ │ │ │ ├── ProfessionalPinImageResources.Designer.cs │ │ │ │ └── ProfessionalPinImageResources.resx │ │ │ ├── RadioButtons │ │ │ │ ├── Office2007RadioButtonImageResources.Designer.cs │ │ │ │ ├── Office2007RadioButtonImageResources.resx │ │ │ │ ├── Office2010RadioButtonImageResources.Designer.cs │ │ │ │ ├── Office2010RadioButtonImageResources.resx │ │ │ │ ├── SparkleRadioButtonImageResources.Designer.cs │ │ │ │ ├── SparkleRadioButtonImageResources.resx │ │ │ │ ├── VisualStudioRadioButtonImageResources.Designer.cs │ │ │ │ └── VisualStudioRadioButtonImageResources.resx │ │ │ ├── SizeGripStyles │ │ │ │ ├── SizeGripStyleResources.Designer.cs │ │ │ │ └── SizeGripStyleResources.resx │ │ │ ├── Sort │ │ │ │ ├── SortingImageResources.Designer.cs │ │ │ │ └── SortingImageResources.resx │ │ │ ├── Stars │ │ │ │ ├── StarImageResources.Designer.cs │ │ │ │ └── StarImageResources.resx │ │ │ ├── SystemMenu │ │ │ │ ├── SystemMenuImageResources.Designer.cs │ │ │ │ └── SystemMenuImageResources.resx │ │ │ ├── TaskDialog │ │ │ │ ├── TaskDialogImageResources.Designer.cs │ │ │ │ └── TaskDialogImageResources.resx │ │ │ ├── ToastNotification │ │ │ │ ├── ToastNotificationImageResources.Designer.cs │ │ │ │ └── ToastNotificationImageResources.resx │ │ │ ├── Toolbars │ │ │ │ ├── GenericToolbarImageResources.Designer.cs │ │ │ │ ├── GenericToolbarImageResources.resx │ │ │ │ ├── Microsoft365ToolbarImageResources.Designer.cs │ │ │ │ ├── Microsoft365ToolbarImageResources.resx │ │ │ │ ├── Office2003ToolbarImageResources.Designer.cs │ │ │ │ ├── Office2003ToolbarImageResources.resx │ │ │ │ ├── Office2007ToolbarImageResources.Designer.cs │ │ │ │ ├── Office2007ToolbarImageResources.resx │ │ │ │ ├── Office2010ToolbarImageResources.Designer.cs │ │ │ │ ├── Office2010ToolbarImageResources.resx │ │ │ │ ├── Office2013ToolbarImageResources.Designer.cs │ │ │ │ ├── Office2013ToolbarImageResources.resx │ │ │ │ ├── Office2016ToolbarImageResources.Designer.cs │ │ │ │ ├── Office2016ToolbarImageResources.resx │ │ │ │ ├── Office2019ToolbarImageResources.Designer.cs │ │ │ │ ├── Office2019ToolbarImageResources.resx │ │ │ │ ├── SystemToolbarImageResources.Designer.cs │ │ │ │ ├── SystemToolbarImageResources.resx │ │ │ │ ├── VisualStudioToolbarImageResources.Designer.cs │ │ │ │ └── VisualStudioToolbarImageResources.resx │ │ │ ├── ToolkitLogos │ │ │ │ ├── ToolkitLogoResources.Designer.cs │ │ │ │ └── ToolkitLogoResources.resx │ │ │ ├── TreeItems │ │ │ │ ├── TreeItemImageResources.Designer.cs │ │ │ │ └── TreeItemImageResources.resx │ │ │ ├── UAC │ │ │ │ ├── Windows10UACShieldImageResources.Designer.cs │ │ │ │ ├── Windows10UACShieldImageResources.resx │ │ │ │ ├── Windows11UACShieldImageResources.Designer.cs │ │ │ │ ├── Windows11UACShieldImageResources.resx │ │ │ │ ├── Windows7And8xUACShieldImageResources.Designer.cs │ │ │ │ ├── Windows7And8xUACShieldImageResources.resx │ │ │ │ ├── WindowsVistaUACShieldImageResources.Designer.cs │ │ │ │ └── WindowsVistaUACShieldImageResources.resx │ │ │ ├── VisualStudio │ │ │ │ ├── VisualStudioImageResources.Designer.cs │ │ │ │ └── VisualStudioImageResources.resx │ │ │ └── WindowsLogos │ │ │ │ ├── WindowsLogoImageResources.Designer.cs │ │ │ │ └── WindowsLogoImageResources.resx │ │ ├── Resources │ │ │ ├── AppButtonDefault.png │ │ │ ├── Asterisk_Windows_11.png │ │ │ ├── BlackButtonCollapse.bmp │ │ │ ├── BlackButtonExpand.bmp │ │ │ ├── BlackContextMenuSub.png │ │ │ ├── BlackDropDownButton.png │ │ │ ├── BlueContextMenuSub.png │ │ │ ├── BlueDropDownButton.png │ │ │ ├── ButtonColorImageSmall.png │ │ │ ├── ButtonNoColor.png │ │ │ ├── Cancel_Windows_11.png │ │ │ ├── CheckBoxStrip2007Black.bmp │ │ │ ├── CheckBoxStrip2007Blue.bmp │ │ │ ├── CheckBoxStrip2007Silver.bmp │ │ │ ├── CheckBoxStrip2010Black.bmp │ │ │ ├── CheckBoxStrip2010Blue.bmp │ │ │ ├── CheckBoxStrip2010Silver.bmp │ │ │ ├── CheckBoxStripSparkle.bmp │ │ │ ├── CheckBoxStripSparkleOrange.bmp │ │ │ ├── CheckBoxStripSparklePurple.bmp │ │ │ ├── CollapseIcon.png │ │ │ ├── CollapseIcon2010.png │ │ │ ├── Colour2scale_generic_16.png │ │ │ ├── Colour3scale_generic_16.png │ │ │ ├── Colour_V10.ico │ │ │ ├── Critical_Windows_11.png │ │ │ ├── Databar_gradient2_blue_32.png │ │ │ ├── Databar_gradient_blue_32.png │ │ │ ├── Databar_gradient_green_32.png │ │ │ ├── Databar_gradient_pink_32.png │ │ │ ├── Databar_gradient_red_32.png │ │ │ ├── Databar_gradient_rose_32.png │ │ │ ├── Databar_gradient_violet_32.png │ │ │ ├── Databar_gradient_yellow_32.png │ │ │ ├── Databar_solid_blue_32.png │ │ │ ├── Databar_solid_green_32.png │ │ │ ├── Databar_solid_pink_32.png │ │ │ ├── Databar_solid_red_32.png │ │ │ ├── Databar_solid_rose_32.png │ │ │ ├── Databar_solid_violet_32.png │ │ │ ├── Databar_solid_yellow_32.png │ │ │ ├── DisabledDropDownButton.png │ │ │ ├── DisabledDropDownButton2.png │ │ │ ├── DisabledDropUpButton.png │ │ │ ├── DisabledGalleryDropButton.png │ │ │ ├── Discord.ico │ │ │ ├── DoubleChevronBlackDown-24x24.png │ │ │ ├── DoubleChevronBlackUp-24x24.png │ │ │ ├── DoubleChevronDown-20x20.png │ │ │ ├── DoubleChevronDown-24x24.png │ │ │ ├── DoubleChevronSmallDown-20x20.png │ │ │ ├── DoubleChevronSmallUp-20x20.png │ │ │ ├── DoubleChevronUp-20x20.png │ │ │ ├── DoubleChevronUp-24x24.png │ │ │ ├── Empty16x16.bmp │ │ │ ├── ExpandIcon.png │ │ │ ├── ExpandIcon2010.png │ │ │ ├── Gallery2010.bmp │ │ │ ├── GalleryBlue.bmp │ │ │ ├── GallerySilverBlack.bmp │ │ │ ├── GeneralInformation.png │ │ │ ├── GenericAsterisk.png │ │ │ ├── GenericCopy.png │ │ │ ├── GenericCritical.png │ │ │ ├── GenericCut.png │ │ │ ├── GenericHand.png │ │ │ ├── GenericInformation.png │ │ │ ├── GenericNewDocument.png │ │ │ ├── GenericOpenFolder.png │ │ │ ├── GenericPaste.png │ │ │ ├── GenericPrint.png │ │ │ ├── GenericPrintPreview.png │ │ │ ├── GenericPrintSetup.png │ │ │ ├── GenericQuestion.png │ │ │ ├── GenericQuickPrint.png │ │ │ ├── GenericRedo.png │ │ │ ├── GenericSave.png │ │ │ ├── GenericSaveAll.png │ │ │ ├── GenericSaveAndClose.png │ │ │ ├── GenericSaveAs.png │ │ │ ├── GenericStop.png │ │ │ ├── GenericUndo.png │ │ │ ├── GenericWarning.png │ │ │ ├── GenericWhiteCloseButton.bmp │ │ │ ├── GenericWhiteMaximize.bmp │ │ │ ├── GenericWhiteMinNormal.bmp │ │ │ ├── GenericWhiteRestore.bmp │ │ │ ├── GenericWhiteRestoreNormal.bmp │ │ │ ├── GridErrorIcon.bmp │ │ │ ├── GridRowIndicators.bmp │ │ │ ├── GridSortOrder.bmp │ │ │ ├── HourGlass.png │ │ │ ├── InformationMedium.png │ │ │ ├── InformationSmall.png │ │ │ ├── Information_Windows_11.png │ │ │ ├── Krypton 48 x 48 Canary.png │ │ │ ├── Krypton 48 x 48 LTS.png │ │ │ ├── Krypton 48 x 48 Nightly.png │ │ │ ├── Krypton 48 x 48 Stable.png │ │ │ ├── Krypton Canary.png │ │ │ ├── Krypton Nightly.png │ │ │ ├── Krypton Stable.png │ │ │ ├── KryptonBorderEdge.bmp │ │ │ ├── KryptonBreadCrumb.bmp │ │ │ ├── KryptonBreadCrumbItem.bmp │ │ │ ├── KryptonButton.bmp │ │ │ ├── KryptonButtonSpec.bmp │ │ │ ├── KryptonCalcInput.bmp │ │ │ ├── KryptonCheckBox.bmp │ │ │ ├── KryptonCheckButton.bmp │ │ │ ├── KryptonCheckSet.bmp │ │ │ ├── KryptonCheckedListBox.bmp │ │ │ ├── KryptonColorButton.bmp │ │ │ ├── KryptonComboBox.bmp │ │ │ ├── KryptonCommand.bmp │ │ │ ├── KryptonContextMenu.bmp │ │ │ ├── KryptonContextMenuColorColumns.bmp │ │ │ ├── KryptonContextMenuHeading.bmp │ │ │ ├── KryptonContextMenuImageSelect.bmp │ │ │ ├── KryptonContextMenuItem.bmp │ │ │ ├── KryptonContextMenuItems.bmp │ │ │ ├── KryptonContextMenuSeparator.bmp │ │ │ ├── KryptonDataGridView.bmp │ │ │ ├── KryptonDateTimePicker.bmp │ │ │ ├── KryptonDomainUpDown.bmp │ │ │ ├── KryptonDropButton.bmp │ │ │ ├── KryptonForm.bmp │ │ │ ├── KryptonGallery.bmp │ │ │ ├── KryptonGroup.bmp │ │ │ ├── KryptonGroupBox.bmp │ │ │ ├── KryptonGroupPanel.bmp │ │ │ ├── KryptonHeader.bmp │ │ │ ├── KryptonHeaderGroup.bmp │ │ │ ├── KryptonLabel.bmp │ │ │ ├── KryptonLinkLabel.bmp │ │ │ ├── KryptonListBox.bmp │ │ │ ├── KryptonLogoGeneric.png │ │ │ ├── KryptonManager.bmp │ │ │ ├── KryptonMaskedTextBox.bmp │ │ │ ├── KryptonMonthCalendar.bmp │ │ │ ├── KryptonNumericUpDown.bmp │ │ │ ├── KryptonPalette.bmp │ │ │ ├── KryptonPanel.bmp │ │ │ ├── KryptonRadioButton.bmp │ │ │ ├── KryptonRibbonContext.bmp │ │ │ ├── KryptonRibbonGroup.bmp │ │ │ ├── KryptonRibbonGroupButton.bmp │ │ │ ├── KryptonRibbonGroupCheckBox.bmp │ │ │ ├── KryptonRibbonGroupCluster.bmp │ │ │ ├── KryptonRibbonGroupClusterButton.bmp │ │ │ ├── KryptonRibbonGroupClusterColorButton.bmp │ │ │ ├── KryptonRibbonGroupColorButton.bmp │ │ │ ├── KryptonRibbonGroupComboBox.bmp │ │ │ ├── KryptonRibbonGroupCustomControl.bmp │ │ │ ├── KryptonRibbonGroupDateTimePicker.bmp │ │ │ ├── KryptonRibbonGroupDomainUpDown.bmp │ │ │ ├── KryptonRibbonGroupLabel.bmp │ │ │ ├── KryptonRibbonGroupLines.bmp │ │ │ ├── KryptonRibbonGroupMaskedTextBox.bmp │ │ │ ├── KryptonRibbonGroupNumericUpDown.bmp │ │ │ ├── KryptonRibbonGroupRadioButton.bmp │ │ │ ├── KryptonRibbonGroupRichTextBox.bmp │ │ │ ├── KryptonRibbonGroupSeparator.bmp │ │ │ ├── KryptonRibbonGroupTextBox.bmp │ │ │ ├── KryptonRibbonGroupTrackBar.bmp │ │ │ ├── KryptonRibbonGroupTriple.bmp │ │ │ ├── KryptonRibbonQATButton.bmp │ │ │ ├── KryptonRibbonRecentDoc.png │ │ │ ├── KryptonRibbonTab.bmp │ │ │ ├── KryptonRichTextBox.bmp │ │ │ ├── KryptonSeparator.bmp │ │ │ ├── KryptonSplitContainer.bmp │ │ │ ├── KryptonTextBox.bmp │ │ │ ├── KryptonWrapLabel.bmp │ │ │ ├── Krypton_Canary_Button.png │ │ │ ├── Krypton_Long_Term_Stable_Button.png │ │ │ ├── Krypton_Nightly_Button.png │ │ │ ├── Krypton_Stable_Button.png │ │ │ ├── MdiClose.bmp │ │ │ ├── MdiMin.bmp │ │ │ ├── MdiRestore.bmp │ │ │ ├── MdiRibbonExpand.bmp │ │ │ ├── MdiRibbonMinimize.bmp │ │ │ ├── MessageBoxAsterisk.png │ │ │ ├── MessageBoxCritical.png │ │ │ ├── MessageBoxHelp.png │ │ │ ├── MessageBoxInformation.png │ │ │ ├── MessageBoxOk.png │ │ │ ├── MessageBoxStop.png │ │ │ ├── MessageBoxWarning.png │ │ │ ├── Microsoft365HelpIconDisabled.png │ │ │ ├── Microsoft365HelpIconDisabledV2.png │ │ │ ├── Microsoft365HelpIconHover.png │ │ │ ├── Microsoft365HelpIconNormal.png │ │ │ ├── Microsoft365HelpIconPressed.png │ │ │ ├── Microsoft365SystemMenuCloseNormalSmall.png │ │ │ ├── Microsoft365SystemMenuMaximiseNormalSmall.png │ │ │ ├── Microsoft365SystemMenuMinimiseNormalSmall.png │ │ │ ├── Microsoft365SystemMenuRestoreNormalSmall.png │ │ │ ├── MoveFirst.png │ │ │ ├── MoveLast.png │ │ │ ├── MoveNext.png │ │ │ ├── MovePrevious.png │ │ │ ├── Office2003GripStyle.bmp │ │ │ ├── Office2003HelpIconDisabled.png │ │ │ ├── Office2003HelpIconNormal.png │ │ │ ├── Office2003ToolbarCopyDisabled.png │ │ │ ├── Office2003ToolbarCopyNormal.png │ │ │ ├── Office2003ToolbarCutDisabled.png │ │ │ ├── Office2003ToolbarCutNormal.png │ │ │ ├── Office2003ToolbarNewDisabled.png │ │ │ ├── Office2003ToolbarNewNormal.png │ │ │ ├── Office2003ToolbarOpenDisabled.png │ │ │ ├── Office2003ToolbarOpenNormal.png │ │ │ ├── Office2003ToolbarPageSetupDisabled.png │ │ │ ├── Office2003ToolbarPageSetupNormal.png │ │ │ ├── Office2003ToolbarPasteDisabled.png │ │ │ ├── Office2003ToolbarPasteNormal.png │ │ │ ├── Office2003ToolbarPrintDisabled.png │ │ │ ├── Office2003ToolbarPrintNormal.png │ │ │ ├── Office2003ToolbarPrintPreviewDisabled.png │ │ │ ├── Office2003ToolbarPrintPreviewNormal.png │ │ │ ├── Office2003ToolbarRedoDisabled.png │ │ │ ├── Office2003ToolbarRedoNormal.png │ │ │ ├── Office2003ToolbarSaveAllDisabled.png │ │ │ ├── Office2003ToolbarSaveAllNormal.png │ │ │ ├── Office2003ToolbarSaveDisabled.png │ │ │ ├── Office2003ToolbarSaveNormal.png │ │ │ ├── Office2003ToolbarUndoDisabled.png │ │ │ ├── Office2003ToolbarUndoNormal.png │ │ │ ├── Office2007BlackGripStyle.bmp │ │ │ ├── Office2007BlueGripStyle.bmp │ │ │ ├── Office2007Checked.png │ │ │ ├── Office2007ControlBoxBlackCloseActive.bmp │ │ │ ├── Office2007ControlBoxBlackCloseDisabled.bmp │ │ │ ├── Office2007ControlBoxBlackCloseNormal.bmp │ │ │ ├── Office2007ControlBoxBlackClosePressed.bmp │ │ │ ├── Office2007ControlBoxBlackMaximiseActive.bmp │ │ │ ├── Office2007ControlBoxBlackMaximiseDisabled.bmp │ │ │ ├── Office2007ControlBoxBlackMaximiseNormal.bmp │ │ │ ├── Office2007ControlBoxBlackMaximisePressed.bmp │ │ │ ├── Office2007ControlBoxBlackMinimiseActive.bmp │ │ │ ├── Office2007ControlBoxBlackMinimiseDisabled.bmp │ │ │ ├── Office2007ControlBoxBlackMinimiseNormal.bmp │ │ │ ├── Office2007ControlBoxBlackMinimisePessed.bmp │ │ │ ├── Office2007ControlBoxBlackRestoreActive.bmp │ │ │ ├── Office2007ControlBoxBlackRestoreDisabled.bmp │ │ │ ├── Office2007ControlBoxBlackRestoreNormal.bmp │ │ │ ├── Office2007ControlBoxBlackRestorePressed.bmp │ │ │ ├── Office2007ControlBoxBlueCloseActive.bmp │ │ │ ├── Office2007ControlBoxBlueCloseDisabled.bmp │ │ │ ├── Office2007ControlBoxBlueCloseNormal.bmp │ │ │ ├── Office2007ControlBoxBlueClosePressed.bmp │ │ │ ├── Office2007ControlBoxBlueMaximiseActive.bmp │ │ │ ├── Office2007ControlBoxBlueMaximiseDisabled.bmp │ │ │ ├── Office2007ControlBoxBlueMaximiseNormal.bmp │ │ │ ├── Office2007ControlBoxBlueMaximisePressed.bmp │ │ │ ├── Office2007ControlBoxBlueMinimiseActive.bmp │ │ │ ├── Office2007ControlBoxBlueMinimiseDisabled.bmp │ │ │ ├── Office2007ControlBoxBlueMinimiseNormal.bmp │ │ │ ├── Office2007ControlBoxBlueMinimisePessed.bmp │ │ │ ├── Office2007ControlBoxBlueRestoreActive.bmp │ │ │ ├── Office2007ControlBoxBlueRestoreDisabled.bmp │ │ │ ├── Office2007ControlBoxBlueRestoreNormal.bmp │ │ │ ├── Office2007ControlBoxBlueRestorePressed.bmp │ │ │ ├── Office2007ControlBoxSilverCloseActive.bmp │ │ │ ├── Office2007ControlBoxSilverCloseDisabled.bmp │ │ │ ├── Office2007ControlBoxSilverCloseNormal.bmp │ │ │ ├── Office2007ControlBoxSilverClosePressed.bmp │ │ │ ├── Office2007ControlBoxSilverMaximiseActive.bmp │ │ │ ├── Office2007ControlBoxSilverMaximiseDisabled.bmp │ │ │ ├── Office2007ControlBoxSilverMaximiseNormal.bmp │ │ │ ├── Office2007ControlBoxSilverMaximisePressed.bmp │ │ │ ├── Office2007ControlBoxSilverMinimiseActive.bmp │ │ │ ├── Office2007ControlBoxSilverMinimiseDisabled.bmp │ │ │ ├── Office2007ControlBoxSilverMinimiseNormal.bmp │ │ │ ├── Office2007ControlBoxSilverMinimisePessed.bmp │ │ │ ├── Office2007ControlBoxSilverRestoreActive.bmp │ │ │ ├── Office2007ControlBoxSilverRestoreDisabled.bmp │ │ │ ├── Office2007ControlBoxSilverRestoreNormal.bmp │ │ │ ├── Office2007ControlBoxSilverRestorePressed.bmp │ │ │ ├── Office2007HelpIconDisabled.png │ │ │ ├── Office2007HelpIconDisabledV2.png │ │ │ ├── Office2007HelpIconHover.png │ │ │ ├── Office2007HelpIconNormal.png │ │ │ ├── Office2007HelpIconPressed.png │ │ │ ├── Office2007Indeterminate.png │ │ │ ├── Office2007SilverGripStyle.bmp │ │ │ ├── Office2007SystemMenuBlackCloseNormalSmall.png │ │ │ ├── Office2007SystemMenuBlackMaximiseNormalSmall.png │ │ │ ├── Office2007SystemMenuBlackMinimiseNormalSmall.png │ │ │ ├── Office2007SystemMenuBlackRestoreNormalSmall.png │ │ │ ├── Office2007SystemMenuBlueCloseNormalSmall.png │ │ │ ├── Office2007SystemMenuBlueMaximiseNormalSmall.png │ │ │ ├── Office2007SystemMenuBlueMinimiseNormalSmall.png │ │ │ ├── Office2007SystemMenuBlueRestoreNormalSmall.png │ │ │ ├── Office2007SystemMenuSilverCloseNormalSmall.png │ │ │ ├── Office2007SystemMenuSilverMaximiseNormalSmall.png │ │ │ ├── Office2007SystemMenuSilverMinimiseNormalSmall.png │ │ │ ├── Office2007SystemMenuSilverRestoreNormalSmall.png │ │ │ ├── Office2007ToolbarCopyDisabled.png │ │ │ ├── Office2007ToolbarCopyNormal.png │ │ │ ├── Office2007ToolbarCutDisabled.png │ │ │ ├── Office2007ToolbarCutNormal.png │ │ │ ├── Office2007ToolbarHelpDisabled.png │ │ │ ├── Office2007ToolbarHelpNormal.png │ │ │ ├── Office2007ToolbarNewDisabled.png │ │ │ ├── Office2007ToolbarNewNormal.png │ │ │ ├── Office2007ToolbarOpenDisabled.png │ │ │ ├── Office2007ToolbarOpenNormal.png │ │ │ ├── Office2007ToolbarPageSetupDisabled.png │ │ │ ├── Office2007ToolbarPageSetupNormal.png │ │ │ ├── Office2007ToolbarPasteDisabled.png │ │ │ ├── Office2007ToolbarPasteNormal.png │ │ │ ├── Office2007ToolbarPrintDisabled.png │ │ │ ├── Office2007ToolbarPrintNormal.png │ │ │ ├── Office2007ToolbarPrintPreviewDisabled.png │ │ │ ├── Office2007ToolbarPrintPreviewNormal.png │ │ │ ├── Office2007ToolbarQuickPrintDisabled.png │ │ │ ├── Office2007ToolbarQuickPrintNormal.png │ │ │ ├── Office2007ToolbarRedoDisabled.png │ │ │ ├── Office2007ToolbarRedoNormal.png │ │ │ ├── Office2007ToolbarSaveAllDisabled.png │ │ │ ├── Office2007ToolbarSaveAllNormal.png │ │ │ ├── Office2007ToolbarSaveAsDisabled.png │ │ │ ├── Office2007ToolbarSaveAsNormal.png │ │ │ ├── Office2007ToolbarSaveDisabled.png │ │ │ ├── Office2007ToolbarSaveNormal.png │ │ │ ├── Office2007ToolbarUndoDisabled.png │ │ │ ├── Office2007ToolbarUndoNormal.png │ │ │ ├── Office2010BackMaximiseNormal.bmp │ │ │ ├── Office2010BlackCloseActive.bmp │ │ │ ├── Office2010BlackCloseDisabled.bmp │ │ │ ├── Office2010BlackCloseNormal.bmp │ │ │ ├── Office2010BlackClosePressed.bmp │ │ │ ├── Office2010BlackContextMenuSub.png │ │ │ ├── Office2010BlackDropDownButton.png │ │ │ ├── Office2010BlackGripStyle.bmp │ │ │ ├── Office2010BlackMaximiseActive.bmp │ │ │ ├── Office2010BlackMaximiseDisabled.bmp │ │ │ ├── Office2010BlackMaximisePressed.bmp │ │ │ ├── Office2010BlackMinimiseActive.bmp │ │ │ ├── Office2010BlackMinimiseDisabled.bmp │ │ │ ├── Office2010BlackMinimiseNormal.bmp │ │ │ ├── Office2010BlackMinimisePressed.bmp │ │ │ ├── Office2010BlackRestoreActive.bmp │ │ │ ├── Office2010BlackRestoreDisabled.bmp │ │ │ ├── Office2010BlackRestoreNormal.bmp │ │ │ ├── Office2010BlackRestorePressed.bmp │ │ │ ├── Office2010BlueCloseActive.bmp │ │ │ ├── Office2010BlueCloseDisabled.bmp │ │ │ ├── Office2010BlueCloseNormal.bmp │ │ │ ├── Office2010BlueClosePressed.bmp │ │ │ ├── Office2010BlueContextMenuSub.png │ │ │ ├── Office2010BlueDropDownButton.png │ │ │ ├── Office2010BlueGripStyle.bmp │ │ │ ├── Office2010BlueMaximiseActive.bmp │ │ │ ├── Office2010BlueMaximiseDisabled.bmp │ │ │ ├── Office2010BlueMaximiseNormal.bmp │ │ │ ├── Office2010BlueMaximisePressed.bmp │ │ │ ├── Office2010BlueMinimiseActive.bmp │ │ │ ├── Office2010BlueMinimiseDisabled.bmp │ │ │ ├── Office2010BlueMinimiseNormal.bmp │ │ │ ├── Office2010BlueMinimisePressed.bmp │ │ │ ├── Office2010BlueRestoreActive.bmp │ │ │ ├── Office2010BlueRestoreDisabled.bmp │ │ │ ├── Office2010BlueRestoreNormal.bmp │ │ │ ├── Office2010BlueRestorePressed.bmp │ │ │ ├── Office2010ButtonClose.bmp │ │ │ ├── Office2010ButtonCloseBlack.bmp │ │ │ ├── Office2010ButtonCloseH.bmp │ │ │ ├── Office2010ButtonMDIClose.bmp │ │ │ ├── Office2010ButtonMDICloseBlack.bmp │ │ │ ├── Office2010ButtonMDIMax.bmp │ │ │ ├── Office2010ButtonMDIMaxBlack.bmp │ │ │ ├── Office2010ButtonMDIMin.bmp │ │ │ ├── Office2010ButtonMDIMinBlack.bmp │ │ │ ├── Office2010ButtonMDIRestore.bmp │ │ │ ├── Office2010ButtonMDIRestoreBlack.bmp │ │ │ ├── Office2010ButtonMax.bmp │ │ │ ├── Office2010ButtonMaxBlack.bmp │ │ │ ├── Office2010ButtonMin.bmp │ │ │ ├── Office2010ButtonMinBlack.bmp │ │ │ ├── Office2010ButtonRestore.bmp │ │ │ ├── Office2010ButtonRestoreBlack.bmp │ │ │ ├── Office2010HelpIconDisabled.png │ │ │ ├── Office2010HelpIconDisabledV2.png │ │ │ ├── Office2010HelpIconHover.png │ │ │ ├── Office2010HelpIconNormal.png │ │ │ ├── Office2010HelpIconPressed.png │ │ │ ├── Office2010SilverCloseActive.bmp │ │ │ ├── Office2010SilverCloseDisabled.bmp │ │ │ ├── Office2010SilverCloseNormal.bmp │ │ │ ├── Office2010SilverClosePressed.bmp │ │ │ ├── Office2010SilverGripStyle.bmp │ │ │ ├── Office2010SilverMaximiseActive.bmp │ │ │ ├── Office2010SilverMaximiseDisabled.bmp │ │ │ ├── Office2010SilverMaximiseNormal.bmp │ │ │ ├── Office2010SilverMaximisePressed.bmp │ │ │ ├── Office2010SilverMinimiseActive.bmp │ │ │ ├── Office2010SilverMinimiseDisabled.bmp │ │ │ ├── Office2010SilverMinimiseNormal.bmp │ │ │ ├── Office2010SilverMinimisePressed.bmp │ │ │ ├── Office2010SilverRestoreActive.bmp │ │ │ ├── Office2010SilverRestoreDisabled.bmp │ │ │ ├── Office2010SilverRestoreNormal.bmp │ │ │ ├── Office2010SilverRestorePressed.bmp │ │ │ ├── Office2010SystemMenuBlackCloseNormalSmall.png │ │ │ ├── Office2010SystemMenuBlackMaximiseNormalSmall.png │ │ │ ├── Office2010SystemMenuBlackMinimiseNormalSmall.png │ │ │ ├── Office2010SystemMenuBlackRestoreNormalSmall.png │ │ │ ├── Office2010SystemMenuBlueCloseNormalSmall.png │ │ │ ├── Office2010SystemMenuBlueMaximiseNormalSmall.png │ │ │ ├── Office2010SystemMenuBlueMinimiseNormalSmall.png │ │ │ ├── Office2010SystemMenuBlueRestoreNormalSmall.png │ │ │ ├── Office2010SystemMenuSilverCloseNormalSmall.png │ │ │ ├── Office2010SystemMenuSilverMaximiseNormalSmall.png │ │ │ ├── Office2010SystemMenuSilverMinimiseNormalSmall.png │ │ │ ├── Office2010SystemMenuSilverRestoreNormalSmall.png │ │ │ ├── Office2010ToolbarCopyDisabled.png │ │ │ ├── Office2010ToolbarCopyNormal.png │ │ │ ├── Office2010ToolbarCutDisabled.png │ │ │ ├── Office2010ToolbarCutNormal.png │ │ │ ├── Office2010ToolbarNewDisabled.png │ │ │ ├── Office2010ToolbarNewNormal.png │ │ │ ├── Office2010ToolbarOpenDisabled.png │ │ │ ├── Office2010ToolbarOpenNormal.png │ │ │ ├── Office2010ToolbarPageSetupDisabled.png │ │ │ ├── Office2010ToolbarPageSetupNormal.png │ │ │ ├── Office2010ToolbarPasteDisabled.png │ │ │ ├── Office2010ToolbarPasteNormal.png │ │ │ ├── Office2010ToolbarPrintDisabled.png │ │ │ ├── Office2010ToolbarPrintNormal.png │ │ │ ├── Office2010ToolbarPrintPreviewDisabled.png │ │ │ ├── Office2010ToolbarPrintPreviewNormal.png │ │ │ ├── Office2010ToolbarQuickPrintDisabled.png │ │ │ ├── Office2010ToolbarQuickPrintNormal.png │ │ │ ├── Office2010ToolbarRedoDisabled.png │ │ │ ├── Office2010ToolbarRedoNormal.png │ │ │ ├── Office2010ToolbarSaveAllDisabled.png │ │ │ ├── Office2010ToolbarSaveAllNormal.png │ │ │ ├── Office2010ToolbarSaveAsDisabled.png │ │ │ ├── Office2010ToolbarSaveAsNormal.png │ │ │ ├── Office2010ToolbarSaveDisabled.png │ │ │ ├── Office2010ToolbarSaveNormal.png │ │ │ ├── Office2010ToolbarUndoDisabled.png │ │ │ ├── Office2010ToolbarUndoNormal.png │ │ │ ├── Office2013CloseActive.png │ │ │ ├── Office2013CloseDisabled.png │ │ │ ├── Office2013CloseNormal.png │ │ │ ├── Office2013ClosePressed.png │ │ │ ├── Office2013HelpActive.png │ │ │ ├── Office2013HelpDisabled.png │ │ │ ├── Office2013HelpNormal.png │ │ │ ├── Office2013HelpPressed.png │ │ │ ├── Office2013MaximiseActive.png │ │ │ ├── Office2013MaximiseDisabled.png │ │ │ ├── Office2013MaximiseNormal.png │ │ │ ├── Office2013MaximisePressed.png │ │ │ ├── Office2013MinimiseActive.png │ │ │ ├── Office2013MinimiseDisabled.png │ │ │ ├── Office2013MinimiseNormal.png │ │ │ ├── Office2013MinimisePressed.png │ │ │ ├── Office2013RestoreActive.png │ │ │ ├── Office2013RestoreDisabled.png │ │ │ ├── Office2013RestoreNormal.png │ │ │ ├── Office2013RestorePressed.png │ │ │ ├── Office2013ToolbarCopyDisabled.png │ │ │ ├── Office2013ToolbarCopyNormal.png │ │ │ ├── Office2013ToolbarCutDisabled.png │ │ │ ├── Office2013ToolbarCutNormal.png │ │ │ ├── Office2013ToolbarNewDisabled.png │ │ │ ├── Office2013ToolbarNewNormal.png │ │ │ ├── Office2013ToolbarOpenDisabled.png │ │ │ ├── Office2013ToolbarOpenNormal.png │ │ │ ├── Office2013ToolbarPageSetupDisabled.png │ │ │ ├── Office2013ToolbarPageSetupNormal.png │ │ │ ├── Office2013ToolbarPasteDisabled.png │ │ │ ├── Office2013ToolbarPasteNormal.png │ │ │ ├── Office2013ToolbarPrintDisabled.png │ │ │ ├── Office2013ToolbarPrintNormal.png │ │ │ ├── Office2013ToolbarPrintPreviewDisabled.png │ │ │ ├── Office2013ToolbarPrintPreviewNormal.png │ │ │ ├── Office2013ToolbarQuickPrintDisabled.png │ │ │ ├── Office2013ToolbarQuickPrintNormal.png │ │ │ ├── Office2013ToolbarRedoDisabled.png │ │ │ ├── Office2013ToolbarRedoNormal.png │ │ │ ├── Office2013ToolbarSaveAllDisabled.png │ │ │ ├── Office2013ToolbarSaveAllNormal.png │ │ │ ├── Office2013ToolbarSaveAsDisabled.png │ │ │ ├── Office2013ToolbarSaveAsNormal.png │ │ │ ├── Office2013ToolbarSaveDisabled.png │ │ │ ├── Office2013ToolbarSaveNormal.png │ │ │ ├── Office2013ToolbarUndoDisabled.png │ │ │ ├── Office2013ToolbarUndoNormal.png │ │ │ ├── Office2016ToolbarCopyDisabled.png │ │ │ ├── Office2016ToolbarCopyNormal.png │ │ │ ├── Office2016ToolbarCutDisabled.png │ │ │ ├── Office2016ToolbarCutNormal.png │ │ │ ├── Office2016ToolbarNewDisabled.png │ │ │ ├── Office2016ToolbarNewNormal.png │ │ │ ├── Office2016ToolbarOpenDisabled.png │ │ │ ├── Office2016ToolbarOpenNormal.png │ │ │ ├── Office2016ToolbarPageSetupDisabled.png │ │ │ ├── Office2016ToolbarPageSetupNormal.png │ │ │ ├── Office2016ToolbarPasteDisabled.png │ │ │ ├── Office2016ToolbarPasteNormal.png │ │ │ ├── Office2016ToolbarPrintDisabled.png │ │ │ ├── Office2016ToolbarPrintNormal.png │ │ │ ├── Office2016ToolbarPrintPreviewDisabled.png │ │ │ ├── Office2016ToolbarPrintPreviewNormal.png │ │ │ ├── Office2016ToolbarQuickPrintDisabled.png │ │ │ ├── Office2016ToolbarQuickPrintNormal.png │ │ │ ├── Office2016ToolbarRedoDisabled.png │ │ │ ├── Office2016ToolbarRedoNormal.png │ │ │ ├── Office2016ToolbarSaveAllDisabled.png │ │ │ ├── Office2016ToolbarSaveAllNormal.png │ │ │ ├── Office2016ToolbarSaveAsDisabled.png │ │ │ ├── Office2016ToolbarSaveAsNormal.png │ │ │ ├── Office2016ToolbarSaveDisabled.png │ │ │ ├── Office2016ToolbarSaveNormal.png │ │ │ ├── Office2016ToolbarUndoDisabled.png │ │ │ ├── Office2016ToolbarUndoNormal.png │ │ │ ├── Office2019ToolbarCopyDisabled.png │ │ │ ├── Office2019ToolbarCopyNormal.png │ │ │ ├── Office2019ToolbarCutDisabled.png │ │ │ ├── Office2019ToolbarCutNormal.png │ │ │ ├── Office2019ToolbarNewDisabled.png │ │ │ ├── Office2019ToolbarNewNormal.png │ │ │ ├── Office2019ToolbarOpenDisabled.png │ │ │ ├── Office2019ToolbarOpenNormal.png │ │ │ ├── Office2019ToolbarPageSetupDisabled.png │ │ │ ├── Office2019ToolbarPageSetupNormal.png │ │ │ ├── Office2019ToolbarPasteDisabled.png │ │ │ ├── Office2019ToolbarPasteNormal.png │ │ │ ├── Office2019ToolbarPrintDisabled.png │ │ │ ├── Office2019ToolbarPrintNormal.png │ │ │ ├── Office2019ToolbarPrintPreviewDisabled.png │ │ │ ├── Office2019ToolbarPrintPreviewNormal.png │ │ │ ├── Office2019ToolbarQuickPrintDisabled.png │ │ │ ├── Office2019ToolbarQuickPrintNormal.png │ │ │ ├── Office2019ToolbarRedoDisabled.png │ │ │ ├── Office2019ToolbarRedoNormal.png │ │ │ ├── Office2019ToolbarSaveAllDisabled.png │ │ │ ├── Office2019ToolbarSaveAllNormal.png │ │ │ ├── Office2019ToolbarSaveAsDisabled.png │ │ │ ├── Office2019ToolbarSaveAsNormal.png │ │ │ ├── Office2019ToolbarSaveDisabled.png │ │ │ ├── Office2019ToolbarSaveNormal.png │ │ │ ├── Office2019ToolbarUndoDisabled.png │ │ │ ├── Office2019ToolbarUndoNormal.png │ │ │ ├── Printer_V10.ico │ │ │ ├── ProfessionalArrowDownButton.bmp │ │ │ ├── ProfessionalArrowLeftButton.bmp │ │ │ ├── ProfessionalArrowRightButton.bmp │ │ │ ├── ProfessionalArrowUpButton.bmp │ │ │ ├── ProfessionalButtonCloseDisabled.bmp │ │ │ ├── ProfessionalButtonCloseNormal.bmp │ │ │ ├── ProfessionalButtonMaxDisabled.bmp │ │ │ ├── ProfessionalButtonMaxNormal.bmp │ │ │ ├── ProfessionalButtonMinDisabled.bmp │ │ │ ├── ProfessionalButtonMinNormal.bmp │ │ │ ├── ProfessionalButtonRestoreDisabled.bmp │ │ │ ├── ProfessionalButtonRestoreNormal.bmp │ │ │ ├── ProfessionalCloseButton.bmp │ │ │ ├── ProfessionalContextButton.bmp │ │ │ ├── ProfessionalDropDownButton.bmp │ │ │ ├── ProfessionalHelpIconDisabled.png │ │ │ ├── ProfessionalHelpIconNormal.png │ │ │ ├── ProfessionalMaximize.bmp │ │ │ ├── ProfessionalNextButton.bmp │ │ │ ├── ProfessionalPendantCloseDisabled.bmp │ │ │ ├── ProfessionalPendantCloseNormal.bmp │ │ │ ├── ProfessionalPendantExpandDisabled.bmp │ │ │ ├── ProfessionalPendantExpandNormal.bmp │ │ │ ├── ProfessionalPendantMinDisabled.bmp │ │ │ ├── ProfessionalPendantMinNormal.bmp │ │ │ ├── ProfessionalPendantMinimizeDisabled.bmp │ │ │ ├── ProfessionalPendantMinimizeNormal.bmp │ │ │ ├── ProfessionalPendantRestoreDisabled.bmp │ │ │ ├── ProfessionalPendantRestoreNormal.bmp │ │ │ ├── ProfessionalPinHorizontalButton.bmp │ │ │ ├── ProfessionalPinVerticalButton.bmp │ │ │ ├── ProfessionalPreviousButton.bmp │ │ │ ├── ProfessionalRestore.bmp │ │ │ ├── ProfessionalSystemMenuCloseNormalSmall.png │ │ │ ├── ProfessionalSystemMenuMaximiseNormalSmall.png │ │ │ ├── ProfessionalSystemMenuMinimiseNormalSmall.png │ │ │ ├── ProfessionalSystemMenuRestoreNormalSmall.png │ │ │ ├── PropertyGridVersion1.bmp │ │ │ ├── PropertyGridVersion2.bmp │ │ │ ├── Question_Windows_11.png │ │ │ ├── RadioButton2007BlackN.png │ │ │ ├── RadioButton2007BlackNC.png │ │ │ ├── RadioButton2007BlackP.png │ │ │ ├── RadioButton2007BlackPC.png │ │ │ ├── RadioButton2007BlackT.png │ │ │ ├── RadioButton2007BlackTC.png │ │ │ ├── RadioButton2007Blue.png │ │ │ ├── RadioButton2007BlueD.png │ │ │ ├── RadioButton2007BlueDC.png │ │ │ ├── RadioButton2007BlueN.png │ │ │ ├── RadioButton2007BlueNC.png │ │ │ ├── RadioButton2007BlueP.png │ │ │ ├── RadioButton2007BluePC.png │ │ │ ├── RadioButton2007BlueT.png │ │ │ ├── RadioButton2007BlueTC.png │ │ │ ├── RadioButton2007SilverN.png │ │ │ ├── RadioButton2007SilverNC.png │ │ │ ├── RadioButton2007SilverP.png │ │ │ ├── RadioButton2007SilverPC.png │ │ │ ├── RadioButton2007SilverT.png │ │ │ ├── RadioButton2007SilverTC.png │ │ │ ├── RadioButton2010BlueD.png │ │ │ ├── RadioButton2010BlueDC.png │ │ │ ├── RadioButton2010BlueN.png │ │ │ ├── RadioButton2010BlueNC.png │ │ │ ├── RadioButton2010BlueP.png │ │ │ ├── RadioButton2010BluePC.png │ │ │ ├── RadioButton2010BlueT.png │ │ │ ├── RadioButton2010BlueTC.png │ │ │ ├── RadioButton2010SilverN.png │ │ │ ├── RadioButton2010SilverNC.png │ │ │ ├── RadioButton2010SilverPC.png │ │ │ ├── RadioButton2010SilverTC.png │ │ │ ├── RadioButtonSparkleD.png │ │ │ ├── RadioButtonSparkleDC.png │ │ │ ├── RadioButtonSparkleGrayIndeterminate.png │ │ │ ├── RadioButtonSparkleIndeterminate.png │ │ │ ├── RadioButtonSparkleN.png │ │ │ ├── RadioButtonSparkleNC.png │ │ │ ├── RadioButtonSparkleOrangeNC.png │ │ │ ├── RadioButtonSparkleOrangeP.png │ │ │ ├── RadioButtonSparkleOrangePC.png │ │ │ ├── RadioButtonSparkleOrangeT.png │ │ │ ├── RadioButtonSparkleOrangeTC.png │ │ │ ├── RadioButtonSparkleP.png │ │ │ ├── RadioButtonSparklePC.png │ │ │ ├── RadioButtonSparklePurpleNC.png │ │ │ ├── RadioButtonSparklePurpleP.png │ │ │ ├── RadioButtonSparklePurplePC.png │ │ │ ├── RadioButtonSparklePurpleT.png │ │ │ ├── RadioButtonSparklePurpleTC.png │ │ │ ├── RadioButtonSparkleT.png │ │ │ ├── RadioButtonSparkleTC.png │ │ │ ├── RadioButtonVisualStudio2017Checked.png │ │ │ ├── RadioButtonVisualStudio2017NotChecked.png │ │ │ ├── RibbonDown2010.bmp │ │ │ ├── RibbonDown2010Black.bmp │ │ │ ├── RibbonUp2010.bmp │ │ │ ├── RibbonUp2010Black.bmp │ │ │ ├── SelectParentControl.png │ │ │ ├── SelectParentControlFlipped.png │ │ │ ├── SilverContextMenuSub.png │ │ │ ├── SilverDropDownButton.png │ │ │ ├── SparkleButtonCloseDisabled.bmp │ │ │ ├── SparkleButtonCloseNormal.bmp │ │ │ ├── SparkleButtonMaxDisabled.bmp │ │ │ ├── SparkleButtonMaxNormal.bmp │ │ │ ├── SparkleButtonMinDisabled.bmp │ │ │ ├── SparkleButtonMinNormal.bmp │ │ │ ├── SparkleButtonRestoreDisabled.bmp │ │ │ ├── SparkleButtonRestoreNormal.bmp │ │ │ ├── SparkleChecked.png │ │ │ ├── SparkleContextMenuSub.png │ │ │ ├── SparkleDropDownButton.png │ │ │ ├── SparkleDropDownButtonBlack.png │ │ │ ├── SparkleDropDownOutlineButton.png │ │ │ ├── SparkleDropUpButton.png │ │ │ ├── SparkleGalleryDropButton.png │ │ │ ├── SparkleGrayChecked.png │ │ │ ├── SparkleSystemMenuCloseNormalSmall.png │ │ │ ├── SparkleSystemMenuMaximiseNormalSmall.png │ │ │ ├── SparkleSystemMenuMinimiseNormalSmall.png │ │ │ ├── SparkleSystemMenuRestoreNormalSmall.png │ │ │ ├── SplitHorizontal.cur │ │ │ ├── SplitVertical.cur │ │ │ ├── SystemChecked.png │ │ │ ├── SystemContextMenuSub.png │ │ │ ├── SystemIndeterminate.png │ │ │ ├── SystemToolbarCopyDisabled.png │ │ │ ├── SystemToolbarCopyNormal.png │ │ │ ├── SystemToolbarCutDisabled.png │ │ │ ├── SystemToolbarCutNormal.png │ │ │ ├── SystemToolbarNewDisabled.png │ │ │ ├── SystemToolbarNewNormal.png │ │ │ ├── SystemToolbarOpenDisabled.png │ │ │ ├── SystemToolbarOpenNormal.png │ │ │ ├── SystemToolbarPageSetupDisabled.png │ │ │ ├── SystemToolbarPageSetupNormal.png │ │ │ ├── SystemToolbarPasteDisabled.png │ │ │ ├── SystemToolbarPasteNormal.png │ │ │ ├── SystemToolbarPrintDisabled.png │ │ │ ├── SystemToolbarPrintNormal.png │ │ │ ├── SystemToolbarPrintPreviewDisabled.png │ │ │ ├── SystemToolbarPrintPreviewNormal.png │ │ │ ├── SystemToolbarRedoDisabled.png │ │ │ ├── SystemToolbarRedoNormal.png │ │ │ ├── SystemToolbarSaveAllDisabled.png │ │ │ ├── SystemToolbarSaveAllNormal.png │ │ │ ├── SystemToolbarSaveDisabled.png │ │ │ ├── SystemToolbarSaveNormal.png │ │ │ ├── SystemToolbarUndoDisabled.png │ │ │ ├── SystemToolbarUndoNormal.png │ │ │ ├── TaskDialogAsteriskGeneric.png │ │ │ ├── TaskDialogCriticalGeneric.png │ │ │ ├── TaskDialogHandGeneric.png │ │ │ ├── TaskDialogInformationGeneric.png │ │ │ ├── TaskDialogQuestionGeneric.png │ │ │ ├── TaskDialogStopGeneric.png │ │ │ ├── TaskDialogWarningGeneric.png │ │ │ ├── TaskDialog_Windows_11_Logo.png │ │ │ ├── TaskDialog_Windows_8_and_10_Logo.png │ │ │ ├── ThreeColors_blue_white_red_32.png │ │ │ ├── ThreeColors_green_white_red_32.png │ │ │ ├── ThreeColors_green_yellow_red_32.png │ │ │ ├── ThreeColors_red_white_blue_32.png │ │ │ ├── ThreeColors_red_white_green_32.png │ │ │ ├── ThreeColors_red_yellow_green_32.png │ │ │ ├── ThreeColours_blue_white_red_32.png │ │ │ ├── ThreeColours_green_white_red_32.png │ │ │ ├── ThreeColours_green_yellow_red_32.png │ │ │ ├── ThreeColours_red_white_blue_32.png │ │ │ ├── ThreeColours_red_white_green_32.png │ │ │ ├── ThreeColours_red_yellow_green_32.png │ │ │ ├── Toast_Notification_Asterisk_128_x_128.png │ │ │ ├── Toast_Notification_Critical_128_x_128.png │ │ │ ├── Toast_Notification_Hand_128_x_128.png │ │ │ ├── Toast_Notification_Information_128_x_128.png │ │ │ ├── Toast_Notification_Ok_128_x_128.png │ │ │ ├── Toast_Notification_Question_128_x_128.png │ │ │ ├── Toast_Notification_Stop_128_x_128.png │ │ │ ├── Toast_Notification_Warning_128_x_115.png │ │ │ ├── Toast_Notification_Windows_10_128_x_121.png │ │ │ ├── Toast_Notification_Windows_11_128_x_128.png │ │ │ ├── Transparent 16 x 16.png │ │ │ ├── TreeCollapseBlack.png │ │ │ ├── TreeCollapseDark.png │ │ │ ├── TreeCollapseMinus.png │ │ │ ├── TreeExpandDark.png │ │ │ ├── TreeExpandPlus.png │ │ │ ├── TreeExpandWhite.png │ │ │ ├── TreeMinusBox.png │ │ │ ├── TreePlusBox.png │ │ │ ├── TwoColors_blue_white_32.png │ │ │ ├── TwoColors_green_white_32.png │ │ │ ├── TwoColors_pink_white_32.png │ │ │ ├── TwoColors_red_white_32.png │ │ │ ├── TwoColors_violet_white_32.png │ │ │ ├── TwoColors_white_blue_32.png │ │ │ ├── TwoColors_white_green_32.png │ │ │ ├── TwoColors_white_pink_32.png │ │ │ ├── TwoColors_white_red_32.png │ │ │ ├── TwoColors_white_violet_32.png │ │ │ ├── TwoColors_white_yellow_32.png │ │ │ ├── TwoColors_yellow_white_32.png │ │ │ ├── TwoColours_blue_white_32.png │ │ │ ├── TwoColours_green_white_32.png │ │ │ ├── TwoColours_pink_white_32.png │ │ │ ├── TwoColours_red_white_32.png │ │ │ ├── TwoColours_violet_white_32.png │ │ │ ├── TwoColours_white_blue_32.png │ │ │ ├── TwoColours_white_green_32.png │ │ │ ├── TwoColours_white_pink_32.png │ │ │ ├── TwoColours_white_red_32.png │ │ │ ├── TwoColours_white_violet_32.png │ │ │ ├── TwoColours_white_yellow_32.png │ │ │ ├── TwoColours_yellow_white_32.png │ │ │ ├── VersionInformation.png │ │ │ ├── VisualStudio2022ToolbarCopy.png │ │ │ ├── VisualStudio2022ToolbarCut.png │ │ │ ├── VisualStudio2022ToolbarNewFile.png │ │ │ ├── VisualStudio2022ToolbarOpen.png │ │ │ ├── VisualStudio2022ToolbarPageSetup.png │ │ │ ├── VisualStudio2022ToolbarPaste.png │ │ │ ├── VisualStudio2022ToolbarPrint.png │ │ │ ├── VisualStudio2022ToolbarPrintPreview.png │ │ │ ├── VisualStudio2022ToolbarQuickPrint.png │ │ │ ├── VisualStudio2022ToolbarRedo.png │ │ │ ├── VisualStudio2022ToolbarSave.png │ │ │ ├── VisualStudio2022ToolbarSaveAll.png │ │ │ ├── VisualStudio2022ToolbarSaveAs.png │ │ │ ├── VisualStudio2022ToolbarUndo.png │ │ │ ├── VisualStudioCheckBoxChecked.png │ │ │ ├── VisualStudioCheckBoxDisabled.png │ │ │ ├── VisualStudioCheckBoxUnchecked.png │ │ │ ├── Warning_Windows_11.png │ │ │ ├── WebBrowser.bmp │ │ │ ├── WhiteArrowDownButton.bmp │ │ │ ├── WhiteArrowLeftButton.bmp │ │ │ ├── WhiteArrowRightButton.bmp │ │ │ ├── WhiteArrowUpButton.bmp │ │ │ ├── WhiteButtonClose.bmp │ │ │ ├── WhiteCloseButton.bmp │ │ │ ├── WhiteContextButton.bmp │ │ │ ├── WhiteContextMenuSub.png │ │ │ ├── WhiteDropDownButton.bmp │ │ │ ├── WhiteDropDownButton.png │ │ │ ├── WhiteMaximize.bmp │ │ │ ├── WhiteNextButton.bmp │ │ │ ├── WhitePendantClosenormal.bmp │ │ │ ├── WhitePendantMinnormal.bmp │ │ │ ├── WhitePendantRestorenormal.bmp │ │ │ ├── WhitePendantRibbonExpand.bmp │ │ │ ├── WhitePendantRibbonMinimize.bmp │ │ │ ├── WhitePinHorizontalButton.bmp │ │ │ ├── WhitePinVerticalButton.bmp │ │ │ ├── WhitePreviousButton.bmp │ │ │ ├── WhiteRestore.bmp │ │ │ ├── Windows 10 CommandLink Arrow.png │ │ │ ├── Windows 10 UAC Shield 16 x 16.png │ │ │ ├── Windows 10 UAC Shield 20 x 20.png │ │ │ ├── Windows 10 UAC Shield 24 x 24.png │ │ │ ├── Windows 10 UAC Shield 256 x 256.png │ │ │ ├── Windows 10 UAC Shield 32 x 32.png │ │ │ ├── Windows 10 UAC Shield 40 x 40.png │ │ │ ├── Windows 10 UAC Shield 48 x 48.png │ │ │ ├── Windows 10 UAC Shield 64 x 64.png │ │ │ ├── Windows 11 CommandLink Arrow.png │ │ │ ├── Windows 11 UAC Shield 16 x 16.png │ │ │ ├── Windows 11 UAC Shield 20 x 20.png │ │ │ ├── Windows 11 UAC Shield 24 x 24.png │ │ │ ├── Windows 11 UAC Shield 256 x 256.png │ │ │ ├── Windows 11 UAC Shield 32 x 32.png │ │ │ ├── Windows 11 UAC Shield 40 x 40.png │ │ │ ├── Windows 11 UAC Shield 48 x 48.png │ │ │ ├── Windows 11 UAC Shield 64 x 64.png │ │ │ ├── Windows 7 and 8x UAC Shield 128 x 128.png │ │ │ ├── Windows 7 and 8x UAC Shield 16 x 16.png │ │ │ ├── Windows 7 and 8x UAC Shield 24 x 24.png │ │ │ ├── Windows 7 and 8x UAC Shield 256 x 256.png │ │ │ ├── Windows 7 and 8x UAC Shield 32 x 32.png │ │ │ ├── Windows 7 and 8x UAC Shield 48 x 48.png │ │ │ ├── Windows 7 and 8x UAC Shield 64 x 64.png │ │ │ ├── Windows 7 and 8x UAC Shield 8 x 8.png │ │ │ ├── Windows Vista UAC Shield 128 x 128.png │ │ │ ├── Windows Vista UAC Shield 16 x 16.png │ │ │ ├── Windows Vista UAC Shield 24 x 24.png │ │ │ ├── Windows Vista UAC Shield 256 x 256.png │ │ │ ├── Windows Vista UAC Shield 32 x 32.png │ │ │ ├── Windows Vista UAC Shield 48 x 48.png │ │ │ ├── Windows Vista UAC Shield 8 x 8.png │ │ │ ├── Windows11.png │ │ │ ├── Windows_11_128_128.png │ │ │ ├── Windows_11_Original.png │ │ │ ├── Windows_8_81_10_128_128.png │ │ │ ├── Windows_8_81_10_Original.png │ │ │ ├── Windows_8_and_10_Logo.png │ │ │ ├── add.png │ │ │ ├── arrow_down_blue.png │ │ │ ├── arrow_down_gray_multi-icon.ico │ │ │ ├── arrow_up_blue.png │ │ │ ├── arrow_up_gray_multi-icon.ico │ │ │ ├── check_green_multi-icon.ico │ │ │ ├── color.ico │ │ │ ├── color2scale_generic_16.png │ │ │ ├── color3scale_generic_16.png │ │ │ ├── databar_generic_16.png │ │ │ ├── delete.png │ │ │ ├── document_,multi-icon.ico │ │ │ ├── element.png │ │ │ ├── element_delete.png │ │ │ ├── element_minus_16.png │ │ │ ├── element_plus_16.png │ │ │ ├── element_selection_delete.png │ │ │ ├── elements_minus_16.png │ │ │ ├── elements_plus_16.png │ │ │ ├── eraser.png │ │ │ ├── fit_to_size.png │ │ │ ├── font.ico │ │ │ ├── gear_multi-icon.ico │ │ │ ├── navigate_minus.png │ │ │ ├── navigate_plus.png │ │ │ ├── paint_bucket_green.png │ │ │ ├── power_off_multi-icon.ico │ │ │ ├── printer.ico │ │ │ ├── shield_error_multi-icon.ico │ │ │ ├── shield_exclamation_warning_multi-icon.ico │ │ │ ├── shield_help_multi-icon.ico │ │ │ ├── shield_krypton_multi-icon.ico │ │ │ ├── shield_questionmark_multi-icon.ico │ │ │ ├── shield_success_checked_multi-icon.ico │ │ │ ├── shield_uac_multi-icon.ico │ │ │ ├── sort_az_ascending2.png │ │ │ ├── sort_az_descending2.png │ │ │ ├── sort_up_down_delete_16.png │ │ │ ├── star0.png │ │ │ ├── star1.png │ │ │ ├── star2.png │ │ │ ├── star3.png │ │ │ ├── star4.png │ │ │ ├── star5.png │ │ │ ├── star_yellow.png │ │ │ ├── star_yellow_disabled.png │ │ │ ├── star_yellow_half_16.png │ │ │ ├── starhot0.png │ │ │ ├── starhot1.png │ │ │ ├── starhot2.png │ │ │ ├── starhot3.png │ │ │ ├── starhot4.png │ │ │ ├── starhot5.png │ │ │ ├── table2_selection_column.png │ │ │ └── table_conditional_16.png │ │ ├── ShellDialogs │ │ │ ├── FileDialogWrapper.cs │ │ │ ├── FileSaveDialogWrapper.cs │ │ │ ├── LocalCallWndProc.cs │ │ │ ├── LocalCbtHook.cs │ │ │ ├── LocalWindowsHook.cs │ │ │ ├── ShellBrowserDialogTFM.cs │ │ │ └── ShellDialogWrapper.cs │ │ ├── Storage │ │ │ ├── Colors │ │ │ │ └── KryptonColorStorage.cs │ │ │ └── Images │ │ │ │ ├── Generic │ │ │ │ └── GenericImageStorage.cs │ │ │ │ ├── KryptonImageStorage.cs │ │ │ │ └── Toolbar │ │ │ │ └── ToolBarImageStorage.cs │ │ ├── StrongKrypton.snk │ │ ├── ToolboxBitmaps │ │ │ ├── KryptonBorderEdge.bmp │ │ │ ├── KryptonBreadCrumb.bmp │ │ │ ├── KryptonBreadCrumbItem.bmp │ │ │ ├── KryptonButton.bmp │ │ │ ├── KryptonButtonSpec.bmp │ │ │ ├── KryptonCalcInput.bmp │ │ │ ├── KryptonCheckBox.bmp │ │ │ ├── KryptonCheckButton.bmp │ │ │ ├── KryptonCheckSet.bmp │ │ │ ├── KryptonCheckedListBox.bmp │ │ │ ├── KryptonColorButton.bmp │ │ │ ├── KryptonColorDialog.png │ │ │ ├── KryptonComboBox.bmp │ │ │ ├── KryptonCommand.bmp │ │ │ ├── KryptonCommandLinkButton.bmp │ │ │ ├── KryptonContextMenu.bmp │ │ │ ├── KryptonContextMenuColorColumns.bmp │ │ │ ├── KryptonContextMenuHeading.bmp │ │ │ ├── KryptonContextMenuImageSelect.bmp │ │ │ ├── KryptonContextMenuItem.bmp │ │ │ ├── KryptonContextMenuItems.bmp │ │ │ ├── KryptonContextMenuSeparator.bmp │ │ │ ├── KryptonDataGridView.bmp │ │ │ ├── KryptonDateTimePicker.bmp │ │ │ ├── KryptonDomainUpDown.bmp │ │ │ ├── KryptonDropButton.bmp │ │ │ ├── KryptonFolderBrowserDialog.bmp │ │ │ ├── KryptonFontDialogControl.png │ │ │ ├── KryptonForm.bmp │ │ │ ├── KryptonGroup.bmp │ │ │ ├── KryptonGroupBox.bmp │ │ │ ├── KryptonGroupPanel.bmp │ │ │ ├── KryptonHeader.bmp │ │ │ ├── KryptonHeaderGroup.bmp │ │ │ ├── KryptonInputBox.bmp │ │ │ ├── KryptonLabel.bmp │ │ │ ├── KryptonLanguageManager.bmp │ │ │ ├── KryptonLinkLabel.bmp │ │ │ ├── KryptonListBox.bmp │ │ │ ├── KryptonLogo.bmp │ │ │ ├── KryptonManager.bmp │ │ │ ├── KryptonMaskedTextBox.bmp │ │ │ ├── KryptonMessageBox.bmp │ │ │ ├── KryptonMonthCalendar.bmp │ │ │ ├── KryptonNumericUpDown.bmp │ │ │ ├── KryptonOpenFileDialog.bmp │ │ │ ├── KryptonPalette.bmp │ │ │ ├── KryptonPanel.bmp │ │ │ ├── KryptonPrintDialog.png │ │ │ ├── KryptonProgressBar.bmp │ │ │ ├── KryptonRadioButton.bmp │ │ │ ├── KryptonRichTextBox.bmp │ │ │ ├── KryptonSaveFileDialog.bmp │ │ │ ├── KryptonScrollBar.bmp │ │ │ ├── KryptonSeparator.bmp │ │ │ ├── KryptonSplitContainer.bmp │ │ │ ├── KryptonTaskDialog.bmp │ │ │ ├── KryptonTaskDialogCommand.bmp │ │ │ ├── KryptonTextBox.bmp │ │ │ ├── KryptonTrackBar.bmp │ │ │ ├── KryptonTreeView.bmp │ │ │ ├── KryptonWrapLabel.bmp │ │ │ ├── PropertyGridVersion1.bmp │ │ │ ├── PropertyGridVersion2.bmp │ │ │ └── WebBrowser.bmp │ │ ├── Tooling │ │ │ ├── DebugTools.cs │ │ │ ├── ExceptionHandler.cs │ │ │ └── GeneralToolkitUtilities.cs │ │ ├── Translations │ │ │ ├── Colours │ │ │ │ └── GlobalColorStrings.cs │ │ │ ├── Converters │ │ │ │ ├── ButtonSpecStyleStrings.cs │ │ │ │ ├── DataGridViewStyleStrings.cs │ │ │ │ ├── GridStyleStrings.cs │ │ │ │ ├── HeaderGroupCollapsedTargetStrings.cs │ │ │ │ ├── HeaderStyleStrings.cs │ │ │ │ ├── InputControlStyleStrings.cs │ │ │ │ ├── IntegratedToolBarStrings.cs │ │ │ │ ├── KryptonLinkBehaviorStrings.cs │ │ │ │ ├── LabelStyleStrings.cs │ │ │ │ ├── PaletteBackStyleStrings.cs │ │ │ │ ├── PaletteBorderStyleStrings.cs │ │ │ │ ├── PaletteButtonOrientationStrings.cs │ │ │ │ ├── PaletteButtonSpecStyleStrings.cs │ │ │ │ ├── PaletteButtonStyleStrings.cs │ │ │ │ ├── PaletteContentStyleStrings.cs │ │ │ │ ├── PaletteImageEffectStrings.cs │ │ │ │ ├── PaletteImageStyleStrings.cs │ │ │ │ ├── PaletteModeStrings.cs │ │ │ │ ├── PaletteTextTrimStrings.cs │ │ │ │ ├── PlacementModeStrings.cs │ │ │ │ ├── SeparatorStyleStrings.cs │ │ │ │ ├── SplashScreenStrings.cs │ │ │ │ ├── TabBorderStyleStrings.cs │ │ │ │ ├── TabStyleStrings.cs │ │ │ │ └── ToastNotificationIconStrings.cs │ │ │ ├── General │ │ │ │ ├── CustomToolkitStrings.cs │ │ │ │ ├── GeneralRibbonStrings.cs │ │ │ │ ├── GeneralToolkitStrings.cs │ │ │ │ ├── KryptonSearchBoxStrings.cs │ │ │ │ ├── MessageBoxStrings.cs │ │ │ │ └── SystemMenuStrings.cs │ │ │ └── Miscellaneous │ │ │ │ ├── KryptonAboutBoxBasicApplicationInformationStrings.cs │ │ │ │ ├── KryptonAboutBoxStrings.cs │ │ │ │ ├── KryptonExceptionDialogStrings.cs │ │ │ │ ├── KryptonMiscellaneousStrings.cs │ │ │ │ ├── KryptonMiscellaneousThemeStrings.cs │ │ │ │ ├── KryptonModalWaitDialogStrings.cs │ │ │ │ ├── KryptonScrollBarStrings.cs │ │ │ │ └── KryptonToastNotificationStrings.cs │ │ ├── Utilities │ │ │ ├── ActiveFormTracker.cs │ │ │ ├── AllowNullAttribute.cs │ │ │ ├── AssemblyUtilities.cs │ │ │ ├── BiDictionary.cs │ │ │ ├── DesignModeHelper.cs │ │ │ ├── GlobalToolkitUtilities.cs │ │ │ ├── GraphicsExtensions.cs │ │ │ ├── IconHelper.cs │ │ │ ├── IconType.cs │ │ │ ├── ImageNativeMethods.cs │ │ │ ├── Interop.HRESULT.cs │ │ │ ├── Interop.SHGetStockIconInfo.cs │ │ │ ├── KryptonBuildFlags.cs │ │ │ ├── KryptonColorButtonCustomColorPreviewShape.cs │ │ │ ├── KryptonDataGridViewProxy.cs │ │ │ ├── KryptonEmojiInfo.cs │ │ │ ├── KryptonEmojiParser.cs │ │ │ ├── KryptonFormTitleStyle.cs │ │ │ ├── KryptonInputBoxType.cs │ │ │ ├── LanguagePackManager.cs │ │ │ ├── LibraryImportAttribute.cs │ │ │ ├── NativeLibraryImports.cs │ │ │ ├── OSUtilities.cs │ │ │ ├── PaletteImageScaler.cs │ │ │ ├── RoundedRectangleF.cs │ │ │ ├── SchemeBaseColorsExtensions.cs │ │ │ ├── StockIconHelper.cs │ │ │ ├── SystemIconsCustom.cs │ │ │ ├── ThemeColorGridBuilder.cs │ │ │ ├── TimedCache.cs │ │ │ ├── UACShieldHelper.cs │ │ │ ├── UACShieldIconSize.cs │ │ │ └── WindowUtilities.cs │ │ ├── Values │ │ │ ├── AcrylicValues.cs │ │ │ ├── BlurValues.cs │ │ │ ├── ButtonImageStates.cs │ │ │ ├── ButtonValues.cs │ │ │ ├── CaptionValues.cs │ │ │ ├── CheckBoxImages.cs │ │ │ ├── CheckButtonImageStates.cs │ │ │ ├── CheckButtonValues.cs │ │ │ ├── ColorButtonValues.cs │ │ │ ├── CommandLinkImageValues.cs │ │ │ ├── CommandLinkMainTextValue.cs │ │ │ ├── CommandLinkSubscriptTextValue.cs │ │ │ ├── CommandLinkTextValues.cs │ │ │ ├── ContextMenuImages.cs │ │ │ ├── CountdownButtonValues.cs │ │ │ ├── FixedContentValue.cs │ │ │ ├── GalleryButtonImages.cs │ │ │ ├── GalleryImages.cs │ │ │ ├── HeaderGroupValuesPrimary.cs │ │ │ ├── HeaderGroupValuesSecondary.cs │ │ │ ├── HeaderValues.cs │ │ │ ├── HeaderValuesBase.cs │ │ │ ├── IntegratedToolBarButtonValues.cs │ │ │ ├── IntegratedToolBarCommandValues.cs │ │ │ ├── IntegratedToolBarValues.cs │ │ │ ├── KryptonInputBoxValues.cs │ │ │ ├── LabelValues.cs │ │ │ ├── PopupPositionValues.cs │ │ │ ├── PoweredByButtonValues.cs │ │ │ ├── PoweredByValues.cs │ │ │ ├── RadioButtonImages.cs │ │ │ ├── ShadowValues.cs │ │ │ ├── ShortTextValue.cs │ │ │ ├── SystemMenuValues.cs │ │ │ ├── ToggleSwitchValues.cs │ │ │ ├── ToolTipValues.cs │ │ │ ├── ToolkitStringValues.cs │ │ │ ├── TreeViewImages.cs │ │ │ └── UserAccountControlShieldValues.cs │ │ ├── View Base │ │ │ ├── IRippleHost.cs │ │ │ ├── Internal │ │ │ │ ├── InternalAssemblyDetails.Designer.cs │ │ │ │ ├── InternalAssemblyDetails.cs │ │ │ │ ├── InternalAssemblyDetails.resx │ │ │ │ ├── InternalExceptionTreeView.cs │ │ │ │ ├── InternalExceptionWinFormsTreeView.cs │ │ │ │ ├── InternalKryptonCountdownButton.cs │ │ │ │ ├── InternalKryptonStringCollectionEditor.cs │ │ │ │ ├── InternalKryptonStringCollectionEditor.resx │ │ │ │ ├── InternalSearchableExceptionTreeView.Designer.cs │ │ │ │ ├── InternalSearchableExceptionTreeView.cs │ │ │ │ ├── InternalSearchableExceptionTreeView.resx │ │ │ │ ├── InternalSearchableExceptionWinFormsTreeView.Designer.cs │ │ │ │ ├── InternalSearchableExceptionWinFormsTreeView.cs │ │ │ │ ├── InternalSearchableExceptionWinFormsTreeView.resx │ │ │ │ └── InternalToastButton.cs │ │ │ ├── PercentageEditingControl.cs │ │ │ ├── ViewBase.cs │ │ │ ├── ViewComposite.cs │ │ │ ├── ViewContext.cs │ │ │ ├── ViewContextMenuManager.cs │ │ │ ├── ViewControl.cs │ │ │ ├── ViewDecorator.cs │ │ │ ├── ViewLeaf.cs │ │ │ └── ViewManager.cs │ │ ├── View Decorator │ │ │ └── ViewDecoratorFixedSize.cs │ │ ├── View Draw │ │ │ ├── ViewDrawBorderEdge.cs │ │ │ ├── ViewDrawButton.cs │ │ │ ├── ViewDrawCanvas.cs │ │ │ ├── ViewDrawCheckBox.cs │ │ │ ├── ViewDrawCommandLinkButton.cs │ │ │ ├── ViewDrawContent.cs │ │ │ ├── ViewDrawDateTimeButton.cs │ │ │ ├── ViewDrawDateTimeText.cs │ │ │ ├── ViewDrawDebug.cs │ │ │ ├── ViewDrawDocker.cs │ │ │ ├── ViewDrawDropDownButton.cs │ │ │ ├── ViewDrawEmptyContent.cs │ │ │ ├── ViewDrawForm.cs │ │ │ ├── ViewDrawGroupBoxDocker.cs │ │ │ ├── ViewDrawMenuCheckBox.cs │ │ │ ├── ViewDrawMenuCheckButton.cs │ │ │ ├── ViewDrawMenuColorBlock.cs │ │ │ ├── ViewDrawMenuColorColumn.cs │ │ │ ├── ViewDrawMenuColorColumns.cs │ │ │ ├── ViewDrawMenuHeading.cs │ │ │ ├── ViewDrawMenuImageCanvas.cs │ │ │ ├── ViewDrawMenuImageColumn.cs │ │ │ ├── ViewDrawMenuImageSelectItem.cs │ │ │ ├── ViewDrawMenuItem.cs │ │ │ ├── ViewDrawMenuItemContent.cs │ │ │ ├── ViewDrawMenuLinkLabel.cs │ │ │ ├── ViewDrawMenuMonthCalendar.cs │ │ │ ├── ViewDrawMenuRadioButton.cs │ │ │ ├── ViewDrawMenuSeparator.cs │ │ │ ├── ViewDrawMonth.cs │ │ │ ├── ViewDrawMonthDayNames.cs │ │ │ ├── ViewDrawMonthDays.cs │ │ │ ├── ViewDrawMonthUpDown.cs │ │ │ ├── ViewDrawNull.cs │ │ │ ├── ViewDrawPanel.cs │ │ │ ├── ViewDrawRadioButton.cs │ │ │ ├── ViewDrawScrollBar.cs │ │ │ ├── ViewDrawSeparator.cs │ │ │ ├── ViewDrawSplitCanvas.cs │ │ │ ├── ViewDrawToday.cs │ │ │ ├── ViewDrawTrackBar.cs │ │ │ ├── ViewDrawTrackPosition.cs │ │ │ ├── ViewDrawTrackTP.cs │ │ │ ├── ViewDrawTrackTicks.cs │ │ │ ├── ViewDrawTrackTrack.cs │ │ │ └── ViewDrawWeekNumbers.cs │ │ └── View Layout │ │ │ ├── ViewLayoutCenter.cs │ │ │ ├── ViewLayoutColorStack.cs │ │ │ ├── ViewLayoutContext.cs │ │ │ ├── ViewLayoutControl.cs │ │ │ ├── ViewLayoutCrumbs.cs │ │ │ ├── ViewLayoutDocker.cs │ │ │ ├── ViewLayoutFill.cs │ │ │ ├── ViewLayoutFit.cs │ │ │ ├── ViewLayoutMenuItemSelect.cs │ │ │ ├── ViewLayoutMenuItemsPile.cs │ │ │ ├── ViewLayoutMenuSepGap.cs │ │ │ ├── ViewLayoutMetricSpacer.cs │ │ │ ├── ViewLayoutMonths.cs │ │ │ ├── ViewLayoutNull.cs │ │ │ ├── ViewLayoutPadding.cs │ │ │ ├── ViewLayoutPile.cs │ │ │ ├── ViewLayoutScrollViewport.cs │ │ │ ├── ViewLayoutSeparator.cs │ │ │ ├── ViewLayoutStack.cs │ │ │ ├── ViewLayoutStretch.cs │ │ │ ├── ViewLayoutViewport.cs │ │ │ └── ViewLayoutWeekCorner.cs │ ├── Krypton.Workspace │ │ ├── Controls Workspace │ │ │ ├── KryptonWorkspace.cs │ │ │ ├── KryptonWorkspaceCell.cs │ │ │ ├── KryptonWorkspaceCollection.cs │ │ │ ├── KryptonWorkspaceSequence.cs │ │ │ └── KryptonWorkspaceSequenceConverter.cs │ │ ├── Dragging │ │ │ ├── DragTargetWorkspace.cs │ │ │ ├── DragTargetWorkspaceCellEdge.cs │ │ │ ├── DragTargetWorkspaceCellTransfer.cs │ │ │ └── DragTargetWorkspaceEdge.cs │ │ ├── EventArgs │ │ │ ├── ActiveCellChangedEventArgs.cs │ │ │ ├── ActivePageChangedEventArgs.cs │ │ │ ├── CellDragCancelEventArgs.cs │ │ │ ├── PageLoadingEventArgs.cs │ │ │ ├── PageSavingEventArgs.cs │ │ │ ├── PagesUnmatchedEventArgs.cs │ │ │ ├── RecreateLoadingPageEventArgs.cs │ │ │ ├── WorkspaceCellEventArgs.cs │ │ │ ├── XmlLoadingEventArgs.cs │ │ │ └── XmlSavingEventArgs.cs │ │ ├── General │ │ │ ├── CellPageNotify.cs │ │ │ ├── Definitions.cs │ │ │ ├── KryptonBuildFlags.cs │ │ │ ├── PlatformInvoke.cs │ │ │ ├── StarNumber.cs │ │ │ └── StarSize.cs │ │ ├── Global │ │ │ └── GlobalDeclarations.cs │ │ ├── Krypton.Workspace 2022.csproj │ │ ├── Krypton.Workspace 2022.csproj.DotSettings │ │ ├── Krypton.Workspace.licenseheader │ │ ├── Krypton.ico │ │ ├── Palette │ │ │ └── WorkspacePageMenu.cs │ │ ├── Resources │ │ │ ├── Check.png │ │ │ ├── Delete.png │ │ │ ├── GeneralImageResources.Designer.cs │ │ │ ├── GeneralImageResources.resx │ │ │ ├── Help.png │ │ │ ├── add.png │ │ │ ├── arrow_down_blue.png │ │ │ └── arrow_up_blue.png │ │ ├── StrongKrypton.snk │ │ ├── ToolboxBitmaps │ │ │ ├── KryptonWorkspace.bmp │ │ │ ├── KryptonWorkspaceCell.bmp │ │ │ └── KryptonWorkspaceSequence.bmp │ │ ├── View Draw │ │ │ └── ViewDrawWorkspaceSeparator.cs │ │ └── Workspace │ │ │ ├── KryptonWorkspaceActionList.cs │ │ │ ├── KryptonWorkspaceCellDesigner.cs │ │ │ ├── KryptonWorkspaceCollectionEditor.cs │ │ │ ├── KryptonWorkspaceDesigner.cs │ │ │ └── KryptonWorkspaceSequenceDesigner.cs │ ├── TestForm │ │ ├── AboutBoxTest.Designer.cs │ │ ├── AboutBoxTest.cs │ │ ├── AboutBoxTest.resx │ │ ├── AdvancedEmojiViewerForm.Designer.cs │ │ ├── AdvancedEmojiViewerForm.cs │ │ ├── AdvancedEmojiViewerForm.resx │ │ ├── App.config │ │ ├── BasicEmojiViewerForm.Designer.cs │ │ ├── BasicEmojiViewerForm.cs │ │ ├── BasicEmojiViewerForm.resx │ │ ├── BasicToastNotificationTest.Designer.cs │ │ ├── BasicToastNotificationTest.cs │ │ ├── BasicToastNotificationTest.resx │ │ ├── BlurExampleForm.Designer.cs │ │ ├── BlurExampleForm.cs │ │ ├── BlurExampleForm.resx │ │ ├── BreadCrumbTest.Designer.cs │ │ ├── BreadCrumbTest.cs │ │ ├── BreadCrumbTest.resx │ │ ├── Bug833Test.Designer.cs │ │ ├── Bug833Test.cs │ │ ├── Bug833Test.resx │ │ ├── ButtonStyleExamples.Designer.cs │ │ ├── ButtonStyleExamples.cs │ │ ├── ButtonStyleExamples.resx │ │ ├── ButtonsTest.Designer.cs │ │ ├── ButtonsTest.cs │ │ ├── ButtonsTest.resx │ │ ├── CalendarTest.Designer.cs │ │ ├── CalendarTest.cs │ │ ├── CalendarTest.resx │ │ ├── CheckBoxStyleExamples.Designer.cs │ │ ├── CheckBoxStyleExamples.cs │ │ ├── CheckBoxStyleExamples.resx │ │ ├── CheckedListBoxDemo.Designer.cs │ │ ├── CheckedListBoxDemo.cs │ │ ├── CheckedListBoxDemo.resx │ │ ├── Classes │ │ │ ├── BogusData │ │ │ │ ├── BogusGenerator.cs │ │ │ │ └── BogusUser.cs │ │ │ ├── Exporter.cs │ │ │ ├── PaletteArrayIssues.cs │ │ │ ├── RegistryAccess.cs │ │ │ ├── ThemeArrayInspector.cs │ │ │ └── WindowStateStore.cs │ │ ├── ColorTestimonials │ │ │ ├── ColorInverting.cs │ │ │ ├── ColorTestimonials.Designer.cs │ │ │ ├── ColorTestimonials.cs │ │ │ └── ColorTestimonials.resx │ │ ├── CommandLinkButtons.Designer.cs │ │ ├── CommandLinkButtons.cs │ │ ├── CommandLinkButtons.resx │ │ ├── ControlStyles.Designer.cs │ │ ├── ControlStyles.cs │ │ ├── ControlStyles.resx │ │ ├── ControlsTest.Designer.cs │ │ ├── ControlsTest.cs │ │ ├── ControlsTest.resx │ │ ├── CustomMessageBoxTest.Designer.cs │ │ ├── CustomMessageBoxTest.cs │ │ ├── CustomMessageBoxTest.resx │ │ ├── CustomPaletteTest.Designer.cs │ │ ├── CustomPaletteTest.cs │ │ ├── CustomPaletteTest.resx │ │ ├── DataGridViewDemo.Designer.cs │ │ ├── DataGridViewDemo.cs │ │ ├── DataGridViewDemo.resx │ │ ├── DateTimeExample.Designer.cs │ │ ├── DateTimeExample.cs │ │ ├── DateTimeExample.resx │ │ ├── DateTimePickerExamples.cs │ │ ├── FadeFormTest.Designer.cs │ │ ├── FadeFormTest.cs │ │ ├── FadeFormTest.resx │ │ ├── FormBorderTest.Designer.cs │ │ ├── FormBorderTest.cs │ │ ├── FormBorderTest.resx │ │ ├── GlobalUsings.cs │ │ ├── GroupBoxTest.Designer.cs │ │ ├── GroupBoxTest.cs │ │ ├── GroupBoxTest.resx │ │ ├── HeaderExamples.Designer.cs │ │ ├── HeaderExamples.cs │ │ ├── HeaderExamples.resx │ │ ├── InputBoxTest.Designer.cs │ │ ├── InputBoxTest.cs │ │ ├── InputBoxTest.resx │ │ ├── KryptonDialogExamples.Designer.cs │ │ ├── KryptonDialogExamples.cs │ │ ├── KryptonDialogExamples.resx │ │ ├── KryptonTaskDialogDemo │ │ │ ├── DemoDialogs │ │ │ │ ├── KryptonTaskDialogDemoForm.CommandLinkButtons1.cs │ │ │ │ ├── KryptonTaskDialogDemoForm.Content1.cs │ │ │ │ ├── KryptonTaskDialogDemoForm.MessageBox1.cs │ │ │ │ ├── KryptonTaskDialogDemoForm.MessageBox2.cs │ │ │ │ ├── KryptonTaskDialogDemoForm.ModelessProgressDialog1.cs │ │ │ │ ├── KryptonTaskDialogDemoForm.ProgressBar1.cs │ │ │ │ ├── KryptonTaskDialogDemoFormFreeWheeler1.cs │ │ │ │ └── KryptonTaskDialogDemoFormFreeWheeler2.cs │ │ │ ├── KryptonTaskDialogDemoForm.Designer.cs │ │ │ ├── KryptonTaskDialogDemoForm.cs │ │ │ ├── KryptonTaskDialogDemoForm.resx │ │ │ ├── KryptonTaskDialogDemoResources.Designer.cs │ │ │ └── KryptonTaskDialogDemoResources.resx │ │ ├── LabelStyleExamples.Designer.cs │ │ ├── LabelStyleExamples.cs │ │ ├── LabelStyleExamples.resx │ │ ├── LabelsTest.Designer.cs │ │ ├── LabelsTest.cs │ │ ├── LabelsTest.resx │ │ ├── LiveColorPickerDialog.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── MenuToolBarStatusStripTest.Designer.cs │ │ ├── MenuToolBarStatusStripTest.cs │ │ ├── MenuToolBarStatusStripTest.resx │ │ ├── MessageBoxTest.Designer.cs │ │ ├── MessageBoxTest.cs │ │ ├── MessageBoxTest.resx │ │ ├── PaletteViewer │ │ │ ├── PaletteSchemeColorExtensions.cs │ │ │ ├── PaletteViewerForm.Designer.cs │ │ │ ├── PaletteViewerForm.cs │ │ │ ├── PaletteViewerForm.resx │ │ │ └── README.md │ │ ├── PanelForm.Designer.cs │ │ ├── PanelForm.cs │ │ ├── PanelForm.resx │ │ ├── PanelStyleExamples.Designer.cs │ │ ├── PanelStyleExamples.cs │ │ ├── PanelStyleExamples.resx │ │ ├── Person.cs │ │ ├── PoweredByButtonExample.Designer.cs │ │ ├── PoweredByButtonExample.cs │ │ ├── PoweredByButtonExample.resx │ │ ├── PoweredByButtonForm.Designer.cs │ │ ├── PoweredByButtonForm.cs │ │ ├── PoweredByButtonForm.resx │ │ ├── Program.cs │ │ ├── ProgressBarTest.Designer.cs │ │ ├── ProgressBarTest.cs │ │ ├── ProgressBarTest.resx │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── PropertyGridTest.Designer.cs │ │ ├── PropertyGridTest.cs │ │ ├── PropertyGridTest.resx │ │ ├── RadioButtonStyleExamples.Designer.cs │ │ ├── RadioButtonStyleExamples.cs │ │ ├── RadioButtonStyleExamples.resx │ │ ├── Resources │ │ │ ├── Main Icon 128 x 128 Nightly.png │ │ │ ├── Main Icon 16 x 16 Canary.png │ │ │ ├── _ASEAN.png │ │ │ ├── _African Union(OAS).png │ │ │ ├── _Arab League.png │ │ │ ├── _CARICOM.png │ │ │ ├── _CIS.png │ │ │ ├── _Commonwealth.png │ │ │ ├── _England.png │ │ │ ├── _European Union.png │ │ │ ├── _Islamic Conference.png │ │ │ ├── _Kosovo.png │ │ │ ├── _NATO.png │ │ │ ├── _Northern Cyprus.png │ │ │ ├── _Northern Ireland.png │ │ │ ├── _OPEC.png │ │ │ ├── _Olimpic Movement.png │ │ │ ├── _Red Cross.png │ │ │ ├── _Scotland.png │ │ │ ├── _Somaliland.png │ │ │ ├── _United Nations.png │ │ │ ├── _Wales.png │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── al.png │ │ │ ├── am.png │ │ │ ├── an.png │ │ │ ├── ao.png │ │ │ ├── aq.png │ │ │ ├── ar.png │ │ │ ├── as.png │ │ │ ├── at.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── ax.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bv.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── catalonia.png │ │ │ ├── cc.png │ │ │ ├── cd.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── ch.png │ │ │ ├── ci.png │ │ │ ├── ck.png │ │ │ ├── cl.png │ │ │ ├── cm.png │ │ │ ├── cn.png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cs.png │ │ │ ├── cu.png │ │ │ ├── cv.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── delete.png │ │ │ ├── dj.png │ │ │ ├── dk.png │ │ │ ├── dm.png │ │ │ ├── do.png │ │ │ ├── dz.png │ │ │ ├── ec.png │ │ │ ├── ee.png │ │ │ ├── eg.png │ │ │ ├── eh.png │ │ │ ├── england.png │ │ │ ├── er.png │ │ │ ├── es.png │ │ │ ├── et.png │ │ │ ├── europeanunion.png │ │ │ ├── fam.png │ │ │ ├── fi.png │ │ │ ├── fj.png │ │ │ ├── fk.png │ │ │ ├── flag_france.png │ │ │ ├── flag_germany.png │ │ │ ├── fm.png │ │ │ ├── fo.png │ │ │ ├── fr.png │ │ │ ├── ga.png │ │ │ ├── gb.png │ │ │ ├── gd.png │ │ │ ├── ge.png │ │ │ ├── gf.png │ │ │ ├── gg.png │ │ │ ├── gh.png │ │ │ ├── gi.png │ │ │ ├── gl.png │ │ │ ├── gm.png │ │ │ ├── gn.png │ │ │ ├── gp.png │ │ │ ├── gq.png │ │ │ ├── gr.png │ │ │ ├── gs.png │ │ │ ├── gt.png │ │ │ ├── gu.png │ │ │ ├── gw.png │ │ │ ├── gy.png │ │ │ ├── hk.png │ │ │ ├── hm.png │ │ │ ├── hn.png │ │ │ ├── hr.png │ │ │ ├── ht.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── ie.png │ │ │ ├── il.png │ │ │ ├── im.png │ │ │ ├── in.png │ │ │ ├── io.png │ │ │ ├── iq.png │ │ │ ├── ir.png │ │ │ ├── is.png │ │ │ ├── it.png │ │ │ ├── je.png │ │ │ ├── jm.png │ │ │ ├── jo.png │ │ │ ├── jp.png │ │ │ ├── ke.png │ │ │ ├── kg.png │ │ │ ├── kh.png │ │ │ ├── ki.png │ │ │ ├── km.png │ │ │ ├── kn.png │ │ │ ├── kp.png │ │ │ ├── kr.png │ │ │ ├── kw.png │ │ │ ├── ky.png │ │ │ ├── kz.png │ │ │ ├── la.png │ │ │ ├── lb.png │ │ │ ├── lc.png │ │ │ ├── li.png │ │ │ ├── lk.png │ │ │ ├── lorem-ipsum.png │ │ │ ├── lr.png │ │ │ ├── ls.png │ │ │ ├── lt.png │ │ │ ├── lu.png │ │ │ ├── lv.png │ │ │ ├── ly.png │ │ │ ├── ma.png │ │ │ ├── mc.png │ │ │ ├── md.png │ │ │ ├── me.png │ │ │ ├── mg.png │ │ │ ├── mh.png │ │ │ ├── mk.png │ │ │ ├── ml.png │ │ │ ├── mm.png │ │ │ ├── mn.png │ │ │ ├── mo.png │ │ │ ├── mp.png │ │ │ ├── mq.png │ │ │ ├── mr.png │ │ │ ├── ms.png │ │ │ ├── mt.png │ │ │ ├── mu.png │ │ │ ├── mv.png │ │ │ ├── mw.png │ │ │ ├── mx.png │ │ │ ├── my.png │ │ │ ├── mz.png │ │ │ ├── na.png │ │ │ ├── nc.png │ │ │ ├── ne.png │ │ │ ├── nf.png │ │ │ ├── ng.png │ │ │ ├── ni.png │ │ │ ├── nl.png │ │ │ ├── no.png │ │ │ ├── np.png │ │ │ ├── nr.png │ │ │ ├── nu.png │ │ │ ├── nz.png │ │ │ ├── om.png │ │ │ ├── pa.png │ │ │ ├── pe.png │ │ │ ├── pf.png │ │ │ ├── pg.png │ │ │ ├── ph.png │ │ │ ├── pk.png │ │ │ ├── pl.png │ │ │ ├── pm.png │ │ │ ├── pn.png │ │ │ ├── pr.png │ │ │ ├── ps.png │ │ │ ├── pt.png │ │ │ ├── pw.png │ │ │ ├── py.png │ │ │ ├── qa.png │ │ │ ├── re.png │ │ │ ├── ro.png │ │ │ ├── rs.png │ │ │ ├── ru.png │ │ │ ├── rw.png │ │ │ ├── sa.png │ │ │ ├── sb.png │ │ │ ├── sc.png │ │ │ ├── scotland.png │ │ │ ├── sd.png │ │ │ ├── se.png │ │ │ ├── sg.png │ │ │ ├── sh.png │ │ │ ├── si.png │ │ │ ├── sj.png │ │ │ ├── sk.png │ │ │ ├── sl.png │ │ │ ├── sm.png │ │ │ ├── sn.png │ │ │ ├── so.png │ │ │ ├── sr.png │ │ │ ├── st.png │ │ │ ├── sv.png │ │ │ ├── sy.png │ │ │ ├── sz.png │ │ │ ├── tc.png │ │ │ ├── td.png │ │ │ ├── tf.png │ │ │ ├── tg.png │ │ │ ├── th.png │ │ │ ├── tj.png │ │ │ ├── tk.png │ │ │ ├── tl.png │ │ │ ├── tm.png │ │ │ ├── tn.png │ │ │ ├── to.png │ │ │ ├── tr.png │ │ │ ├── tt.png │ │ │ ├── tv.png │ │ │ ├── tw.png │ │ │ ├── tz.png │ │ │ ├── ua.png │ │ │ ├── ug.png │ │ │ ├── um.png │ │ │ ├── us.png │ │ │ ├── uy.png │ │ │ ├── uz.png │ │ │ ├── va.png │ │ │ ├── vc.png │ │ │ ├── ve.png │ │ │ ├── vg.png │ │ │ ├── vi.png │ │ │ ├── vn.png │ │ │ ├── vu.png │ │ │ ├── wales.png │ │ │ ├── wf.png │ │ │ ├── ws.png │ │ │ ├── ye.png │ │ │ ├── yt.png │ │ │ ├── za.png │ │ │ ├── zm.png │ │ │ └── zw.png │ │ ├── RibbonNavigatorWorkspaceTest.Designer.cs │ │ ├── RibbonNavigatorWorkspaceTest.cs │ │ ├── RibbonNavigatorWorkspaceTest.resx │ │ ├── RibbonTest.Designer.cs │ │ ├── RibbonTest.cs │ │ ├── RibbonTest.resx │ │ ├── SplashScreenExample.Designer.cs │ │ ├── SplashScreenExample.cs │ │ ├── SplashScreenExample.resx │ │ ├── StartScreen.Designer.cs │ │ ├── StartScreen.cs │ │ ├── StartScreen.resx │ │ ├── StaticInfos.cs │ │ ├── TestForm.csproj │ │ ├── TestForm.licenseheader │ │ ├── TextBoxEventTest.Designer.cs │ │ ├── TextBoxEventTest.cs │ │ ├── TextBoxEventTest.resx │ │ ├── ThemeControlExamples.Designer.cs │ │ ├── ThemeControlExamples.cs │ │ ├── ThemeControlExamples.resx │ │ ├── ToastNotificationQuickTestForm.Designer.cs │ │ ├── ToastNotificationQuickTestForm.cs │ │ ├── ToastNotificationQuickTestForm.resx │ │ ├── ToastNotificationTestChoice.Designer.cs │ │ ├── ToastNotificationTestChoice.cs │ │ ├── ToastNotificationTestChoice.resx │ │ ├── ToggleSwitchTest.Designer.cs │ │ ├── ToggleSwitchTest.cs │ │ ├── ToggleSwitchTest.resx │ │ ├── ToolStripTest.Designer.cs │ │ ├── ToolStripTest.cs │ │ ├── ToolStripTest.resx │ │ ├── TreeViewExample.Designer.cs │ │ ├── TreeViewExample.cs │ │ ├── TreeViewExample.resx │ │ ├── TreeViewTestForm.Designer.cs │ │ ├── TreeViewTestForm.cs │ │ ├── TreeViewTestForm.resx │ │ ├── UserInputToastNotificationTest.Designer.cs │ │ ├── UserInputToastNotificationTest.cs │ │ ├── UserInputToastNotificationTest.resx │ │ ├── VisualControlsTest.Designer.cs │ │ ├── VisualControlsTest.cs │ │ ├── VisualControlsTest.resx │ │ ├── Workspace.Designer.cs │ │ ├── Workspace.cs │ │ ├── Workspace.resx │ │ ├── app.manifest │ │ └── invoices.xml │ └── Themed-System-Menu.md └── TestHarnesses │ └── ThemeSwapRepro │ ├── Program.cs │ ├── README.md │ ├── ThemeSwapRepro.csproj │ └── run.cmd ├── dictionary-en-gb ├── index.aff ├── index.d.ts ├── index.dic ├── index.js ├── license.txt └── readme.md └── run.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/ISSUE_TEMPLATE/other-issues.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/post-a-question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/ISSUE_TEMPLATE/post-a-question.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign-pr-author.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/workflows/auto-assign-pr-author.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label-issue-areas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/workflows/auto-label-issue-areas.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Assets/ICO/Main Icon/24 x 24/Krypton Canary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/ICO/Main Icon/24 x 24/Krypton Canary.ico -------------------------------------------------------------------------------- /Assets/ICO/Main Icon/24 x 24/Krypton Stable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/ICO/Main Icon/24 x 24/Krypton Stable.ico -------------------------------------------------------------------------------- /Assets/ICO/Main Icon/256 x 256/Krypton Canary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/ICO/Main Icon/256 x 256/Krypton Canary.ico -------------------------------------------------------------------------------- /Assets/ICO/Main Icon/256 x 256/Krypton Stable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/ICO/Main Icon/256 x 256/Krypton Stable.ico -------------------------------------------------------------------------------- /Assets/ICO/Main Icon/48 x 48/Krypton Canary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/ICO/Main Icon/48 x 48/Krypton Canary.ico -------------------------------------------------------------------------------- /Assets/ICO/Main Icon/48 x 48/Krypton Stable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/ICO/Main Icon/48 x 48/Krypton Stable.ico -------------------------------------------------------------------------------- /Assets/PNG/Help/Help-6656410655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Help/Help-6656410655.png -------------------------------------------------------------------------------- /Assets/PNG/Help/Help-7372613239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Help/Help-7372613239.png -------------------------------------------------------------------------------- /Assets/PNG/Help/Help_1_48_x_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Help/Help_1_48_x_48.png -------------------------------------------------------------------------------- /Assets/PNG/Help/help-6525410648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Help/help-6525410648.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/128 x 128/Krypton 128 x 128 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/16 x 16/Krypton 16 x 16 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/24 x 24/Krypton 24 x 24 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/256 x 256/Krypton 256 x 256 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/32 x 32/Krypton 32 x 32 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/48 x 48/Krypton 48 x 48 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/512 x 512/Krypton 512 x 512 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 Canary.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 LTS.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/Main Icon/64 x 64/Krypton 64 x 64 Stable.png -------------------------------------------------------------------------------- /Assets/PNG/NuGet Package Icons/Krypton Canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/NuGet Package Icons/Krypton Canary.png -------------------------------------------------------------------------------- /Assets/PNG/NuGet Package Icons/Krypton LTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/NuGet Package Icons/Krypton LTS.png -------------------------------------------------------------------------------- /Assets/PNG/NuGet Package Icons/Krypton Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/NuGet Package Icons/Krypton Nightly.png -------------------------------------------------------------------------------- /Assets/PNG/NuGet Package Icons/Krypton Stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Assets/PNG/NuGet Package Icons/Krypton Stable.png -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Documents/2021-palette-unification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Documents/2021-palette-unification.md -------------------------------------------------------------------------------- /Documents/Changelog/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Documents/Changelog/Changelog.md -------------------------------------------------------------------------------- /Documents/License/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Documents/License/License.md -------------------------------------------------------------------------------- /Documents/palette-mechanics-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Documents/palette-mechanics-intro.md -------------------------------------------------------------------------------- /Krypton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Krypton.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Build/build-canary.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build-canary.cmd -------------------------------------------------------------------------------- /Scripts/Build/build-installer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build-installer.cmd -------------------------------------------------------------------------------- /Scripts/Build/build-lts.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build-lts.cmd -------------------------------------------------------------------------------- /Scripts/Build/build-nightly-custom.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build-nightly-custom.cmd -------------------------------------------------------------------------------- /Scripts/Build/build-nightly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build-nightly.cmd -------------------------------------------------------------------------------- /Scripts/Build/build-stable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build-stable.cmd -------------------------------------------------------------------------------- /Scripts/Build/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/build.proj -------------------------------------------------------------------------------- /Scripts/Build/buildsolution.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/buildsolution.cmd -------------------------------------------------------------------------------- /Scripts/Build/canary.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/canary.proj -------------------------------------------------------------------------------- /Scripts/Build/createnightlyzip.cmd: -------------------------------------------------------------------------------- 1 | build.cmd CreateNightlyZip -------------------------------------------------------------------------------- /Scripts/Build/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/debug.cmd -------------------------------------------------------------------------------- /Scripts/Build/debug.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/debug.proj -------------------------------------------------------------------------------- /Scripts/Build/installer.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/installer.proj -------------------------------------------------------------------------------- /Scripts/Build/longtermstable.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/longtermstable.proj -------------------------------------------------------------------------------- /Scripts/Build/nightly.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/nightly.proj -------------------------------------------------------------------------------- /Scripts/Build/publish-to-github.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | dotnet nuget push "../bin/Release/*.nupkg" --source "github" -------------------------------------------------------------------------------- /Scripts/Build/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/publish.cmd -------------------------------------------------------------------------------- /Scripts/Build/purge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/purge.cmd -------------------------------------------------------------------------------- /Scripts/Build/rebuild-build-nightly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/rebuild-build-nightly.cmd -------------------------------------------------------------------------------- /Scripts/Build/update-nuget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Build/update-nuget.cmd -------------------------------------------------------------------------------- /Scripts/Current/build-canary.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build-canary.cmd -------------------------------------------------------------------------------- /Scripts/Current/build-installer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build-installer.cmd -------------------------------------------------------------------------------- /Scripts/Current/build-lts.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build-lts.cmd -------------------------------------------------------------------------------- /Scripts/Current/build-nightly-custom.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build-nightly-custom.cmd -------------------------------------------------------------------------------- /Scripts/Current/build-nightly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build-nightly.cmd -------------------------------------------------------------------------------- /Scripts/Current/build-stable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build-stable.cmd -------------------------------------------------------------------------------- /Scripts/Current/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/build.proj -------------------------------------------------------------------------------- /Scripts/Current/buildsolution.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/buildsolution.cmd -------------------------------------------------------------------------------- /Scripts/Current/canary.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/canary.proj -------------------------------------------------------------------------------- /Scripts/Current/createnightlyzip.cmd: -------------------------------------------------------------------------------- 1 | build.cmd CreateNightlyZip -------------------------------------------------------------------------------- /Scripts/Current/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/debug.cmd -------------------------------------------------------------------------------- /Scripts/Current/debug.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/debug.proj -------------------------------------------------------------------------------- /Scripts/Current/installer.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/installer.proj -------------------------------------------------------------------------------- /Scripts/Current/longtermstable.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/longtermstable.proj -------------------------------------------------------------------------------- /Scripts/Current/nightly.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/nightly.proj -------------------------------------------------------------------------------- /Scripts/Current/publish-to-github.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | dotnet nuget push "../bin/Release/*.nupkg" --source "github" -------------------------------------------------------------------------------- /Scripts/Current/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/publish.cmd -------------------------------------------------------------------------------- /Scripts/Current/purge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/purge.cmd -------------------------------------------------------------------------------- /Scripts/Current/rebuild-build-nightly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/rebuild-build-nightly.cmd -------------------------------------------------------------------------------- /Scripts/Current/update-nuget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/Current/update-nuget.cmd -------------------------------------------------------------------------------- /Scripts/ModernBuild/General/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/General/AppState.cs -------------------------------------------------------------------------------- /Scripts/ModernBuild/General/BuildLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/General/BuildLogic.cs -------------------------------------------------------------------------------- /Scripts/ModernBuild/General/BuildUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/General/BuildUI.cs -------------------------------------------------------------------------------- /Scripts/ModernBuild/General/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/General/Definitions.cs -------------------------------------------------------------------------------- /Scripts/ModernBuild/Global/GlobalDeclarations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/Global/GlobalDeclarations.cs -------------------------------------------------------------------------------- /Scripts/ModernBuild/ModernBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/ModernBuild.csproj -------------------------------------------------------------------------------- /Scripts/ModernBuild/ModernBuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/ModernBuild.sln -------------------------------------------------------------------------------- /Scripts/ModernBuild/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/Program.cs -------------------------------------------------------------------------------- /Scripts/ModernBuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/README.md -------------------------------------------------------------------------------- /Scripts/ModernBuild/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/ModernBuild/global.json -------------------------------------------------------------------------------- /Scripts/VS2022/build-canary.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build-canary.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/build-installer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build-installer.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/build-lts.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build-lts.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/build-nightly-custom.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build-nightly-custom.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/build-nightly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build-nightly.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/build-stable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build-stable.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/build.proj -------------------------------------------------------------------------------- /Scripts/VS2022/buildsolution.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/buildsolution.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/canary.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/canary.proj -------------------------------------------------------------------------------- /Scripts/VS2022/createnightlyzip.cmd: -------------------------------------------------------------------------------- 1 | build.cmd CreateNightlyZip -------------------------------------------------------------------------------- /Scripts/VS2022/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/debug.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/debug.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/debug.proj -------------------------------------------------------------------------------- /Scripts/VS2022/installer.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/installer.proj -------------------------------------------------------------------------------- /Scripts/VS2022/longtermstable.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/longtermstable.proj -------------------------------------------------------------------------------- /Scripts/VS2022/nightly.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/nightly.proj -------------------------------------------------------------------------------- /Scripts/VS2022/publish-to-github.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | dotnet nuget push "../bin/Release/*.nupkg" --source "github" -------------------------------------------------------------------------------- /Scripts/VS2022/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/publish.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/purge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/purge.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/rebuild-build-nightly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/rebuild-build-nightly.cmd -------------------------------------------------------------------------------- /Scripts/VS2022/update-nuget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/VS2022/update-nuget.cmd -------------------------------------------------------------------------------- /Scripts/main-menu.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cd .. 4 | 5 | run.cmd -------------------------------------------------------------------------------- /Scripts/make_calc_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Scripts/make_calc_icon.py -------------------------------------------------------------------------------- /Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/.editorconfig -------------------------------------------------------------------------------- /Source/Krypton Components/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Directory.Build.props -------------------------------------------------------------------------------- /Source/Krypton Components/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Directory.Build.targets -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton Toolkit Suite 2022 - VS2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton Toolkit Suite 2022 - VS2022.sln -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton Toolkit Suite 2022 - VS2022.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton Toolkit Suite 2022 - VS2022.slnx -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/Dragging/DragTargetNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/Dragging/DragTargetNull.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/General/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/General/Definitions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/General/DockingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/General/DockingHelper.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/General/ObscureControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/General/ObscureControl.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/Krypton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/Krypton.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/Resources/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/Resources/Check.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/Resources/Delete.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/Resources/Help.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Docking/StrongKrypton.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Docking/StrongKrypton.snk -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Dragging/DragFeedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Dragging/DragFeedback.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Dragging/DragManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Dragging/DragManager.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Dragging/DragTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Dragging/DragTarget.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/General/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/General/Definitions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Krypton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Krypton.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Page/KryptonPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Page/KryptonPage.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Palette/NavigatorBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Palette/NavigatorBar.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Palette/PalettePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Palette/PalettePage.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/BlueDown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/BlueDown.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/BlueUp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/BlueUp.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/Check.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/Delete.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/Help.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/PageLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/PageLarge.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/PageMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/PageMedium.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/Resources/PageSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/Resources/PageSmall.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Navigator/StrongKrypton.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Navigator/StrongKrypton.snk -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/General/CalculatedValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/General/CalculatedValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/General/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/General/Definitions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/General/DesignTimeDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/General/DesignTimeDraw.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/General/KeyTipInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/General/KeyTipInfo.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Krypton.Ribbon 2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Krypton.Ribbon 2022.csproj -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Krypton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Krypton.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Palette/ContextTabSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Palette/ContextTabSet.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Palette/ContextToContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Palette/ContextToContent.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Palette/RibbonFileAppTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Palette/RibbonFileAppTab.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Palette/RibbonShortcuts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Palette/RibbonShortcuts.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Palette/RibbonToContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Palette/RibbonToContent.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/ButtonNoColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/ButtonNoColor.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/Check.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/Delete.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/Help.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/MoveFirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/MoveFirst.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/MoveLast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/MoveLast.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/MoveNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/MoveNext.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Resources/MovePrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Resources/MovePrevious.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/StrongKrypton.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/StrongKrypton.snk -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Utilities/BiDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Utilities/BiDictionary.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Ribbon/Utilities/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Ribbon/Utilities/MathExtensions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/ButtonSpec/ButtonSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/ButtonSpec/ButtonSpec.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/AntiAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/AntiAlias.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/BlurManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/BlurManager.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/BoolFlags31.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/BoolFlags31.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/Clipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/Clipping.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/CommonHelper.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/ControlObscurer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/ControlObscurer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/ConversionPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/ConversionPaths.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/DebugLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/DebugLogger.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/Definitions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/Extensions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/GlobalId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/GlobalId.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/GlobalStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/GlobalStrings.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/GraphicsHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/GraphicsHint.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/HResult.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/HSL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/HSL.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/ModalWaitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/ModalWaitDialog.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/OperationThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/OperationThread.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/PlatformInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/PlatformInvoke.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/ShadowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/ShadowManager.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/Storage.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/TooltipManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/TooltipManager.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/TypedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/TypedCollection.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/General/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/General/XmlHelper.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Krypton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Krypton.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Rendering/RenderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Rendering/RenderBase.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Rendering/RenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Rendering/RenderContext.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Rendering/RenderSparkle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Rendering/RenderSparkle.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Rendering/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Rendering/ThemeManager.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/Colour_V10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/Colour_V10.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/Discord.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/Discord.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/Empty16x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/Empty16x16.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/ExpandIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/ExpandIcon.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/GenericCut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/GenericCut.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/HourGlass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/HourGlass.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/MdiClose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/MdiClose.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/MdiMin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/MdiMin.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/MdiRestore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/MdiRestore.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/MoveFirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/MoveFirst.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/MoveLast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/MoveLast.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/MoveNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/MoveNext.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/WebBrowser.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/WebBrowser.bmp -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/Windows11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/Windows11.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/add.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/color.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/color.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/delete.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/element.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/eraser.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/font.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/font.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/printer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/printer.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/star0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/star0.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/star1.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/star2.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/star3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/star3.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/star4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/star4.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/star5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/star5.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/starhot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/starhot0.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/starhot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/starhot1.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/starhot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/starhot2.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/starhot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/starhot3.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/starhot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/starhot4.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Resources/starhot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Resources/starhot5.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/StrongKrypton.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/StrongKrypton.snk -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Tooling/DebugTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Tooling/DebugTools.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Utilities/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Utilities/IconHelper.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Utilities/IconType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Utilities/IconType.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Utilities/OSUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Utilities/OSUtilities.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Utilities/TimedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Utilities/TimedCache.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/AcrylicValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/AcrylicValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/BlurValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/BlurValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/ButtonValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/ButtonValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/CaptionValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/CaptionValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/CheckBoxImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/CheckBoxImages.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/GalleryImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/GalleryImages.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/HeaderValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/HeaderValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/LabelValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/LabelValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/ShadowValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/ShadowValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/ShortTextValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/ShortTextValue.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/ToolTipValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/ToolTipValues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/Values/TreeViewImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/Values/TreeViewImages.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/View Base/IRippleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/View Base/IRippleHost.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/View Base/ViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/View Base/ViewBase.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/View Base/ViewContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/View Base/ViewContext.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/View Base/ViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/View Base/ViewControl.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/View Base/ViewLeaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/View Base/ViewLeaf.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Toolkit/View Base/ViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Toolkit/View Base/ViewManager.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/General/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/General/Definitions.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/General/StarNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/General/StarNumber.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/General/StarSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/General/StarSize.cs -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/Krypton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/Krypton.ico -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/Resources/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/Resources/Check.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/Resources/Delete.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/Resources/Help.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/Resources/add.png -------------------------------------------------------------------------------- /Source/Krypton Components/Krypton.Workspace/StrongKrypton.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Krypton.Workspace/StrongKrypton.snk -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/AboutBoxTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/AboutBoxTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/AboutBoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/AboutBoxTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/AboutBoxTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/AboutBoxTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/AdvancedEmojiViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/AdvancedEmojiViewerForm.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/AdvancedEmojiViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/AdvancedEmojiViewerForm.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/App.config -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BasicEmojiViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BasicEmojiViewerForm.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BasicEmojiViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BasicEmojiViewerForm.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BasicToastNotificationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BasicToastNotificationTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BasicToastNotificationTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BasicToastNotificationTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BlurExampleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BlurExampleForm.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BlurExampleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BlurExampleForm.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BlurExampleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BlurExampleForm.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BreadCrumbTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BreadCrumbTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BreadCrumbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BreadCrumbTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/BreadCrumbTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/BreadCrumbTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Bug833Test.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Bug833Test.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Bug833Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Bug833Test.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Bug833Test.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Bug833Test.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ButtonStyleExamples.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ButtonStyleExamples.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ButtonStyleExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ButtonStyleExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ButtonStyleExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ButtonStyleExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ButtonsTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ButtonsTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ButtonsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ButtonsTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ButtonsTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ButtonsTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CalendarTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CalendarTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CalendarTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CalendarTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CalendarTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CalendarTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CheckBoxStyleExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CheckBoxStyleExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CheckBoxStyleExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CheckBoxStyleExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CheckedListBoxDemo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CheckedListBoxDemo.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CheckedListBoxDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CheckedListBoxDemo.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CheckedListBoxDemo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CheckedListBoxDemo.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Classes/BogusData/BogusUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Classes/BogusData/BogusUser.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Classes/Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Classes/Exporter.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Classes/PaletteArrayIssues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Classes/PaletteArrayIssues.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Classes/RegistryAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Classes/RegistryAccess.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Classes/ThemeArrayInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Classes/ThemeArrayInspector.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Classes/WindowStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Classes/WindowStateStore.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CommandLinkButtons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CommandLinkButtons.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CommandLinkButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CommandLinkButtons.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CommandLinkButtons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CommandLinkButtons.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ControlStyles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ControlStyles.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ControlStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ControlStyles.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ControlStyles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ControlStyles.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ControlsTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ControlsTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ControlsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ControlsTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ControlsTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ControlsTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CustomMessageBoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CustomMessageBoxTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CustomMessageBoxTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CustomMessageBoxTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CustomPaletteTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CustomPaletteTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CustomPaletteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CustomPaletteTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/CustomPaletteTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/CustomPaletteTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DataGridViewDemo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/DataGridViewDemo.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DataGridViewDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/DataGridViewDemo.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DataGridViewDemo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/DataGridViewDemo.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DateTimeExample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/DateTimeExample.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DateTimeExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/DateTimeExample.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DateTimeExample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/DateTimeExample.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/DateTimePickerExamples.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/FadeFormTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/FadeFormTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/FadeFormTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/FadeFormTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/FadeFormTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/FadeFormTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/FormBorderTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/FormBorderTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/FormBorderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/FormBorderTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/FormBorderTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/FormBorderTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/GlobalUsings.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/GroupBoxTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/GroupBoxTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/GroupBoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/GroupBoxTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/GroupBoxTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/GroupBoxTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/HeaderExamples.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/HeaderExamples.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/HeaderExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/HeaderExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/HeaderExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/HeaderExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/InputBoxTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/InputBoxTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/InputBoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/InputBoxTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/InputBoxTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/InputBoxTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/KryptonDialogExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/KryptonDialogExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/KryptonDialogExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/KryptonDialogExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LabelStyleExamples.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LabelStyleExamples.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LabelStyleExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LabelStyleExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LabelStyleExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LabelStyleExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LabelsTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LabelsTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LabelsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LabelsTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LabelsTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LabelsTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/LiveColorPickerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/LiveColorPickerDialog.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Main.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Main.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Main.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/MenuToolBarStatusStripTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/MenuToolBarStatusStripTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/MenuToolBarStatusStripTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/MenuToolBarStatusStripTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/MessageBoxTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/MessageBoxTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/MessageBoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/MessageBoxTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/MessageBoxTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/MessageBoxTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PaletteViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PaletteViewer/README.md -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PanelForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PanelForm.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PanelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PanelForm.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PanelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PanelForm.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PanelStyleExamples.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PanelStyleExamples.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PanelStyleExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PanelStyleExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PanelStyleExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PanelStyleExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Person.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PoweredByButtonExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PoweredByButtonExample.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PoweredByButtonExample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PoweredByButtonExample.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PoweredByButtonForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PoweredByButtonForm.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PoweredByButtonForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PoweredByButtonForm.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PoweredByButtonForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PoweredByButtonForm.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Program.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ProgressBarTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ProgressBarTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ProgressBarTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ProgressBarTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ProgressBarTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ProgressBarTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PropertyGridTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PropertyGridTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PropertyGridTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PropertyGridTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/PropertyGridTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/PropertyGridTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/RadioButtonStyleExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/RadioButtonStyleExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/RadioButtonStyleExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/RadioButtonStyleExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_ASEAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_ASEAN.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Arab League.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Arab League.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_CARICOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_CARICOM.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_CIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_CIS.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Commonwealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Commonwealth.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_England.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_European Union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_European Union.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Kosovo.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_NATO.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Northern Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Northern Cyprus.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Northern Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Northern Ireland.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_OPEC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_OPEC.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Olimpic Movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Olimpic Movement.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Red Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Red Cross.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Scotland.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Somaliland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Somaliland.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_United Nations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_United Nations.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/_Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/_Wales.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ad.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ae.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/af.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ag.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ai.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/al.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/am.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/an.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ao.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/aq.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ar.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/as.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/at.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/au.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/aw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ax.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/az.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ba.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bb.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bd.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/be.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bh.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bi.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bj.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bo.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/br.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bs.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bv.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/by.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/bz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ca.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/catalonia.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cd.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ch.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ci.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ck.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cl.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/co.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cs.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cv.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cx.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cy.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/cz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/de.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/delete.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/dj.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/dk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/dm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/do.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/dz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ec.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ee.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/eg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/eh.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/england.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/er.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/es.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/et.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/europeanunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/europeanunion.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fam.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fi.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fj.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/flag_france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/flag_france.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/flag_germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/flag_germany.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fo.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/fr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ga.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gb.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gd.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ge.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gh.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gi.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gl.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gp.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gq.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gs.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/gy.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/hk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/hm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/hn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/hr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ht.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/hu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/id.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ie.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/il.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/im.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/in.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/io.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/iq.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ir.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/is.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/it.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/je.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/jm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/jo.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/jp.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ke.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kh.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ki.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/km.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kp.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ky.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/kz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/la.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lb.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/li.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lorem-ipsum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lorem-ipsum.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ls.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/lv.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ly.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ma.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/md.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/me.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mh.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ml.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mo.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mp.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mq.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ms.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mv.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mx.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/my.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/mz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/na.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/nc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ne.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/nf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ng.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ni.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/nl.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/no.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/np.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/nr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/nu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/nz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/om.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pa.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pe.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ph.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pl.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ps.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/pw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/py.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/qa.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/re.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ro.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/rs.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ru.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/rw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sa.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sb.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/scotland.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sd.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/se.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sh.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/si.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sj.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sl.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/so.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/st.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sv.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sy.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/sz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/td.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/th.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tj.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tk.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tl.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/to.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tr.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tv.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/tz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ua.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ug.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/um.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/us.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/uy.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/uz.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/va.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/vc.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ve.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/vg.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/vi.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/vn.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/vu.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/wales.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/wf.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ws.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/ye.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/yt.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/za.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/zm.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Resources/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Resources/zw.png -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/RibbonNavigatorWorkspaceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/RibbonNavigatorWorkspaceTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/RibbonTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/RibbonTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/RibbonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/RibbonTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/RibbonTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/RibbonTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/SplashScreenExample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/SplashScreenExample.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/SplashScreenExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/SplashScreenExample.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/SplashScreenExample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/SplashScreenExample.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/StartScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/StartScreen.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/StartScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/StartScreen.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/StartScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/StartScreen.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/StaticInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/StaticInfos.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TestForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TestForm.csproj -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TestForm.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TestForm.licenseheader -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TextBoxEventTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TextBoxEventTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TextBoxEventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TextBoxEventTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TextBoxEventTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TextBoxEventTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ThemeControlExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ThemeControlExamples.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ThemeControlExamples.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ThemeControlExamples.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToastNotificationTestChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToastNotificationTestChoice.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToggleSwitchTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToggleSwitchTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToggleSwitchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToggleSwitchTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToggleSwitchTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToggleSwitchTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToolStripTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToolStripTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToolStripTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToolStripTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/ToolStripTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/ToolStripTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TreeViewExample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TreeViewExample.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TreeViewExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TreeViewExample.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TreeViewExample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TreeViewExample.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TreeViewTestForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TreeViewTestForm.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TreeViewTestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TreeViewTestForm.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/TreeViewTestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/TreeViewTestForm.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/VisualControlsTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/VisualControlsTest.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/VisualControlsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/VisualControlsTest.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/VisualControlsTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/VisualControlsTest.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Workspace.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Workspace.Designer.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Workspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Workspace.cs -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/Workspace.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/Workspace.resx -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/app.manifest -------------------------------------------------------------------------------- /Source/Krypton Components/TestForm/invoices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/TestForm/invoices.xml -------------------------------------------------------------------------------- /Source/Krypton Components/Themed-System-Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/Krypton Components/Themed-System-Menu.md -------------------------------------------------------------------------------- /Source/TestHarnesses/ThemeSwapRepro/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/TestHarnesses/ThemeSwapRepro/Program.cs -------------------------------------------------------------------------------- /Source/TestHarnesses/ThemeSwapRepro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/TestHarnesses/ThemeSwapRepro/README.md -------------------------------------------------------------------------------- /Source/TestHarnesses/ThemeSwapRepro/ThemeSwapRepro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/TestHarnesses/ThemeSwapRepro/ThemeSwapRepro.csproj -------------------------------------------------------------------------------- /Source/TestHarnesses/ThemeSwapRepro/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/Source/TestHarnesses/ThemeSwapRepro/run.cmd -------------------------------------------------------------------------------- /dictionary-en-gb/index.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/dictionary-en-gb/index.aff -------------------------------------------------------------------------------- /dictionary-en-gb/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/dictionary-en-gb/index.d.ts -------------------------------------------------------------------------------- /dictionary-en-gb/index.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/dictionary-en-gb/index.dic -------------------------------------------------------------------------------- /dictionary-en-gb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/dictionary-en-gb/index.js -------------------------------------------------------------------------------- /dictionary-en-gb/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/dictionary-en-gb/license.txt -------------------------------------------------------------------------------- /dictionary-en-gb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/dictionary-en-gb/readme.md -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krypton-Suite/Standard-Toolkit/HEAD/run.cmd --------------------------------------------------------------------------------