├── .gitattributes ├── .gitignore ├── sample_2_8.sln └── sample_2_8 ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Placeholder.Designer.cs ├── Placeholder.cs ├── Placeholder.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── licenses.licx └── sample_2_8.csproj /.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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Ww][Ii][Nn]32/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Oo]ut/ 33 | [Ll]og/ 34 | [Ll]ogs/ 35 | 36 | # Visual Studio 2015/2017 cache/options directory 37 | .vs/ 38 | # Uncomment if you have tasks that create the project's static files in wwwroot 39 | #wwwroot/ 40 | 41 | # Visual Studio 2017 auto generated files 42 | Generated\ Files/ 43 | 44 | # MSTest test Results 45 | [Tt]est[Rr]esult*/ 46 | [Bb]uild[Ll]og.* 47 | 48 | # NUnit 49 | *.VisualState.xml 50 | TestResult.xml 51 | nunit-*.xml 52 | 53 | # Build Results of an ATL Project 54 | [Dd]ebugPS/ 55 | [Rr]eleasePS/ 56 | dlldata.c 57 | 58 | # Benchmark Results 59 | BenchmarkDotNet.Artifacts/ 60 | 61 | # .NET Core 62 | project.lock.json 63 | project.fragment.lock.json 64 | artifacts/ 65 | 66 | # ASP.NET Scaffolding 67 | ScaffoldingReadMe.txt 68 | 69 | # StyleCop 70 | StyleCopReport.xml 71 | 72 | # Files built by Visual Studio 73 | *_i.c 74 | *_p.c 75 | *_h.h 76 | *.ilk 77 | *.meta 78 | *.obj 79 | *.iobj 80 | *.pch 81 | *.pdb 82 | *.ipdb 83 | *.pgc 84 | *.pgd 85 | *.rsp 86 | *.sbr 87 | *.tlb 88 | *.tli 89 | *.tlh 90 | *.tmp 91 | *.tmp_proj 92 | *_wpftmp.csproj 93 | *.log 94 | *.vspscc 95 | *.vssscc 96 | .builds 97 | *.pidb 98 | *.svclog 99 | *.scc 100 | 101 | # Chutzpah Test files 102 | _Chutzpah* 103 | 104 | # Visual C++ cache files 105 | ipch/ 106 | *.aps 107 | *.ncb 108 | *.opendb 109 | *.opensdf 110 | *.sdf 111 | *.cachefile 112 | *.VC.db 113 | *.VC.VC.opendb 114 | 115 | # Visual Studio profiler 116 | *.psess 117 | *.vsp 118 | *.vspx 119 | *.sap 120 | 121 | # Visual Studio Trace Files 122 | *.e2e 123 | 124 | # TFS 2012 Local Workspace 125 | $tf/ 126 | 127 | # Guidance Automation Toolkit 128 | *.gpState 129 | 130 | # ReSharper is a .NET coding add-in 131 | _ReSharper*/ 132 | *.[Rr]e[Ss]harper 133 | *.DotSettings.user 134 | 135 | # TeamCity is a build add-in 136 | _TeamCity* 137 | 138 | # DotCover is a Code Coverage Tool 139 | *.dotCover 140 | 141 | # AxoCover is a Code Coverage Tool 142 | .axoCover/* 143 | !.axoCover/settings.json 144 | 145 | # Coverlet is a free, cross platform Code Coverage Tool 146 | coverage*.json 147 | coverage*.xml 148 | coverage*.info 149 | 150 | # Visual Studio code coverage results 151 | *.coverage 152 | *.coveragexml 153 | 154 | # NCrunch 155 | _NCrunch_* 156 | .*crunch*.local.xml 157 | nCrunchTemp_* 158 | 159 | # MightyMoose 160 | *.mm.* 161 | AutoTest.Net/ 162 | 163 | # Web workbench (sass) 164 | .sass-cache/ 165 | 166 | # Installshield output folder 167 | [Ee]xpress/ 168 | 169 | # DocProject is a documentation generator add-in 170 | DocProject/buildhelp/ 171 | DocProject/Help/*.HxT 172 | DocProject/Help/*.HxC 173 | DocProject/Help/*.hhc 174 | DocProject/Help/*.hhk 175 | DocProject/Help/*.hhp 176 | DocProject/Help/Html2 177 | DocProject/Help/html 178 | 179 | # Click-Once directory 180 | publish/ 181 | 182 | # Publish Web Output 183 | *.[Pp]ublish.xml 184 | *.azurePubxml 185 | # Note: Comment the next line if you want to checkin your web deploy settings, 186 | # but database connection strings (with potential passwords) will be unencrypted 187 | *.pubxml 188 | *.publishproj 189 | 190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 191 | # checkin your Azure Web App publish settings, but sensitive information contained 192 | # in these scripts will be unencrypted 193 | PublishScripts/ 194 | 195 | # NuGet Packages 196 | *.nupkg 197 | # NuGet Symbol Packages 198 | *.snupkg 199 | # The packages folder can be ignored because of Package Restore 200 | **/[Pp]ackages/* 201 | # except build/, which is used as an MSBuild target. 202 | !**/[Pp]ackages/build/ 203 | # Uncomment if necessary however generally it will be regenerated when needed 204 | #!**/[Pp]ackages/repositories.config 205 | # NuGet v3's project.json files produces more ignorable files 206 | *.nuget.props 207 | *.nuget.targets 208 | 209 | # Microsoft Azure Build Output 210 | csx/ 211 | *.build.csdef 212 | 213 | # Microsoft Azure Emulator 214 | ecf/ 215 | rcf/ 216 | 217 | # Windows Store app package directories and files 218 | AppPackages/ 219 | BundleArtifacts/ 220 | Package.StoreAssociation.xml 221 | _pkginfo.txt 222 | *.appx 223 | *.appxbundle 224 | *.appxupload 225 | 226 | # Visual Studio cache files 227 | # files ending in .cache can be ignored 228 | *.[Cc]ache 229 | # but keep track of directories ending in .cache 230 | !?*.[Cc]ache/ 231 | 232 | # Others 233 | ClientBin/ 234 | ~$* 235 | *~ 236 | *.dbmdl 237 | *.dbproj.schemaview 238 | *.jfm 239 | *.pfx 240 | *.publishsettings 241 | orleans.codegen.cs 242 | 243 | # Including strong name files can present a security risk 244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 245 | #*.snk 246 | 247 | # Since there are multiple workflows, uncomment next line to ignore bower_components 248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 249 | #bower_components/ 250 | 251 | # RIA/Silverlight projects 252 | Generated_Code/ 253 | 254 | # Backup & report files from converting an old project file 255 | # to a newer Visual Studio version. Backup files are not needed, 256 | # because we have git ;-) 257 | _UpgradeReport_Files/ 258 | Backup*/ 259 | UpgradeLog*.XML 260 | UpgradeLog*.htm 261 | ServiceFabricBackup/ 262 | *.rptproj.bak 263 | 264 | # SQL Server files 265 | *.mdf 266 | *.ldf 267 | *.ndf 268 | 269 | # Business Intelligence projects 270 | *.rdl.data 271 | *.bim.layout 272 | *.bim_*.settings 273 | *.rptproj.rsuser 274 | *- [Bb]ackup.rdl 275 | *- [Bb]ackup ([0-9]).rdl 276 | *- [Bb]ackup ([0-9][0-9]).rdl 277 | 278 | # Microsoft Fakes 279 | FakesAssemblies/ 280 | 281 | # GhostDoc plugin setting file 282 | *.GhostDoc.xml 283 | 284 | # Node.js Tools for Visual Studio 285 | .ntvs_analysis.dat 286 | node_modules/ 287 | 288 | # Visual Studio 6 build log 289 | *.plg 290 | 291 | # Visual Studio 6 workspace options file 292 | *.opt 293 | 294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 295 | *.vbw 296 | 297 | # Visual Studio LightSwitch build output 298 | **/*.HTMLClient/GeneratedArtifacts 299 | **/*.DesktopClient/GeneratedArtifacts 300 | **/*.DesktopClient/ModelManifest.xml 301 | **/*.Server/GeneratedArtifacts 302 | **/*.Server/ModelManifest.xml 303 | _Pvt_Extensions 304 | 305 | # Paket dependency manager 306 | .paket/paket.exe 307 | paket-files/ 308 | 309 | # FAKE - F# Make 310 | .fake/ 311 | 312 | # CodeRush personal settings 313 | .cr/personal 314 | 315 | # Python Tools for Visual Studio (PTVS) 316 | __pycache__/ 317 | *.pyc 318 | 319 | # Cake - Uncomment if you are using it 320 | # tools/** 321 | # !tools/packages.config 322 | 323 | # Tabs Studio 324 | *.tss 325 | 326 | # Telerik's JustMock configuration file 327 | *.jmconfig 328 | 329 | # BizTalk build output 330 | *.btp.cs 331 | *.btm.cs 332 | *.odx.cs 333 | *.xsd.cs 334 | 335 | # OpenCover UI analysis results 336 | OpenCover/ 337 | 338 | # Azure Stream Analytics local run output 339 | ASALocalRun/ 340 | 341 | # MSBuild Binary and Structured Log 342 | *.binlog 343 | 344 | # NVidia Nsight GPU debugger configuration file 345 | *.nvuser 346 | 347 | # MFractors (Xamarin productivity tool) working folder 348 | .mfractor/ 349 | 350 | # Local History for Visual Studio 351 | .localhistory/ 352 | 353 | # BeatPulse healthcheck temp database 354 | healthchecksdb 355 | 356 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 357 | MigrationBackup/ 358 | 359 | # Ionide (cross platform F# VS Code tools) working folder 360 | .ionide/ 361 | 362 | # Fody - auto-generated XML schema 363 | FodyWeavers.xsd -------------------------------------------------------------------------------- /sample_2_8.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30204.135 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sample_2_8", "sample_2_8\sample_2_8.csproj", "{952F7DBD-7D1D-4C0B-9415-A3A224D68510}" 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 | {952F7DBD-7D1D-4C0B-9415-A3A224D68510}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {952F7DBD-7D1D-4C0B-9415-A3A224D68510}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {952F7DBD-7D1D-4C0B-9415-A3A224D68510}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {952F7DBD-7D1D-4C0B-9415-A3A224D68510}.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 = {2373AF73-E15E-4AEC-A504-0F8EB5E950D4} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /sample_2_8/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | System 12 | 13 | 14 | 15 | 16 | 17 | Skin/Office 2019 Colorful 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 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /sample_2_8/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace sample_2_8 { 2 | partial class Form1 { 3 | /// 4 | /// Required designer variable. 5 | /// 6 | private System.ComponentModel.IContainer components = null; 7 | 8 | /// 9 | /// Clean up any resources being used. 10 | /// 11 | /// true if managed resources should be disposed; otherwise, false. 12 | protected override void Dispose(bool disposing) { 13 | if (disposing && (components != null)) { 14 | components.Dispose(); 15 | } 16 | base.Dispose(disposing); 17 | } 18 | 19 | #region Windows Form Designer generated code 20 | 21 | /// 22 | /// Required method for Designer support - do not modify 23 | /// the contents of this method with the code editor. 24 | /// 25 | private void InitializeComponent() { 26 | DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup(); 27 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 28 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 29 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 30 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 31 | DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup(); 32 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 33 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 34 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 35 | DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem(); 36 | DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip(); 37 | DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem(); 38 | DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem(); 39 | DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem(); 40 | DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem(); 41 | this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl(); 42 | this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); 43 | this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); 44 | this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem(); 45 | this.barToggleSwitchItem1 = new DevExpress.XtraBars.BarToggleSwitchItem(); 46 | this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem(); 47 | this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage(); 48 | this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); 49 | this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); 50 | this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage(); 51 | this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); 52 | this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar(); 53 | ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit(); 54 | this.SuspendLayout(); 55 | // 56 | // ribbonControl1 57 | // 58 | this.ribbonControl1.ExpandCollapseItem.Id = 0; 59 | this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { 60 | this.ribbonControl1.ExpandCollapseItem, 61 | this.ribbonControl1.SearchEditItem, 62 | this.barButtonItem1, 63 | this.barStaticItem1, 64 | this.barButtonItem2, 65 | this.barToggleSwitchItem1, 66 | this.ribbonGalleryBarItem1}); 67 | this.ribbonControl1.Location = new System.Drawing.Point(0, 0); 68 | this.ribbonControl1.MaxItemId = 6; 69 | this.ribbonControl1.Name = "ribbonControl1"; 70 | this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] { 71 | this.ribbonPage1, 72 | this.ribbonPage2}); 73 | this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2019; 74 | this.ribbonControl1.Size = new System.Drawing.Size(656, 158); 75 | this.ribbonControl1.StatusBar = this.ribbonStatusBar1; 76 | // 77 | // barButtonItem1 78 | // 79 | this.barButtonItem1.Caption = "barButtonItem1"; 80 | this.barButtonItem1.Id = 1; 81 | this.barButtonItem1.Name = "barButtonItem1"; 82 | // 83 | // barStaticItem1 84 | // 85 | this.barStaticItem1.Caption = "barStaticItem1"; 86 | this.barStaticItem1.Id = 2; 87 | this.barStaticItem1.Name = "barStaticItem1"; 88 | // 89 | // barButtonItem2 90 | // 91 | this.barButtonItem2.Caption = "barButtonItem2"; 92 | this.barButtonItem2.Id = 3; 93 | this.barButtonItem2.Name = "barButtonItem2"; 94 | // 95 | // barToggleSwitchItem1 96 | // 97 | this.barToggleSwitchItem1.Caption = "barToggleSwitchItem1"; 98 | this.barToggleSwitchItem1.Id = 4; 99 | this.barToggleSwitchItem1.Name = "barToggleSwitchItem1"; 100 | // 101 | // ribbonGalleryBarItem1 102 | // 103 | this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1"; 104 | // 105 | // 106 | // 107 | galleryItemGroup1.Caption = "Alignment"; 108 | galleryItem1.Caption = "Top"; 109 | galleryItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage"))); 110 | galleryItem2.Caption = "Middle"; 111 | galleryItem2.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1"))); 112 | galleryItem3.Caption = "Bottom"; 113 | galleryItem3.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2"))); 114 | galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] { 115 | galleryItem1, 116 | galleryItem2, 117 | galleryItem3}); 118 | galleryItemGroup2.Caption = "Text alignment"; 119 | galleryItem4.Caption = "Left"; 120 | galleryItem4.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage3"))); 121 | galleryItem5.Caption = "Center"; 122 | galleryItem5.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage4"))); 123 | galleryItem6.Caption = "Right"; 124 | galleryItem6.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage5"))); 125 | galleryItem7.Caption = "Block"; 126 | galleryItem7.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage6"))); 127 | galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] { 128 | galleryItem4, 129 | galleryItem5, 130 | galleryItem6, 131 | galleryItem7}); 132 | this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] { 133 | galleryItemGroup1, 134 | galleryItemGroup2}); 135 | this.ribbonGalleryBarItem1.Gallery.ShowItemText = true; 136 | this.ribbonGalleryBarItem1.Id = 5; 137 | this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1"; 138 | // 139 | // ribbonPage1 140 | // 141 | this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] { 142 | this.ribbonPageGroup1, 143 | this.ribbonPageGroup3}); 144 | this.ribbonPage1.Name = "ribbonPage1"; 145 | this.ribbonPage1.Text = "ribbonPage1"; 146 | // 147 | // ribbonPageGroup1 148 | // 149 | this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1); 150 | this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2); 151 | this.ribbonPageGroup1.ItemLinks.Add(this.barToggleSwitchItem1); 152 | this.ribbonPageGroup1.Name = "ribbonPageGroup1"; 153 | this.ribbonPageGroup1.Text = "ribbonPageGroup1"; 154 | // 155 | // ribbonPageGroup3 156 | // 157 | this.ribbonPageGroup3.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.True; 158 | this.ribbonPageGroup3.ItemLinks.Add(this.ribbonGalleryBarItem1); 159 | this.ribbonPageGroup3.Name = "ribbonPageGroup3"; 160 | toolTipTitleItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage7"))); 161 | toolTipTitleItem1.Text = "This is the Ribbon Gallery"; 162 | toolTipItem1.Text = "Galleries can display options or commands for quick selection."; 163 | toolTipItem2.Text = "They can also be useful for elements that require visual identification."; 164 | superToolTip1.Items.Add(toolTipTitleItem1); 165 | superToolTip1.Items.Add(toolTipItem1); 166 | superToolTip1.Items.Add(toolTipSeparatorItem1); 167 | superToolTip1.Items.Add(toolTipItem2); 168 | this.ribbonPageGroup3.SuperTip = superToolTip1; 169 | this.ribbonPageGroup3.Text = "Gallery"; 170 | // 171 | // ribbonPage2 172 | // 173 | this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] { 174 | this.ribbonPageGroup2}); 175 | this.ribbonPage2.Name = "ribbonPage2"; 176 | this.ribbonPage2.Text = "ribbonPage2"; 177 | // 178 | // ribbonPageGroup2 179 | // 180 | this.ribbonPageGroup2.Name = "ribbonPageGroup2"; 181 | this.ribbonPageGroup2.Text = "ribbonPageGroup2"; 182 | // 183 | // ribbonStatusBar1 184 | // 185 | this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1); 186 | this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 372); 187 | this.ribbonStatusBar1.Name = "ribbonStatusBar1"; 188 | this.ribbonStatusBar1.Ribbon = this.ribbonControl1; 189 | this.ribbonStatusBar1.Size = new System.Drawing.Size(656, 22); 190 | // 191 | // Form1 192 | // 193 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 194 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 195 | this.ClientSize = new System.Drawing.Size(656, 394); 196 | this.Controls.Add(this.ribbonStatusBar1); 197 | this.Controls.Add(this.ribbonControl1); 198 | this.Name = "Form1"; 199 | this.Ribbon = this.ribbonControl1; 200 | this.StatusBar = this.ribbonStatusBar1; 201 | this.Text = "Form1"; 202 | ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit(); 203 | this.ResumeLayout(false); 204 | this.PerformLayout(); 205 | 206 | } 207 | 208 | #endregion 209 | 210 | private DevExpress.XtraBars.Ribbon.RibbonControl ribbonControl1; 211 | private DevExpress.XtraBars.Ribbon.RibbonPage ribbonPage1; 212 | private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup1; 213 | private DevExpress.XtraBars.Ribbon.RibbonStatusBar ribbonStatusBar1; 214 | private DevExpress.XtraBars.BarButtonItem barButtonItem1; 215 | private DevExpress.XtraBars.BarStaticItem barStaticItem1; 216 | private DevExpress.XtraBars.BarButtonItem barButtonItem2; 217 | private DevExpress.XtraBars.BarToggleSwitchItem barToggleSwitchItem1; 218 | private DevExpress.XtraBars.RibbonGalleryBarItem ribbonGalleryBarItem1; 219 | private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup3; 220 | private DevExpress.XtraBars.Ribbon.RibbonPage ribbonPage2; 221 | private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup2; 222 | } 223 | } 224 | 225 | -------------------------------------------------------------------------------- /sample_2_8/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | 10 | namespace sample_2_8 { 11 | public partial class Form1 : DevExpress.XtraBars.Ribbon.RibbonForm { 12 | public Form1() { 13 | InitializeComponent(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sample_2_8/Form1.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 124 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 125 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAACQCAAAC77u/ 126 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 127 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 128 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh 129 | Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg 130 | MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku 131 | R3JlZW57ZmlsbDojMDM5QzIzO30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTIsMmgyOGMxLjEsMCwyLDAu 132 | OSwyLDJ2MTBIMFY0QzAsMi45LDAuOSwyLDIsMnoiIGNsYXNzPSJHcmVlbiIgLz4NCiAgPHBhdGggZD0i 133 | TTEsMzJoMzBjMC41LDAsMS0wLjUsMS0xVjFjMC0wLjUtMC41LTEtMS0xSDFDMC41LDAsMCwwLjUsMCwx 134 | djMwQzAsMzEuNSwwLjUsMzIsMSwzMnogTTIsMmgyOHYyOEgyVjJ6IiBjbGFzcz0iQmxhY2siIC8+DQo8 135 | L3N2Zz4L 136 | 137 | 138 | 139 | 140 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 141 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 142 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAACkCAAAC77u/ 143 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 144 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 145 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh 146 | Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg 147 | MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku 148 | R3JlZW57ZmlsbDojMDM5QzIzO30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTIsMTBoMjhjMS4xLDAsMiww 149 | LjksMiwydjEwSDBWMTJDMCwxMC45LDAuOSwxMCwyLDEweiIgY2xhc3M9IkdyZWVuIiAvPg0KICA8cGF0 150 | aCBkPSJNMSwzMmgzMGMwLjUsMCwxLTAuNSwxLTFWMWMwLTAuNS0wLjUtMS0xLTFIMUMwLjUsMCwwLDAu 151 | NSwwLDF2MzBDMCwzMS41LDAuNSwzMiwxLDMyeiBNMiwyaDI4djI4SDJWMnoiIGNsYXNzPSJCbGFjayIg 152 | Lz4NCjwvc3ZnPgs= 153 | 154 | 155 | 156 | 157 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 158 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 159 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAADACAAAC77u/ 160 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 161 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 162 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh 163 | Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg 164 | MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku 165 | R3JlZW57ZmlsbDojMDM5QzIzO30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTMwLDMwSDJjLTEuMSwwLTIt 166 | MC45LTItMlYxOGgzMnYxMEMzMiwyOS4xLDMxLjEsMzAsMzAsMzB6IiBjbGFzcz0iR3JlZW4iIC8+DQog 167 | IDxwYXRoIGQ9Ik0zMSwwSDFDMC41LDAsMCwwLjUsMCwxdjMwYzAsMC41LDAuNSwxLDEsMWgzMGMwLjUs 168 | MCwxLTAuNSwxLTFWMUMzMiwwLjUsMzEuNSwwLDMxLDB6IE0zMCwzMEgyVjJoMjhWMzB6IiBjbGFzcz0i 169 | QmxhY2siIC8+DQo8L3N2Zz4L 170 | 171 | 172 | 173 | 174 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 175 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 176 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAJ4CAAAC77u/ 177 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 178 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 179 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBlbmFibGUt 180 | YmFja2dyb3VuZD0ibmV3IDAgMCAzMiAzMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgaWQ9IkxheWVyXzEi 181 | Pg0KICA8ZyBvcGFjaXR5PSIwLjYiPg0KICAgIDxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSIyMCIgaGVp 182 | Z2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iNiIgeT0i 183 | MTIiIHdpZHRoPSIxNiIgaGVpZ2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQog 184 | ICAgPHJlY3QgeD0iNiIgeT0iMTYiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyIiByeD0iMCIgcnk9IjAiIGZp 185 | bGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iNiIgeT0iMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIy 186 | IiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iNiIgeT0iMjQiIHdp 187 | ZHRoPSIyMCIgaGVpZ2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogIDwvZz4N 188 | Cjwvc3ZnPgs= 189 | 190 | 191 | 192 | 193 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 194 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 195 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKACAAAC77u/ 196 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 197 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 198 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBlbmFibGUt 199 | YmFja2dyb3VuZD0ibmV3IDAgMCAzMiAzMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgaWQ9IkxheWVyXzEi 200 | Pg0KICA8ZyBvcGFjaXR5PSIwLjYiPg0KICAgIDxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSIyMCIgaGVp 201 | Z2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iMTAiIHk9 202 | IjEyIiB3aWR0aD0iMTIiIGhlaWdodD0iMiIgcng9IjAiIHJ5PSIwIiBmaWxsPSIjMDEwMTAxIiAvPg0K 203 | ICAgIDxyZWN0IHg9IjYiIHk9IjE2IiB3aWR0aD0iMjAiIGhlaWdodD0iMiIgcng9IjAiIHJ5PSIwIiBm 204 | aWxsPSIjMDEwMTAxIiAvPg0KICAgIDxyZWN0IHg9IjEwIiB5PSIyMCIgd2lkdGg9IjEyIiBoZWlnaHQ9 205 | IjIiIHJ4PSIwIiByeT0iMCIgZmlsbD0iIzAxMDEwMSIgLz4NCiAgICA8cmVjdCB4PSI2IiB5PSIyNCIg 206 | d2lkdGg9IjIwIiBoZWlnaHQ9IjIiIHJ4PSIwIiByeT0iMCIgZmlsbD0iIzAxMDEwMSIgLz4NCiAgPC9n 207 | Pg0KPC9zdmc+Cw== 208 | 209 | 210 | 211 | 212 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 213 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 214 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKYCAAAC77u/ 215 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 216 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 217 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBlbmFibGUt 218 | YmFja2dyb3VuZD0ibmV3IDAgMCAzMiAzMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgaWQ9IkxheWVyXzEi 219 | Pg0KICA8ZyBvcGFjaXR5PSIwLjYiPg0KICAgIDxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSIyMCIgaGVp 220 | Z2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iOS45IiB5 221 | PSIxMiIgd2lkdGg9IjE2LjEiIGhlaWdodD0iMiIgcng9IjAiIHJ5PSIwIiBmaWxsPSIjMDEwMTAxIiAv 222 | Pg0KICAgIDxyZWN0IHg9IjYiIHk9IjE2IiB3aWR0aD0iMjAiIGhlaWdodD0iMiIgcng9IjAiIHJ5PSIw 223 | IiBmaWxsPSIjMDEwMTAxIiAvPg0KICAgIDxyZWN0IHg9IjkuOSIgeT0iMjAiIHdpZHRoPSIxNi4xIiBo 224 | ZWlnaHQ9IjIiIHJ4PSIwIiByeT0iMCIgZmlsbD0iIzAxMDEwMSIgLz4NCiAgICA8cmVjdCB4PSI2IiB5 225 | PSIyNCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIiIHJ4PSIwIiByeT0iMCIgZmlsbD0iIzAxMDEwMSIgLz4N 226 | CiAgPC9nPg0KPC9zdmc+Cw== 227 | 228 | 229 | 230 | 231 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 232 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 233 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAJ4CAAAC77u/ 234 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 235 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 236 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBlbmFibGUt 237 | YmFja2dyb3VuZD0ibmV3IDAgMCAzMiAzMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgaWQ9IkxheWVyXzEi 238 | Pg0KICA8ZyBvcGFjaXR5PSIwLjYiPg0KICAgIDxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSIyMCIgaGVp 239 | Z2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iNiIgeT0i 240 | MTIiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQog 241 | ICAgPHJlY3QgeD0iNiIgeT0iMTYiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyIiByeD0iMCIgcnk9IjAiIGZp 242 | bGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iNiIgeT0iMjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIy 243 | IiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogICAgPHJlY3QgeD0iNiIgeT0iMjQiIHdp 244 | ZHRoPSIyMCIgaGVpZ2h0PSIyIiByeD0iMCIgcnk9IjAiIGZpbGw9IiMwMTAxMDEiIC8+DQogIDwvZz4N 245 | Cjwvc3ZnPgs= 246 | 247 | 248 | 249 | 250 | AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIwLjEsIFZlcnNpb249MjAuMS40 251 | LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl 252 | dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAALoBAAAC77u/ 253 | PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi 254 | IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv 255 | MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh 256 | Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg 257 | MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KPC9z 258 | dHlsZT4NCiAgPHBhdGggZD0iTTguOSw0LjFDOC40LDMuOCw4LDQuMSw4LDQuN3YyMi42YzAsMC43LDAu 259 | NCwwLjksMC45LDAuNWwxNi43LTExLjNjMC41LTAuMywwLjUtMC45LDAtMS4yTDguOSw0LjF6IiBjbGFz 260 | cz0iQmx1ZSIgLz4NCjwvc3ZnPgs= 261 | 262 | 263 | -------------------------------------------------------------------------------- /sample_2_8/Placeholder.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace sample_2_8 { 2 | partial class Placeholder { 3 | /// 4 | /// Required designer variable. 5 | /// 6 | private System.ComponentModel.IContainer components = null; 7 | 8 | /// 9 | /// Clean up any resources being used. 10 | /// 11 | /// true if managed resources should be disposed; otherwise, false. 12 | protected override void Dispose(bool disposing) { 13 | if (disposing && (components != null)) { 14 | components.Dispose(); 15 | } 16 | base.Dispose(disposing); 17 | } 18 | 19 | #region Component Designer generated code 20 | 21 | /// 22 | /// Required method for Designer support - do not modify 23 | /// the contents of this method with the code editor. 24 | /// 25 | private void InitializeComponent() { 26 | this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); 27 | this.SuspendLayout(); 28 | // 29 | // labelControl1 30 | // 31 | this.labelControl1.Appearance.BackColor = System.Drawing.Color.Ivory; 32 | this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold); 33 | this.labelControl1.Appearance.Options.UseBackColor = true; 34 | this.labelControl1.Appearance.Options.UseFont = true; 35 | this.labelControl1.Appearance.Options.UseTextOptions = true; 36 | this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; 37 | this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; 38 | this.labelControl1.Dock = System.Windows.Forms.DockStyle.Fill; 39 | this.labelControl1.Location = new System.Drawing.Point(0, 0); 40 | this.labelControl1.Name = "labelControl1"; 41 | this.labelControl1.Size = new System.Drawing.Size(580, 280); 42 | this.labelControl1.TabIndex = 0; 43 | this.labelControl1.Text = "UI Placeholder"; 44 | // 45 | // Placeholder 46 | // 47 | this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 23F); 48 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 49 | this.Controls.Add(this.labelControl1); 50 | this.Name = "Placeholder"; 51 | this.Size = new System.Drawing.Size(580, 280); 52 | this.ResumeLayout(false); 53 | 54 | } 55 | 56 | #endregion 57 | 58 | private DevExpress.XtraEditors.LabelControl labelControl1; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /sample_2_8/Placeholder.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Drawing; 5 | using System.Data; 6 | using System.Text; 7 | using System.Linq; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | using DevExpress.XtraEditors; 11 | 12 | namespace sample_2_8 { 13 | public partial class Placeholder : DevExpress.XtraEditors.XtraUserControl { 14 | public Placeholder() { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sample_2_8/Placeholder.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /sample_2_8/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | using DevExpress.UserSkins; 6 | using DevExpress.Skins; 7 | using DevExpress.LookAndFeel; 8 | 9 | namespace sample_2_8 { 10 | static class Program { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sample_2_8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | // General Information about an assembly is controlled through the following 5 | // set of attributes. Change these attribute values to modify the information 6 | // associated with an assembly. 7 | [assembly: AssemblyTitle("sample_2_8")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("")] 11 | [assembly: AssemblyProduct("sample_2_8")] 12 | [assembly: AssemblyCopyright("Copyright © 2020")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | // Setting ComVisible to false makes the types in this assembly not visible 16 | // to COM components. If you need to access a type in this assembly from 17 | // COM, set the ComVisible attribute to true on that type. 18 | [assembly: ComVisible(false)] 19 | // The following GUID is for the ID of the typelib if this project is exposed to COM 20 | [assembly: Guid("9006f149-aa49-4b8e-ba69-386d945fa738")] 21 | // Version information for an assembly consists of the following four values: 22 | // 23 | // Major Version 24 | // Minor Version 25 | // Build Number 26 | // Revision 27 | // 28 | // You can specify all the values or you can default the Build and Revision Numbers 29 | // by using the '*' as shown below: 30 | // [assembly: AssemblyVersion("1.0.*")] 31 | [assembly: AssemblyVersion("1.0.0.0")] 32 | [assembly: AssemblyFileVersion("1.0.0.0")] 33 | -------------------------------------------------------------------------------- /sample_2_8/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace sample_2_8.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("sample_2_8.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /sample_2_8/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /sample_2_8/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace sample_2_8.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.1.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sample_2_8/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sample_2_8/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_8_start/b1e6657019379681bab546197fb2fa1d1c66edcc/sample_2_8/Properties/licenses.licx -------------------------------------------------------------------------------- /sample_2_8/sample_2_8.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | x86 6 | 8.0.30703 7 | 2.0 8 | {952F7DBD-7D1D-4C0B-9415-A3A224D68510} 9 | WinExe 10 | Properties 11 | sample_2_8 12 | sample_2_8 13 | v4.8 14 | 512 15 | 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | false 22 | bin\Debug\ 23 | DEBUG;TRACE 24 | prompt 25 | 4 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | Form 59 | 60 | 61 | Form1.cs 62 | 63 | 64 | UserControl 65 | 66 | 67 | Placeholder.cs 68 | 69 | 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | Placeholder.cs 76 | 77 | 78 | 79 | ResXFileCodeGenerator 80 | Resources.Designer.cs 81 | Designer 82 | 83 | 84 | True 85 | Resources.resx 86 | True 87 | 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 107 | --------------------------------------------------------------------------------