├── .gitattributes ├── .gitignore ├── Ces.WinForm.UI.sln ├── Ces.WinForm.UI ├── Ces.WinForm.UI.csproj ├── CesButton │ ├── CesButton.Designer.cs │ ├── CesButton.cs │ ├── CesButton.resx │ ├── CesButtonOptions.cs │ ├── CesRoundedButton.Designer.cs │ ├── CesRoundedButton.cs │ └── CesRoundedButton.resx ├── CesCalendar │ ├── CesCalendar.Designer.cs │ ├── CesCalendar.cs │ ├── CesCalendar.resx │ ├── CesCalendar2.Designer.cs │ ├── CesCalendar2.cs │ ├── CesCalendar2.resx │ ├── CesDatePicker.Designer.cs │ ├── CesDatePicker.cs │ ├── CesDatePicker.resx │ ├── CesDatePicker2.Designer.cs │ ├── CesDatePicker2.cs │ ├── CesDatePicker2.resx │ ├── CesDatePicker2Popup.Designer.cs │ ├── CesDatePicker2Popup.cs │ ├── CesDatePicker2Popup.resx │ ├── CesTimePicker.Designer.cs │ ├── CesTimePicker.cs │ ├── CesTimePicker.resx │ ├── CesTimePickerPopup.Designer.cs │ ├── CesTimePickerPopup.cs │ ├── CesTimePickerPopup.resx │ └── Events │ │ └── CesSelectionEvent.cs ├── CesChart │ ├── CesChart.Designer.cs │ ├── CesChart.cs │ ├── CesChart.resx │ └── CesChartOptions.cs ├── CesCheckBox.Designer.cs ├── CesCheckBox.cs ├── CesCheckBox.resx ├── CesCollapsiblePanel.Designer.cs ├── CesCollapsiblePanel.cs ├── CesCollapsiblePanel.resx ├── CesComboBox │ ├── CesComboBox.Designer.cs │ ├── CesComboBox.cs │ ├── CesComboBox.resx │ ├── CesComboBoxPopup.Designer.cs │ ├── CesComboBoxPopup.cs │ ├── CesComboBoxPopup.resx │ ├── Events │ │ ├── CesAddItemEvent.cs │ │ ├── CesEditItemEvent.cs │ │ └── CesReloadDataEvent.cs │ └── SelectedValue.cs ├── CesForm │ ├── CesForm.Designer.cs │ ├── CesForm.cs │ └── CesForm.resx ├── CesGauge │ ├── CesGauge.Designer.cs │ ├── CesGauge.cs │ ├── CesGauge.resx │ └── CesGaugeOptions.cs ├── CesGridView │ ├── CesColumnHeader.Designer.cs │ ├── CesColumnHeader.cs │ ├── CesColumnHeader.resx │ ├── CesGridView.Designer.cs │ ├── CesGridView.cs │ ├── CesGridView.resx │ ├── CesGridViewFilter.Designer.cs │ ├── CesGridViewFilter.cs │ ├── CesGridViewFilter.resx │ ├── CesGridViewOptions.cs │ ├── CesGridViewPro.Designer.cs │ ├── CesGridViewPro.cs │ ├── CesGridViewPro.resx │ ├── CesRowNumberColumn.cs │ ├── DataComparer.cs │ └── Events │ │ ├── ColumnHeaderClickEvent.cs │ │ ├── FilterAndSortCompletedEvent.cs │ │ ├── FilterTextChangedEvent.cs │ │ └── OptionsButtonClickEvent.cs ├── CesGroupBox.Designer.cs ├── CesGroupBox.cs ├── CesGroupBox.resx ├── CesInputBox.Designer.cs ├── CesInputBox.cs ├── CesInputBox.resx ├── CesLabel.Designer.cs ├── CesLabel.cs ├── CesLabel.resx ├── CesLine.Designer.cs ├── CesLine.cs ├── CesLine.resx ├── CesListBox │ ├── CesListBox.Designer.cs │ ├── CesListBox.cs │ ├── CesListBox.resx │ ├── CesListBoxItem.Designer.cs │ ├── CesListBoxItem.cs │ ├── CesListBoxItem.resx │ └── CesListBoxOptions.cs ├── CesLoadScreen.Designer.cs ├── CesLoadScreen.cs ├── CesLoadScreen.resx ├── CesMessageBox │ ├── CesMessageBox.Designer.cs │ ├── CesMessageBox.cs │ ├── CesMessageBox.resx │ ├── CesMessageBoxComponent.Designer.cs │ ├── CesMessageBoxComponent.cs │ ├── CesMessageBoxComponent.resx │ ├── CesMessageBoxIcon.Designer.cs │ ├── CesMessageBoxIcon.resx │ └── CesMessageBoxOptions.cs ├── CesNavigationBars │ ├── CesNavigationBar.Designer.cs │ ├── CesNavigationBar.cs │ ├── CesNavigationBar.resx │ ├── Events │ │ └── CesNavigationEvent.cs │ ├── frmFullScreen.Designer.cs │ ├── frmFullScreen.cs │ └── frmFullScreen.resx ├── CesNotification │ ├── CesNotificationBox.Designer.cs │ ├── CesNotificationBox.cs │ ├── CesNotificationBox.resx │ ├── CesNotificationBoxIcon.Designer.cs │ ├── CesNotificationBoxIcon.resx │ ├── CesNotificationComponent.Designer.cs │ ├── CesNotificationComponent.cs │ ├── CesNotificationOptions.cs │ ├── CesNotificationPanel.Designer.cs │ ├── CesNotificationPanel.cs │ ├── CesNotificationPanel.resx │ ├── CesNotificationStrip.Designer.cs │ ├── CesNotificationStrip.cs │ └── CesNotificationStrip.resx ├── CesNumberInput.Designer.cs ├── CesNumberInput.cs ├── CesNumberInput.resx ├── CesPanel.Designer.cs ├── CesPanel.cs ├── CesPanel.resx ├── CesPictureBox.Designer.cs ├── CesPictureBox.cs ├── CesPictureBox.resx ├── CesProgressBar │ ├── CesCircularProgressBar.Designer.cs │ ├── CesCircularProgressBar.cs │ ├── CesCircularProgressBar.resx │ ├── CesLinearProgressBar.Designer.cs │ ├── CesLinearProgressBar.cs │ └── CesLinearProgressBar.resx ├── CesScrollBar │ ├── CesHorizontalScrollBar.Designer.cs │ ├── CesHorizontalScrollBar.cs │ ├── CesHorizontalScrollBar.resx │ ├── CesVerticalScrollBar.Designer.cs │ ├── CesVerticalScrollBar.cs │ └── CesVerticalScrollBar.resx ├── CesSlider.Designer.cs ├── CesSlider.cs ├── CesSlider.resx ├── CesTextBox.Designer.cs ├── CesTextBox.cs ├── CesTextBox.resx ├── CesToggleButton.Designer.cs ├── CesToggleButton.cs ├── CesToggleButton.resx ├── CesToolTip.Designer.cs ├── CesToolTip.cs ├── CesToolTip.resx ├── Infrastructure │ ├── CesControlBase.Designer.cs │ ├── CesControlBase.cs │ ├── CesControlBase.resx │ ├── LayoutController.cs │ ├── StringExtensions.cs │ ├── ThemeEnum.cs │ └── Win32.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx └── Resources │ ├── BHOMA.TTF │ ├── BKOODB.TTF │ ├── CalendarDownArrow.png │ ├── CalendarLeftArrow.png │ ├── CalendarRightArrow.png │ ├── CalendarUpArrow.png │ ├── CesCollapsiblePanelCollapse.png │ ├── CesCollapsiblePanelExpand.png │ ├── CesComboBoxAddItem.png │ ├── CesComboBoxAddItem1.png │ ├── CesComboBoxAddItemAdd.png │ ├── CesComboBoxAddItemDark.png │ ├── CesComboBoxClear.png │ ├── CesComboBoxClearDark.png │ ├── CesComboBoxDropDown.png │ ├── CesComboBoxDropDownDark.png │ ├── CesComboBoxEditItem.png │ ├── CesComboBoxEditItemDark.png │ ├── CesComboBoxReloadData.png │ ├── CesComboBoxReloadDataDark.png │ ├── CesDatePicker.png │ ├── CesFormResize.png │ ├── CesGridFilterClearColumn.png │ ├── CesGridFilterColumnApply.png │ ├── CesGridFilterRemove.png │ ├── CesGridSortAscending.png │ ├── CesGridSortClear.png │ ├── CesGridSortDescending.png │ ├── CesGridViewFilterHasError.png │ ├── CesGridViewFilterNotSet.png │ ├── CesGridViewFilterSet.png │ ├── CesGridViewOptionsDark.png │ ├── CesGridViewOptionsWhite.png │ ├── CesGridViewSortAscending.png │ ├── CesGridViewSortDescending.png │ ├── CesListBoxSearch.png │ ├── CesMessageBoxAbort.png │ ├── CesMessageBoxCancel.png │ ├── CesMessageBoxCopy.png │ ├── CesMessageBoxIgnore.png │ ├── CesMessageBoxNo.png │ ├── CesMessageBoxOK.png │ ├── CesMessageBoxRetry.png │ ├── CesMessageBoxYes.png │ ├── CesNumberInput.png │ ├── CesNumberInputMinus.png │ ├── CesNumberInputMinusDark.png │ ├── CesNumberInputPlus.png │ ├── CesNumberInputPlusDark.png │ ├── CesScrollBarDown.png │ ├── CesScrollBarLeft.png │ ├── CesScrollBarRight.png │ ├── CesScrollBarSlider.png │ ├── CesScrollBarUp.png │ ├── CesTextBoxClear.png │ ├── CesTextBoxClearNormal.png │ ├── CesTextBoxCopy.png │ ├── CesTextBoxCopyNormal.png │ ├── CesTextBoxPaste.png │ ├── CesTextBoxPasteNormal.png │ ├── CesTimePicker.png │ ├── CesTimePickerBackground.png │ ├── CheckBoxTypeA_16_Check.png │ ├── CheckBoxTypeA_16_None.png │ ├── CheckBoxTypeA_16_Uncheck.png │ ├── CheckBoxTypeA_24_Check.png │ ├── CheckBoxTypeA_24_None.png │ ├── CheckBoxTypeA_24_Uncheck.png │ ├── CheckBoxTypeA_32_Check.png │ ├── CheckBoxTypeA_32_None.png │ ├── CheckBoxTypeA_32_Uncheck.png │ ├── CheckBoxTypeB_16_Check.png │ ├── CheckBoxTypeB_16_None.png │ ├── CheckBoxTypeB_16_Uncheck.png │ ├── CheckBoxTypeB_24_Check.png │ ├── CheckBoxTypeB_24_None.png │ ├── CheckBoxTypeB_24_Uncheck.png │ ├── CheckBoxTypeB_32_Check.png │ ├── CheckBoxTypeB_32_None.png │ ├── CheckBoxTypeB_32_Uncheck.png │ ├── CheckBoxTypeC_16_Check.png │ ├── CheckBoxTypeC_16_None.png │ ├── CheckBoxTypeC_16_Uncheck.png │ ├── CheckBoxTypeC_24_Check.png │ ├── CheckBoxTypeC_24_None.png │ ├── CheckBoxTypeC_24_Uncheck.png │ ├── CheckBoxTypeC_32_Check.png │ ├── CheckBoxTypeC_32_None.png │ ├── CheckBoxTypeC_32_Uncheck.png │ ├── CheckBoxTypeD_16_Check.png │ ├── CheckBoxTypeD_16_None.png │ ├── CheckBoxTypeD_16_Uncheck.png │ ├── CheckBoxTypeD_24_Check.png │ ├── CheckBoxTypeD_24_None.png │ ├── CheckBoxTypeD_24_Uncheck.png │ ├── CheckBoxTypeD_32_Check.png │ ├── CheckBoxTypeD_32_None.png │ ├── CheckBoxTypeD_32_Uncheck.png │ ├── CheckBoxTypeE_16_Check.png │ ├── CheckBoxTypeE_16_None.png │ ├── CheckBoxTypeE_16_Uncheck.png │ ├── CheckBoxTypeE_24_Check.png │ ├── CheckBoxTypeE_24_None.png │ ├── CheckBoxTypeE_24_Uncheck.png │ ├── CheckBoxTypeE_32_Check.png │ ├── CheckBoxTypeE_32_None.png │ ├── CheckBoxTypeE_32_Uncheck.png │ ├── CheckBoxTypeF_16_Check.png │ ├── CheckBoxTypeF_16_None.png │ ├── CheckBoxTypeF_16_Uncheck.png │ ├── CheckBoxTypeF_24_Check.png │ ├── CheckBoxTypeF_24_None.png │ ├── CheckBoxTypeF_24_Uncheck.png │ ├── CheckBoxTypeF_32_Check.png │ ├── CheckBoxTypeF_32_None.png │ ├── CheckBoxTypeF_32_Uncheck.png │ ├── CheckBoxTypeG_16_Check.png │ ├── CheckBoxTypeG_16_None.png │ ├── CheckBoxTypeG_16_Uncheck.png │ ├── CheckBoxTypeG_24_Check.png │ ├── CheckBoxTypeG_24_None.png │ ├── CheckBoxTypeG_24_Uncheck.png │ ├── CheckBoxTypeG_32_Check.png │ ├── CheckBoxTypeG_32_None.png │ ├── CheckBoxTypeG_32_Uncheck.png │ ├── ComboBoxDropDown.png │ ├── ComboboxClear.png │ ├── DatePickerDownArrow.png │ ├── Exit.png │ ├── Max.png │ ├── MessageAsterisk.png │ ├── MessageError.png │ ├── MessageExclamation.png │ ├── MessageHandStop.png │ ├── MessageInformation.png │ ├── MessageQuestion.png │ ├── MessageStop.png │ ├── MessageSuccess.png │ ├── MessageWarning.png │ ├── Min.png │ ├── NavigationBarDelete_Color16.png │ ├── NavigationBarDelete_Color24.png │ ├── NavigationBarDelete_Filled16.png │ ├── NavigationBarDelete_Filled24.png │ ├── NavigationBarDelete_Simple16.png │ ├── NavigationBarDelete_Simple24.png │ ├── NavigationBarEdit_Color16.png │ ├── NavigationBarEdit_Color24.png │ ├── NavigationBarEdit_Filled16.png │ ├── NavigationBarEdit_Filled24.png │ ├── NavigationBarEdit_Simple16.png │ ├── NavigationBarEdit_Simple24.png │ ├── NavigationBarExport_Color16.png │ ├── NavigationBarExport_Color24.png │ ├── NavigationBarExport_Filled16.png │ ├── NavigationBarExport_Filled24.png │ ├── NavigationBarExport_Simple16.png │ ├── NavigationBarExport_Simple24.png │ ├── NavigationBarFilter_Color16.png │ ├── NavigationBarFilter_Color24.png │ ├── NavigationBarFilter_Filled16.png │ ├── NavigationBarFilter_Filled24.png │ ├── NavigationBarFilter_Simple16.png │ ├── NavigationBarFilter_Simple24.png │ ├── NavigationBarFirst16.png │ ├── NavigationBarFirst24.png │ ├── NavigationBarFullScreen_Color16.png │ ├── NavigationBarFullScreen_Color24.png │ ├── NavigationBarFullScreen_Filled16.png │ ├── NavigationBarFullScreen_Filled24.png │ ├── NavigationBarFullScreen_Simple16.png │ ├── NavigationBarFullScreen_Simple24.png │ ├── NavigationBarHelp_Color16.png │ ├── NavigationBarHelp_Color24.png │ ├── NavigationBarHelp_Filled16.png │ ├── NavigationBarHelp_Filled24.png │ ├── NavigationBarHelp_Simple16.png │ ├── NavigationBarHelp_Simple24.png │ ├── NavigationBarLast16.png │ ├── NavigationBarLast24.png │ ├── NavigationBarLoad_Color16.png │ ├── NavigationBarLoad_Color24.png │ ├── NavigationBarLoad_Filled16.png │ ├── NavigationBarLoad_Filled24.png │ ├── NavigationBarLoad_Simple16.png │ ├── NavigationBarLoad_Simple24.png │ ├── NavigationBarNew_Color16.png │ ├── NavigationBarNew_Color24.png │ ├── NavigationBarNew_Filled16.png │ ├── NavigationBarNew_Filled24.png │ ├── NavigationBarNew_Simple16.png │ ├── NavigationBarNew_Simple24.png │ ├── NavigationBarNext16.png │ ├── NavigationBarNext24.png │ ├── NavigationBarPrevious16.png │ ├── NavigationBarPrevious24.png │ ├── NavigationBarSort_Color16.png │ ├── NavigationBarSort_Color24.png │ ├── NavigationBarSort_Filled16.png │ ├── NavigationBarSort_Filled24.png │ ├── NavigationBarSort_Simple16.png │ ├── NavigationBarSort_Simple24.png │ ├── NotificationCheck.png │ ├── NotificationEmail.png │ ├── NotificationInformation.png │ ├── NotificationNotification.png │ ├── NotificationQuestion.png │ ├── NotificationSecurity.png │ ├── NotificationSettings.png │ ├── NotificationUser.png │ ├── NotificationWarning.png │ ├── NotificationWeb.png │ ├── Option.png │ └── clear-alt.png ├── CesCheckBoxIcon ├── CheckBoxTypeA_16_Check.png ├── CheckBoxTypeA_16_None.png ├── CheckBoxTypeA_16_Uncheck.png ├── CheckBoxTypeA_24_Check.png ├── CheckBoxTypeA_24_None.png ├── CheckBoxTypeA_24_Uncheck.png ├── CheckBoxTypeA_32_Check.png ├── CheckBoxTypeA_32_None.png ├── CheckBoxTypeA_32_Uncheck.png ├── CheckBoxTypeB_16_Check.png ├── CheckBoxTypeB_16_None.png ├── CheckBoxTypeB_16_Uncheck.png ├── CheckBoxTypeB_24_Check.png ├── CheckBoxTypeB_24_None.png ├── CheckBoxTypeB_24_Uncheck.png ├── CheckBoxTypeB_32_Check.png ├── CheckBoxTypeB_32_None.png ├── CheckBoxTypeB_32_Uncheck.png ├── CheckBoxTypeC_16_Check.png ├── CheckBoxTypeC_16_None.png ├── CheckBoxTypeC_16_Uncheck.png ├── CheckBoxTypeC_24_Check.png ├── CheckBoxTypeC_24_None.png ├── CheckBoxTypeC_24_Uncheck.png ├── CheckBoxTypeC_32_Check.png ├── CheckBoxTypeC_32_None.png ├── CheckBoxTypeC_32_Uncheck.png ├── CheckBoxTypeD_16_Check.png ├── CheckBoxTypeD_16_None.png ├── CheckBoxTypeD_16_Uncheck.png ├── CheckBoxTypeD_24_Check.png ├── CheckBoxTypeD_24_None.png ├── CheckBoxTypeD_24_Uncheck.png ├── CheckBoxTypeD_32_Check.png ├── CheckBoxTypeD_32_None.png ├── CheckBoxTypeD_32_Uncheck.png ├── CheckBoxTypeE_16_Check.png ├── CheckBoxTypeE_16_None.png ├── CheckBoxTypeE_16_Uncheck.png ├── CheckBoxTypeE_24_Check.png ├── CheckBoxTypeE_24_None.png ├── CheckBoxTypeE_24_Uncheck.png ├── CheckBoxTypeE_32_Check.png ├── CheckBoxTypeE_32_None.png ├── CheckBoxTypeE_32_Uncheck.png ├── CheckBoxTypeF_16_Check.png ├── CheckBoxTypeF_16_None.png ├── CheckBoxTypeF_16_Uncheck.png ├── CheckBoxTypeF_24_Check.png ├── CheckBoxTypeF_24_None.png ├── CheckBoxTypeF_24_Uncheck.png ├── CheckBoxTypeF_32_Check.png ├── CheckBoxTypeF_32_None.png ├── CheckBoxTypeF_32_Uncheck.png ├── CheckBoxTypeG_16_Check.png ├── CheckBoxTypeG_16_None.png ├── CheckBoxTypeG_16_Uncheck.png ├── CheckBoxTypeG_24_Check.png ├── CheckBoxTypeG_24_None.png ├── CheckBoxTypeG_24_Uncheck.png ├── CheckBoxTypeG_32_Check.png ├── CheckBoxTypeG_32_None.png └── CheckBoxTypeG_32_Uncheck.png ├── CesMessageBoxIcon ├── MessageAsterisk.png ├── MessageError.png ├── MessageExclamation.png ├── MessageHandStop.png ├── MessageInformation.png ├── MessageQuestion.png ├── MessageStop.png ├── MessageSuccess.png └── MessageWarning.png ├── CesNotificationBoxIcon ├── NotificationCheck.png ├── NotificationEmail.png ├── NotificationInformation.png ├── NotificationNotification.png ├── NotificationQuestion.png ├── NotificationSecurity.png ├── NotificationSettings.png ├── NotificationUser.png ├── NotificationWarning.png └── NotificationWeb.png ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /Ces.WinForm.UI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.32014.148 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ces.WinForm.UI", "Ces.WinForm.UI\Ces.WinForm.UI.csproj", "{41013462-03D6-44A0-AE0D-661C2D5D915F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {41013462-03D6-44A0-AE0D-661C2D5D915F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {41013462-03D6-44A0-AE0D-661C2D5D915F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {41013462-03D6-44A0-AE0D-661C2D5D915F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {41013462-03D6-44A0-AE0D-661C2D5D915F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A38A1DF6-BB88-4EDC-8B2D-B53187D18C4F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/Ces.WinForm.UI.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net6.0-windows 5 | enable 6 | true 7 | enable 8 | True 9 | 1.18.4 10 | CES.png 11 | https://github.com/CesSolutions/Ces.WinForm.UI 12 | Developing Stage...! Please study readme file on repository 13 | Hadi.Mazareei 14 | 15 | 16 | 17 | 18 | True 19 | \ 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | UserControl 30 | 31 | 32 | UserControl 33 | 34 | 35 | UserControl 36 | 37 | 38 | 39 | True 40 | True 41 | CesMessageBoxIcon.resx 42 | 43 | 44 | Form 45 | 46 | 47 | True 48 | True 49 | CesNotificationBoxIcon.resx 50 | 51 | 52 | UserControl 53 | 54 | 55 | True 56 | True 57 | Resources.resx 58 | 59 | 60 | 61 | 62 | 63 | ResXFileCodeGenerator 64 | CesMessageBoxIcon.Designer.cs 65 | 66 | 67 | ResXFileCodeGenerator 68 | CesNotificationBoxIcon.Designer.cs 69 | 70 | 71 | ResXFileCodeGenerator 72 | Resources.Designer.cs 73 | 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesButton/CesButton.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesButton 2 | { 3 | partial class CesButton 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesButton 34 | // 35 | this.Name = "CesButton"; 36 | this.Size = new System.Drawing.Size(90, 35); 37 | this.FlatStyle = FlatStyle.Flat; 38 | this.FlatAppearance.BorderSize = 0; 39 | this.BackColor = System.Drawing.SystemColors.ActiveBorder; 40 | this.FlatAppearance.MouseOverBackColor = Color.Silver; 41 | this.FlatAppearance.MouseDownBackColor = Color.Gray; 42 | this.ResumeLayout(false); 43 | 44 | } 45 | 46 | #endregion 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesButton/CesButton.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesButton/CesRoundedButton.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesButton 2 | { 3 | partial class CesRoundedButton 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesRoundedButton 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.BackColor = System.Drawing.SystemColors.Control; 38 | this.Cursor = System.Windows.Forms.Cursors.Hand; 39 | this.Name = "CesRoundedButton"; 40 | this.Size = new System.Drawing.Size(110, 35); 41 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesRoundedButton_Paint); 42 | this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.CesRounded_MouseDown); 43 | this.MouseEnter += new System.EventHandler(this.CesRoundedButton_MouseEnter); 44 | this.MouseLeave += new System.EventHandler(this.CesRounded_MouseLeave); 45 | this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.CesRoundedButton_MouseUp); 46 | this.Resize += new System.EventHandler(this.CesRoundedButton_Resize); 47 | this.ResumeLayout(false); 48 | 49 | } 50 | 51 | #endregion 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesButton/CesRoundedButton.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCalendar/CesDatePicker.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCalendar/CesDatePicker2.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCalendar/CesDatePicker2Popup.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesCalendar 2 | { 3 | public partial class CesDatePicker2Popup : Ces.WinForm.UI.CesForm.CesForm 4 | { 5 | public CesDatePicker2Popup() 6 | { 7 | InitializeComponent(); 8 | } 9 | 10 | public event EventHandler CesSelectionChanged; 11 | public DateTime? StartDate { get; set; } 12 | public DateTime? EndDate { get; set; } 13 | 14 | private void CesDatePicker2Popup_Load(object sender, EventArgs e) 15 | { 16 | mc.Left = (this.Width / 2) - (mc.Width / 2); 17 | 18 | if (StartDate.HasValue) 19 | mc.SelectionStart = StartDate.Value; 20 | 21 | if (EndDate.HasValue) 22 | mc.SelectionEnd = EndDate.Value; 23 | } 24 | 25 | private void btnCancel_Click(object sender, EventArgs e) 26 | { 27 | Dispose(); 28 | } 29 | 30 | private void CesDatePicker2Popup_KeyDown(object sender, KeyEventArgs e) 31 | { 32 | if (e.KeyCode != Keys.Escape) 33 | return; 34 | 35 | this.Dispose(); 36 | } 37 | 38 | private void btnApply_Click(object sender, EventArgs e) 39 | { 40 | if (CesSelectionChanged is not null) 41 | CesSelectionChanged.Invoke(this, new UI.CesCalendar.Events.CesSelectionEvent 42 | { 43 | Start = mc.SelectionStart, 44 | End = mc.SelectionEnd, 45 | }); 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCalendar/CesTimePickerPopup.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCalendar/Events/CesSelectionEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesCalendar.Events 2 | { 3 | public class CesSelectionEvent : EventArgs 4 | { 5 | public DateTime? Start { get; set; } 6 | public DateTime? End { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesChart/CesChart.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesChart/CesChartOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesChart 2 | { 3 | //public class CesChartOptions 4 | //{ 5 | // public string? ChartTitle { get; set; } = "Chart title"; 6 | // public bool ChartTitleVisible { get; set; } = true; 7 | 8 | // public IList? Legend { get; set; } // SerieA, SerieB, ... 9 | // public bool LegendVisible { get; set; } = true; 10 | 11 | // public bool CategoryVisible { get; set; } = true; 12 | // public bool CategoryGridLineVisible { get; set; } = false; 13 | 14 | // public string? ScaleTitle { get; set; } // Price, Time, ... 15 | // public bool ScaleVisible { get; set; } = true; 16 | // public int Scale { get; set; } = 10; // 0, 10, 20, 30, ... 17 | 18 | // public IList? Data { get; set; } 19 | //} 20 | 21 | public enum CesChartTypeEnum 22 | { 23 | Column, 24 | Area, 25 | } 26 | 27 | public class CesChartData 28 | { 29 | public CesChartSerie? Serie { get; set; } 30 | public string? Category { get; set; } 31 | public decimal Value { get; set; } 32 | } 33 | 34 | public class CesChartSerie 35 | { 36 | public string? Name { get; set; } 37 | public Color SeriColor { get; set; } 38 | public Color AreaColor { get; set; } 39 | public CesChartTypeEnum Type { get; set; } = CesChartTypeEnum.Column; 40 | } 41 | 42 | internal class CesChartCategory 43 | { 44 | public string? Name { get; set; } 45 | public decimal SumValue { get; set; } = 0; 46 | public decimal Percent { get; set; } = 0; 47 | public int Order { get; set; } = 0; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCheckBox.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesCollapsiblePanel.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesComboBox/CesComboBoxPopup.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesComboBox 2 | { 3 | public partial class CesComboBoxPopup : Ces.WinForm.UI.CesForm.CesForm 4 | { 5 | public CesComboBoxPopup() 6 | { 7 | InitializeComponent(); 8 | } 9 | 10 | public delegate void CesSelectedItemChangedEventHandler(object sender, object? item); 11 | public event CesSelectedItemChangedEventHandler CesSelectedItemChanged; 12 | 13 | private void CesSimpleComboBoxPopup_KeyDown(object sender, KeyEventArgs e) 14 | { 15 | if (e.KeyCode != Keys.Escape) 16 | return; 17 | 18 | this.Hide(); 19 | } 20 | 21 | private void CesSimpleComboBoxPopup_Deactivate(object sender, EventArgs e) 22 | { 23 | lb.ClearSeachBox(); 24 | this.Hide(); 25 | } 26 | 27 | private void lb_CesListBoxItemChanged(object sernder, object item) 28 | { 29 | lb.ClearSelection(); 30 | this.Hide(); 31 | 32 | CesSelectedItemChanged?.Invoke(this, item); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesComboBox/Events/CesAddItemEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesComboBox.Events 2 | { 3 | public class CesAddItemEvent : EventArgs 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesComboBox/Events/CesEditItemEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesComboBox.Events 2 | { 3 | public class CesEditItemEvent : EventArgs 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesComboBox/Events/CesReloadDataEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesComboBox.Events 2 | { 3 | public class CesReloadDataEvent : EventArgs 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesComboBox/SelectedValue.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesComboBox 2 | { 3 | public class SelectedValue 4 | { 5 | private T? _value; 6 | 7 | public T? Value 8 | { 9 | get 10 | { 11 | return _value; 12 | } 13 | set 14 | { 15 | _value = value; 16 | } 17 | } 18 | 19 | public static implicit operator T(SelectedValue value) 20 | { 21 | return value.Value; 22 | } 23 | 24 | public static implicit operator SelectedValue(T value) 25 | { 26 | return new SelectedValue { Value = value }; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGauge/CesGauge.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGauge 2 | { 3 | partial class CesGauge 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesGauge 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.Name = "CesGauge"; 38 | this.Size = new System.Drawing.Size(300, 280); 39 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesGauge_Paint); 40 | this.ResumeLayout(false); 41 | 42 | } 43 | 44 | #endregion 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGauge/CesGauge.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGauge/CesGaugeOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGauge 2 | { 3 | public class CesGaugeOptions 4 | { 5 | public Color SegmentColor { get; set; } = Color.Gray; 6 | public float Percent { get; set; } = 100; 7 | public string? Title { get; set; } 8 | } 9 | 10 | public class CesGaugeRecord 11 | { 12 | public DateTime RecordDateTime { get; set; } 13 | public float RecordValue { get; set; } 14 | } 15 | 16 | public enum CesGaugeIndicatorTypeEnum 17 | { 18 | Type1, 19 | Type2, 20 | Type3, 21 | } 22 | 23 | public enum CesGaugeImageLocationEnum 24 | { 25 | Top, 26 | Bottom, 27 | Left, 28 | Right, 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGridView/CesGridView.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGridView 2 | { 3 | partial class CesGridView 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGridView/DataComparer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGridView 2 | { 3 | /// 4 | /// DeepSeek 5 | /// برای آنکه بتوان مرتب سازی یک لیست از رشته را بر مبنای نوع داده 6 | /// انجام دهیم باید مقایسه را برمبنای تایپ یک داده انجام بدهیم 7 | /// 8 | public class DataComparer : IComparer 9 | { 10 | public int Compare(string x, string y) 11 | { 12 | // Handle null cases 13 | if (x == null && y == null) return 0; 14 | if (x == null) return -1; 15 | if (y == null) return 1; 16 | 17 | // Try to parse as different types in order of priority 18 | if (TryParse(x, y, out int xInt, out int yInt, int.TryParse)) 19 | return xInt.CompareTo(yInt); 20 | 21 | if (TryParse(x, y, out double xDouble, out double yDouble, double.TryParse)) 22 | return xDouble.CompareTo(yDouble); 23 | 24 | if (TryParse(x, y, out DateTime xDate, out DateTime yDate, DateTime.TryParse)) 25 | return xDate.CompareTo(yDate); 26 | 27 | if (TryParse(x, y, out TimeSpan xTime, out TimeSpan yTime, TimeSpan.TryParse)) 28 | return xTime.CompareTo(yTime); 29 | 30 | // Fall back to string comparison 31 | return string.Compare(x, y, StringComparison.Ordinal); 32 | } 33 | 34 | private bool TryParse(string x, string y, out T xVal, out T yVal, TryParseHandler tryParse) 35 | { 36 | xVal = default; 37 | yVal = default; 38 | 39 | bool xParsed = tryParse(x, out xVal); 40 | bool yParsed = tryParse(y, out yVal); 41 | 42 | // Only use this type if both parse successfully 43 | return xParsed && yParsed; 44 | } 45 | 46 | private delegate bool TryParseHandler(string s, out T result); 47 | } 48 | } 49 | 50 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGridView/Events/ColumnHeaderClickEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGridView.Events 2 | { 3 | public class ColumnHeaderClickEvent : EventArgs 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGridView/Events/FilterAndSortCompletedEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGridView.Events 2 | { 3 | public class FilterAndSortCompletedEvent : EventArgs 4 | { 5 | public int ColumnIndex { get; set; } 6 | public CesGridSortTypeEnum SortType { get; set; } = CesGridSortTypeEnum.None; 7 | public bool ClearColumnFilter { get; set; } 8 | public bool ClearAllFilter { get; set; } 9 | public bool ClearAllSort { get; set; } 10 | public bool HasFilteringData { get; set; } 11 | public bool HasFilteringError { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGridView/Events/FilterTextChangedEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGridView.Events 2 | { 3 | public class FilterTextChangedEvent : EventArgs 4 | { 5 | public string? Filter { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGridView/Events/OptionsButtonClickEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesGridView.Events 2 | { 3 | public class OptionsButtonClickEvent : EventArgs 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGroupBox.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesGroupBox 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesGroupBox 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.BackColor = System.Drawing.SystemColors.Control; 38 | this.Name = "CesGroupBox"; 39 | this.Size = new System.Drawing.Size(296, 154); 40 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesGroupBox_Paint); 41 | this.Resize += new System.EventHandler(this.CesGroupBox_Resize); 42 | this.ResumeLayout(false); 43 | 44 | } 45 | 46 | #endregion 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGroupBox.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | 3 | namespace Ces.WinForm.UI 4 | { 5 | [ToolboxItem(true)] 6 | [Designer(typeof(Microsoft.DotNet.DesignTools.Designers.ParentControlDesigner))] 7 | public partial class CesGroupBox : Infrastructure.CesControlBase 8 | { 9 | public CesGroupBox() 10 | { 11 | InitializeComponent(); 12 | 13 | CesTitleText = "Group Name"; 14 | CesTitlePosition = Infrastructure.CesTitlePositionEnum.Top; 15 | CesShowTitle = true; 16 | } 17 | 18 | private Color currentBorderColor; 19 | 20 | private void CesGroupBox_Paint(object sender, PaintEventArgs e) 21 | { 22 | this.GenerateBorder(this); 23 | } 24 | 25 | private void CesGroupBox_Resize(object sender, EventArgs e) 26 | { 27 | SetPadding(); 28 | } 29 | 30 | protected override void OnEnabledChanged(EventArgs e) 31 | { 32 | base.OnEnabledChanged(e); 33 | 34 | if (this.Enabled) 35 | CesBorderColor = currentBorderColor; 36 | else 37 | { 38 | currentBorderColor = CesBorderColor; 39 | CesBorderColor = Color.Silver; 40 | } 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesGroupBox.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesInputBox.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | public partial class CesInputBox : Form 4 | { 5 | public CesInputBox() 6 | { 7 | InitializeComponent(); 8 | } 9 | 10 | 11 | private bool IsMouseDown { get; set; } 12 | private Point CurrentMousePosition { get; set; } 13 | 14 | 15 | public string CesValue { get; set; } 16 | 17 | 18 | private void btnCancel_Click(object sender, EventArgs e) 19 | { 20 | this.DialogResult = DialogResult.Cancel; 21 | } 22 | 23 | private void btnOk_Click(object sender, EventArgs e) 24 | { 25 | this.CesValue = this.txtValue.ChildContainer.Text; 26 | this.DialogResult = DialogResult.OK; 27 | } 28 | 29 | private void btnExit_Click(object sender, EventArgs e) 30 | { 31 | this.DialogResult = DialogResult.Cancel; 32 | } 33 | 34 | private void CesInputBox_Paint(object sender, PaintEventArgs e) 35 | { 36 | e.Graphics.DrawRectangle(new Pen(Color.Orange, 2), new Rectangle(1, 1, this.Width - 2, this.Height - 2)); 37 | } 38 | 39 | private void CesInputBox_Load(object sender, EventArgs e) 40 | { 41 | this.txtValue.ChildContainer.Text = this.CesValue; 42 | } 43 | 44 | private void pnlTitle_MouseDown(object sender, MouseEventArgs e) 45 | { 46 | if (e.Button != MouseButtons.Left) 47 | return; 48 | 49 | IsMouseDown = true; 50 | CurrentMousePosition = new Point(e.Location.X, e.Location.Y); 51 | } 52 | 53 | private void pnlTitle_MouseUp(object sender, MouseEventArgs e) 54 | { 55 | IsMouseDown = false; 56 | } 57 | 58 | private void pnlTitle_MouseMove(object sender, MouseEventArgs e) 59 | { 60 | if (!IsMouseDown) 61 | return; 62 | 63 | this.Left = this.Left + (e.X - CurrentMousePosition.X); 64 | this.Top = this.Top + (e.Y - CurrentMousePosition.Y); 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesLabel.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesLabel 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesLabel 34 | // 35 | this.Name = "CesLabel"; 36 | this.AutoSize= false; 37 | this.Size = new System.Drawing.Size(150, 35); 38 | this.ResumeLayout(false); 39 | 40 | } 41 | 42 | #endregion 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesLabel.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesLine.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesLine 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesLine 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.Margin = new System.Windows.Forms.Padding(0); 38 | this.Name = "CesLine"; 39 | this.Size = new System.Drawing.Size(212, 8); 40 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesLine_Paint); 41 | this.ResumeLayout(false); 42 | 43 | } 44 | 45 | #endregion 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesLine.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesListBox/CesListBoxOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesListBox 2 | { 3 | internal static class CesListBoxOptions 4 | { 5 | public static string ValueMember { get; set; } = string.Empty; 6 | public static string DisplayMember { get; set; } = string.Empty; 7 | public static string ImageMember { get; set; } = string.Empty; 8 | public static bool ShowIndicator { get; set; } 9 | public static bool ShowImage { get; set; } 10 | public static int ImageWidth { get; set; } 11 | public static int ItemHeight { get; set; } 12 | public static Color SelectionColor { get; set; } 13 | public static Color SelectionForeColor { get; set; } 14 | public static Color IndicatorColor { get; set; } 15 | public static Color HighlightColor { get; set; } 16 | } 17 | 18 | public class CesListBoxItemProperty 19 | { 20 | // تعیین مقدار متن جهت نمایش الزامی می باشد 21 | public CesListBoxItemProperty(string? text = null, object? value = null, Image? image = null) 22 | { 23 | this.Value = value; 24 | this.Text = text; 25 | this.Image = image; 26 | } 27 | 28 | public string? Text { get; set; } 29 | public object? Value { get; set; } 30 | public Image? Image { get; set; } 31 | } 32 | } -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesLoadScreen.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesLoadScreen 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | lblLoading = new Label(); 32 | SuspendLayout(); 33 | // 34 | // lblLoading 35 | // 36 | lblLoading.AutoSize = true; 37 | lblLoading.BackColor = SystemColors.Control; 38 | lblLoading.Font = new Font("Calibri", 14.25F, FontStyle.Regular, GraphicsUnit.Point); 39 | lblLoading.ForeColor = Color.Gray; 40 | lblLoading.Location = new Point(268, 140); 41 | lblLoading.Name = "lblLoading"; 42 | lblLoading.Size = new Size(89, 23); 43 | lblLoading.TabIndex = 1; 44 | lblLoading.Text = "Loading ..."; 45 | // 46 | // CesLoadingScreen 47 | // 48 | AutoScaleDimensions = new SizeF(7F, 15F); 49 | AutoScaleMode = AutoScaleMode.Font; 50 | ClientSize = new Size(625, 302); 51 | Controls.Add(lblLoading); 52 | FormBorderStyle = FormBorderStyle.None; 53 | Name = "CesLoadingScreen"; 54 | ShowIcon = false; 55 | ShowInTaskbar = false; 56 | StartPosition = FormStartPosition.Manual; 57 | Text = "frmLoading"; 58 | Load += CesLoadingScreen_Load; 59 | Shown += frmLoading_Shown; 60 | Resize += frmLoading_Resize; 61 | ResumeLayout(false); 62 | PerformLayout(); 63 | } 64 | 65 | #endregion 66 | 67 | private Label lblLoading; 68 | } 69 | } -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesMessageBox/CesMessageBox.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesMessageBox/CesMessageBoxComponent.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesMessageBox 2 | { 3 | partial class CesMessageBoxComponent 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesMessageBox/CesMessageBoxComponent.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | 3 | namespace Ces.WinForm.UI.CesMessageBox 4 | { 5 | public partial class CesMessageBoxComponent : Component 6 | { 7 | public CesMessageBoxComponent(IContainer container) 8 | { 9 | container.Add(this); 10 | 11 | InitializeComponent(); 12 | } 13 | 14 | 15 | public string? Title { get; set; } 16 | public CesMessageBoxIconEnum Icon { get; set; } 17 | public CesMessageBoxButtonsEnum Buttons { get; set; } 18 | public bool TopMost { get; set; } 19 | public CesMessageBoxSizeEnum Size { get; set; } 20 | public CesMessageBoxButtonImageEnum ButtonImage { get; set; } 21 | public System.Windows.Forms.TextImageRelation TextImageRelation { get; set; } 22 | //public CesMessageBoxButtonCaption ButtonCaption { get; set; } 23 | 24 | public void Show(string message) 25 | { 26 | Ces.WinForm.UI.CesMessageBox.CesMessage.Show(message, new CesMessageBoxOptions 27 | { 28 | Title = this.Title, 29 | Icon = this.Icon, 30 | Buttons = this.Buttons, 31 | TopMost = this.TopMost, 32 | Size = this.Size, 33 | ButtonImage = this.ButtonImage, 34 | TextImageRelation = this.TextImageRelation, 35 | //ButtonCaption = new CesMessageBoxButtonCaption(); 36 | }); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesMessageBox/CesMessageBoxComponent.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNavigationBars/CesNavigationBar.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesNavigationBars 2 | { 3 | partial class CesNavigationBar 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNavigationBars/Events/CesNavigationEvent.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesNavigationBars.Events 2 | { 3 | public class CesNavigationEvent : EventArgs 4 | { 5 | public int TotalRows { get; set; } 6 | public int CurrentRowNumber { get; set; } 7 | public bool IsFirst { get; set; } 8 | public bool IsLast { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNavigationBars/frmFullScreen.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesNavigationBars 2 | { 3 | partial class frmFullScreen 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // frmFullScreen 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.ClientSize = new System.Drawing.Size(797, 476); 38 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; 39 | this.Name = "frmFullScreen"; 40 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 41 | this.Text = "Full Screen"; 42 | this.WindowState = System.Windows.Forms.FormWindowState.Maximized; 43 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmFullScreen_FormClosing); 44 | this.Load += new System.EventHandler(this.frmFullScreen_Load); 45 | this.ResumeLayout(false); 46 | 47 | } 48 | 49 | #endregion 50 | } 51 | } -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNavigationBars/frmFullScreen.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesNavigationBars 2 | { 3 | public partial class frmFullScreen : Form 4 | { 5 | public Control? Parent; 6 | public Control? GridView; 7 | 8 | public frmFullScreen() 9 | { 10 | InitializeComponent(); 11 | } 12 | 13 | private void frmFullScreen_FormClosing(object sender, FormClosingEventArgs e) 14 | { 15 | Parent?.Controls.Add(GridView); 16 | Dispose(); 17 | } 18 | 19 | private void frmFullScreen_Load(object sender, EventArgs e) 20 | { 21 | 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNavigationBars/frmFullScreen.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNotification/CesNotificationComponent.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesNotification 2 | { 3 | partial class CesNotificationComponent 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesNotification/CesNotificationPanel.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesNotification 2 | { 3 | [Obsolete("This control not implemented")] 4 | public partial class CesNotificationPanel : Form 5 | { 6 | public CesNotificationPanel(CesNotificationOptions? cesNotificationOptions = null) 7 | { 8 | if (cesNotificationOptions is null) 9 | { 10 | options = new CesNotificationOptions(); 11 | } 12 | else 13 | { 14 | options = cesNotificationOptions; 15 | } 16 | 17 | InitializeComponent(); 18 | } 19 | 20 | private CesNotificationOptions options; 21 | 22 | private void CesNotificationPanel_Load(object sender, EventArgs e) 23 | { 24 | this.TopMost = true; 25 | this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width -this.Width, 0); 26 | this.Height = Screen.PrimaryScreen.WorkingArea.Height; 27 | } 28 | 29 | private void btnExit_Click(object sender, EventArgs e) 30 | { 31 | this.Close(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesPanel.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesPanel 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | this.BorderStyle = BorderStyle.None; 33 | } 34 | 35 | 36 | 37 | #endregion 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesPictureBox.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesPictureBox 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesSimplePictureBox 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.Name = "CesSimplePictureBox"; 38 | this.Size = new System.Drawing.Size(158, 147); 39 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesPictureBox_Paint); 40 | this.Resize += new System.EventHandler(this.CesPictureBox_Resize); 41 | this.ResumeLayout(false); 42 | 43 | } 44 | 45 | #endregion 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesPictureBox.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesProgressBar/CesCircularProgressBar.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesProgressBar 2 | { 3 | partial class CesCircularProgressBar 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesCircularProgressBar 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.Name = "CesCircularProgressBar"; 38 | this.Size = new System.Drawing.Size(100, 100); 39 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesCircularProgressBar_Paint); 40 | this.Resize += new System.EventHandler(this.CesCircularProgressBar_Resize); 41 | this.ResumeLayout(false); 42 | 43 | } 44 | 45 | #endregion 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesProgressBar/CesLinearProgressBar.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.CesProgressBar 2 | { 3 | partial class CesLinearProgressBar 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesLinearProgressBar 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.Name = "CesLinearProgressBar"; 38 | this.Size = new System.Drawing.Size(250, 35); 39 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesLinearProgressBar_Paint); 40 | this.ResumeLayout(false); 41 | 42 | } 43 | 44 | #endregion 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesSlider.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesToggleButton.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesToggleButton 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CesToggleButton 34 | // 35 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; 36 | this.Cursor = System.Windows.Forms.Cursors.Hand; 37 | this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); 38 | this.ForeColor = System.Drawing.Color.White; 39 | this.Name = "CesToggleButton"; 40 | this.Size = new System.Drawing.Size(90, 35); 41 | this.Click += new System.EventHandler(this.CesToggleButton_Click); 42 | this.Paint += new System.Windows.Forms.PaintEventHandler(this.CesToggleButton_Paint); 43 | this.ResumeLayout(false); 44 | 45 | } 46 | 47 | #endregion 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesToggleButton.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesToolTip.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | partial class CesToolTip 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.lblText = new System.Windows.Forms.Label(); 32 | this.SuspendLayout(); 33 | // 34 | // lblText 35 | // 36 | this.lblText.Dock = System.Windows.Forms.DockStyle.Fill; 37 | this.lblText.Location = new System.Drawing.Point(0, 0); 38 | this.lblText.Name = "lblText"; 39 | this.lblText.Size = new System.Drawing.Size(233, 43); 40 | this.lblText.TabIndex = 0; 41 | this.lblText.Text = "label1"; 42 | this.lblText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 43 | this.lblText.MouseLeave += new System.EventHandler(this.lblText_MouseLeave); 44 | // 45 | // CesToolTip 46 | // 47 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 48 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 49 | this.BackColor = System.Drawing.Color.NavajoWhite; 50 | this.ClientSize = new System.Drawing.Size(233, 43); 51 | this.Controls.Add(this.lblText); 52 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 53 | this.Name = "CesToolTip"; 54 | this.ShowIcon = false; 55 | this.ShowInTaskbar = false; 56 | this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 57 | this.Text = "CesToolTip"; 58 | this.TopMost = true; 59 | this.Shown += new System.EventHandler(this.CesToolTip_Shown); 60 | this.MouseLeave += new System.EventHandler(this.CesToolTip_MouseLeave); 61 | this.ResumeLayout(false); 62 | 63 | } 64 | 65 | #endregion 66 | 67 | private Label lblText; 68 | } 69 | } -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesToolTip.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI 2 | { 3 | public partial class CesToolTip : Form 4 | { 5 | public CesToolTip() 6 | { 7 | InitializeComponent(); 8 | } 9 | 10 | 11 | 12 | private int CesDuration { get; set; } = 5; 13 | public int CesControlHashCode { get; set; } 14 | 15 | public static string? CesToolTipText { get; set; } 16 | public static bool CesEnableToolTip { get; set; } 17 | public static Point CesControlLocation { get; set; } 18 | public static Size CesControlSize { get; set; } 19 | public static IList? CesActiveToolTipList { get; set; } 20 | = new System.Collections.Generic.List(); 21 | 22 | 23 | private void CesToolTip_MouseLeave(object sender, EventArgs e) 24 | { 25 | CesActiveToolTipList.Remove(CesControlHashCode); 26 | this.Dispose(); 27 | } 28 | 29 | private void lblText_MouseLeave(object sender, EventArgs e) 30 | { 31 | CesActiveToolTipList.Remove(CesControlHashCode); 32 | this.Dispose(); 33 | } 34 | 35 | private async void CesToolTip_Shown(object sender, EventArgs e) 36 | { 37 | this.lblText.Text = CesToolTipText + DateTime.Now.ToLongTimeString(); 38 | this.Location = new Point(CesControlLocation.X, CesControlLocation.Y + CesControlSize.Height + 5); 39 | 40 | await Task.Run(() => 41 | { 42 | System.Threading.Thread.Sleep(CesDuration * 1000); 43 | }); 44 | 45 | CesActiveToolTipList.Remove(CesControlHashCode); 46 | this.Dispose(); 47 | } 48 | 49 | public static void CesAddToolTipHandler(object sender) 50 | { 51 | if (((CesButton.CesButton)sender).CesEnableToolTip == false) 52 | ((CesButton.CesButton)sender).MouseEnter -= new EventHandler(CesToolTip.CesOnMouseEnter); 53 | else 54 | ((CesButton.CesButton)sender).MouseEnter += new EventHandler(CesToolTip.CesOnMouseEnter); 55 | } 56 | 57 | public static void CesOnMouseEnter(object sender, EventArgs e) 58 | { 59 | CesToolTipText = ((CesButton.CesButton)sender).CesToolTipText; 60 | CesEnableToolTip = ((CesButton.CesButton)sender).CesEnableToolTip; 61 | CesControlLocation = ((CesButton.CesButton)sender).PointToScreen(new Point()); 62 | CesControlSize = ((CesButton.CesButton)sender).Size; 63 | 64 | var tt = new CesToolTip(); 65 | tt.CesControlHashCode = ((CesButton.CesButton)sender).GetHashCode(); 66 | 67 | if (CesEnableToolTip && !CesActiveToolTipList.Any(x => x == tt.CesControlHashCode)) 68 | { 69 | CesActiveToolTipList.Add(tt.CesControlHashCode); 70 | tt.Show(); 71 | } 72 | } 73 | 74 | 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/CesToolTip.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/Infrastructure/CesControlBase.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.Infrastructure 2 | { 3 | partial class CesControlBase 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | } 34 | 35 | #endregion 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/Infrastructure/LayoutController.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.Infrastructure 2 | { 3 | internal class LayoutController 4 | { 5 | 6 | [System.Runtime.InteropServices.DllImport("user32.dll")] 7 | public static extern int SendMessage(IntPtr hWnd, Int32 wMsg, bool wParam, Int32 lParam); 8 | 9 | private const int WM_SETREDRAW = 11; 10 | 11 | public static void SuspendDrawing(Control parent) 12 | { 13 | SendMessage(parent.Handle, WM_SETREDRAW, false, 0); 14 | } 15 | 16 | public static void ResumeDrawing(Control parent) 17 | { 18 | SendMessage(parent.Handle, WM_SETREDRAW, true, 0); 19 | parent.Refresh(); 20 | } 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/Infrastructure/StringExtensions.cs: -------------------------------------------------------------------------------- 1 | using System.Text; 2 | 3 | namespace Ces.WinForm.UI.Infrastructure 4 | { 5 | 6 | /// 7 | /// this class uses as input parameter for [GetnerateListOfItems] extension method 8 | /// 9 | public class StringOptions 10 | { 11 | public StringOptions( 12 | bool showItemNumber = true, 13 | string itemNumberSeparator = ".") 14 | { 15 | AddItemNumber = showItemNumber; 16 | ItemNumberSeparator = itemNumberSeparator; 17 | } 18 | 19 | public bool AddItemNumber { get; set; } = true; 20 | public string ItemNumberSeparator { get; set; } = "."; 21 | } 22 | 23 | 24 | /// 25 | /// Convert IList to a list of string items 26 | /// 27 | public static class StringExtensions 28 | { 29 | public static string GenerateListOfItems(this IList? source, StringOptions? options = null) 30 | { 31 | if (source == null) 32 | return string.Empty; 33 | 34 | if (options == null) 35 | options = new StringOptions(); 36 | 37 | var result = new StringBuilder(); 38 | var counter = 0; 39 | 40 | foreach (var item in source) 41 | { 42 | counter += 1; 43 | 44 | string currentItem = 45 | (options.AddItemNumber ? counter.ToString() + options.ItemNumberSeparator : string.Empty) + 46 | item.ToString(); 47 | 48 | result.Append(currentItem + Environment.NewLine); 49 | } 50 | 51 | return result.ToString(); 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/Infrastructure/ThemeEnum.cs: -------------------------------------------------------------------------------- 1 | namespace Ces.WinForm.UI.Infrastructure 2 | { 3 | public enum ThemeEnum 4 | { 5 | None, 6 | White, 7 | Dark 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/BHOMA.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/BHOMA.TTF -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/BKOODB.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/BKOODB.TTF -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CalendarDownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CalendarDownArrow.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CalendarLeftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CalendarLeftArrow.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CalendarRightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CalendarRightArrow.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CalendarUpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CalendarUpArrow.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesCollapsiblePanelCollapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesCollapsiblePanelCollapse.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesCollapsiblePanelExpand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesCollapsiblePanelExpand.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxAddItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxAddItem.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxAddItem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxAddItem1.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxAddItemAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxAddItemAdd.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxAddItemDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxAddItemDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxClear.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxClearDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxClearDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxDropDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxDropDown.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxDropDownDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxDropDownDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxEditItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxEditItem.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxEditItemDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxEditItemDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxReloadData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxReloadData.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesComboBoxReloadDataDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesComboBoxReloadDataDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesDatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesDatePicker.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesFormResize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesFormResize.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridFilterClearColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridFilterClearColumn.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridFilterColumnApply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridFilterColumnApply.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridFilterRemove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridFilterRemove.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridSortAscending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridSortAscending.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridSortClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridSortClear.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridSortDescending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridSortDescending.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewFilterHasError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewFilterHasError.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewFilterNotSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewFilterNotSet.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewFilterSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewFilterSet.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewOptionsDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewOptionsDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewOptionsWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewOptionsWhite.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewSortAscending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewSortAscending.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesGridViewSortDescending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesGridViewSortDescending.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesListBoxSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesListBoxSearch.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxAbort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxAbort.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxCancel.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxCopy.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxIgnore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxIgnore.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxNo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxNo.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxOK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxOK.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxRetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxRetry.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesMessageBoxYes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesMessageBoxYes.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesNumberInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesNumberInput.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesNumberInputMinus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesNumberInputMinus.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesNumberInputMinusDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesNumberInputMinusDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesNumberInputPlus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesNumberInputPlus.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesNumberInputPlusDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesNumberInputPlusDark.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesScrollBarDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesScrollBarDown.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesScrollBarLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesScrollBarLeft.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesScrollBarRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesScrollBarRight.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesScrollBarSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesScrollBarSlider.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesScrollBarUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesScrollBarUp.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTextBoxClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTextBoxClear.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTextBoxClearNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTextBoxClearNormal.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTextBoxCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTextBoxCopy.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTextBoxCopyNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTextBoxCopyNormal.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTextBoxPaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTextBoxPaste.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTextBoxPasteNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTextBoxPasteNormal.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTimePicker.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CesTimePickerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CesTimePickerBackground.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeA_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeA_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeB_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeB_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeC_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeC_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeD_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeD_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeE_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeE_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeF_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeF_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_16_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_16_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_16_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_24_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_24_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_24_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_32_Check.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_32_None.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/CheckBoxTypeG_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/CheckBoxTypeG_32_Uncheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/ComboBoxDropDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/ComboBoxDropDown.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/ComboboxClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/ComboboxClear.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/DatePickerDownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/DatePickerDownArrow.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/Exit.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/Max.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageAsterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageAsterisk.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageError.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageExclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageExclamation.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageHandStop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageHandStop.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageInformation.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageQuestion.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageStop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageStop.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageSuccess.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/MessageWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/MessageWarning.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/Min.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarDelete_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarDelete_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarDelete_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarDelete_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarDelete_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarDelete_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarDelete_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarDelete_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarDelete_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarDelete_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarDelete_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarDelete_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarEdit_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarEdit_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarEdit_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarEdit_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarEdit_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarEdit_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarEdit_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarEdit_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarEdit_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarEdit_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarEdit_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarEdit_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarExport_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarExport_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarExport_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarExport_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarExport_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarExport_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarExport_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarExport_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarExport_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarExport_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarExport_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarExport_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFilter_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFilter_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFilter_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFilter_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFilter_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFilter_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFilter_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFilter_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFilter_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFilter_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFilter_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFilter_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFirst16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFirst16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFirst24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFirst24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFullScreen_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFullScreen_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFullScreen_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFullScreen_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFullScreen_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFullScreen_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFullScreen_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFullScreen_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFullScreen_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFullScreen_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarFullScreen_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarFullScreen_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarHelp_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarHelp_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarHelp_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarHelp_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarHelp_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarHelp_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarHelp_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarHelp_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarHelp_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarHelp_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarHelp_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarHelp_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLast16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLast16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLast24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLast24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLoad_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLoad_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLoad_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLoad_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLoad_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLoad_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLoad_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLoad_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLoad_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLoad_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarLoad_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarLoad_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNew_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNew_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNew_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNew_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNew_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNew_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNew_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNew_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNew_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNew_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNew_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNew_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNext16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNext16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarNext24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarNext24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarPrevious16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarPrevious16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarPrevious24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarPrevious24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarSort_Color16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarSort_Color16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarSort_Color24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarSort_Color24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarSort_Filled16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarSort_Filled16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarSort_Filled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarSort_Filled24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarSort_Simple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarSort_Simple16.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NavigationBarSort_Simple24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NavigationBarSort_Simple24.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationCheck.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationEmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationEmail.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationInformation.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationNotification.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationQuestion.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationSecurity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationSecurity.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationSettings.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationUser.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationWarning.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/NotificationWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/NotificationWeb.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/Option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/Option.png -------------------------------------------------------------------------------- /Ces.WinForm.UI/Resources/clear-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/Ces.WinForm.UI/Resources/clear-alt.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeA_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeA_32_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeB_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeB_32_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeC_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeC_32_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeD_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeD_32_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeE_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeE_32_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeF_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeF_32_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_16_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_16_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_16_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_16_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_16_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_16_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_24_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_24_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_24_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_24_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_24_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_24_Uncheck.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_32_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_32_Check.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_32_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_32_None.png -------------------------------------------------------------------------------- /CesCheckBoxIcon/CheckBoxTypeG_32_Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesCheckBoxIcon/CheckBoxTypeG_32_Uncheck.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageAsterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageAsterisk.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageError.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageExclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageExclamation.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageHandStop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageHandStop.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageInformation.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageQuestion.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageStop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageStop.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageSuccess.png -------------------------------------------------------------------------------- /CesMessageBoxIcon/MessageWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesMessageBoxIcon/MessageWarning.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationCheck.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationEmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationEmail.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationInformation.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationNotification.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationQuestion.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationSecurity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationSecurity.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationSettings.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationUser.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationWarning.png -------------------------------------------------------------------------------- /CesNotificationBoxIcon/NotificationWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesSolutions/Ces.WinForm.UI/f60636c2b98d66c2dfb5a5f4a77e2d2433a7ef3d/CesNotificationBoxIcon/NotificationWeb.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 CES 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------