Esempio n. 1
0
 public void Init()
 {
     VehicleBrandInfo[] brandInfos = m_VehicleInfoService.GetAllBrandInfos();
     if (brandInfos != null)
     {
         foreach (VehicleBrandInfo brandInfo in brandInfos)
         {
             DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
             galleryItem2.Caption = brandInfo.Name;
             Image itemImage = imageCollection1.Images[brandInfo.ImageName];
             if (itemImage != null)
             {
                 galleryItem2.Image = itemImage;// Image.FromFile(f.FullName);
             }
             else
             {
                 galleryItem2.Image = new Bitmap(48, 48);
             }
             galleryItem2.Image.Tag = brandInfo;
             galleryControl1.Gallery.Groups[0].Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
                 galleryItem2
             });
         }
     }
 }
Esempio n. 2
0
        public List <CarBrandInfo> GetAllCarBrandInfos()
        {
            List <CarBrandInfo> carBrandInfos = new List <CarBrandInfo>();

            XmlDocument       doc      = new XmlDocument();
            XmlReader         reader   = null;
            XmlReaderSettings settings = new XmlReaderSettings();

            settings.ValidationType = ValidationType.DTD;

            reader = XmlReader.Create(BOCOM.IVX.Framework.Environment.CurrentDirectory + s_ConfigFile, settings);

            doc.Load(reader);
            XmlNodeList elemList = doc.GetElementsByTagName("item");

            XmlNode[] sortedNodes = SortCarBrand(elemList);

            foreach (XmlNode node in sortedNodes)
            {
                System.IO.FileInfo f = new System.IO.FileInfo(BOCOM.IVX.Framework.Environment.CurrentDirectory + s_Folder + node["file"].InnerText);
                DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
                galleryItem2.Caption = node["name"].InnerText.ToString();
            }

            return(carBrandInfos);
        }
Esempio n. 3
0
        internal void InsertGallary(string filename, ulong attachid, long attachsize, int attachtype, DateTime attachdate, string attachdesc, int userno, Image image)
        {
            DevExpress.XtraBars.Ribbon.GalleryItemGroup group = galleryControl1.Gallery.Groups[0];
            DevExpress.XtraBars.Ribbon.GalleryItem      item  = null;

            item = new DevExpress.XtraBars.Ribbon.GalleryItem();
            group.Items.Add(item);

            item.Caption = filename;
            item.Image   = image;
            item.Tag     = new object[] { filename, attachid, attachsize, attachtype, attachdate, attachdesc, userno };
        }
Esempio n. 4
0
        public Result RefreshData(string BatchNo)
        {
            Result res = new Result();

            object[] obj = new object[6];
            galleryItemGroup1.Items.Clear();
            res = _core.RemoteObject.Connection.Call(_core.RemoteObject.User.UserNo, 501, 600006, 600006, new object[] { BatchNo });
            if (res.ResultNo == 0)
            {
                DataTable dt = res.Data.Tables[0];
                if (dt != null && dt.Rows.Count != 0)
                {
                    foreach (DataRow dr in dt.Rows)
                    {
                        //CustomerNo, classcode,CustName,sex,registerno
                        DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
                        gridControl1.DataSource = dt;
                        if (!_allreadycustomer.ContainsKey(Static.ToStr(dr["CUSTOMERNO"])))
                        {
                            galleryItem1.Description = Static.ToStr(dr["CUSTNAME"]);
                            galleryItem1.Caption     = Static.ToStr(dr["CUSTOMERNO"]);
                            galleryItem1.Hint        = Static.ToStr(dr["SALESNO"]);
                            if (Static.ToStr(dr["CLASSCODE"]) == "0")
                            {
                                if (Static.ToInt(dr["SEX"]) == 0)
                                {
                                    galleryItem1.ImageIndex = 0;
                                }
                                else
                                {
                                    galleryItem1.ImageIndex = 1;
                                }
                            }
                            else
                            {
                                galleryItem1.ImageIndex = 2;
                            }
                            galleryItemGroup1.Items.Add(galleryItem1);
                            _allreadycustomer.Add(Static.ToStr(dr["CUSTOMERNO"]), 0);
                        }
                    }
                }
            }
            return(res);
        }
Esempio n. 5
0
        private void buttonRight_Click(object sender, EventArgs e)
        {
            if (galleryControl1.Gallery.GetCheckedItem() != null)
            {
                int index = galleryControl1.Gallery.Groups[0].Items.IndexOf(galleryControl1.Gallery.GetCheckedItem());
                DevExpress.XtraBars.Ribbon.GalleryItem galleryItem = galleryControl1.Gallery.GetCheckedItem();

                galleryControl1.Gallery.Groups[0].Items.RemoveAt(index);
                galleryControl1.Gallery.Groups[0].Items.Insert(index + 1, galleryItem);
                galleryControl1.Gallery.SetItemCheck(galleryItem, true);

                buttonLeft.Enabled   = (index + 1 > 0);
                buttonRight.Enabled  = (index + 1 < chapters.Count - 1);
                buttonRemove.Enabled = true;

                Chapter item = chapters[index];
                chapters.RemoveAt(index);
                chapters.Insert(index + 1, item);
            }
        }
Esempio n. 6
0
        public UCGroup()
        {
            InitializeComponent();
            dic = new Dictionary<string,DevExpress.XtraBars.Ribbon.GalleryItem>();
            list = new List<Model.Models.Nhom>();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup group = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();

            XDocument doc = XDocument.Load(Application.StartupPath + @"\Data.xml");
            var x = (from s in doc.Descendants("Groups").Elements("Group") select s).ToList<XElement>();
            foreach(var i in x)
            {
                DevExpress.XtraBars.Ribbon.GalleryItem item = new DevExpress.XtraBars.Ribbon.GalleryItem();
                item.Image = Images.DecodeImage(Convert.FromBase64String(i.Attribute("image").Value));
                item.Caption = i.Attribute("caption").Value;
                item.Value = i.Value;
                dic.Add(i.Value,item);
                group.Items.Add(item);
            }
            Ucgrouploai.Gallery.Groups.Add(group);
            var help = new DragDropHelper(Ucgrouploai, Ucgroupphanloai,Ucgrouprecycle);
            help.EnableDragDrop();

            LoadData();
            dataNavigator1.PositionChanged += (o, e) =>
            {

                var index = (o as DevExpress.XtraEditors.DataNavigator).Position;
                DataBindingToList(list[index]);
                gridView1.SelectRow(index);
                //System.Diagnostics.Debug.WriteLine(dataNavigator1.Position);
            };

            add.Click += add_Click;
            update.Click += update_Click;
            delete.Click += delete_Click;
            save.Click += save_Click;
            refresh.Click += refresh_Click;
            gridView1.RowClick += gridView1_RowClick;
            Ucgrouppicture.DoubleClick += Ucgrouppicture_DoubleClick;
        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup18 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem14 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DashboardsEditView));
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem15 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem16 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem17 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem18 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem19 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem20 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem21 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem22 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem23 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem24 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem25 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem26 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup19 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup20 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup21 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup22 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup23 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup24 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup25 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup26 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem23 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem24 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem25 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup27 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem26 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem27 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem28 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem29 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem30 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem31 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup28 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem32 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem33 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem34 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem35 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem36 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem37 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem38 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup29 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem39 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem40 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup30 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem41 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup31 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem42 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem43 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem44 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup32 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup33 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup34 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.fileNewBarItem1 = new DevExpress.DashboardWin.Bars.FileNewBarItem();
            this.fileOpenBarItem1 = new DevExpress.DashboardWin.Bars.FileOpenBarItem();
            this.fileSaveBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveBarItem();
            this.fileSaveAsBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveAsBarItem();
            this.undoBarItem1 = new DevExpress.DashboardWin.Bars.UndoBarItem();
            this.redoBarItem1 = new DevExpress.DashboardWin.Bars.RedoBarItem();
            this.newDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.NewDataSourceBarItem();
            this.editDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceBarItem();
            this.renameDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.RenameDataSourceBarItem();
            this.deleteDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.DeleteDataSourceBarItem();
            this.serverModeBarItem1 = new DevExpress.DashboardWin.Bars.ServerModeBarItem();
            this.addCalculatedFieldBarItem1 = new DevExpress.DashboardWin.Bars.AddCalculatedFieldBarItem();
            this.dashboardParametersBarItem1 = new DevExpress.DashboardWin.Bars.DashboardParametersBarItem();
            this.editDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceFilterBarItem();
            this.clearDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearDataSourceFilterBarItem();
            this.insertPivotBarItem1 = new DevExpress.DashboardWin.Bars.InsertPivotBarItem();
            this.insertGridBarItem1 = new DevExpress.DashboardWin.Bars.InsertGridBarItem();
            this.insertChartBarItem1 = new DevExpress.DashboardWin.Bars.InsertChartBarItem();
            this.insertPiesBarItem1 = new DevExpress.DashboardWin.Bars.InsertPiesBarItem();
            this.insertGaugesBarItem1 = new DevExpress.DashboardWin.Bars.InsertGaugesBarItem();
            this.insertCardsBarItem1 = new DevExpress.DashboardWin.Bars.InsertCardsBarItem();
            this.insertChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertChoroplethMapBarItem();
            this.insertGeoPointMapBarSubItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarSubItem();
            this.insertGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarItem();
            this.insertBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertBubbleMapBarItem();
            this.insertPieMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertPieMapBarItem();
            this.insertRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.InsertRangeFilterBarItem();
            this.insertImageBarItem1 = new DevExpress.DashboardWin.Bars.InsertImageBarItem();
            this.insertTextBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertTextBoxBarItem();
            this.duplicateItemBarItem1 = new DevExpress.DashboardWin.Bars.DuplicateItemBarItem();
            this.deleteItemBarItem1 = new DevExpress.DashboardWin.Bars.DeleteItemBarItem();
            this.convertDashboardItemTypeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertDashboardItemTypeBarItem();
            this.convertToPivotBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPivotBarItem();
            this.convertToGridBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGridBarItem();
            this.convertToChartBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChartBarItem();
            this.convertToPieBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieBarItem();
            this.convertToGaugeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGaugeBarItem();
            this.convertToCardBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToCardBarItem();
            this.convertToChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChoroplethMapBarItem();
            this.convertGeoPointMapBaseBarItem1 = new DevExpress.DashboardWin.Bars.ConvertGeoPointMapBaseBarItem();
            this.convertToGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGeoPointMapBarItem();
            this.convertToBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToBubbleMapBarItem();
            this.convertToPieMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieMapBarItem();
            this.convertToRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToRangeFilterBarItem();
            this.removeDataItemsBarItem1 = new DevExpress.DashboardWin.Bars.RemoveDataItemsBarItem();
            this.transposeItemBarItem1 = new DevExpress.DashboardWin.Bars.TransposeItemBarItem();
            this.dashboardTitleBarItem1 = new DevExpress.DashboardWin.Bars.DashboardTitleBarItem();
            this.setCurrencyCultureBarItem1 = new DevExpress.DashboardWin.Bars.SetCurrencyCultureBarItem();
            this.dashboardSkinsBarItem1 = new DevExpress.DashboardWin.Bars.DashboardSkinsBarItem();
            this.editFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditFilterBarItem();
            this.clearFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearFilterBarItem();
            this.masterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MasterFilterBarItem();
            this.multipleValuesMasterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MultipleValuesMasterFilterBarItem();
            this.drillDownBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownBarItem();
            this.ignoreMasterFiltersBarItem1 = new DevExpress.DashboardWin.Bars.IgnoreMasterFiltersBarItem();
            this.crossDataSourceFilteringBarItem1 = new DevExpress.DashboardWin.Bars.CrossDataSourceFilteringBarItem();
            this.chartTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsArgumentsBarItem();
            this.chartTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsSeriesBarItem();
            this.pieTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsArgumentsBarItem();
            this.pieTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsSeriesBarItem();
            this.geoPointMapClusterizationBarItem1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationBarItem();
            this.showItemCaptionBarItem1 = new DevExpress.DashboardWin.Bars.ShowItemCaptionBarItem();
            this.editItemNamesBarItem1 = new DevExpress.DashboardWin.Bars.EditItemNamesBarItem();
            this.contentAutoArrangeBarItem1 = new DevExpress.DashboardWin.Bars.ContentAutoArrangeBarItem();
            this.contentArrangeInColumnsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInColumnsBarItem();
            this.contentArrangeInRowsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInRowsBarItem();
            this.contentArrangementCountBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangementCountBarItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridHorizontalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridHorizontalLinesBarItem();
            this.gridVerticalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridVerticalLinesBarItem();
            this.gridMergeCellsBarItem1 = new DevExpress.DashboardWin.Bars.GridMergeCellsBarItem();
            this.gridBandedRowsBarItem1 = new DevExpress.DashboardWin.Bars.GridBandedRowsBarItem();
            this.gridColumnHeadersBarItem1 = new DevExpress.DashboardWin.Bars.GridColumnHeadersBarItem();
            this.chartRotateBarItem1 = new DevExpress.DashboardWin.Bars.ChartRotateBarItem();
            this.chartXAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartXAxisSettingsBarItem();
            this.chartYAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartYAxisSettingsBarItem();
            this.chartShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.ChartShowLegendBarItem();
            this.galleryChartLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryChartLegendPositionItem();
            this.galleryChartSeriesTypeItem1 = new DevExpress.DashboardWin.Bars.GalleryChartSeriesTypeItem();
            this.pieLabelsDataLabelsBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsBarItem();
            this.pieLabelsDataLabelsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsNoneBarItem();
            this.pieLabelsDataLabelArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelArgumentBarItem();
            this.pieLabelsDataLabelsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueBarItem();
            this.pieLabelsDataLabelsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndValueBarItem();
            this.pieLabelsDataLabelsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsPercentBarItem();
            this.pieLabelsDataLabelsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentValueAndPercentBarItem();
            this.pieTooltipsBarItem1 = new DevExpress.DashboardWin.Bars.PieTooltipsBarItem();
            this.pieLabelsTooltipsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsNoneBarItem();
            this.pieLabelsTooltipsArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentBarItem();
            this.pieLabelsTooltipsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueBarItem();
            this.pieLabelsTooltipsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndValueBarItem();
            this.pieLabelsTooltipsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsPercentBarItem();
            this.pieLabelsTooltipsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueAndPercentBarItem();
            this.pieLabelsTooltipsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndPercentBarItem();
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentValueAndPercentBarItem();
            this.pieStylePieBarItem1 = new DevExpress.DashboardWin.Bars.PieStylePieBarItem();
            this.pieStyleDonutBarItem1 = new DevExpress.DashboardWin.Bars.PieStyleDonutBarItem();
            this.pieShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.PieShowCaptionsBarItem();
            this.gaugeStyleFullCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleFullCircularBarItem();
            this.gaugeStyleHalfCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleHalfCircularBarItem();
            this.gaugeStyleLeftQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLeftQuarterCircularBarItem();
            this.gaugeStyleRightQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleRightQuarterCircularBarItem();
            this.gaugeStyleThreeForthCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleThreeForthCircularBarItem();
            this.gaugeStyleLinearHorizontalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearHorizontalBarItem();
            this.gaugeStyleLinearVerticalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearVerticalBarItem();
            this.gaugeShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.GaugeShowCaptionsBarItem();
            this.imageLoadBarItem1 = new DevExpress.DashboardWin.Bars.ImageLoadBarItem();
            this.imageImportBarItem1 = new DevExpress.DashboardWin.Bars.ImageImportBarItem();
            this.imageSizeModeClipBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeClipBarItem();
            this.imageSizeModeStretchBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeStretchBarItem();
            this.imageSizeModeSqueezeBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeSqueezeBarItem();
            this.imageSizeModeZoomBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeZoomBarItem();
            this.imageAlignmentTopLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopLeftBarItem();
            this.imageAlignmentCenterLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterLeftBarItem();
            this.imageAlignmentBottomLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomLeftBarItem();
            this.imageAlignmentTopCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopCenterBarItem();
            this.imageAlignmentCenterCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterCenterBarItem();
            this.imageAlignmentBottomCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomCenterBarItem();
            this.imageAlignmentTopRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopRightBarItem();
            this.imageAlignmentCenterRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterRightBarItem();
            this.imageAlignmentBottomRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomRightBarItem();
            this.textBoxEditTextBarItem1 = new DevExpress.DashboardWin.Bars.TextBoxEditTextBarItem();
            this.rangeFilterLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterLineSeriesTypeBarItem();
            this.rangeFilterStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedLineSeriesTypeBarItem();
            this.rangeFilterFullStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedLineSeriesTypeBarItem();
            this.rangeFilterAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterAreaSeriesTypeBarItem();
            this.rangeFilterStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedAreaSeriesTypeBarItem();
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedAreaSeriesTypeBarItem();
            this.pivotInitialStateBarItem1 = new DevExpress.DashboardWin.Bars.PivotInitialStateBarItem();
            this.pivotAutoExpandColumnBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandColumnBarItem();
            this.pivotAutoExpandRowBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandRowBarItem();
            this.mapLoadBarItem1 = new DevExpress.DashboardWin.Bars.MapLoadBarItem();
            this.mapImportBarItem1 = new DevExpress.DashboardWin.Bars.MapImportBarItem();
            this.mapDefaultShapefileBarItem1 = new DevExpress.DashboardWin.Bars.MapDefaultShapefileBarItem();
            this.mapWorldCountriesBarItem1 = new DevExpress.DashboardWin.Bars.MapWorldCountriesBarItem();
            this.mapEuropeBarItem1 = new DevExpress.DashboardWin.Bars.MapEuropeBarItem();
            this.mapAsiaBarItem1 = new DevExpress.DashboardWin.Bars.MapAsiaBarItem();
            this.mapNorthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapNorthAmericaBarItem();
            this.mapSouthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapSouthAmericaBarItem();
            this.mapAfricaBarItem1 = new DevExpress.DashboardWin.Bars.MapAfricaBarItem();
            this.mapUSABarItem1 = new DevExpress.DashboardWin.Bars.MapUSABarItem();
            this.mapCanadaBarItem1 = new DevExpress.DashboardWin.Bars.MapCanadaBarItem();
            this.mapLockNavigationBarItem1 = new DevExpress.DashboardWin.Bars.MapLockNavigationBarItem();
            this.mapFullExtentBarItem1 = new DevExpress.DashboardWin.Bars.MapFullExtentBarItem();
            this.mapShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.MapShowLegendBarItem();
            this.galleryMapLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryMapLegendPositionItem();
            this.changeWeightedLegendTypeBarItem1 = new DevExpress.DashboardWin.Bars.ChangeWeightedLegendTypeBarItem();
            this.weightedLegendNoneBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNoneBarItem();
            this.weightedLegendLinearBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendLinearBarItem();
            this.weightedLegendNestedBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNestedBarItem();
            this.galleryWeightedLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryWeightedLegendPositionItem();
            this.pieMapIsWeightedBarItem1 = new DevExpress.DashboardWin.Bars.PieMapIsWeightedBarItem();
            this.quickAccessUndoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessUndoBarItem();
            this.quickAccessRedoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessRedoBarItem();
            this.barButtonSave = new DevExpress.XtraBars.BarButtonItem();
            this.pivotToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PivotToolsRibbonPageCategory();
            this.dashboardDesigner1 = new DevExpress.DashboardWin.DashboardDesigner();
            this.dataRibbonPage1 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.pivotLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PivotLayoutRibbonPageGroup();
            this.dashboardItemDesignRibbonPage9 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GridToolsRibbonPageCategory();
            this.dataRibbonPage2 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage1 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridCellsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridCellsRibbonPageGroup();
            this.chartToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChartToolsRibbonPageCategory();
            this.dataRibbonPage3 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage2 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.chartLayoutPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLayoutPageGroup();
            this.chartLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLegendPositionPageGroup();
            this.chartStylePageGroup1 = new DevExpress.DashboardWin.Bars.ChartStylePageGroup();
            this.piesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PiesToolsRibbonPageCategory();
            this.dataRibbonPage4 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage3 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.pieLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieLabelsRibbonPageGroup();
            this.pieStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieStyleRibbonPageGroup();
            this.gaugesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GaugesToolsRibbonPageCategory();
            this.dataRibbonPage5 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage4 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.gaugeStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugeStyleRibbonPageGroup();
            this.gaugesLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugesLabelsRibbonPageGroup();
            this.cardsToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.CardsToolsRibbonPageCategory();
            this.dataRibbonPage6 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage5 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.rangeFilterToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.RangeFilterToolsRibbonPageCategory();
            this.dataRibbonPage7 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage8 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.rangeFilterSeriesTypeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.RangeFilterSeriesTypeRibbonPageGroup();
            this.choroplethMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChoroplethMapToolsRibbonPageCategory();
            this.dataRibbonPage8 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage10 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup1 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.geoPointMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GeoPointMapToolsRibbonPageCategory();
            this.dataRibbonPage9 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage11 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup2 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.bubbleMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.BubbleMapToolsRibbonPageCategory();
            this.dataRibbonPage10 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage12 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup12 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup3 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup2 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup1 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PieMapToolsRibbonPageCategory();
            this.dataRibbonPage11 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage13 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup13 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup4 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup3 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup2 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapOptionsPageGroup1 = new DevExpress.DashboardWin.Bars.PieMapOptionsPageGroup();
            this.imageToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ImageToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage6 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.imageOpenRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageOpenRibbonPageGroup();
            this.imageSizeModeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageSizeModeRibbonPageGroup();
            this.imageAlignmentRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageAlignmentRibbonPageGroup();
            this.textBoxToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.TextBoxToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage7 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.textBoxSettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TextBoxSettingsRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.DashboardWin.Bars.HomeRibbonPage();
            this.fileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FileRibbonPageGroup();
            this.historyRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.HistoryRibbonPageGroup();
            this.insertRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InsertRibbonPageGroup();
            this.itemOperationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ItemOperationRibbonPageGroup();
            this.dashboardDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DashboardDesignRibbonPageGroup();
            this.quickAccessHistoryRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.QuickAccessHistoryRibbonPageGroup();
            this.dataSourceRibbonPage1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPage();
            this.dataSourceRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPageGroup();
            this.dataSourceElementsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceElementsRibbonPageGroup();
            this.dataSourceFilteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceFilteringRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.DashboardWin.Bars.ViewRibbonPage();
            this.skinsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.SkinsRibbonPageGroup();
            this.dashboardBarController1 = new DevExpress.DashboardWin.Bars.DashboardBarController();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // barAndDockingController1
            // 
            this.barAndDockingController1.PropertiesBar.DefaultGlyphSize = new System.Drawing.Size(16, 16);
            this.barAndDockingController1.PropertiesBar.DefaultLargeGlyphSize = new System.Drawing.Size(32, 32);
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.Controller = this.barAndDockingController1;
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.fileNewBarItem1,
            this.fileOpenBarItem1,
            this.fileSaveBarItem1,
            this.fileSaveAsBarItem1,
            this.undoBarItem1,
            this.redoBarItem1,
            this.newDataSourceBarItem1,
            this.editDataSourceBarItem1,
            this.renameDataSourceBarItem1,
            this.deleteDataSourceBarItem1,
            this.serverModeBarItem1,
            this.addCalculatedFieldBarItem1,
            this.dashboardParametersBarItem1,
            this.editDataSourceFilterBarItem1,
            this.clearDataSourceFilterBarItem1,
            this.insertPivotBarItem1,
            this.insertGridBarItem1,
            this.insertChartBarItem1,
            this.insertPiesBarItem1,
            this.insertGaugesBarItem1,
            this.insertCardsBarItem1,
            this.insertChoroplethMapBarItem1,
            this.insertGeoPointMapBarSubItem1,
            this.insertGeoPointMapBarItem1,
            this.insertBubbleMapBarItem1,
            this.insertPieMapBarItem1,
            this.insertRangeFilterBarItem1,
            this.insertImageBarItem1,
            this.insertTextBoxBarItem1,
            this.duplicateItemBarItem1,
            this.deleteItemBarItem1,
            this.convertDashboardItemTypeBarItem1,
            this.convertToPivotBarItem1,
            this.convertToGridBarItem1,
            this.convertToChartBarItem1,
            this.convertToPieBarItem1,
            this.convertToGaugeBarItem1,
            this.convertToCardBarItem1,
            this.convertToChoroplethMapBarItem1,
            this.convertToGeoPointMapBarItem1,
            this.convertToBubbleMapBarItem1,
            this.convertToPieMapBarItem1,
            this.convertGeoPointMapBaseBarItem1,
            this.convertToRangeFilterBarItem1,
            this.removeDataItemsBarItem1,
            this.transposeItemBarItem1,
            this.dashboardTitleBarItem1,
            this.setCurrencyCultureBarItem1,
            this.dashboardSkinsBarItem1,
            this.editFilterBarItem1,
            this.clearFilterBarItem1,
            this.masterFilterBarItem1,
            this.multipleValuesMasterFilterBarItem1,
            this.drillDownBarItem1,
            this.ignoreMasterFiltersBarItem1,
            this.crossDataSourceFilteringBarItem1,
            this.chartTargetDimensionsArgumentsBarItem1,
            this.chartTargetDimensionsSeriesBarItem1,
            this.pieTargetDimensionsArgumentsBarItem1,
            this.pieTargetDimensionsSeriesBarItem1,
            this.geoPointMapClusterizationBarItem1,
            this.showItemCaptionBarItem1,
            this.editItemNamesBarItem1,
            this.contentAutoArrangeBarItem1,
            this.contentArrangeInColumnsBarItem1,
            this.contentArrangeInRowsBarItem1,
            this.contentArrangementCountBarItem1,
            this.gridHorizontalLinesBarItem1,
            this.gridVerticalLinesBarItem1,
            this.gridMergeCellsBarItem1,
            this.gridBandedRowsBarItem1,
            this.gridColumnHeadersBarItem1,
            this.chartRotateBarItem1,
            this.chartXAxisSettingsBarItem1,
            this.chartYAxisSettingsBarItem1,
            this.chartShowLegendBarItem1,
            this.galleryChartLegendPositionItem1,
            this.galleryChartSeriesTypeItem1,
            this.pieLabelsDataLabelsBarItem1,
            this.pieLabelsDataLabelsNoneBarItem1,
            this.pieLabelsDataLabelArgumentBarItem1,
            this.pieLabelsDataLabelsValueBarItem1,
            this.pieLabelsDataLabelsArgumentAndValueBarItem1,
            this.pieLabelsDataLabelsPercentBarItem1,
            this.pieLabelsDataLabelsValueAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1,
            this.pieTooltipsBarItem1,
            this.pieLabelsTooltipsNoneBarItem1,
            this.pieLabelsTooltipsArgumentBarItem1,
            this.pieLabelsTooltipsValueBarItem1,
            this.pieLabelsTooltipsArgumentAndValueBarItem1,
            this.pieLabelsTooltipsPercentBarItem1,
            this.pieLabelsTooltipsValueAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1,
            this.pieStylePieBarItem1,
            this.pieStyleDonutBarItem1,
            this.pieShowCaptionsBarItem1,
            this.gaugeStyleFullCircularBarItem1,
            this.gaugeStyleHalfCircularBarItem1,
            this.gaugeStyleLeftQuarterCircularBarItem1,
            this.gaugeStyleRightQuarterCircularBarItem1,
            this.gaugeStyleThreeForthCircularBarItem1,
            this.gaugeStyleLinearHorizontalBarItem1,
            this.gaugeStyleLinearVerticalBarItem1,
            this.gaugeShowCaptionsBarItem1,
            this.imageLoadBarItem1,
            this.imageImportBarItem1,
            this.imageSizeModeClipBarItem1,
            this.imageSizeModeStretchBarItem1,
            this.imageSizeModeSqueezeBarItem1,
            this.imageSizeModeZoomBarItem1,
            this.imageAlignmentTopLeftBarItem1,
            this.imageAlignmentCenterLeftBarItem1,
            this.imageAlignmentBottomLeftBarItem1,
            this.imageAlignmentTopCenterBarItem1,
            this.imageAlignmentCenterCenterBarItem1,
            this.imageAlignmentBottomCenterBarItem1,
            this.imageAlignmentTopRightBarItem1,
            this.imageAlignmentCenterRightBarItem1,
            this.imageAlignmentBottomRightBarItem1,
            this.textBoxEditTextBarItem1,
            this.rangeFilterLineSeriesTypeBarItem1,
            this.rangeFilterStackedLineSeriesTypeBarItem1,
            this.rangeFilterFullStackedLineSeriesTypeBarItem1,
            this.rangeFilterAreaSeriesTypeBarItem1,
            this.rangeFilterStackedAreaSeriesTypeBarItem1,
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1,
            this.pivotInitialStateBarItem1,
            this.pivotAutoExpandColumnBarItem1,
            this.pivotAutoExpandRowBarItem1,
            this.mapLoadBarItem1,
            this.mapImportBarItem1,
            this.mapDefaultShapefileBarItem1,
            this.mapWorldCountriesBarItem1,
            this.mapEuropeBarItem1,
            this.mapAsiaBarItem1,
            this.mapNorthAmericaBarItem1,
            this.mapSouthAmericaBarItem1,
            this.mapAfricaBarItem1,
            this.mapUSABarItem1,
            this.mapCanadaBarItem1,
            this.mapLockNavigationBarItem1,
            this.mapFullExtentBarItem1,
            this.mapShowLegendBarItem1,
            this.galleryMapLegendPositionItem1,
            this.changeWeightedLegendTypeBarItem1,
            this.weightedLegendNoneBarItem1,
            this.weightedLegendLinearBarItem1,
            this.weightedLegendNestedBarItem1,
            this.galleryWeightedLegendPositionItem1,
            this.pieMapIsWeightedBarItem1,
            this.quickAccessUndoBarItem1,
            this.quickAccessRedoBarItem1,
            this.barButtonSave});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.Margin = new System.Windows.Forms.Padding(2);
            this.ribbonControl1.MaxItemId = 157;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.pivotToolsRibbonPageCategory1,
            this.gridToolsRibbonPageCategory1,
            this.chartToolsRibbonPageCategory1,
            this.piesToolsRibbonPageCategory1,
            this.gaugesToolsRibbonPageCategory1,
            this.cardsToolsRibbonPageCategory1,
            this.rangeFilterToolsRibbonPageCategory1,
            this.choroplethMapToolsRibbonPageCategory1,
            this.geoPointMapToolsRibbonPageCategory1,
            this.bubbleMapToolsRibbonPageCategory1,
            this.pieMapToolsRibbonPageCategory1,
            this.imageToolsRibbonPageCategory1,
            this.textBoxToolsRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.homeRibbonPage1,
            this.dataSourceRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1});
            this.ribbonControl1.Size = new System.Drawing.Size(1008, 142);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.fileSaveBarItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.quickAccessRedoBarItem1);
            // 
            // fileNewBarItem1
            // 
            this.fileNewBarItem1.Id = 1;
            this.fileNewBarItem1.Name = "fileNewBarItem1";
            this.fileNewBarItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // fileOpenBarItem1
            // 
            this.fileOpenBarItem1.Id = 2;
            this.fileOpenBarItem1.Name = "fileOpenBarItem1";
            this.fileOpenBarItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // fileSaveBarItem1
            // 
            this.fileSaveBarItem1.Id = 3;
            this.fileSaveBarItem1.Name = "fileSaveBarItem1";
            this.fileSaveBarItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // fileSaveAsBarItem1
            // 
            this.fileSaveAsBarItem1.Id = 4;
            this.fileSaveAsBarItem1.Name = "fileSaveAsBarItem1";
            this.fileSaveAsBarItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // undoBarItem1
            // 
            this.undoBarItem1.Id = 5;
            this.undoBarItem1.Name = "undoBarItem1";
            // 
            // redoBarItem1
            // 
            this.redoBarItem1.Id = 6;
            this.redoBarItem1.Name = "redoBarItem1";
            // 
            // newDataSourceBarItem1
            // 
            this.newDataSourceBarItem1.Id = 7;
            this.newDataSourceBarItem1.Name = "newDataSourceBarItem1";
            // 
            // editDataSourceBarItem1
            // 
            this.editDataSourceBarItem1.Id = 8;
            this.editDataSourceBarItem1.Name = "editDataSourceBarItem1";
            // 
            // renameDataSourceBarItem1
            // 
            this.renameDataSourceBarItem1.Id = 9;
            this.renameDataSourceBarItem1.Name = "renameDataSourceBarItem1";
            // 
            // deleteDataSourceBarItem1
            // 
            this.deleteDataSourceBarItem1.Id = 10;
            this.deleteDataSourceBarItem1.Name = "deleteDataSourceBarItem1";
            // 
            // serverModeBarItem1
            // 
            this.serverModeBarItem1.Id = 11;
            this.serverModeBarItem1.Name = "serverModeBarItem1";
            // 
            // addCalculatedFieldBarItem1
            // 
            this.addCalculatedFieldBarItem1.Id = 12;
            this.addCalculatedFieldBarItem1.Name = "addCalculatedFieldBarItem1";
            // 
            // dashboardParametersBarItem1
            // 
            this.dashboardParametersBarItem1.Id = 13;
            this.dashboardParametersBarItem1.Name = "dashboardParametersBarItem1";
            // 
            // editDataSourceFilterBarItem1
            // 
            this.editDataSourceFilterBarItem1.Id = 14;
            this.editDataSourceFilterBarItem1.Name = "editDataSourceFilterBarItem1";
            // 
            // clearDataSourceFilterBarItem1
            // 
            this.clearDataSourceFilterBarItem1.Id = 15;
            this.clearDataSourceFilterBarItem1.Name = "clearDataSourceFilterBarItem1";
            // 
            // insertPivotBarItem1
            // 
            this.insertPivotBarItem1.Id = 16;
            this.insertPivotBarItem1.Name = "insertPivotBarItem1";
            // 
            // insertGridBarItem1
            // 
            this.insertGridBarItem1.Id = 17;
            this.insertGridBarItem1.Name = "insertGridBarItem1";
            // 
            // insertChartBarItem1
            // 
            this.insertChartBarItem1.Id = 18;
            this.insertChartBarItem1.Name = "insertChartBarItem1";
            // 
            // insertPiesBarItem1
            // 
            this.insertPiesBarItem1.Id = 19;
            this.insertPiesBarItem1.Name = "insertPiesBarItem1";
            // 
            // insertGaugesBarItem1
            // 
            this.insertGaugesBarItem1.Id = 20;
            this.insertGaugesBarItem1.Name = "insertGaugesBarItem1";
            // 
            // insertCardsBarItem1
            // 
            this.insertCardsBarItem1.Id = 21;
            this.insertCardsBarItem1.Name = "insertCardsBarItem1";
            // 
            // insertChoroplethMapBarItem1
            // 
            this.insertChoroplethMapBarItem1.Id = 22;
            this.insertChoroplethMapBarItem1.Name = "insertChoroplethMapBarItem1";
            // 
            // insertGeoPointMapBarSubItem1
            // 
            this.insertGeoPointMapBarSubItem1.Id = 23;
            this.insertGeoPointMapBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPieMapBarItem1)});
            this.insertGeoPointMapBarSubItem1.Name = "insertGeoPointMapBarSubItem1";
            this.insertGeoPointMapBarSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // insertGeoPointMapBarItem1
            // 
            this.insertGeoPointMapBarItem1.Id = 24;
            this.insertGeoPointMapBarItem1.Name = "insertGeoPointMapBarItem1";
            // 
            // insertBubbleMapBarItem1
            // 
            this.insertBubbleMapBarItem1.Id = 25;
            this.insertBubbleMapBarItem1.Name = "insertBubbleMapBarItem1";
            // 
            // insertPieMapBarItem1
            // 
            this.insertPieMapBarItem1.Id = 26;
            this.insertPieMapBarItem1.Name = "insertPieMapBarItem1";
            // 
            // insertRangeFilterBarItem1
            // 
            this.insertRangeFilterBarItem1.Id = 27;
            this.insertRangeFilterBarItem1.Name = "insertRangeFilterBarItem1";
            // 
            // insertImageBarItem1
            // 
            this.insertImageBarItem1.Id = 28;
            this.insertImageBarItem1.Name = "insertImageBarItem1";
            // 
            // insertTextBoxBarItem1
            // 
            this.insertTextBoxBarItem1.Id = 29;
            this.insertTextBoxBarItem1.Name = "insertTextBoxBarItem1";
            // 
            // duplicateItemBarItem1
            // 
            this.duplicateItemBarItem1.Id = 30;
            this.duplicateItemBarItem1.Name = "duplicateItemBarItem1";
            // 
            // deleteItemBarItem1
            // 
            this.deleteItemBarItem1.Id = 31;
            this.deleteItemBarItem1.Name = "deleteItemBarItem1";
            // 
            // convertDashboardItemTypeBarItem1
            // 
            this.convertDashboardItemTypeBarItem1.Id = 32;
            this.convertDashboardItemTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPivotBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGridBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChartBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGaugeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToCardBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChoroplethMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertGeoPointMapBaseBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToRangeFilterBarItem1)});
            this.convertDashboardItemTypeBarItem1.Name = "convertDashboardItemTypeBarItem1";
            this.convertDashboardItemTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // convertToPivotBarItem1
            // 
            this.convertToPivotBarItem1.Id = 33;
            this.convertToPivotBarItem1.Name = "convertToPivotBarItem1";
            // 
            // convertToGridBarItem1
            // 
            this.convertToGridBarItem1.Id = 34;
            this.convertToGridBarItem1.Name = "convertToGridBarItem1";
            // 
            // convertToChartBarItem1
            // 
            this.convertToChartBarItem1.Id = 35;
            this.convertToChartBarItem1.Name = "convertToChartBarItem1";
            // 
            // convertToPieBarItem1
            // 
            this.convertToPieBarItem1.Id = 36;
            this.convertToPieBarItem1.Name = "convertToPieBarItem1";
            // 
            // convertToGaugeBarItem1
            // 
            this.convertToGaugeBarItem1.Id = 37;
            this.convertToGaugeBarItem1.Name = "convertToGaugeBarItem1";
            // 
            // convertToCardBarItem1
            // 
            this.convertToCardBarItem1.Id = 38;
            this.convertToCardBarItem1.Name = "convertToCardBarItem1";
            // 
            // convertToChoroplethMapBarItem1
            // 
            this.convertToChoroplethMapBarItem1.Id = 39;
            this.convertToChoroplethMapBarItem1.Name = "convertToChoroplethMapBarItem1";
            // 
            // convertGeoPointMapBaseBarItem1
            // 
            this.convertGeoPointMapBaseBarItem1.Id = 43;
            this.convertGeoPointMapBaseBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieMapBarItem1)});
            this.convertGeoPointMapBaseBarItem1.Name = "convertGeoPointMapBaseBarItem1";
            // 
            // convertToGeoPointMapBarItem1
            // 
            this.convertToGeoPointMapBarItem1.Id = 40;
            this.convertToGeoPointMapBarItem1.Name = "convertToGeoPointMapBarItem1";
            // 
            // convertToBubbleMapBarItem1
            // 
            this.convertToBubbleMapBarItem1.Id = 41;
            this.convertToBubbleMapBarItem1.Name = "convertToBubbleMapBarItem1";
            // 
            // convertToPieMapBarItem1
            // 
            this.convertToPieMapBarItem1.Id = 42;
            this.convertToPieMapBarItem1.Name = "convertToPieMapBarItem1";
            // 
            // convertToRangeFilterBarItem1
            // 
            this.convertToRangeFilterBarItem1.Id = 44;
            this.convertToRangeFilterBarItem1.Name = "convertToRangeFilterBarItem1";
            // 
            // removeDataItemsBarItem1
            // 
            this.removeDataItemsBarItem1.Id = 45;
            this.removeDataItemsBarItem1.Name = "removeDataItemsBarItem1";
            // 
            // transposeItemBarItem1
            // 
            this.transposeItemBarItem1.Id = 46;
            this.transposeItemBarItem1.Name = "transposeItemBarItem1";
            // 
            // dashboardTitleBarItem1
            // 
            this.dashboardTitleBarItem1.Id = 47;
            this.dashboardTitleBarItem1.Name = "dashboardTitleBarItem1";
            // 
            // setCurrencyCultureBarItem1
            // 
            this.setCurrencyCultureBarItem1.Id = 48;
            this.setCurrencyCultureBarItem1.Name = "setCurrencyCultureBarItem1";
            // 
            // dashboardSkinsBarItem1
            // 
            this.dashboardSkinsBarItem1.AllowDrawArrow = true;
            // 
            // 
            // 
            this.dashboardSkinsBarItem1.Gallery.AllowHoverImages = true;
            this.dashboardSkinsBarItem1.Gallery.ColumnCount = 4;
            this.dashboardSkinsBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup18.Caption = "Standard Skins";
            galleryItem14.Caption = "DevExpress Style";
            galleryItem14.Checked = true;
            galleryItem14.Hint = "DevExpress Style";
            galleryItem14.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem14.HoverImage")));
            galleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem14.Image")));
            galleryItem14.Tag = "DevExpress Style";
            galleryItem15.Caption = "DevExpress Dark Style";
            galleryItem15.Hint = "DevExpress Dark Style";
            galleryItem15.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem15.HoverImage")));
            galleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem15.Image")));
            galleryItem15.Tag = "DevExpress Dark Style";
            galleryItem16.Caption = "Office 2013 White";
            galleryItem16.Hint = "Office 2013 White";
            galleryItem16.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem16.HoverImage")));
            galleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem16.Image")));
            galleryItem16.Tag = "Office 2013";
            galleryItem17.Caption = "Office 2013 Dark Gray";
            galleryItem17.Hint = "Office 2013 Dark Gray";
            galleryItem17.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem17.HoverImage")));
            galleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem17.Image")));
            galleryItem17.Tag = "Office 2013 Dark Gray";
            galleryItem18.Caption = "Office 2013 Light Gray";
            galleryItem18.Hint = "Office 2013 Light Gray";
            galleryItem18.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem18.HoverImage")));
            galleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem18.Image")));
            galleryItem18.Tag = "Office 2013 Light Gray";
            galleryItem19.Caption = "Office 2010 Blue";
            galleryItem19.Hint = "Office 2010 Blue";
            galleryItem19.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem19.HoverImage")));
            galleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem19.Image")));
            galleryItem19.Tag = "Office 2010 Blue";
            galleryItem20.Caption = "Office 2010 Black";
            galleryItem20.Hint = "Office 2010 Black";
            galleryItem20.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem20.HoverImage")));
            galleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem20.Image")));
            galleryItem20.Tag = "Office 2010 Black";
            galleryItem21.Caption = "Office 2010 Silver";
            galleryItem21.Hint = "Office 2010 Silver";
            galleryItem21.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem21.HoverImage")));
            galleryItem21.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem21.Image")));
            galleryItem21.Tag = "Office 2010 Silver";
            galleryItem22.Caption = "Visual Studio 2013 Blue";
            galleryItem22.Hint = "Visual Studio 2013 Blue";
            galleryItem22.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem22.HoverImage")));
            galleryItem22.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem22.Image")));
            galleryItem22.Tag = "Visual Studio 2013 Blue";
            galleryItem23.Caption = "Visual Studio 2013 Dark";
            galleryItem23.Hint = "Visual Studio 2013 Dark";
            galleryItem23.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem23.HoverImage")));
            galleryItem23.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem23.Image")));
            galleryItem23.Tag = "Visual Studio 2013 Dark";
            galleryItem24.Caption = "Visual Studio 2013 Light";
            galleryItem24.Hint = "Visual Studio 2013 Light";
            galleryItem24.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem24.HoverImage")));
            galleryItem24.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem24.Image")));
            galleryItem24.Tag = "Visual Studio 2013 Light";
            galleryItem25.Caption = "Seven Classic";
            galleryItem25.Hint = "Seven Classic";
            galleryItem25.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem25.HoverImage")));
            galleryItem25.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem25.Image")));
            galleryItem25.Tag = "Seven Classic";
            galleryItem26.Caption = "Visual Studio 2010";
            galleryItem26.Hint = "Visual Studio 2010";
            galleryItem26.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem26.HoverImage")));
            galleryItem26.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem26.Image")));
            galleryItem26.Tag = "VS2010";
            galleryItemGroup18.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem14,
            galleryItem15,
            galleryItem16,
            galleryItem17,
            galleryItem18,
            galleryItem19,
            galleryItem20,
            galleryItem21,
            galleryItem22,
            galleryItem23,
            galleryItem24,
            galleryItem25,
            galleryItem26});
            galleryItemGroup19.Caption = "Bonus Skins";
            galleryItemGroup19.Visible = false;
            galleryItemGroup20.Caption = "Theme Skins";
            galleryItemGroup20.Visible = false;
            galleryItemGroup21.Caption = "Custom Skins";
            galleryItemGroup21.Visible = false;
            this.dashboardSkinsBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup18,
            galleryItemGroup19,
            galleryItemGroup20,
            galleryItemGroup21});
            this.dashboardSkinsBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 16);
            this.dashboardSkinsBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.dashboardSkinsBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.dashboardSkinsBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardSkinsBarItem1.Glyph")));
            this.dashboardSkinsBarItem1.Id = 49;
            this.dashboardSkinsBarItem1.Name = "dashboardSkinsBarItem1";
            // 
            // editFilterBarItem1
            // 
            this.editFilterBarItem1.Id = 50;
            this.editFilterBarItem1.Name = "editFilterBarItem1";
            // 
            // clearFilterBarItem1
            // 
            this.clearFilterBarItem1.Id = 51;
            this.clearFilterBarItem1.Name = "clearFilterBarItem1";
            // 
            // masterFilterBarItem1
            // 
            this.masterFilterBarItem1.Id = 52;
            this.masterFilterBarItem1.Name = "masterFilterBarItem1";
            // 
            // multipleValuesMasterFilterBarItem1
            // 
            this.multipleValuesMasterFilterBarItem1.Id = 53;
            this.multipleValuesMasterFilterBarItem1.Name = "multipleValuesMasterFilterBarItem1";
            // 
            // drillDownBarItem1
            // 
            this.drillDownBarItem1.Id = 54;
            this.drillDownBarItem1.Name = "drillDownBarItem1";
            // 
            // ignoreMasterFiltersBarItem1
            // 
            this.ignoreMasterFiltersBarItem1.Id = 55;
            this.ignoreMasterFiltersBarItem1.Name = "ignoreMasterFiltersBarItem1";
            // 
            // crossDataSourceFilteringBarItem1
            // 
            this.crossDataSourceFilteringBarItem1.Id = 56;
            this.crossDataSourceFilteringBarItem1.Name = "crossDataSourceFilteringBarItem1";
            // 
            // chartTargetDimensionsArgumentsBarItem1
            // 
            this.chartTargetDimensionsArgumentsBarItem1.Id = 57;
            this.chartTargetDimensionsArgumentsBarItem1.Name = "chartTargetDimensionsArgumentsBarItem1";
            // 
            // chartTargetDimensionsSeriesBarItem1
            // 
            this.chartTargetDimensionsSeriesBarItem1.Id = 58;
            this.chartTargetDimensionsSeriesBarItem1.Name = "chartTargetDimensionsSeriesBarItem1";
            // 
            // pieTargetDimensionsArgumentsBarItem1
            // 
            this.pieTargetDimensionsArgumentsBarItem1.Id = 59;
            this.pieTargetDimensionsArgumentsBarItem1.Name = "pieTargetDimensionsArgumentsBarItem1";
            // 
            // pieTargetDimensionsSeriesBarItem1
            // 
            this.pieTargetDimensionsSeriesBarItem1.Id = 60;
            this.pieTargetDimensionsSeriesBarItem1.Name = "pieTargetDimensionsSeriesBarItem1";
            // 
            // geoPointMapClusterizationBarItem1
            // 
            this.geoPointMapClusterizationBarItem1.Id = 61;
            this.geoPointMapClusterizationBarItem1.Name = "geoPointMapClusterizationBarItem1";
            // 
            // showItemCaptionBarItem1
            // 
            this.showItemCaptionBarItem1.Id = 62;
            this.showItemCaptionBarItem1.Name = "showItemCaptionBarItem1";
            // 
            // editItemNamesBarItem1
            // 
            this.editItemNamesBarItem1.Id = 63;
            this.editItemNamesBarItem1.Name = "editItemNamesBarItem1";
            // 
            // contentAutoArrangeBarItem1
            // 
            this.contentAutoArrangeBarItem1.Id = 64;
            this.contentAutoArrangeBarItem1.Name = "contentAutoArrangeBarItem1";
            // 
            // contentArrangeInColumnsBarItem1
            // 
            this.contentArrangeInColumnsBarItem1.Id = 65;
            this.contentArrangeInColumnsBarItem1.Name = "contentArrangeInColumnsBarItem1";
            // 
            // contentArrangeInRowsBarItem1
            // 
            this.contentArrangeInRowsBarItem1.Id = 66;
            this.contentArrangeInRowsBarItem1.Name = "contentArrangeInRowsBarItem1";
            // 
            // contentArrangementCountBarItem1
            // 
            this.contentArrangementCountBarItem1.Edit = this.repositoryItemSpinEdit1;
            this.contentArrangementCountBarItem1.Id = 67;
            this.contentArrangementCountBarItem1.Name = "contentArrangementCountBarItem1";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // gridHorizontalLinesBarItem1
            // 
            this.gridHorizontalLinesBarItem1.Id = 68;
            this.gridHorizontalLinesBarItem1.Name = "gridHorizontalLinesBarItem1";
            // 
            // gridVerticalLinesBarItem1
            // 
            this.gridVerticalLinesBarItem1.Id = 69;
            this.gridVerticalLinesBarItem1.Name = "gridVerticalLinesBarItem1";
            // 
            // gridMergeCellsBarItem1
            // 
            this.gridMergeCellsBarItem1.Id = 70;
            this.gridMergeCellsBarItem1.Name = "gridMergeCellsBarItem1";
            // 
            // gridBandedRowsBarItem1
            // 
            this.gridBandedRowsBarItem1.Id = 71;
            this.gridBandedRowsBarItem1.Name = "gridBandedRowsBarItem1";
            // 
            // gridColumnHeadersBarItem1
            // 
            this.gridColumnHeadersBarItem1.Id = 72;
            this.gridColumnHeadersBarItem1.Name = "gridColumnHeadersBarItem1";
            // 
            // chartRotateBarItem1
            // 
            this.chartRotateBarItem1.Id = 73;
            this.chartRotateBarItem1.Name = "chartRotateBarItem1";
            // 
            // chartXAxisSettingsBarItem1
            // 
            this.chartXAxisSettingsBarItem1.Id = 74;
            this.chartXAxisSettingsBarItem1.Name = "chartXAxisSettingsBarItem1";
            // 
            // chartYAxisSettingsBarItem1
            // 
            this.chartYAxisSettingsBarItem1.Id = 75;
            this.chartYAxisSettingsBarItem1.Name = "chartYAxisSettingsBarItem1";
            // 
            // chartShowLegendBarItem1
            // 
            this.chartShowLegendBarItem1.Id = 76;
            this.chartShowLegendBarItem1.Name = "chartShowLegendBarItem1";
            // 
            // galleryChartLegendPositionItem1
            // 
            this.galleryChartLegendPositionItem1.AllowDrawArrow = true;
            // 
            // 
            // 
            this.galleryChartLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup22.Caption = "Inside Horizontal";
            galleryItemGroup23.Caption = "Inside Vertical";
            galleryItemGroup24.Caption = "Outside Horizontal";
            galleryItemGroup25.Caption = "Outside Vertical";
            this.galleryChartLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup22,
            galleryItemGroup23,
            galleryItemGroup24,
            galleryItemGroup25});
            this.galleryChartLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartLegendPositionItem1.Gallery.RowCount = 8;
            this.galleryChartLegendPositionItem1.Id = 77;
            this.galleryChartLegendPositionItem1.Name = "galleryChartLegendPositionItem1";
            // 
            // galleryChartSeriesTypeItem1
            // 
            this.galleryChartSeriesTypeItem1.AllowDrawArrow = true;
            // 
            // 
            // 
            galleryItemGroup26.Caption = "Bar";
            chartSeriesTypeGalleryItem23.Hint = "Bar";
            chartSeriesTypeGalleryItem23.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem23.Image")));
            chartSeriesTypeGalleryItem23.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem24.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem24.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem24.Image")));
            chartSeriesTypeGalleryItem24.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem25.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem25.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem25.Image")));
            chartSeriesTypeGalleryItem25.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup26.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem23,
            chartSeriesTypeGalleryItem24,
            chartSeriesTypeGalleryItem25});
            galleryItemGroup27.Caption = "Point / Line";
            chartSeriesTypeGalleryItem26.Hint = "Point";
            chartSeriesTypeGalleryItem26.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem26.Image")));
            chartSeriesTypeGalleryItem26.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem27.Hint = "Line";
            chartSeriesTypeGalleryItem27.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem27.Image")));
            chartSeriesTypeGalleryItem27.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem28.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem28.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem28.Image")));
            chartSeriesTypeGalleryItem28.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem29.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem29.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem29.Image")));
            chartSeriesTypeGalleryItem29.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem30.Hint = "Step Line";
            chartSeriesTypeGalleryItem30.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem30.Image")));
            chartSeriesTypeGalleryItem30.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem31.Hint = "Spline";
            chartSeriesTypeGalleryItem31.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem31.Image")));
            chartSeriesTypeGalleryItem31.SeriesTypeCaption = "Spline";
            galleryItemGroup27.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem26,
            chartSeriesTypeGalleryItem27,
            chartSeriesTypeGalleryItem28,
            chartSeriesTypeGalleryItem29,
            chartSeriesTypeGalleryItem30,
            chartSeriesTypeGalleryItem31});
            galleryItemGroup28.Caption = "Area";
            chartSeriesTypeGalleryItem32.Hint = "Area";
            chartSeriesTypeGalleryItem32.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem32.Image")));
            chartSeriesTypeGalleryItem32.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem33.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem33.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem33.Image")));
            chartSeriesTypeGalleryItem33.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem34.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem34.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem34.Image")));
            chartSeriesTypeGalleryItem34.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem35.Hint = "Step Area";
            chartSeriesTypeGalleryItem35.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem35.Image")));
            chartSeriesTypeGalleryItem35.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem36.Hint = "Spline Area";
            chartSeriesTypeGalleryItem36.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem36.Image")));
            chartSeriesTypeGalleryItem36.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem37.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem37.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem37.Image")));
            chartSeriesTypeGalleryItem37.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem38.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem38.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem38.Image")));
            chartSeriesTypeGalleryItem38.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup28.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem32,
            chartSeriesTypeGalleryItem33,
            chartSeriesTypeGalleryItem34,
            chartSeriesTypeGalleryItem35,
            chartSeriesTypeGalleryItem36,
            chartSeriesTypeGalleryItem37,
            chartSeriesTypeGalleryItem38});
            galleryItemGroup29.Caption = "Range";
            chartSeriesTypeGalleryItem39.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem39.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem39.Image")));
            chartSeriesTypeGalleryItem39.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem40.Hint = "Range Area";
            chartSeriesTypeGalleryItem40.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem40.Image")));
            chartSeriesTypeGalleryItem40.SeriesTypeCaption = "Range Area";
            galleryItemGroup29.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem39,
            chartSeriesTypeGalleryItem40});
            galleryItemGroup30.Caption = "Bubble";
            chartSeriesTypeGalleryItem41.Hint = "Bubble";
            chartSeriesTypeGalleryItem41.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem41.Image")));
            chartSeriesTypeGalleryItem41.SeriesTypeCaption = "Bubble";
            galleryItemGroup30.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem41});
            galleryItemGroup31.Caption = "Financial";
            chartSeriesTypeGalleryItem42.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem42.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem42.Image")));
            chartSeriesTypeGalleryItem42.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem43.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem43.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem43.Image")));
            chartSeriesTypeGalleryItem43.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem44.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem44.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem44.Image")));
            chartSeriesTypeGalleryItem44.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup31.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem42,
            chartSeriesTypeGalleryItem43,
            chartSeriesTypeGalleryItem44});
            this.galleryChartSeriesTypeItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup26,
            galleryItemGroup27,
            galleryItemGroup28,
            galleryItemGroup29,
            galleryItemGroup30,
            galleryItemGroup31});
            this.galleryChartSeriesTypeItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartSeriesTypeItem1.Gallery.RowCount = 8;
            this.galleryChartSeriesTypeItem1.Id = 78;
            this.galleryChartSeriesTypeItem1.Name = "galleryChartSeriesTypeItem1";
            // 
            // pieLabelsDataLabelsBarItem1
            // 
            this.pieLabelsDataLabelsBarItem1.Id = 79;
            this.pieLabelsDataLabelsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1)});
            this.pieLabelsDataLabelsBarItem1.Name = "pieLabelsDataLabelsBarItem1";
            this.pieLabelsDataLabelsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsDataLabelsNoneBarItem1
            // 
            this.pieLabelsDataLabelsNoneBarItem1.Id = 80;
            this.pieLabelsDataLabelsNoneBarItem1.Name = "pieLabelsDataLabelsNoneBarItem1";
            // 
            // pieLabelsDataLabelArgumentBarItem1
            // 
            this.pieLabelsDataLabelArgumentBarItem1.Id = 81;
            this.pieLabelsDataLabelArgumentBarItem1.Name = "pieLabelsDataLabelArgumentBarItem1";
            // 
            // pieLabelsDataLabelsValueBarItem1
            // 
            this.pieLabelsDataLabelsValueBarItem1.Id = 82;
            this.pieLabelsDataLabelsValueBarItem1.Name = "pieLabelsDataLabelsValueBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndValueBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Id = 83;
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Name = "pieLabelsDataLabelsArgumentAndValueBarItem1";
            // 
            // pieLabelsDataLabelsPercentBarItem1
            // 
            this.pieLabelsDataLabelsPercentBarItem1.Id = 84;
            this.pieLabelsDataLabelsPercentBarItem1.Name = "pieLabelsDataLabelsPercentBarItem1";
            // 
            // pieLabelsDataLabelsValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Id = 85;
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Name = "pieLabelsDataLabelsValueAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Id = 86;
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Id = 87;
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentValueAndPercentBarItem1";
            // 
            // pieTooltipsBarItem1
            // 
            this.pieTooltipsBarItem1.Id = 88;
            this.pieTooltipsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1)});
            this.pieTooltipsBarItem1.Name = "pieTooltipsBarItem1";
            this.pieTooltipsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsTooltipsNoneBarItem1
            // 
            this.pieLabelsTooltipsNoneBarItem1.Id = 89;
            this.pieLabelsTooltipsNoneBarItem1.Name = "pieLabelsTooltipsNoneBarItem1";
            // 
            // pieLabelsTooltipsArgumentBarItem1
            // 
            this.pieLabelsTooltipsArgumentBarItem1.Id = 90;
            this.pieLabelsTooltipsArgumentBarItem1.Name = "pieLabelsTooltipsArgumentBarItem1";
            // 
            // pieLabelsTooltipsValueBarItem1
            // 
            this.pieLabelsTooltipsValueBarItem1.Id = 91;
            this.pieLabelsTooltipsValueBarItem1.Name = "pieLabelsTooltipsValueBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndValueBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Id = 92;
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Name = "pieLabelsTooltipsArgumentAndValueBarItem1";
            // 
            // pieLabelsTooltipsPercentBarItem1
            // 
            this.pieLabelsTooltipsPercentBarItem1.Id = 93;
            this.pieLabelsTooltipsPercentBarItem1.Name = "pieLabelsTooltipsPercentBarItem1";
            // 
            // pieLabelsTooltipsValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsValueAndPercentBarItem1.Id = 94;
            this.pieLabelsTooltipsValueAndPercentBarItem1.Name = "pieLabelsTooltipsValueAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Id = 95;
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Id = 96;
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentValueAndPercentBarItem1";
            // 
            // pieStylePieBarItem1
            // 
            this.pieStylePieBarItem1.Id = 97;
            this.pieStylePieBarItem1.Name = "pieStylePieBarItem1";
            // 
            // pieStyleDonutBarItem1
            // 
            this.pieStyleDonutBarItem1.Id = 98;
            this.pieStyleDonutBarItem1.Name = "pieStyleDonutBarItem1";
            // 
            // pieShowCaptionsBarItem1
            // 
            this.pieShowCaptionsBarItem1.Id = 99;
            this.pieShowCaptionsBarItem1.Name = "pieShowCaptionsBarItem1";
            // 
            // gaugeStyleFullCircularBarItem1
            // 
            this.gaugeStyleFullCircularBarItem1.Id = 100;
            this.gaugeStyleFullCircularBarItem1.Name = "gaugeStyleFullCircularBarItem1";
            // 
            // gaugeStyleHalfCircularBarItem1
            // 
            this.gaugeStyleHalfCircularBarItem1.Id = 101;
            this.gaugeStyleHalfCircularBarItem1.Name = "gaugeStyleHalfCircularBarItem1";
            // 
            // gaugeStyleLeftQuarterCircularBarItem1
            // 
            this.gaugeStyleLeftQuarterCircularBarItem1.Id = 102;
            this.gaugeStyleLeftQuarterCircularBarItem1.Name = "gaugeStyleLeftQuarterCircularBarItem1";
            // 
            // gaugeStyleRightQuarterCircularBarItem1
            // 
            this.gaugeStyleRightQuarterCircularBarItem1.Id = 103;
            this.gaugeStyleRightQuarterCircularBarItem1.Name = "gaugeStyleRightQuarterCircularBarItem1";
            // 
            // gaugeStyleThreeForthCircularBarItem1
            // 
            this.gaugeStyleThreeForthCircularBarItem1.Id = 104;
            this.gaugeStyleThreeForthCircularBarItem1.Name = "gaugeStyleThreeForthCircularBarItem1";
            // 
            // gaugeStyleLinearHorizontalBarItem1
            // 
            this.gaugeStyleLinearHorizontalBarItem1.Id = 105;
            this.gaugeStyleLinearHorizontalBarItem1.Name = "gaugeStyleLinearHorizontalBarItem1";
            // 
            // gaugeStyleLinearVerticalBarItem1
            // 
            this.gaugeStyleLinearVerticalBarItem1.Id = 106;
            this.gaugeStyleLinearVerticalBarItem1.Name = "gaugeStyleLinearVerticalBarItem1";
            // 
            // gaugeShowCaptionsBarItem1
            // 
            this.gaugeShowCaptionsBarItem1.Id = 107;
            this.gaugeShowCaptionsBarItem1.Name = "gaugeShowCaptionsBarItem1";
            // 
            // imageLoadBarItem1
            // 
            this.imageLoadBarItem1.Id = 108;
            this.imageLoadBarItem1.Name = "imageLoadBarItem1";
            // 
            // imageImportBarItem1
            // 
            this.imageImportBarItem1.Id = 109;
            this.imageImportBarItem1.Name = "imageImportBarItem1";
            // 
            // imageSizeModeClipBarItem1
            // 
            this.imageSizeModeClipBarItem1.Id = 110;
            this.imageSizeModeClipBarItem1.Name = "imageSizeModeClipBarItem1";
            // 
            // imageSizeModeStretchBarItem1
            // 
            this.imageSizeModeStretchBarItem1.Id = 111;
            this.imageSizeModeStretchBarItem1.Name = "imageSizeModeStretchBarItem1";
            // 
            // imageSizeModeSqueezeBarItem1
            // 
            this.imageSizeModeSqueezeBarItem1.Id = 112;
            this.imageSizeModeSqueezeBarItem1.Name = "imageSizeModeSqueezeBarItem1";
            // 
            // imageSizeModeZoomBarItem1
            // 
            this.imageSizeModeZoomBarItem1.Id = 113;
            this.imageSizeModeZoomBarItem1.Name = "imageSizeModeZoomBarItem1";
            // 
            // imageAlignmentTopLeftBarItem1
            // 
            this.imageAlignmentTopLeftBarItem1.Id = 114;
            this.imageAlignmentTopLeftBarItem1.Name = "imageAlignmentTopLeftBarItem1";
            this.imageAlignmentTopLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterLeftBarItem1
            // 
            this.imageAlignmentCenterLeftBarItem1.Id = 115;
            this.imageAlignmentCenterLeftBarItem1.Name = "imageAlignmentCenterLeftBarItem1";
            this.imageAlignmentCenterLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomLeftBarItem1
            // 
            this.imageAlignmentBottomLeftBarItem1.Id = 116;
            this.imageAlignmentBottomLeftBarItem1.Name = "imageAlignmentBottomLeftBarItem1";
            this.imageAlignmentBottomLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopCenterBarItem1
            // 
            this.imageAlignmentTopCenterBarItem1.Id = 117;
            this.imageAlignmentTopCenterBarItem1.Name = "imageAlignmentTopCenterBarItem1";
            this.imageAlignmentTopCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterCenterBarItem1
            // 
            this.imageAlignmentCenterCenterBarItem1.Id = 118;
            this.imageAlignmentCenterCenterBarItem1.Name = "imageAlignmentCenterCenterBarItem1";
            this.imageAlignmentCenterCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomCenterBarItem1
            // 
            this.imageAlignmentBottomCenterBarItem1.Id = 119;
            this.imageAlignmentBottomCenterBarItem1.Name = "imageAlignmentBottomCenterBarItem1";
            this.imageAlignmentBottomCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopRightBarItem1
            // 
            this.imageAlignmentTopRightBarItem1.Id = 120;
            this.imageAlignmentTopRightBarItem1.Name = "imageAlignmentTopRightBarItem1";
            this.imageAlignmentTopRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterRightBarItem1
            // 
            this.imageAlignmentCenterRightBarItem1.Id = 121;
            this.imageAlignmentCenterRightBarItem1.Name = "imageAlignmentCenterRightBarItem1";
            this.imageAlignmentCenterRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomRightBarItem1
            // 
            this.imageAlignmentBottomRightBarItem1.Id = 122;
            this.imageAlignmentBottomRightBarItem1.Name = "imageAlignmentBottomRightBarItem1";
            this.imageAlignmentBottomRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // textBoxEditTextBarItem1
            // 
            this.textBoxEditTextBarItem1.Id = 123;
            this.textBoxEditTextBarItem1.Name = "textBoxEditTextBarItem1";
            // 
            // rangeFilterLineSeriesTypeBarItem1
            // 
            this.rangeFilterLineSeriesTypeBarItem1.Id = 124;
            this.rangeFilterLineSeriesTypeBarItem1.Name = "rangeFilterLineSeriesTypeBarItem1";
            // 
            // rangeFilterStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterStackedLineSeriesTypeBarItem1.Id = 125;
            this.rangeFilterStackedLineSeriesTypeBarItem1.Name = "rangeFilterStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Id = 126;
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Name = "rangeFilterFullStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterAreaSeriesTypeBarItem1
            // 
            this.rangeFilterAreaSeriesTypeBarItem1.Id = 127;
            this.rangeFilterAreaSeriesTypeBarItem1.Name = "rangeFilterAreaSeriesTypeBarItem1";
            // 
            // rangeFilterStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Id = 128;
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Name = "rangeFilterStackedAreaSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Id = 129;
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Name = "rangeFilterFullStackedAreaSeriesTypeBarItem1";
            // 
            // pivotInitialStateBarItem1
            // 
            this.pivotInitialStateBarItem1.Id = 130;
            this.pivotInitialStateBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandColumnBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandRowBarItem1)});
            this.pivotInitialStateBarItem1.Name = "pivotInitialStateBarItem1";
            this.pivotInitialStateBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pivotAutoExpandColumnBarItem1
            // 
            this.pivotAutoExpandColumnBarItem1.Id = 131;
            this.pivotAutoExpandColumnBarItem1.Name = "pivotAutoExpandColumnBarItem1";
            // 
            // pivotAutoExpandRowBarItem1
            // 
            this.pivotAutoExpandRowBarItem1.Id = 132;
            this.pivotAutoExpandRowBarItem1.Name = "pivotAutoExpandRowBarItem1";
            // 
            // mapLoadBarItem1
            // 
            this.mapLoadBarItem1.Id = 133;
            this.mapLoadBarItem1.Name = "mapLoadBarItem1";
            // 
            // mapImportBarItem1
            // 
            this.mapImportBarItem1.Id = 134;
            this.mapImportBarItem1.Name = "mapImportBarItem1";
            // 
            // mapDefaultShapefileBarItem1
            // 
            this.mapDefaultShapefileBarItem1.Id = 135;
            this.mapDefaultShapefileBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.mapWorldCountriesBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapEuropeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAsiaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapNorthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapSouthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAfricaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapUSABarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapCanadaBarItem1)});
            this.mapDefaultShapefileBarItem1.Name = "mapDefaultShapefileBarItem1";
            this.mapDefaultShapefileBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // mapWorldCountriesBarItem1
            // 
            this.mapWorldCountriesBarItem1.Id = 136;
            this.mapWorldCountriesBarItem1.Name = "mapWorldCountriesBarItem1";
            // 
            // mapEuropeBarItem1
            // 
            this.mapEuropeBarItem1.Id = 137;
            this.mapEuropeBarItem1.Name = "mapEuropeBarItem1";
            // 
            // mapAsiaBarItem1
            // 
            this.mapAsiaBarItem1.Id = 138;
            this.mapAsiaBarItem1.Name = "mapAsiaBarItem1";
            // 
            // mapNorthAmericaBarItem1
            // 
            this.mapNorthAmericaBarItem1.Id = 139;
            this.mapNorthAmericaBarItem1.Name = "mapNorthAmericaBarItem1";
            // 
            // mapSouthAmericaBarItem1
            // 
            this.mapSouthAmericaBarItem1.Id = 140;
            this.mapSouthAmericaBarItem1.Name = "mapSouthAmericaBarItem1";
            // 
            // mapAfricaBarItem1
            // 
            this.mapAfricaBarItem1.Id = 141;
            this.mapAfricaBarItem1.Name = "mapAfricaBarItem1";
            // 
            // mapUSABarItem1
            // 
            this.mapUSABarItem1.Id = 142;
            this.mapUSABarItem1.Name = "mapUSABarItem1";
            // 
            // mapCanadaBarItem1
            // 
            this.mapCanadaBarItem1.Id = 143;
            this.mapCanadaBarItem1.Name = "mapCanadaBarItem1";
            // 
            // mapLockNavigationBarItem1
            // 
            this.mapLockNavigationBarItem1.Id = 144;
            this.mapLockNavigationBarItem1.Name = "mapLockNavigationBarItem1";
            // 
            // mapFullExtentBarItem1
            // 
            this.mapFullExtentBarItem1.Id = 145;
            this.mapFullExtentBarItem1.Name = "mapFullExtentBarItem1";
            // 
            // mapShowLegendBarItem1
            // 
            this.mapShowLegendBarItem1.Id = 146;
            this.mapShowLegendBarItem1.Name = "mapShowLegendBarItem1";
            // 
            // galleryMapLegendPositionItem1
            // 
            this.galleryMapLegendPositionItem1.AllowDrawArrow = true;
            // 
            // 
            // 
            this.galleryMapLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup32.Caption = "Vertical";
            galleryItemGroup33.Caption = "Horizontal";
            this.galleryMapLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup32,
            galleryItemGroup33});
            this.galleryMapLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryMapLegendPositionItem1.Gallery.RowCount = 4;
            this.galleryMapLegendPositionItem1.Id = 147;
            this.galleryMapLegendPositionItem1.Name = "galleryMapLegendPositionItem1";
            // 
            // changeWeightedLegendTypeBarItem1
            // 
            this.changeWeightedLegendTypeBarItem1.Id = 148;
            this.changeWeightedLegendTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendLinearBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNestedBarItem1)});
            this.changeWeightedLegendTypeBarItem1.Name = "changeWeightedLegendTypeBarItem1";
            this.changeWeightedLegendTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // weightedLegendNoneBarItem1
            // 
            this.weightedLegendNoneBarItem1.Id = 149;
            this.weightedLegendNoneBarItem1.Name = "weightedLegendNoneBarItem1";
            // 
            // weightedLegendLinearBarItem1
            // 
            this.weightedLegendLinearBarItem1.Id = 150;
            this.weightedLegendLinearBarItem1.Name = "weightedLegendLinearBarItem1";
            // 
            // weightedLegendNestedBarItem1
            // 
            this.weightedLegendNestedBarItem1.Id = 151;
            this.weightedLegendNestedBarItem1.Name = "weightedLegendNestedBarItem1";
            // 
            // galleryWeightedLegendPositionItem1
            // 
            this.galleryWeightedLegendPositionItem1.AllowDrawArrow = true;
            // 
            // 
            // 
            this.galleryWeightedLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup34.Caption = "Position";
            this.galleryWeightedLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup34});
            this.galleryWeightedLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryWeightedLegendPositionItem1.Gallery.RowCount = 2;
            this.galleryWeightedLegendPositionItem1.Id = 152;
            this.galleryWeightedLegendPositionItem1.Name = "galleryWeightedLegendPositionItem1";
            // 
            // pieMapIsWeightedBarItem1
            // 
            this.pieMapIsWeightedBarItem1.Id = 153;
            this.pieMapIsWeightedBarItem1.Name = "pieMapIsWeightedBarItem1";
            // 
            // quickAccessUndoBarItem1
            // 
            this.quickAccessUndoBarItem1.Id = 154;
            this.quickAccessUndoBarItem1.Name = "quickAccessUndoBarItem1";
            // 
            // quickAccessRedoBarItem1
            // 
            this.quickAccessRedoBarItem1.Id = 155;
            this.quickAccessRedoBarItem1.Name = "quickAccessRedoBarItem1";
            // 
            // barButtonSave
            // 
            this.barButtonSave.Caption = "Save";
            this.barButtonSave.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_16;
            this.barButtonSave.Id = 156;
            this.barButtonSave.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_32;
            this.barButtonSave.Name = "barButtonSave";
            // 
            // pivotToolsRibbonPageCategory1
            // 
            this.pivotToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.pivotToolsRibbonPageCategory1.Name = "pivotToolsRibbonPageCategory1";
            this.pivotToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage1,
            this.dashboardItemDesignRibbonPage9});
            this.pivotToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardDesigner1
            // 
            this.dashboardDesigner1.CustomDBSchemaProvider = null;
            this.dashboardDesigner1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardDesigner1.Location = new System.Drawing.Point(0, 142);
            this.dashboardDesigner1.Margin = new System.Windows.Forms.Padding(4);
            this.dashboardDesigner1.MenuManager = this.ribbonControl1;
            this.dashboardDesigner1.Name = "dashboardDesigner1";
            this.dashboardDesigner1.PrintingOptions.DocumentContentOptions.FilterState = DevExpress.DashboardWin.DashboardPrintingFilterState.SeparatePage;
            this.dashboardDesigner1.PrintingOptions.FontInfo.GdiCharSet = ((byte)(0));
            this.dashboardDesigner1.PrintingOptions.FontInfo.Name = null;
            this.dashboardDesigner1.Size = new System.Drawing.Size(1008, 535);
            this.dashboardDesigner1.TabIndex = 1;
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup1,
            this.pivotLayoutRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            this.dataRibbonPage1.Visible = false;
            // 
            // filteringRibbonPageGroup1
            // 
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup1.Name = "filteringRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup1
            // 
            this.interactivitySettingsRibbonPageGroup1.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup1.Name = "interactivitySettingsRibbonPageGroup1";
            // 
            // pivotLayoutRibbonPageGroup1
            // 
            this.pivotLayoutRibbonPageGroup1.ItemLinks.Add(this.pivotInitialStateBarItem1);
            this.pivotLayoutRibbonPageGroup1.Name = "pivotLayoutRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage9
            // 
            this.dashboardItemDesignRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup9});
            this.dashboardItemDesignRibbonPage9.Name = "dashboardItemDesignRibbonPage9";
            this.dashboardItemDesignRibbonPage9.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup9
            // 
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup9.Name = "commonItemDesignRibbonPageGroup9";
            // 
            // gridToolsRibbonPageCategory1
            // 
            this.gridToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.gridToolsRibbonPageCategory1.Name = "gridToolsRibbonPageCategory1";
            this.gridToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage2,
            this.dashboardItemDesignRibbonPage1});
            this.gridToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage2
            // 
            this.dataRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup2,
            this.masterFilterRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup2});
            this.dataRibbonPage2.Name = "dataRibbonPage2";
            this.dataRibbonPage2.Visible = false;
            // 
            // filteringRibbonPageGroup2
            // 
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup2.Name = "filteringRibbonPageGroup2";
            // 
            // masterFilterRibbonPageGroup1
            // 
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup1.Name = "masterFilterRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup2
            // 
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup2.Name = "interactivitySettingsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage1
            // 
            this.dashboardItemDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup1,
            this.gridCellsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage1.Name = "dashboardItemDesignRibbonPage1";
            this.dashboardItemDesignRibbonPage1.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup1
            // 
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup1.Name = "commonItemDesignRibbonPageGroup1";
            // 
            // gridCellsRibbonPageGroup1
            // 
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridHorizontalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridVerticalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridMergeCellsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridBandedRowsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridColumnHeadersBarItem1);
            this.gridCellsRibbonPageGroup1.Name = "gridCellsRibbonPageGroup1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage3,
            this.dashboardItemDesignRibbonPage2});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage3
            // 
            this.dataRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup3,
            this.masterFilterRibbonPageGroup2,
            this.interactivitySettingsRibbonPageGroup3,
            this.targetDimensionsRibbonPageGroup1});
            this.dataRibbonPage3.Name = "dataRibbonPage3";
            this.dataRibbonPage3.Visible = false;
            // 
            // filteringRibbonPageGroup3
            // 
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup3.Name = "filteringRibbonPageGroup3";
            // 
            // masterFilterRibbonPageGroup2
            // 
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup2.Name = "masterFilterRibbonPageGroup2";
            // 
            // interactivitySettingsRibbonPageGroup3
            // 
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup3.Name = "interactivitySettingsRibbonPageGroup3";
            // 
            // targetDimensionsRibbonPageGroup1
            // 
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup1.Name = "targetDimensionsRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage2
            // 
            this.dashboardItemDesignRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup2,
            this.chartLayoutPageGroup1,
            this.chartLegendPositionPageGroup1,
            this.chartStylePageGroup1});
            this.dashboardItemDesignRibbonPage2.Name = "dashboardItemDesignRibbonPage2";
            this.dashboardItemDesignRibbonPage2.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup2
            // 
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup2.Name = "commonItemDesignRibbonPageGroup2";
            // 
            // chartLayoutPageGroup1
            // 
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartRotateBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartXAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartYAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.Name = "chartLayoutPageGroup1";
            // 
            // chartLegendPositionPageGroup1
            // 
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.chartShowLegendBarItem1);
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.galleryChartLegendPositionItem1);
            this.chartLegendPositionPageGroup1.Name = "chartLegendPositionPageGroup1";
            // 
            // chartStylePageGroup1
            // 
            this.chartStylePageGroup1.ItemLinks.Add(this.galleryChartSeriesTypeItem1);
            this.chartStylePageGroup1.Name = "chartStylePageGroup1";
            // 
            // piesToolsRibbonPageCategory1
            // 
            this.piesToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.piesToolsRibbonPageCategory1.Name = "piesToolsRibbonPageCategory1";
            this.piesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage4,
            this.dashboardItemDesignRibbonPage3});
            this.piesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage4
            // 
            this.dataRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup4,
            this.masterFilterRibbonPageGroup3,
            this.interactivitySettingsRibbonPageGroup4,
            this.targetDimensionsRibbonPageGroup2});
            this.dataRibbonPage4.Name = "dataRibbonPage4";
            this.dataRibbonPage4.Visible = false;
            // 
            // filteringRibbonPageGroup4
            // 
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup4.Name = "filteringRibbonPageGroup4";
            // 
            // masterFilterRibbonPageGroup3
            // 
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup3.Name = "masterFilterRibbonPageGroup3";
            // 
            // interactivitySettingsRibbonPageGroup4
            // 
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup4.Name = "interactivitySettingsRibbonPageGroup4";
            // 
            // targetDimensionsRibbonPageGroup2
            // 
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup2.Name = "targetDimensionsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage3
            // 
            this.dashboardItemDesignRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup3,
            this.contentArrangementRibbonPageGroup1,
            this.pieLabelsRibbonPageGroup1,
            this.pieStyleRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage3.Name = "dashboardItemDesignRibbonPage3";
            this.dashboardItemDesignRibbonPage3.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup3
            // 
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup3.Name = "commonItemDesignRibbonPageGroup3";
            // 
            // contentArrangementRibbonPageGroup1
            // 
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup1.Name = "contentArrangementRibbonPageGroup1";
            // 
            // pieLabelsRibbonPageGroup1
            // 
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieLabelsDataLabelsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieTooltipsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieShowCaptionsBarItem1);
            this.pieLabelsRibbonPageGroup1.Name = "pieLabelsRibbonPageGroup1";
            // 
            // pieStyleRibbonPageGroup1
            // 
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStylePieBarItem1);
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStyleDonutBarItem1);
            this.pieStyleRibbonPageGroup1.Name = "pieStyleRibbonPageGroup1";
            // 
            // gaugesToolsRibbonPageCategory1
            // 
            this.gaugesToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.gaugesToolsRibbonPageCategory1.Name = "gaugesToolsRibbonPageCategory1";
            this.gaugesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage5,
            this.dashboardItemDesignRibbonPage4});
            this.gaugesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage5
            // 
            this.dataRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup5,
            this.masterFilterRibbonPageGroup4,
            this.interactivitySettingsRibbonPageGroup5});
            this.dataRibbonPage5.Name = "dataRibbonPage5";
            this.dataRibbonPage5.Visible = false;
            // 
            // filteringRibbonPageGroup5
            // 
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup5.Name = "filteringRibbonPageGroup5";
            // 
            // masterFilterRibbonPageGroup4
            // 
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup4.Name = "masterFilterRibbonPageGroup4";
            // 
            // interactivitySettingsRibbonPageGroup5
            // 
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup5.Name = "interactivitySettingsRibbonPageGroup5";
            // 
            // dashboardItemDesignRibbonPage4
            // 
            this.dashboardItemDesignRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup4,
            this.contentArrangementRibbonPageGroup2,
            this.gaugeStyleRibbonPageGroup1,
            this.gaugesLabelsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage4.Name = "dashboardItemDesignRibbonPage4";
            this.dashboardItemDesignRibbonPage4.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup4
            // 
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup4.Name = "commonItemDesignRibbonPageGroup4";
            // 
            // contentArrangementRibbonPageGroup2
            // 
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup2.Name = "contentArrangementRibbonPageGroup2";
            // 
            // gaugeStyleRibbonPageGroup1
            // 
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleFullCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleHalfCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.gaugeStyleRibbonPageGroup1.Name = "gaugeStyleRibbonPageGroup1";
            // 
            // gaugesLabelsRibbonPageGroup1
            // 
            this.gaugesLabelsRibbonPageGroup1.ItemLinks.Add(this.gaugeShowCaptionsBarItem1);
            this.gaugesLabelsRibbonPageGroup1.Name = "gaugesLabelsRibbonPageGroup1";
            // 
            // cardsToolsRibbonPageCategory1
            // 
            this.cardsToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.cardsToolsRibbonPageCategory1.Name = "cardsToolsRibbonPageCategory1";
            this.cardsToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage6,
            this.dashboardItemDesignRibbonPage5});
            this.cardsToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage6
            // 
            this.dataRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup6,
            this.masterFilterRibbonPageGroup5,
            this.interactivitySettingsRibbonPageGroup6});
            this.dataRibbonPage6.Name = "dataRibbonPage6";
            this.dataRibbonPage6.Visible = false;
            // 
            // filteringRibbonPageGroup6
            // 
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup6.Name = "filteringRibbonPageGroup6";
            // 
            // masterFilterRibbonPageGroup5
            // 
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup5.Name = "masterFilterRibbonPageGroup5";
            // 
            // interactivitySettingsRibbonPageGroup6
            // 
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup6.Name = "interactivitySettingsRibbonPageGroup6";
            // 
            // dashboardItemDesignRibbonPage5
            // 
            this.dashboardItemDesignRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup5,
            this.contentArrangementRibbonPageGroup3});
            this.dashboardItemDesignRibbonPage5.Name = "dashboardItemDesignRibbonPage5";
            this.dashboardItemDesignRibbonPage5.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup5
            // 
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup5.Name = "commonItemDesignRibbonPageGroup5";
            // 
            // contentArrangementRibbonPageGroup3
            // 
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup3.Name = "contentArrangementRibbonPageGroup3";
            // 
            // rangeFilterToolsRibbonPageCategory1
            // 
            this.rangeFilterToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.rangeFilterToolsRibbonPageCategory1.Name = "rangeFilterToolsRibbonPageCategory1";
            this.rangeFilterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage7,
            this.dashboardItemDesignRibbonPage8});
            this.rangeFilterToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage7
            // 
            this.dataRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup7});
            this.dataRibbonPage7.Name = "dataRibbonPage7";
            this.dataRibbonPage7.Visible = false;
            // 
            // filteringRibbonPageGroup7
            // 
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup7.Name = "filteringRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup7
            // 
            this.interactivitySettingsRibbonPageGroup7.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup7.Name = "interactivitySettingsRibbonPageGroup7";
            // 
            // dashboardItemDesignRibbonPage8
            // 
            this.dashboardItemDesignRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup8,
            this.rangeFilterSeriesTypeRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage8.Name = "dashboardItemDesignRibbonPage8";
            this.dashboardItemDesignRibbonPage8.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup8
            // 
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup8.Name = "commonItemDesignRibbonPageGroup8";
            // 
            // rangeFilterSeriesTypeRibbonPageGroup1
            // 
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.Name = "rangeFilterSeriesTypeRibbonPageGroup1";
            // 
            // choroplethMapToolsRibbonPageCategory1
            // 
            this.choroplethMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.choroplethMapToolsRibbonPageCategory1.Name = "choroplethMapToolsRibbonPageCategory1";
            this.choroplethMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage8,
            this.dashboardItemDesignRibbonPage10});
            this.choroplethMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage8
            // 
            this.dataRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup8,
            this.masterFilterRibbonPageGroup6,
            this.interactivitySettingsRibbonPageGroup8});
            this.dataRibbonPage8.Name = "dataRibbonPage8";
            this.dataRibbonPage8.Visible = false;
            // 
            // filteringRibbonPageGroup8
            // 
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup8.Name = "filteringRibbonPageGroup8";
            // 
            // masterFilterRibbonPageGroup6
            // 
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.Name = "masterFilterRibbonPageGroup6";
            // 
            // interactivitySettingsRibbonPageGroup8
            // 
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup8.Name = "interactivitySettingsRibbonPageGroup8";
            // 
            // dashboardItemDesignRibbonPage10
            // 
            this.dashboardItemDesignRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup10,
            this.mapShapefileRibbonPageGroup1,
            this.mapNavigationPageGroup1,
            this.mapLegendPositionPageGroup1});
            this.dashboardItemDesignRibbonPage10.Name = "dashboardItemDesignRibbonPage10";
            this.dashboardItemDesignRibbonPage10.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup10
            // 
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup10.Name = "commonItemDesignRibbonPageGroup10";
            // 
            // mapShapefileRibbonPageGroup1
            // 
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup1.Name = "mapShapefileRibbonPageGroup1";
            // 
            // mapNavigationPageGroup1
            // 
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup1.Name = "mapNavigationPageGroup1";
            // 
            // mapLegendPositionPageGroup1
            // 
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup1.Name = "mapLegendPositionPageGroup1";
            // 
            // geoPointMapToolsRibbonPageCategory1
            // 
            this.geoPointMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.geoPointMapToolsRibbonPageCategory1.Name = "geoPointMapToolsRibbonPageCategory1";
            this.geoPointMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage9,
            this.dashboardItemDesignRibbonPage11});
            this.geoPointMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage9
            // 
            this.dataRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup9,
            this.masterFilterRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup9,
            this.geoPointMapClusterizationRibbonPageGroup1});
            this.dataRibbonPage9.Name = "dataRibbonPage9";
            this.dataRibbonPage9.Visible = false;
            // 
            // filteringRibbonPageGroup9
            // 
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup9.Name = "filteringRibbonPageGroup9";
            // 
            // masterFilterRibbonPageGroup7
            // 
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.Name = "masterFilterRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup9
            // 
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup9.Name = "interactivitySettingsRibbonPageGroup9";
            // 
            // geoPointMapClusterizationRibbonPageGroup1
            // 
            this.geoPointMapClusterizationRibbonPageGroup1.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup1.Name = "geoPointMapClusterizationRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage11
            // 
            this.dashboardItemDesignRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup11,
            this.mapShapefileRibbonPageGroup2,
            this.mapNavigationPageGroup2});
            this.dashboardItemDesignRibbonPage11.Name = "dashboardItemDesignRibbonPage11";
            this.dashboardItemDesignRibbonPage11.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup11
            // 
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup11.Name = "commonItemDesignRibbonPageGroup11";
            // 
            // mapShapefileRibbonPageGroup2
            // 
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup2.Name = "mapShapefileRibbonPageGroup2";
            // 
            // mapNavigationPageGroup2
            // 
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup2.Name = "mapNavigationPageGroup2";
            // 
            // bubbleMapToolsRibbonPageCategory1
            // 
            this.bubbleMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.bubbleMapToolsRibbonPageCategory1.Name = "bubbleMapToolsRibbonPageCategory1";
            this.bubbleMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage10,
            this.dashboardItemDesignRibbonPage12});
            this.bubbleMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage10
            // 
            this.dataRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup10,
            this.masterFilterRibbonPageGroup8,
            this.interactivitySettingsRibbonPageGroup10,
            this.geoPointMapClusterizationRibbonPageGroup2});
            this.dataRibbonPage10.Name = "dataRibbonPage10";
            this.dataRibbonPage10.Visible = false;
            // 
            // filteringRibbonPageGroup10
            // 
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup10.Name = "filteringRibbonPageGroup10";
            // 
            // masterFilterRibbonPageGroup8
            // 
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.Name = "masterFilterRibbonPageGroup8";
            // 
            // interactivitySettingsRibbonPageGroup10
            // 
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup10.Name = "interactivitySettingsRibbonPageGroup10";
            // 
            // geoPointMapClusterizationRibbonPageGroup2
            // 
            this.geoPointMapClusterizationRibbonPageGroup2.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup2.Name = "geoPointMapClusterizationRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage12
            // 
            this.dashboardItemDesignRibbonPage12.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup12,
            this.mapShapefileRibbonPageGroup3,
            this.mapNavigationPageGroup3,
            this.mapLegendPositionPageGroup2,
            this.weightedLegendPageGroup1});
            this.dashboardItemDesignRibbonPage12.Name = "dashboardItemDesignRibbonPage12";
            this.dashboardItemDesignRibbonPage12.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup12
            // 
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup12.Name = "commonItemDesignRibbonPageGroup12";
            // 
            // mapShapefileRibbonPageGroup3
            // 
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup3.Name = "mapShapefileRibbonPageGroup3";
            // 
            // mapNavigationPageGroup3
            // 
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup3.Name = "mapNavigationPageGroup3";
            // 
            // mapLegendPositionPageGroup2
            // 
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup2.Name = "mapLegendPositionPageGroup2";
            // 
            // weightedLegendPageGroup1
            // 
            this.weightedLegendPageGroup1.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup1.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup1.Name = "weightedLegendPageGroup1";
            // 
            // pieMapToolsRibbonPageCategory1
            // 
            this.pieMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.pieMapToolsRibbonPageCategory1.Name = "pieMapToolsRibbonPageCategory1";
            this.pieMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage11,
            this.dashboardItemDesignRibbonPage13});
            this.pieMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage11
            // 
            this.dataRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup11,
            this.masterFilterRibbonPageGroup9,
            this.interactivitySettingsRibbonPageGroup11,
            this.geoPointMapClusterizationRibbonPageGroup3});
            this.dataRibbonPage11.Name = "dataRibbonPage11";
            this.dataRibbonPage11.Visible = false;
            // 
            // filteringRibbonPageGroup11
            // 
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup11.Name = "filteringRibbonPageGroup11";
            // 
            // masterFilterRibbonPageGroup9
            // 
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.Name = "masterFilterRibbonPageGroup9";
            // 
            // interactivitySettingsRibbonPageGroup11
            // 
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup11.Name = "interactivitySettingsRibbonPageGroup11";
            // 
            // geoPointMapClusterizationRibbonPageGroup3
            // 
            this.geoPointMapClusterizationRibbonPageGroup3.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup3.Name = "geoPointMapClusterizationRibbonPageGroup3";
            // 
            // dashboardItemDesignRibbonPage13
            // 
            this.dashboardItemDesignRibbonPage13.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup13,
            this.mapShapefileRibbonPageGroup4,
            this.mapNavigationPageGroup4,
            this.mapLegendPositionPageGroup3,
            this.weightedLegendPageGroup2,
            this.pieMapOptionsPageGroup1});
            this.dashboardItemDesignRibbonPage13.Name = "dashboardItemDesignRibbonPage13";
            this.dashboardItemDesignRibbonPage13.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup13
            // 
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup13.Name = "commonItemDesignRibbonPageGroup13";
            // 
            // mapShapefileRibbonPageGroup4
            // 
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup4.Name = "mapShapefileRibbonPageGroup4";
            // 
            // mapNavigationPageGroup4
            // 
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup4.Name = "mapNavigationPageGroup4";
            // 
            // mapLegendPositionPageGroup3
            // 
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup3.Name = "mapLegendPositionPageGroup3";
            // 
            // weightedLegendPageGroup2
            // 
            this.weightedLegendPageGroup2.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup2.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup2.Name = "weightedLegendPageGroup2";
            // 
            // pieMapOptionsPageGroup1
            // 
            this.pieMapOptionsPageGroup1.ItemLinks.Add(this.pieMapIsWeightedBarItem1);
            this.pieMapOptionsPageGroup1.Name = "pieMapOptionsPageGroup1";
            // 
            // imageToolsRibbonPageCategory1
            // 
            this.imageToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.imageToolsRibbonPageCategory1.Name = "imageToolsRibbonPageCategory1";
            this.imageToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage6});
            this.imageToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage6
            // 
            this.dashboardItemDesignRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup6,
            this.imageOpenRibbonPageGroup1,
            this.imageSizeModeRibbonPageGroup1,
            this.imageAlignmentRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage6.Name = "dashboardItemDesignRibbonPage6";
            this.dashboardItemDesignRibbonPage6.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup6
            // 
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup6.Name = "commonItemDesignRibbonPageGroup6";
            // 
            // imageOpenRibbonPageGroup1
            // 
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageLoadBarItem1);
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageImportBarItem1);
            this.imageOpenRibbonPageGroup1.Name = "imageOpenRibbonPageGroup1";
            // 
            // imageSizeModeRibbonPageGroup1
            // 
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeClipBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeStretchBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeSqueezeBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeZoomBarItem1);
            this.imageSizeModeRibbonPageGroup1.Name = "imageSizeModeRibbonPageGroup1";
            // 
            // imageAlignmentRibbonPageGroup1
            // 
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.Name = "imageAlignmentRibbonPageGroup1";
            // 
            // textBoxToolsRibbonPageCategory1
            // 
            this.textBoxToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.textBoxToolsRibbonPageCategory1.Name = "textBoxToolsRibbonPageCategory1";
            this.textBoxToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage7});
            this.textBoxToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage7
            // 
            this.dashboardItemDesignRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup7,
            this.textBoxSettingsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage7.Name = "dashboardItemDesignRibbonPage7";
            this.dashboardItemDesignRibbonPage7.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup7
            // 
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup7.Name = "commonItemDesignRibbonPageGroup7";
            // 
            // textBoxSettingsRibbonPageGroup1
            // 
            this.textBoxSettingsRibbonPageGroup1.ItemLinks.Add(this.textBoxEditTextBarItem1);
            this.textBoxSettingsRibbonPageGroup1.Name = "textBoxSettingsRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.fileRibbonPageGroup1,
            this.historyRibbonPageGroup1,
            this.insertRibbonPageGroup1,
            this.itemOperationRibbonPageGroup1,
            this.dashboardDesignRibbonPageGroup1,
            this.quickAccessHistoryRibbonPageGroup1});
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            this.homeRibbonPage1.Text = "HOME";
            // 
            // fileRibbonPageGroup1
            // 
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileNewBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileOpenBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.barButtonSave);
            this.fileRibbonPageGroup1.Name = "fileRibbonPageGroup1";
            // 
            // historyRibbonPageGroup1
            // 
            this.historyRibbonPageGroup1.ItemLinks.Add(this.undoBarItem1);
            this.historyRibbonPageGroup1.ItemLinks.Add(this.redoBarItem1);
            this.historyRibbonPageGroup1.Name = "historyRibbonPageGroup1";
            // 
            // insertRibbonPageGroup1
            // 
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPivotBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGridBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChartBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPiesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGaugesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertCardsBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChoroplethMapBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGeoPointMapBarSubItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertRangeFilterBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertImageBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxBarItem1);
            this.insertRibbonPageGroup1.Name = "insertRibbonPageGroup1";
            // 
            // itemOperationRibbonPageGroup1
            // 
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.duplicateItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.deleteItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.convertDashboardItemTypeBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.removeDataItemsBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.transposeItemBarItem1);
            this.itemOperationRibbonPageGroup1.Name = "itemOperationRibbonPageGroup1";
            // 
            // dashboardDesignRibbonPageGroup1
            // 
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.dashboardTitleBarItem1);
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.setCurrencyCultureBarItem1);
            this.dashboardDesignRibbonPageGroup1.Name = "dashboardDesignRibbonPageGroup1";
            // 
            // quickAccessHistoryRibbonPageGroup1
            // 
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.Name = "quickAccessHistoryRibbonPageGroup1";
            this.quickAccessHistoryRibbonPageGroup1.Visible = false;
            // 
            // dataSourceRibbonPage1
            // 
            this.dataSourceRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.dataSourceRibbonPageGroup1,
            this.dataSourceElementsRibbonPageGroup1,
            this.dataSourceFilteringRibbonPageGroup1});
            this.dataSourceRibbonPage1.Name = "dataSourceRibbonPage1";
            this.dataSourceRibbonPage1.Visible = false;
            // 
            // dataSourceRibbonPageGroup1
            // 
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.newDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.renameDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.deleteDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.serverModeBarItem1);
            this.dataSourceRibbonPageGroup1.Name = "dataSourceRibbonPageGroup1";
            // 
            // dataSourceElementsRibbonPageGroup1
            // 
            this.dataSourceElementsRibbonPageGroup1.ItemLinks.Add(this.addCalculatedFieldBarItem1);
            this.dataSourceElementsRibbonPageGroup1.ItemLinks.Add(this.dashboardParametersBarItem1);
            this.dataSourceElementsRibbonPageGroup1.Name = "dataSourceElementsRibbonPageGroup1";
            // 
            // dataSourceFilteringRibbonPageGroup1
            // 
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.editDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.clearDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.Name = "dataSourceFilteringRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.skinsRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            this.viewRibbonPage1.Visible = false;
            // 
            // skinsRibbonPageGroup1
            // 
            this.skinsRibbonPageGroup1.ItemLinks.Add(this.dashboardSkinsBarItem1);
            this.skinsRibbonPageGroup1.Name = "skinsRibbonPageGroup1";
            // 
            // dashboardBarController1
            // 
            this.dashboardBarController1.BarItems.Add(this.fileNewBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileOpenBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileSaveBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileSaveAsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.undoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.redoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.newDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.renameDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.serverModeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.addCalculatedFieldBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardParametersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editDataSourceFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.clearDataSourceFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPivotBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGridBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertChartBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPiesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGaugesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertCardsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertChoroplethMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGeoPointMapBarSubItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGeoPointMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertBubbleMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPieMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertRangeFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertImageBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertTextBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.duplicateItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertDashboardItemTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToPivotBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToGridBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToChartBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToPieBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToGaugeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToCardBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToChoroplethMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertGeoPointMapBaseBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToGeoPointMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToBubbleMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToPieMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToRangeFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.removeDataItemsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.transposeItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardTitleBarItem1);
            this.dashboardBarController1.BarItems.Add(this.setCurrencyCultureBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardSkinsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.clearFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.masterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.multipleValuesMasterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownBarItem1);
            this.dashboardBarController1.BarItems.Add(this.ignoreMasterFiltersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.crossDataSourceFilteringBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.geoPointMapClusterizationBarItem1);
            this.dashboardBarController1.BarItems.Add(this.showItemCaptionBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editItemNamesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentAutoArrangeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInColumnsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangementCountBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridHorizontalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridVerticalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridMergeCellsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridBandedRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridColumnHeadersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartRotateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartXAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartYAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartShowLegendBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartSeriesTypeItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTooltipsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStylePieBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStyleDonutBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieShowCaptionsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleFullCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleHalfCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeShowCaptionsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageLoadBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageImportBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeClipBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeStretchBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeSqueezeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeZoomBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.textBoxEditTextBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotInitialStateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotAutoExpandColumnBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotAutoExpandRowBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapLoadBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapImportBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapDefaultShapefileBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapWorldCountriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapEuropeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapAsiaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapNorthAmericaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapSouthAmericaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapAfricaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapUSABarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapCanadaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapLockNavigationBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapFullExtentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapShowLegendBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryMapLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.changeWeightedLegendTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.weightedLegendNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.weightedLegendLinearBarItem1);
            this.dashboardBarController1.BarItems.Add(this.weightedLegendNestedBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryWeightedLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.pieMapIsWeightedBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessUndoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessRedoBarItem1);
            this.dashboardBarController1.Control = this.dashboardDesigner1;
            // 
            // DashboardsEditView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dashboardDesigner1);
            this.Controls.Add(this.ribbonControl1);
            this.Margin = new System.Windows.Forms.Padding(2);
            this.Name = "DashboardsEditView";
            this.Size = new System.Drawing.Size(1008, 677);
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 8
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HelpControl));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.backstageViewLabel1 = new DevExpress.ProductsDemo.Win.BackstageViewLabel();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.splitContainer1, "splitContainer1");
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.galleryControl1);
            this.splitContainer1.Panel1.Controls.Add(this.backstageViewLabel1);
            resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.labelControl4);
            // 
            // galleryControl1
            // 
            this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            resources.ApplyResources(this.galleryControl1, "galleryControl1");
            // 
            // 
            // 
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.AutoFitColumns = false;
            this.galleryControl1.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
            this.galleryControl1.Gallery.BackColor = System.Drawing.Color.Transparent;
            this.galleryControl1.Gallery.ColumnCount = 1;
            this.galleryControl1.Gallery.DistanceItemImageToText = 20;
            this.galleryControl1.Gallery.DrawImageBackground = false;
            this.galleryControl1.Gallery.FixedImageSize = false;
            resources.ApplyResources(galleryItemGroup1, "galleryItemGroup1");
            resources.ApplyResources(galleryItem1, "galleryItem1");
            galleryItem1.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Online_Help;
            galleryItem1.Tag = "LinkHelp";
            resources.ApplyResources(galleryItem2, "galleryItem2");
            galleryItem2.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Code_Central;
            galleryItem2.Tag = "LinkGetStarted";
            resources.ApplyResources(galleryItem3, "galleryItem3");
            galleryItem3.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Contact_Us;
            galleryItem3.Tag = "LinkGetSupport";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3});
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.galleryControl1.Gallery.ShowGroupCaption = false;
            this.galleryControl1.Gallery.ShowItemText = true;
            this.galleryControl1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
            this.galleryControl1.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.galleryControl1.Name = "galleryControl1";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
            // 
            // backstageViewLabel1
            // 
            this.backstageViewLabel1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("backstageViewLabel1.Appearance.Font")));
            resources.ApplyResources(this.backstageViewLabel1, "backstageViewLabel1");
            this.backstageViewLabel1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.backstageViewLabel1.LineVisible = true;
            this.backstageViewLabel1.Name = "backstageViewLabel1";
            this.backstageViewLabel1.ShowLineShadow = false;
            // 
            // labelControl4
            // 
            resources.ApplyResources(this.labelControl4, "labelControl4");
            this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
            this.labelControl4.LineVisible = true;
            this.labelControl4.Name = "labelControl4";
            // 
            // HelpControl
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Name = "HelpControl";
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel1.PerformLayout();
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Esempio n. 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(Menu));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup4 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.imageComboBoxEdit1     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.imageCollection2       = new DevExpress.Utils.ImageCollection(this.components);
     this.popupContainerEdit1    = new DevExpress.XtraEditors.PopupContainerEdit();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.textEdit1            = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton1        = new DevExpress.XtraEditors.SimpleButton();
     this.popupGalleryEdit1    = new DevExpress.XtraEditors.PopupGalleryEdit();
     this.buttonEdit1          = new DevExpress.XtraEditors.ButtonEdit();
     this.xtraOpenFileDialog1  = new DevExpress.XtraEditors.XtraOpenFileDialog(this.components);
     this.dateEdit1            = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit2            = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit3            = new DevExpress.XtraEditors.DateEdit();
     this.simpleButton2        = new DevExpress.XtraEditors.SimpleButton();
     this.stepProgressBar1     = new DevExpress.XtraEditors.StepProgressBar();
     this.stepProgressBarItem1 = new DevExpress.XtraEditors.StepProgressBarItem();
     this.stepProgressBarItem2 = new DevExpress.XtraEditors.StepProgressBarItem();
     this.stepProgressBarItem3 = new DevExpress.XtraEditors.StepProgressBarItem();
     this.stepProgressBarItem4 = new DevExpress.XtraEditors.StepProgressBarItem();
     this.stepProgressBarItem5 = new DevExpress.XtraEditors.StepProgressBarItem();
     this.radioGroup1          = new DevExpress.XtraEditors.RadioGroup();
     this.simpleButton3        = new DevExpress.XtraEditors.SimpleButton();
     this.searchControl1       = new DevExpress.XtraEditors.SearchControl();
     this.panelControl1        = new DevExpress.XtraEditors.PanelControl();
     this.listBoxControl1      = new DevExpress.XtraEditors.ListBoxControl();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupGalleryEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stepProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     this.SuspendLayout();
     //
     // imageComboBoxEdit1
     //
     this.imageComboBoxEdit1.Location = new System.Drawing.Point(12, 12);
     this.imageComboBoxEdit1.Name     = "imageComboBoxEdit1";
     this.imageComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.imageComboBoxEdit1.Size     = new System.Drawing.Size(167, 20);
     this.imageComboBoxEdit1.TabIndex = 0;
     //
     // imageCollection2
     //
     this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
     this.imageCollection2.Images.SetKeyName(0, "check_50.png");
     this.imageCollection2.Images.SetKeyName(1, "checknote.png");
     this.imageCollection2.Images.SetKeyName(2, "chk_stock_70.png");
     this.imageCollection2.Images.SetKeyName(3, "clear_-50.png");
     this.imageCollection2.Images.SetKeyName(4, "copy-30x.png");
     this.imageCollection2.Images.SetKeyName(5, "create_35.png");
     this.imageCollection2.Images.SetKeyName(6, "createFB.png");
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Location = new System.Drawing.Point(12, 39);
     this.popupContainerEdit1.Name     = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.popupContainerEdit1.Properties.PopupControl         = this.popupContainerControl1;
     this.popupContainerEdit1.Properties.ShowPopupCloseButton = false;
     this.popupContainerEdit1.Size              = new System.Drawing.Size(167, 20);
     this.popupContainerEdit1.TabIndex          = 1;
     this.popupContainerEdit1.EditValueChanged += new System.EventHandler(this.popupContainerEdit1_EditValueChanged);
     //
     // popupContainerControl1
     //
     this.popupContainerControl1.Controls.Add(this.textEdit1);
     this.popupContainerControl1.Controls.Add(this.simpleButton1);
     this.popupContainerControl1.Location = new System.Drawing.Point(201, 12);
     this.popupContainerControl1.Name     = "popupContainerControl1";
     this.popupContainerControl1.Size     = new System.Drawing.Size(146, 57);
     this.popupContainerControl1.TabIndex = 4;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(13, 7);
     this.textEdit1.Name     = "textEdit1";
     this.textEdit1.Size     = new System.Drawing.Size(125, 20);
     this.textEdit1.TabIndex = 1;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(13, 28);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(52, 23);
     this.simpleButton1.TabIndex = 0;
     this.simpleButton1.Text     = "SET";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // popupGalleryEdit1
     //
     this.popupGalleryEdit1.EditValue = "";
     this.popupGalleryEdit1.Location  = new System.Drawing.Point(12, 65);
     this.popupGalleryEdit1.Name      = "popupGalleryEdit1";
     this.popupGalleryEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     //
     // popupGalleryEditGallery1
     //
     galleryItemGroup3.Caption              = "Group1";
     galleryItem5.Caption                   = "ABC";
     galleryItem5.ImageOptions.Image        = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     galleryItem5.ImageOptions.SvgImageSize = new System.Drawing.Size(32, 32);
     galleryItem5.Value   = "1";
     galleryItem6.Caption = "DEF";
     galleryItem6.ImageOptions.ImageUri.Uri = "AlignVerticalCenter";
     galleryItem6.Value = "2";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem5,
         galleryItem6
     });
     galleryItemGroup4.Caption = "Group2";
     galleryItem7.Caption      = "GHI";
     galleryItem7.ImageOptions.ImageUri.Uri = "Backward";
     galleryItem7.Value   = "3";
     galleryItem8.Caption = "JKL";
     galleryItem8.ImageOptions.ImageUri.Uri = "business%20objects/bo_position";
     galleryItem8.Value = "4";
     galleryItemGroup4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem7,
         galleryItem8
     });
     this.popupGalleryEdit1.Properties.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup3,
         galleryItemGroup4
     });
     this.popupGalleryEdit1.Properties.ShowPopupCloseButton = false;
     this.popupGalleryEdit1.Size     = new System.Drawing.Size(167, 20);
     this.popupGalleryEdit1.TabIndex = 2;
     //
     // buttonEdit1
     //
     this.buttonEdit1.Location = new System.Drawing.Point(12, 91);
     this.buttonEdit1.Name     = "buttonEdit1";
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete),
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.buttonEdit1.Size           = new System.Drawing.Size(167, 20);
     this.buttonEdit1.TabIndex       = 5;
     this.buttonEdit1.ButtonPressed += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.buttonEdit1_ButtonPressed);
     //
     // xtraOpenFileDialog1
     //
     this.xtraOpenFileDialog1.FileName = "xtraOpenFileDialog1";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location  = new System.Drawing.Point(12, 118);
     this.dateEdit1.Name      = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit1.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit1.Properties.Mask.EditMask = "MMMM yyyy";
     this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.dateEdit1.Properties.VistaCalendarInitialViewStyle = DevExpress.XtraEditors.VistaCalendarInitialViewStyle.YearsGroupView;
     this.dateEdit1.Properties.VistaCalendarViewStyle        = DevExpress.XtraEditors.VistaCalendarViewStyle.YearsGroupView;
     this.dateEdit1.Size     = new System.Drawing.Size(97, 20);
     this.dateEdit1.TabIndex = 10;
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = null;
     this.dateEdit2.Location  = new System.Drawing.Point(115, 118);
     this.dateEdit2.Name      = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit2.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit2.Size     = new System.Drawing.Size(115, 20);
     this.dateEdit2.TabIndex = 15;
     //
     // dateEdit3
     //
     this.dateEdit3.EditValue = null;
     this.dateEdit3.Location  = new System.Drawing.Point(236, 118);
     this.dateEdit3.Name      = "dateEdit3";
     this.dateEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit3.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit3.Size     = new System.Drawing.Size(61, 20);
     this.dateEdit3.TabIndex = 20;
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(303, 116);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 26;
     this.simpleButton2.Text     = "simpleButton2";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // stepProgressBar1
     //
     this.stepProgressBar1.Appearance.BackColor            = System.Drawing.Color.White;
     this.stepProgressBar1.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.stepProgressBar1.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.stepProgressBar1.Appearance.Options.UseBackColor = true;
     this.stepProgressBar1.Appearance.Options.UseFont      = true;
     this.stepProgressBar1.Appearance.Options.UseForeColor = true;
     this.stepProgressBar1.Appearances.CommonActiveColor   = System.Drawing.Color.DodgerBlue;
     this.stepProgressBar1.ItemOptions.Indicator.ActiveStateImageOptions.SvgImage   = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("stepProgressBar1.ItemOptions.Indicator.ActiveStateImageOptions.SvgImage")));
     this.stepProgressBar1.ItemOptions.Indicator.InactiveStateImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("stepProgressBar1.ItemOptions.Indicator.InactiveStateImageOptions.SvgImage")));
     this.stepProgressBar1.Items.Add(this.stepProgressBarItem1);
     this.stepProgressBar1.Items.Add(this.stepProgressBarItem2);
     this.stepProgressBar1.Items.Add(this.stepProgressBarItem3);
     this.stepProgressBar1.Items.Add(this.stepProgressBarItem4);
     this.stepProgressBar1.Items.Add(this.stepProgressBarItem5);
     this.stepProgressBar1.Location = new System.Drawing.Point(12, 145);
     this.stepProgressBar1.Name     = "stepProgressBar1";
     this.stepProgressBar1.Size     = new System.Drawing.Size(613, 142);
     this.stepProgressBar1.TabIndex = 27;
     //
     // stepProgressBarItem1
     //
     this.stepProgressBarItem1.ContentBlock1.ActiveStateImageOptions.Image        = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem1.ContentBlock1.ActiveStateImageOptions.Image")));
     this.stepProgressBarItem1.ContentBlock1.InactiveStateImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem1.ContentBlock1.InactiveStateImageOptions.Image")));
     this.stepProgressBarItem1.ContentBlock2.ActiveStateImageOptions.SvgImageSize = new System.Drawing.Size(1, 1);
     this.stepProgressBarItem1.ContentBlock2.Caption     = "GEN-BARCODE";
     this.stepProgressBarItem1.ContentBlock2.Description = "Not Genbarcode";
     this.stepProgressBarItem1.Name = "stepProgressBarItem1";
     this.stepProgressBarItem1.Options.Indicator.AutoFitImage = DevExpress.Utils.DefaultBoolean.False;
     this.stepProgressBarItem1.Options.Indicator.Width        = 25;
     //
     // stepProgressBarItem2
     //
     this.stepProgressBarItem2.ContentBlock1.ActiveStateImageOptions.Image   = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem2.ContentBlock1.ActiveStateImageOptions.Image")));
     this.stepProgressBarItem2.ContentBlock1.InactiveStateImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem2.ContentBlock1.InactiveStateImageOptions.Image")));
     this.stepProgressBarItem2.ContentBlock2.Caption     = "SEWING";
     this.stepProgressBarItem2.ContentBlock2.Description = "XXXX";
     this.stepProgressBarItem2.Name = "stepProgressBarItem2";
     this.stepProgressBarItem2.Options.Indicator.AutoFitImage = DevExpress.Utils.DefaultBoolean.False;
     this.stepProgressBarItem2.Options.Indicator.Width        = 25;
     //
     // stepProgressBarItem3
     //
     this.stepProgressBarItem3.ContentBlock1.ActiveStateImageOptions.Image   = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem3.ContentBlock1.ActiveStateImageOptions.Image")));
     this.stepProgressBarItem3.ContentBlock1.InactiveStateImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem3.ContentBlock1.InactiveStateImageOptions.Image")));
     this.stepProgressBarItem3.ContentBlock2.Caption = "PACKING";
     this.stepProgressBarItem3.Name = "stepProgressBarItem3";
     this.stepProgressBarItem3.Options.Indicator.AutoFitImage = DevExpress.Utils.DefaultBoolean.False;
     this.stepProgressBarItem3.Options.Indicator.Width        = 25;
     //
     // stepProgressBarItem4
     //
     this.stepProgressBarItem4.ContentBlock1.ActiveStateImageOptions.Image   = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem4.ContentBlock1.ActiveStateImageOptions.Image")));
     this.stepProgressBarItem4.ContentBlock1.InactiveStateImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem4.ContentBlock1.InactiveStateImageOptions.Image")));
     this.stepProgressBarItem4.ContentBlock2.Caption = "WAREHOUSE";
     this.stepProgressBarItem4.Name = "stepProgressBarItem4";
     this.stepProgressBarItem4.Options.Indicator.ActiveStateImageOptions.SvgImageSize = new System.Drawing.Size(50, 50);
     this.stepProgressBarItem4.Options.Indicator.AutoFitImage = DevExpress.Utils.DefaultBoolean.False;
     this.stepProgressBarItem4.Options.Indicator.InactiveStateImageOptions.SvgImageSize = new System.Drawing.Size(50, 50);
     this.stepProgressBarItem4.Options.Indicator.Width = 25;
     //
     // stepProgressBarItem5
     //
     this.stepProgressBarItem5.ContentBlock1.ActiveStateImageOptions.Image   = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem5.ContentBlock1.ActiveStateImageOptions.Image")));
     this.stepProgressBarItem5.ContentBlock1.InactiveStateImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("stepProgressBarItem5.ContentBlock1.InactiveStateImageOptions.Image")));
     this.stepProgressBarItem5.ContentBlock2.Caption = "LOADING";
     this.stepProgressBarItem5.Name = "stepProgressBarItem5";
     this.stepProgressBarItem5.Options.Indicator.AutoFitImage = DevExpress.Utils.DefaultBoolean.False;
     this.stepProgressBarItem5.Options.Indicator.Width        = 25;
     //
     // radioGroup1
     //
     this.radioGroup1.Location           = new System.Drawing.Point(373, 9);
     this.radioGroup1.Name               = "radioGroup1";
     this.radioGroup1.Properties.Columns = 2;
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("NS", "SOLID"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("S", "FRACTION"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("1P", "ASSORT"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("SP", "PACK SET")
     });
     this.radioGroup1.Size     = new System.Drawing.Size(159, 54);
     this.radioGroup1.TabIndex = 28;
     //
     // simpleButton3
     //
     this.simpleButton3.Location = new System.Drawing.Point(373, 63);
     this.simpleButton3.Name     = "simpleButton3";
     this.simpleButton3.Size     = new System.Drawing.Size(75, 23);
     this.simpleButton3.TabIndex = 29;
     this.simpleButton3.Text     = "Radio Select";
     this.simpleButton3.Click   += new System.EventHandler(this.simpleButton3_Click);
     //
     // searchControl1
     //
     this.searchControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.searchControl1.Location = new System.Drawing.Point(2, 2);
     this.searchControl1.Name     = "searchControl1";
     this.searchControl1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Repository.ClearButton(),
         new DevExpress.XtraEditors.Repository.SearchButton()
     });
     this.searchControl1.Size     = new System.Drawing.Size(122, 20);
     this.searchControl1.TabIndex = 31;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.listBoxControl1);
     this.panelControl1.Controls.Add(this.searchControl1);
     this.panelControl1.Location = new System.Drawing.Point(12, 303);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(126, 137);
     this.panelControl1.TabIndex = 32;
     //
     // listBoxControl1
     //
     this.listBoxControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.listBoxControl1.Location = new System.Drawing.Point(2, 22);
     this.listBoxControl1.Name     = "listBoxControl1";
     this.listBoxControl1.Size     = new System.Drawing.Size(122, 113);
     this.listBoxControl1.TabIndex = 32;
     //
     // Menu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(637, 447);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.radioGroup1);
     this.Controls.Add(this.stepProgressBar1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.dateEdit3);
     this.Controls.Add(this.dateEdit2);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.buttonEdit1);
     this.Controls.Add(this.popupContainerControl1);
     this.Controls.Add(this.popupGalleryEdit1);
     this.Controls.Add(this.popupContainerEdit1);
     this.Controls.Add(this.imageComboBoxEdit1);
     this.Name          = "Menu";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Menu";
     this.Load         += new System.EventHandler(this.Menu_Load);
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupGalleryEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stepProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(frmMainVB));
     this.repositoryItemColorEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemColorEdit();
     this.ribbon                    = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonGroup1           = new DevExpress.XtraBars.BarButtonGroup();
     this.ribbonGalleryBarItem1     = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.barSubItem1               = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem4            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem18           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem21           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem22           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem24           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem25           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem26           = new DevExpress.XtraBars.BarButtonItem();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItem8            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem15           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem20           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem23           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem27           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem28           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem29           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem30           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem31           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem32           = new DevExpress.XtraBars.BarButtonItem();
     this.skinDropDownButtonItem1   = new DevExpress.XtraBars.SkinDropDownButtonItem();
     this.skinRibbonGalleryBarItem2 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItem33           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem34           = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItem1              = new DevExpress.XtraBars.BarEditItem();
     this.barButtonItem35           = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1               = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup9          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup11         = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2               = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1          = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonStatusBar2          = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.barButtonItem19           = new DevExpress.XtraBars.BarButtonItem();
     this.navBarItem10              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem8               = new DevExpress.XtraNavBar.NavBarItem();
     this.dockManager1              = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1                = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container      = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControl1            = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup8              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem19              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup9              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem22              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem13              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem14              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem15              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem16              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem18              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem17              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup5              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem6               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup6              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem7               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem9               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem11              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem12              = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup1              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem1               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem2               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem3               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup3              = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem4               = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem5               = new DevExpress.XtraNavBar.NavBarItem();
     this.hideContainerLeft         = new DevExpress.XtraBars.Docking.AutoHideContainer();
     this.fr_main                   = new DevExpress.XtraTab.XtraTabControl();
     this.ribbonPageGroup4          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.backgroundWorker1         = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemColorEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fr_main)).BeginInit();
     this.SuspendLayout();
     //
     // repositoryItemColorEdit1
     //
     this.repositoryItemColorEdit1.AutoHeight = false;
     this.repositoryItemColorEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemColorEdit1.Name = "repositoryItemColorEdit1";
     //
     // ribbon
     //
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Font = new System.Drawing.Font("Arial", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.ribbon.SearchEditItem,
         this.barButtonItem1,
         this.barButtonItem2,
         this.barButtonItem3,
         this.barButtonItem5,
         this.barButtonItem6,
         this.barButtonItem7,
         this.barButtonItem10,
         this.barButtonItem11,
         this.barButtonItem12,
         this.barButtonItem13,
         this.barButtonItem14,
         this.barButtonGroup1,
         this.ribbonGalleryBarItem1,
         this.barSubItem1,
         this.barButtonItem4,
         this.barButtonItem18,
         this.barButtonItem17,
         this.barButtonItem21,
         this.barButtonItem22,
         this.barButtonItem24,
         this.barButtonItem25,
         this.barButtonItem26,
         this.skinRibbonGalleryBarItem1,
         this.barButtonItem8,
         this.barButtonItem9,
         this.barButtonItem15,
         this.barButtonItem16,
         this.barButtonItem20,
         this.barButtonItem23,
         this.barButtonItem27,
         this.barButtonItem28,
         this.barButtonItem29,
         this.barButtonItem30,
         this.barButtonItem31,
         this.barButtonItem32,
         this.skinDropDownButtonItem1,
         this.skinRibbonGalleryBarItem2,
         this.barButtonItem33,
         this.barButtonItem34,
         this.barEditItem1,
         this.barButtonItem35
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.Margin    = new System.Windows.Forms.Padding(6, 5, 6, 5);
     this.ribbon.MaxItemId = 59;
     this.ribbon.Name      = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage2
     });
     this.ribbon.Size      = new System.Drawing.Size(1616, 178);
     this.ribbon.StatusBar = this.ribbonStatusBar2;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Đăng xuất";
     this.barButtonItem1.Id      = 1;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 2;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "Đăng xuất";
     this.barButtonItem3.Id      = 3;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id      = 5;
     this.barButtonItem5.Name    = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "Tài khoản";
     this.barButtonItem6.Id      = 6;
     this.barButtonItem6.Name    = "barButtonItem6";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Nhập hàng";
     this.barButtonItem7.Id      = 7;
     this.barButtonItem7.Name    = "barButtonItem7";
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "barButtonItem10";
     this.barButtonItem10.Id      = 10;
     this.barButtonItem10.Name    = "barButtonItem10";
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "barButtonItem11";
     this.barButtonItem11.Id      = 11;
     this.barButtonItem11.Name    = "barButtonItem11";
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "barButtonItem12";
     this.barButtonItem12.Id      = 12;
     this.barButtonItem12.Name    = "barButtonItem12";
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "barButtonItem13";
     this.barButtonItem13.Id      = 13;
     this.barButtonItem13.Name    = "barButtonItem13";
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "barButtonItem14";
     this.barButtonItem14.Id      = 14;
     this.barButtonItem14.Name    = "barButtonItem14";
     //
     // barButtonGroup1
     //
     this.barButtonGroup1.Caption = "barButtonGroup1";
     this.barButtonGroup1.Id      = 19;
     this.barButtonGroup1.Name    = "barButtonGroup1";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     this.ribbonGalleryBarItem1.Gallery.AllowHoverImages      = true;
     this.ribbonGalleryBarItem1.Gallery.AllowMarqueeSelection = true;
     galleryItemGroup1.Caption = "Group7";
     galleryItem1.Caption      = "hồng";
     galleryItem2.Caption      = "Item11";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.ribbonGalleryBarItem1.Id   = 21;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "barSubItem1";
     this.barSubItem1.Id      = 22;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)
     });
     this.barSubItem1.Name = "barSubItem1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id      = 23;
     this.barButtonItem4.Name    = "barButtonItem4";
     //
     // barButtonItem18
     //
     this.barButtonItem18.Caption = "Xem hóa đơn";
     this.barButtonItem18.Id      = 26;
     this.barButtonItem18.Name    = "barButtonItem18";
     //
     // barButtonItem17
     //
     this.barButtonItem17.Caption = "Sản phẩm";
     this.barButtonItem17.Id      = 28;
     this.barButtonItem17.Name    = "barButtonItem17";
     //
     // barButtonItem21
     //
     this.barButtonItem21.Caption = "Khách hàng";
     this.barButtonItem21.Id      = 30;
     this.barButtonItem21.Name    = "barButtonItem21";
     //
     // barButtonItem22
     //
     this.barButtonItem22.Caption = "Thống kê doanh thu";
     this.barButtonItem22.Id      = 31;
     this.barButtonItem22.Name    = "barButtonItem22";
     //
     // barButtonItem24
     //
     this.barButtonItem24.Caption = "Thống kê lợi nhuận";
     this.barButtonItem24.Id      = 33;
     this.barButtonItem24.Name    = "barButtonItem24";
     //
     // barButtonItem25
     //
     this.barButtonItem25.Caption = "Thống kê lợi nhuận";
     this.barButtonItem25.Id      = 34;
     this.barButtonItem25.Name    = "barButtonItem25";
     //
     // barButtonItem26
     //
     this.barButtonItem26.Caption = "Thống kê nhân viên";
     this.barButtonItem26.Id      = 35;
     this.barButtonItem26.Name    = "barButtonItem26";
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     this.skinRibbonGalleryBarItem1.Id      = 40;
     this.skinRibbonGalleryBarItem1.Name    = "skinRibbonGalleryBarItem1";
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "Nhân viên";
     this.barButtonItem8.Id      = 41;
     this.barButtonItem8.Name    = "barButtonItem8";
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption                 = "Quản lý HV ra ngoài";
     this.barButtonItem9.Id                      = 42;
     this.barButtonItem9.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.ImageOptions.Image")));
     this.barButtonItem9.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.ImageOptions.LargeImage")));
     this.barButtonItem9.Name                    = "barButtonItem9";
     this.barButtonItem9.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick);
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption                 = "Đăng ký ra vào";
     this.barButtonItem15.Id                      = 43;
     this.barButtonItem15.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem15.ImageOptions.Image")));
     this.barButtonItem15.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem15.ImageOptions.LargeImage")));
     this.barButtonItem15.Name                    = "barButtonItem15";
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "Thống kê doanh thu";
     this.barButtonItem16.Id      = 44;
     this.barButtonItem16.Name    = "barButtonItem16";
     //
     // barButtonItem20
     //
     this.barButtonItem20.Caption = "Thống kê hóa đơn";
     this.barButtonItem20.Id      = 45;
     this.barButtonItem20.Name    = "barButtonItem20";
     //
     // barButtonItem23
     //
     this.barButtonItem23.Caption = "Thống kê nhập kho";
     this.barButtonItem23.Id      = 46;
     this.barButtonItem23.Name    = "barButtonItem23";
     //
     // barButtonItem27
     //
     this.barButtonItem27.Caption                 = "Thống kê vi phạm";
     this.barButtonItem27.Id                      = 47;
     this.barButtonItem27.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem27.ImageOptions.Image")));
     this.barButtonItem27.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem27.ImageOptions.LargeImage")));
     this.barButtonItem27.Name                    = "barButtonItem27";
     //
     // barButtonItem28
     //
     this.barButtonItem28.Caption = "Quản lý nhân sự";
     this.barButtonItem28.Id      = 48;
     this.barButtonItem28.Name    = "barButtonItem28";
     //
     // barButtonItem29
     //
     this.barButtonItem29.Id   = 49;
     this.barButtonItem29.Name = "barButtonItem29";
     //
     // barButtonItem30
     //
     this.barButtonItem30.Caption                 = "Trang cá nhân";
     this.barButtonItem30.Id                      = 50;
     this.barButtonItem30.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem30.ImageOptions.Image")));
     this.barButtonItem30.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem30.ImageOptions.LargeImage")));
     this.barButtonItem30.Name                    = "barButtonItem30";
     this.barButtonItem30.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem30_ItemClick);
     //
     // barButtonItem31
     //
     this.barButtonItem31.Caption = "Phân quyền";
     this.barButtonItem31.Id      = 51;
     this.barButtonItem31.Name    = "barButtonItem31";
     //
     // barButtonItem32
     //
     this.barButtonItem32.Caption = "Sleep";
     this.barButtonItem32.Id      = 52;
     this.barButtonItem32.Name    = "barButtonItem32";
     //
     // skinDropDownButtonItem1
     //
     this.skinDropDownButtonItem1.Id   = 53;
     this.skinDropDownButtonItem1.Name = "skinDropDownButtonItem1";
     //
     // skinRibbonGalleryBarItem2
     //
     this.skinRibbonGalleryBarItem2.Caption = "skinRibbonGalleryBarItem2";
     this.skinRibbonGalleryBarItem2.Id      = 54;
     this.skinRibbonGalleryBarItem2.Name    = "skinRibbonGalleryBarItem2";
     //
     // barButtonItem33
     //
     this.barButtonItem33.Caption                 = "Đăng ký vi phạm";
     this.barButtonItem33.Id                      = 55;
     this.barButtonItem33.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem33.ImageOptions.Image")));
     this.barButtonItem33.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem33.ImageOptions.LargeImage")));
     this.barButtonItem33.Name                    = "barButtonItem33";
     //
     // barButtonItem34
     //
     this.barButtonItem34.Caption                 = "Đăng xuất";
     this.barButtonItem34.Id                      = 56;
     this.barButtonItem34.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem34.ImageOptions.Image")));
     this.barButtonItem34.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem34.ImageOptions.LargeImage")));
     this.barButtonItem34.Name                    = "barButtonItem34";
     this.barButtonItem34.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem34_ItemClick);
     //
     // barEditItem1
     //
     this.barEditItem1.Caption                 = "barEditItem1";
     this.barEditItem1.Edit                    = this.repositoryItemColorEdit1;
     this.barEditItem1.Id                      = 57;
     this.barEditItem1.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barEditItem1.ImageOptions.Image")));
     this.barEditItem1.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barEditItem1.ImageOptions.LargeImage")));
     this.barEditItem1.Name                    = "barEditItem1";
     //
     // barButtonItem35
     //
     this.barButtonItem35.Caption = "barButtonItem35";
     this.barButtonItem35.Id      = 58;
     this.barButtonItem35.Name    = "barButtonItem35";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup9,
         this.ribbonPageGroup11,
         this.ribbonPageGroup3
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Hệ thống";
     //
     // ribbonPageGroup9
     //
     this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItem30);
     this.ribbonPageGroup9.Name = "ribbonPageGroup9";
     this.ribbonPageGroup9.Text = "ribbonPageGroup9";
     //
     // ribbonPageGroup11
     //
     this.ribbonPageGroup11.ItemLinks.Add(this.skinRibbonGalleryBarItem2);
     this.ribbonPageGroup11.Name = "ribbonPageGroup11";
     this.ribbonPageGroup11.Text = "ribbonPageGroup11";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem34);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "ribbonPageGroup3";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "Quản lý ra vào";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 837);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbon;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(1616, 37);
     //
     // ribbonStatusBar2
     //
     this.ribbonStatusBar2.Location = new System.Drawing.Point(1, 577);
     this.ribbonStatusBar2.Name     = "ribbonStatusBar2";
     this.ribbonStatusBar2.Ribbon   = this.ribbon;
     this.ribbonStatusBar2.Size     = new System.Drawing.Size(1412, 34);
     //
     // barButtonItem19
     //
     this.barButtonItem19.Caption = "Sản phẩm";
     this.barButtonItem19.Id      = 27;
     this.barButtonItem19.Name    = "barButtonItem19";
     //
     // navBarItem10
     //
     this.navBarItem10.Caption = "";
     this.navBarItem10.Enabled = false;
     this.navBarItem10.Name    = "navBarItem10";
     //
     // navBarItem8
     //
     this.navBarItem8.Caption = "";
     this.navBarItem8.Enabled = false;
     this.navBarItem8.Name    = "navBarItem8";
     //
     // dockManager1
     //
     this.dockManager1.AutoHiddenPanelShowMode = DevExpress.XtraBars.Docking.AutoHiddenPanelShowMode.MouseClick;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
         this.dockPanel1
     });
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
         "DevExpress.XtraBars.BarDockControl",
         "DevExpress.XtraBars.StandaloneBarDockControl",
         "System.Windows.Forms.StatusBar",
         "System.Windows.Forms.MenuStrip",
         "System.Windows.Forms.StatusStrip",
         "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonControl",
         "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
         "DevExpress.XtraBars.Navigation.TileNavPane",
         "DevExpress.XtraBars.TabFormControl",
         "DevExpress.XtraBars.FluentDesignSystem.FluentDesignFormControl",
         "DevExpress.XtraBars.ToolbarForm.ToolbarFormControl"
     });
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock         = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID           = new System.Guid("eebc7d46-9239-432e-b0a3-d49341744920");
     this.dockPanel1.Location     = new System.Drawing.Point(0, 178);
     this.dockPanel1.Name         = "dockPanel1";
     this.dockPanel1.OriginalSize = new System.Drawing.Size(218, 200);
     this.dockPanel1.Size         = new System.Drawing.Size(218, 659);
     this.dockPanel1.Text         = "Tính năng nhanh";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControl1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(5, 25);
     this.dockPanel1_Container.Name     = "dockPanel1_Container";
     this.dockPanel1_Container.Size     = new System.Drawing.Size(206, 629);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup8;
     this.navBarControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup8,
         this.navBarGroup9
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem13,
         this.navBarItem14,
         this.navBarItem15,
         this.navBarItem16,
         this.navBarItem18,
         this.navBarItem17,
         this.navBarItem19,
         this.navBarItem22
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 206;
     this.navBarControl1.Size     = new System.Drawing.Size(206, 629);
     this.navBarControl1.TabIndex = 0;
     this.navBarControl1.Text     = "navBarControl1";
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption  = "Tính năng học viên";
     this.navBarGroup8.Expanded = true;
     this.navBarGroup8.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem19)
     });
     this.navBarGroup8.Name = "navBarGroup8";
     //
     // navBarItem19
     //
     this.navBarItem19.Caption = "Trang cá nhân";
     this.navBarItem19.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItem19.ImageOptions.LargeImage")));
     this.navBarItem19.ImageOptions.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem19.ImageOptions.SmallImage")));
     this.navBarItem19.Name = "navBarItem19";
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption  = "Tính năng";
     this.navBarGroup9.Expanded = true;
     this.navBarGroup9.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem22)
     });
     this.navBarGroup9.Name = "navBarGroup9";
     //
     // navBarItem22
     //
     this.navBarItem22.Caption = "Ghi lỗi";
     this.navBarItem22.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItem22.ImageOptions.LargeImage")));
     this.navBarItem22.ImageOptions.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem22.ImageOptions.SmallImage")));
     this.navBarItem22.Name = "navBarItem22";
     //
     // navBarItem13
     //
     this.navBarItem13.Caption = "Thêm món";
     this.navBarItem13.Name    = "navBarItem13";
     //
     // navBarItem14
     //
     this.navBarItem14.Caption = "Nhập kho";
     this.navBarItem14.Name    = "navBarItem14";
     //
     // navBarItem15
     //
     this.navBarItem15.Caption = "Hóa đơn";
     this.navBarItem15.Name    = "navBarItem15";
     //
     // navBarItem16
     //
     this.navBarItem16.Caption = "Nhân viên";
     this.navBarItem16.Name    = "navBarItem16";
     //
     // navBarItem18
     //
     this.navBarItem18.Caption = "Đặt bàn";
     this.navBarItem18.Name    = "navBarItem18";
     //
     // navBarItem17
     //
     this.navBarItem17.Caption = "Khách hàng";
     this.navBarItem17.Name    = "navBarItem17";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption  = "Bán hàng";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem6)
     });
     this.navBarGroup5.Name = "navBarGroup5";
     //
     // navBarItem6
     //
     this.navBarItem6.Caption = "Phiếu hóa đơn";
     this.navBarItem6.Name    = "navBarItem6";
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption  = "Bảng kê";
     this.navBarGroup6.Expanded = true;
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem7),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem9)
     });
     this.navBarGroup6.Name = "navBarGroup6";
     //
     // navBarItem7
     //
     this.navBarItem7.Caption = "Hàng hóa";
     this.navBarItem7.Name    = "navBarItem7";
     //
     // navBarItem9
     //
     this.navBarItem9.Caption = "Nhân viên";
     this.navBarItem9.Name    = "navBarItem9";
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption  = "Thêm danh mục";
     this.navBarGroup7.Expanded = true;
     this.navBarGroup7.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem11),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem12)
     });
     this.navBarGroup7.Name = "navBarGroup7";
     //
     // navBarItem11
     //
     this.navBarItem11.Caption = "Kho hoàng";
     this.navBarItem11.Name    = "navBarItem11";
     //
     // navBarItem12
     //
     this.navBarItem12.Caption = "Khách hàng";
     this.navBarItem12.Name    = "navBarItem12";
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "navBarGroup4";
     this.navBarGroup4.Name    = "navBarGroup4";
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption  = "Bán hàng";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1)
     });
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "Bán hàng";
     this.navBarItem1.Name    = "navBarItem1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption  = "Thống kê";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem3)
     });
     this.navBarGroup2.Name = "navBarGroup2";
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "Sản phẩm";
     this.navBarItem2.Name    = "navBarItem2";
     //
     // navBarItem3
     //
     this.navBarItem3.Caption = "Nhân Viên";
     this.navBarItem3.Name    = "navBarItem3";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption  = "Thêm danh mục";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem4),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem5)
     });
     this.navBarGroup3.Name = "navBarGroup3";
     //
     // navBarItem4
     //
     this.navBarItem4.Caption = "Hàng hóa";
     this.navBarItem4.Name    = "navBarItem4";
     //
     // navBarItem5
     //
     this.navBarItem5.Caption = "Khách hàng";
     this.navBarItem5.Name    = "navBarItem5";
     //
     // hideContainerLeft
     //
     this.hideContainerLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.hideContainerLeft.Dock      = System.Windows.Forms.DockStyle.Left;
     this.hideContainerLeft.Location  = new System.Drawing.Point(0, 178);
     this.hideContainerLeft.Name      = "hideContainerLeft";
     this.hideContainerLeft.Size      = new System.Drawing.Size(22, 568);
     //
     // fr_main
     //
     this.fr_main.BackgroundImage         = global::QuanLyRaVao.Properties.Resources.HV_Home;
     this.fr_main.BackgroundImageLayout   = System.Windows.Forms.ImageLayout.None;
     this.fr_main.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.fr_main.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.fr_main.HeaderButtons     = DevExpress.XtraTab.TabButtons.Close;
     this.fr_main.Location          = new System.Drawing.Point(218, 178);
     this.fr_main.Name              = "fr_main";
     this.fr_main.Size              = new System.Drawing.Size(1398, 659);
     this.fr_main.TabIndex          = 7;
     this.fr_main.CloseButtonClick += new System.EventHandler(this.fr_main_CloseButtonClick);
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "ribbonPageGroup4";
     //
     // frmMainVB
     //
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions        = new System.Drawing.SizeF(13F, 26F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize    = new System.Drawing.Size(1616, 874);
     this.Controls.Add(this.fr_main);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbon);
     this.Font          = new System.Drawing.Font("Arial", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin        = new System.Windows.Forms.Padding(6, 5, 6, 5);
     this.Name          = "frmMainVB";
     this.Ribbon        = this.ribbon;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar     = this.ribbonStatusBar1;
     this.Text          = "home";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.home_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemColorEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fr_main)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.timer1                = new System.Windows.Forms.Timer(this.components);
     this.simpleButton5         = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1        = new DevExpress.XtraLayout.LayoutControl();
     this.simpleButton3         = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2         = new DevExpress.XtraEditors.SimpleButton();
     this.pictureEdit1          = new DevExpress.XtraEditors.PictureEdit();
     this.simpleButton1         = new DevExpress.XtraEditors.SimpleButton();
     this.textEdit1             = new DevExpress.XtraEditors.TextEdit();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.xtraTabControl1    = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1       = new DevExpress.XtraTab.XtraTabPage();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // timer1
     //
     this.timer1.Interval = 1000;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // simpleButton5
     //
     this.simpleButton5.Location        = new System.Drawing.Point(555, 12);
     this.simpleButton5.Name            = "simpleButton5";
     this.simpleButton5.Size            = new System.Drawing.Size(131, 22);
     this.simpleButton5.StyleController = this.layoutControl1;
     this.simpleButton5.TabIndex        = 6;
     this.simpleButton5.Text            = "OpenImageFile";
     this.simpleButton5.Click          += new System.EventHandler(this.simpleButton5_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.simpleButton3);
     this.layoutControl1.Controls.Add(this.simpleButton2);
     this.layoutControl1.Controls.Add(this.pictureEdit1);
     this.layoutControl1.Controls.Add(this.simpleButton1);
     this.layoutControl1.Controls.Add(this.simpleButton5);
     this.layoutControl1.Controls.Add(this.textEdit1);
     this.layoutControl1.Controls.Add(this.galleryControl1);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.Root;
     this.layoutControl1.Size     = new System.Drawing.Size(968, 472);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // simpleButton3
     //
     this.simpleButton3.Location        = new System.Drawing.Point(12, 438);
     this.simpleButton3.Name            = "simpleButton3";
     this.simpleButton3.Size            = new System.Drawing.Size(218, 22);
     this.simpleButton3.StyleController = this.layoutControl1;
     this.simpleButton3.TabIndex        = 15;
     this.simpleButton3.Text            = "ItemImage = null";
     this.simpleButton3.Click          += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location        = new System.Drawing.Point(234, 438);
     this.simpleButton2.Name            = "simpleButton2";
     this.simpleButton2.Size            = new System.Drawing.Size(295, 22);
     this.simpleButton2.StyleController = this.layoutControl1;
     this.simpleButton2.TabIndex        = 14;
     this.simpleButton2.Text            = "ItemImage";
     this.simpleButton2.Click          += new System.EventHandler(this.simpleButton2_Click);
     //
     // pictureEdit1
     //
     this.pictureEdit1.Location = new System.Drawing.Point(533, 38);
     this.pictureEdit1.Name     = "pictureEdit1";
     this.pictureEdit1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
     this.pictureEdit1.Properties.SizeMode           = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     this.pictureEdit1.Size            = new System.Drawing.Size(423, 422);
     this.pictureEdit1.StyleController = this.layoutControl1;
     this.pictureEdit1.TabIndex        = 13;
     //
     // simpleButton1
     //
     this.simpleButton1.Location        = new System.Drawing.Point(690, 12);
     this.simpleButton1.Name            = "simpleButton1";
     this.simpleButton1.Size            = new System.Drawing.Size(266, 22);
     this.simpleButton1.StyleController = this.layoutControl1;
     this.simpleButton1.TabIndex        = 12;
     this.simpleButton1.Text            = "Timer1 Start";
     this.simpleButton1.Click          += new System.EventHandler(this.simpleButton1_Click);
     //
     // textEdit1
     //
     this.textEdit1.Location        = new System.Drawing.Point(40, 12);
     this.textEdit1.Name            = "textEdit1";
     this.textEdit1.Size            = new System.Drawing.Size(511, 20);
     this.textEdit1.StyleController = this.layoutControl1;
     this.textEdit1.TabIndex        = 7;
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     //
     //
     //
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Item1";
     galleryItem1.Checked      = true;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ImageSize = new System.Drawing.Size(300, 300);
     this.galleryControl1.Location          = new System.Drawing.Point(12, 38);
     this.galleryControl1.Name            = "galleryControl1";
     this.galleryControl1.Size            = new System.Drawing.Size(517, 396);
     this.galleryControl1.StyleController = this.layoutControl1;
     this.galleryControl1.TabIndex        = 11;
     this.galleryControl1.Text            = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size           = new System.Drawing.Size(496, 392);
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.GroupBordersVisible         = false;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem6,
         this.layoutControlItem5,
         this.layoutControlItem4,
         this.layoutControlItem7
     });
     this.Root.Name        = "Root";
     this.Root.Size        = new System.Drawing.Size(968, 472);
     this.Root.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control     = this.galleryControl1;
     this.layoutControlItem1.Location    = new System.Drawing.Point(0, 26);
     this.layoutControlItem1.Name        = "layoutControlItem1";
     this.layoutControlItem1.Size        = new System.Drawing.Size(521, 400);
     this.layoutControlItem1.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control  = this.textEdit1;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(543, 26);
     this.layoutControlItem2.Text     = "Path";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(25, 14);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control     = this.simpleButton5;
     this.layoutControlItem3.Location    = new System.Drawing.Point(543, 0);
     this.layoutControlItem3.Name        = "layoutControlItem3";
     this.layoutControlItem3.Size        = new System.Drawing.Size(135, 26);
     this.layoutControlItem3.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control     = this.pictureEdit1;
     this.layoutControlItem6.Location    = new System.Drawing.Point(521, 26);
     this.layoutControlItem6.Name        = "layoutControlItem6";
     this.layoutControlItem6.Size        = new System.Drawing.Size(427, 426);
     this.layoutControlItem6.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control     = this.simpleButton2;
     this.layoutControlItem5.Location    = new System.Drawing.Point(222, 426);
     this.layoutControlItem5.Name        = "layoutControlItem5";
     this.layoutControlItem5.Size        = new System.Drawing.Size(299, 26);
     this.layoutControlItem5.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control     = this.simpleButton1;
     this.layoutControlItem4.Location    = new System.Drawing.Point(678, 0);
     this.layoutControlItem4.Name        = "layoutControlItem4";
     this.layoutControlItem4.Size        = new System.Drawing.Size(270, 26);
     this.layoutControlItem4.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control     = this.simpleButton3;
     this.layoutControlItem7.Location    = new System.Drawing.Point(0, 426);
     this.layoutControlItem7.Name        = "layoutControlItem7";
     this.layoutControlItem7.Size        = new System.Drawing.Size(222, 26);
     this.layoutControlItem7.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Location        = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size            = new System.Drawing.Size(970, 498);
     this.xtraTabControl1.TabIndex        = 14;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1
     });
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.layoutControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(968, 472);
     this.xtraTabPage1.Text = "Exception";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(970, 498);
     this.Controls.Add(this.xtraTabControl1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QUANLYKHO));
     DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.panelControl1                        = new DevExpress.XtraEditors.PanelControl();
     this.huongdan                             = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1                         = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem_TrangChu                  = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_NhapHang                  = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_XuatHang                  = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_ThongKe                   = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2                         = new DevExpress.XtraNavBar.NavBarGroup();
     this.panelControl2                        = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1                      = new DevExpress.XtraTab.XtraTabControl();
     this.rPThongKe                            = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem_ThongKe_DoanhThu       = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPageGroup4                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem_ThongKe_DoanhThu_Chung = new DevExpress.XtraBars.BarButtonItem();
     this.rPXuatHang                           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rPGXuatHang                          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.bbiPhieuXuat                         = new DevExpress.XtraBars.BarButtonItem();
     this.rPNhapHang                           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.bbiNhapHang                          = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnCapnhat                          = new DevExpress.XtraBars.BarButtonItem();
     this.rpTrangChu                           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rpgHeThong                           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.bbiTrangChu                          = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDangNhap                          = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDangXuat                          = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPageGroup2                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.skinHT                         = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItem1                 = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItem1                   = new DevExpress.XtraBars.BarEditItem();
     this.ribbonGalleryBarItem1          = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.barButtonItem3                 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2                 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem_ThongKe_NhapXuat = new DevExpress.XtraBars.BarButtonItem();
     this.rPHuongdan                     = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.bbtntimkiem                    = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4                 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1                    = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.navBarItem_Huongdan            = new DevExpress.XtraNavBar.NavBarItem();
     this.ribbonPageGroup5               = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem5                 = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1                     = new DevExpress.XtraBars.PopupMenu(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.huongdan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rPHuongdan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.huongdan);
     this.panelControl1.Location = new System.Drawing.Point(0, 145);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(200, 553);
     this.panelControl1.TabIndex = 1;
     //
     // huongdan
     //
     this.huongdan.ActiveGroup = this.navBarGroup1;
     this.huongdan.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1,
         this.navBarGroup2
     });
     this.huongdan.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem_TrangChu,
         this.navBarItem_NhapHang,
         this.navBarItem_XuatHang,
         this.navBarItem_ThongKe,
         this.navBarItem_Huongdan
     });
     this.huongdan.Location = new System.Drawing.Point(6, 5);
     this.huongdan.Name     = "huongdan";
     this.huongdan.OptionsNavPane.ExpandedWidth = 189;
     this.huongdan.Size         = new System.Drawing.Size(189, 535);
     this.huongdan.TabIndex     = 0;
     this.huongdan.Text         = "navBarControl1";
     this.huongdan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Huongdan_LinkClicked);
     this.huongdan.Click       += new System.EventHandler(this.huongdan_Click);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption  = "Trang chủ";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_TrangChu),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_NhapHang),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_XuatHang),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_ThongKe)
     });
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navBarItem_TrangChu
     //
     this.navBarItem_TrangChu.Caption      = "Trang chủ";
     this.navBarItem_TrangChu.ImageUri.Uri = "Home";
     this.navBarItem_TrangChu.Name         = "navBarItem_TrangChu";
     this.navBarItem_TrangChu.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_TrangChu_LinkClicked);
     //
     // navBarItem_NhapHang
     //
     this.navBarItem_NhapHang.Caption      = "Nhập hàng";
     this.navBarItem_NhapHang.Name         = "navBarItem_NhapHang";
     this.navBarItem_NhapHang.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_NhapHang_LinkClicked);
     //
     // navBarItem_XuatHang
     //
     this.navBarItem_XuatHang.Caption      = "Xuất Hàng";
     this.navBarItem_XuatHang.Name         = "navBarItem_XuatHang";
     this.navBarItem_XuatHang.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_XuatHang_LinkClicked);
     //
     // navBarItem_ThongKe
     //
     this.navBarItem_ThongKe.Caption      = "Thống kê";
     this.navBarItem_ThongKe.ImageUri.Uri = "Chart";
     this.navBarItem_ThongKe.Name         = "navBarItem_ThongKe";
     this.navBarItem_ThongKe.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_ThongKe_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption  = "Hướng dẫn sử dụng";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Huongdan)
     });
     this.navBarGroup2.Name = "navBarGroup2";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl1);
     this.panelControl2.Location = new System.Drawing.Point(206, 145);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(942, 540);
     this.panelControl2.TabIndex = 2;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControl1.Location          = new System.Drawing.Point(6, 6);
     this.xtraTabControl1.Name              = "xtraTabControl1";
     this.xtraTabControl1.Size              = new System.Drawing.Size(931, 534);
     this.xtraTabControl1.TabIndex          = 0;
     this.xtraTabControl1.CloseButtonClick += new System.EventHandler(this.xtraTabControl1_CloseButtonClick);
     //
     // rPThongKe
     //
     this.rPThongKe.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3,
         this.ribbonPageGroup4
     });
     this.rPThongKe.Name = "rPThongKe";
     this.rPThongKe.Text = "Thống kê";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.Glyph = ((System.Drawing.Image)(resources.GetObject("ribbonPageGroup3.Glyph")));
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ThongKe_DoanhThu);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Thống kê";
     //
     // barButtonItem_ThongKe_DoanhThu
     //
     this.barButtonItem_ThongKe_DoanhThu.Caption      = "Nhập xuất";
     this.barButtonItem_ThongKe_DoanhThu.Id           = 13;
     this.barButtonItem_ThongKe_DoanhThu.ImageUri.Uri = "Chart";
     this.barButtonItem_ThongKe_DoanhThu.Name         = "barButtonItem_ThongKe_DoanhThu";
     this.barButtonItem_ThongKe_DoanhThu.RibbonStyle  = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.barButtonItem_ThongKe_DoanhThu.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ThongKe_DoanhThu_ItemClick);
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ThongKe_DoanhThu_Chung);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "ribbonPageGroup4";
     //
     // barButtonItem_ThongKe_DoanhThu_Chung
     //
     this.barButtonItem_ThongKe_DoanhThu_Chung.Caption      = "Thống kê chung";
     this.barButtonItem_ThongKe_DoanhThu_Chung.Id           = 15;
     this.barButtonItem_ThongKe_DoanhThu_Chung.ImageUri.Uri = "Summary";
     this.barButtonItem_ThongKe_DoanhThu_Chung.Name         = "barButtonItem_ThongKe_DoanhThu_Chung";
     this.barButtonItem_ThongKe_DoanhThu_Chung.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ThongKe_DoanhThu_Chung_ItemClick);
     //
     // rPXuatHang
     //
     this.rPXuatHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rPGXuatHang
     });
     this.rPXuatHang.Name = "rPXuatHang";
     this.rPXuatHang.Text = "Xuất Hàng";
     //
     // rPGXuatHang
     //
     this.rPGXuatHang.ItemLinks.Add(this.bbiPhieuXuat);
     this.rPGXuatHang.Name = "rPGXuatHang";
     this.rPGXuatHang.Text = "Xuất Hàng";
     //
     // bbiPhieuXuat
     //
     this.bbiPhieuXuat.Caption    = "Phiếu Xuất";
     this.bbiPhieuXuat.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiPhieuXuat.Glyph")));
     this.bbiPhieuXuat.Id         = 11;
     this.bbiPhieuXuat.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiPhieuXuat.LargeGlyph")));
     this.bbiPhieuXuat.LargeWidth = 80;
     this.bbiPhieuXuat.Name       = "bbiPhieuXuat";
     this.bbiPhieuXuat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhieuXuat_ItemClick);
     //
     // rPNhapHang
     //
     this.rPNhapHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.rPNhapHang.Name = "rPNhapHang";
     this.rPNhapHang.Text = "Nhập Hàng";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bbiNhapHang);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Nhập Hàng";
     //
     // bbiNhapHang
     //
     this.bbiNhapHang.Caption    = "Thêm hàng mới";
     this.bbiNhapHang.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiNhapHang.Glyph")));
     this.bbiNhapHang.Id         = 5;
     this.bbiNhapHang.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiNhapHang.LargeGlyph")));
     this.bbiNhapHang.LargeWidth = 80;
     this.bbiNhapHang.Name       = "bbiNhapHang";
     this.bbiNhapHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhapHang_ItemClick);
     //
     // bbtnCapnhat
     //
     this.bbtnCapnhat.Caption      = "Cập nhật lại";
     this.bbtnCapnhat.Id           = 17;
     this.bbtnCapnhat.ImageUri.Uri = "Edit";
     this.bbtnCapnhat.Name         = "bbtnCapnhat";
     //
     // rpTrangChu
     //
     this.rpTrangChu.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rpgHeThong,
         this.ribbonPageGroup2
     });
     this.rpTrangChu.Name = "rpTrangChu";
     this.rpTrangChu.Text = "Trang chủ";
     //
     // rpgHeThong
     //
     this.rpgHeThong.ItemLinks.Add(this.bbiTrangChu);
     this.rpgHeThong.ItemLinks.Add(this.bbiDangNhap);
     this.rpgHeThong.ItemLinks.Add(this.bbiDangXuat);
     this.rpgHeThong.Name = "rpgHeThong";
     this.rpgHeThong.Text = "Hệ Thống";
     //
     // bbiTrangChu
     //
     this.bbiTrangChu.Caption      = "Trang chủ";
     this.bbiTrangChu.Id           = 16;
     this.bbiTrangChu.ImageUri.Uri = "Home";
     this.bbiTrangChu.Name         = "bbiTrangChu";
     this.bbiTrangChu.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTrangChu_ItemClick);
     //
     // bbiDangNhap
     //
     this.bbiDangNhap.Caption    = "Đăng Nhập";
     this.bbiDangNhap.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiDangNhap.Glyph")));
     this.bbiDangNhap.Id         = 3;
     this.bbiDangNhap.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiDangNhap.LargeGlyph")));
     this.bbiDangNhap.LargeWidth = 80;
     this.bbiDangNhap.Name       = "bbiDangNhap";
     //
     // bbiDangXuat
     //
     this.bbiDangXuat.Caption    = "Đăng Xuất";
     this.bbiDangXuat.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiDangXuat.Glyph")));
     this.bbiDangXuat.Id         = 4;
     this.bbiDangXuat.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiDangXuat.LargeGlyph")));
     this.bbiDangXuat.LargeWidth = 80;
     this.bbiDangXuat.Name       = "bbiDangXuat";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.skinHT);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Chọn giao diện ";
     //
     // skinHT
     //
     this.skinHT.Caption = "Giao diện";
     this.skinHT.Id      = 8;
     this.skinHT.Name    = "skinHT";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 1;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barEditItem1
     //
     this.barEditItem1.Caption       = "barEditItem1";
     repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     repositoryItemPictureEdit1.ZoomAccelerationFactor = 1D;
     this.barEditItem1.Edit = repositoryItemPictureEdit1;
     this.barEditItem1.Id   = 6;
     this.barEditItem1.Name = "barEditItem1";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     this.ribbonGalleryBarItem1.Gallery.AllowHoverImages = true;
     galleryItemGroup3.Caption = "Group2";
     galleryItem3.Caption      = "Item5";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem3
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup3
     });
     this.ribbonGalleryBarItem1.Id   = 7;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id      = 9;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 10;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // barButtonItem_ThongKe_NhapXuat
     //
     this.barButtonItem_ThongKe_NhapXuat.Id           = 14;
     this.barButtonItem_ThongKe_NhapXuat.ImageUri.Uri = "Pie";
     this.barButtonItem_ThongKe_NhapXuat.Name         = "barButtonItem_ThongKe_NhapXuat";
     this.barButtonItem_ThongKe_NhapXuat.RibbonStyle  = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.barButtonItem_ThongKe_NhapXuat.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ThongKe_NhapXuat_ItemClick);
     //
     // rPHuongdan
     //
     this.rPHuongdan.ExpandCollapseItem.Id = 0;
     this.rPHuongdan.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.rPHuongdan.ExpandCollapseItem,
         this.barButtonItem1,
         this.bbiDangNhap,
         this.bbiDangXuat,
         this.bbiNhapHang,
         this.barEditItem1,
         this.ribbonGalleryBarItem1,
         this.skinHT,
         this.barButtonItem3,
         this.barButtonItem2,
         this.bbiPhieuXuat,
         this.barButtonItem_ThongKe_DoanhThu,
         this.barButtonItem_ThongKe_NhapXuat,
         this.barButtonItem_ThongKe_DoanhThu_Chung,
         this.bbiTrangChu,
         this.bbtnCapnhat,
         this.bbtntimkiem,
         this.barButtonItem4,
         this.barButtonItem5
     });
     this.rPHuongdan.Location  = new System.Drawing.Point(0, 0);
     this.rPHuongdan.MaxItemId = 21;
     this.rPHuongdan.Name      = "rPHuongdan";
     this.rPHuongdan.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.rpTrangChu,
         this.rPNhapHang,
         this.rPXuatHang,
         this.rPThongKe,
         this.ribbonPage1
     });
     this.rPHuongdan.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.rPHuongdan.Size        = new System.Drawing.Size(1148, 143);
     //
     // bbtntimkiem
     //
     this.bbtntimkiem.Caption      = "Tìm kiếm";
     this.bbtntimkiem.Id           = 18;
     this.bbtntimkiem.ImageUri.Uri = "Zoom";
     this.bbtntimkiem.Name         = "bbtntimkiem";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id      = 19;
     this.barButtonItem4.Name    = "barButtonItem4";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Hướng dẫn";
     //
     // navBarItem_Huongdan
     //
     this.navBarItem_Huongdan.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.navBarItem_Huongdan.Caption            = "Hướng dẫn sử dụng phần mềm";
     this.navBarItem_Huongdan.Name = "navBarItem_Huongdan";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.Text = "rpHuongdan";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption    = "Hướng dẫn";
     this.barButtonItem5.Id         = 20;
     this.barButtonItem5.Name       = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // popupMenu1
     //
     this.popupMenu1.Name   = "popupMenu1";
     this.popupMenu1.Ribbon = this.rPHuongdan;
     //
     // QUANLYKHO
     //
     this.AllowFormGlass      = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1148, 697);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.rPHuongdan);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "QUANLYKHO";
     this.Ribbon        = this.rPHuongdan;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Quản lý kho";
     this.Load         += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.huongdan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rPHuongdan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.backstageViewControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
            this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.btnDBConfigLoad = new DevExpress.XtraEditors.SimpleButton();
            this.btnDBConnection = new DevExpress.XtraEditors.SimpleButton();
            this.btnDBConfigSave = new DevExpress.XtraEditors.SimpleButton();
            this.txtDataBaseUserPwd = new DevExpress.XtraEditors.TextEdit();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.txtDataBaseUserId = new DevExpress.XtraEditors.TextEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.txtDataBaseSource = new DevExpress.XtraEditors.TextEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.rgpDataType = new DevExpress.XtraEditors.RadioGroup();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.backstageViewItemSeparator1 = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
            this.backstageViewButtonItem1 = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.backstageViewItemSeparator2 = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
            this.backstageViewTabItem1 = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.backstageViewItemSeparator3 = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
            this.bvbiClose = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.rgbiTheme = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.colorPickEdit1 = new DevExpress.XtraEditors.ColorPickEdit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            this.backstageViewControl1.SuspendLayout();
            this.backstageViewClientControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtDataBaseUserPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDataBaseUserId.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDataBaseSource.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgpDataType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.colorPickEdit1.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.backstageViewControl1;
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.rgbiTheme});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 2;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl1.Size = new System.Drawing.Size(884, 150);
            // 
            // backstageViewControl1
            // 
            this.backstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl1);
            this.backstageViewControl1.Items.Add(this.backstageViewItemSeparator1);
            this.backstageViewControl1.Items.Add(this.backstageViewButtonItem1);
            this.backstageViewControl1.Items.Add(this.backstageViewItemSeparator2);
            this.backstageViewControl1.Items.Add(this.backstageViewTabItem1);
            this.backstageViewControl1.Items.Add(this.backstageViewItemSeparator3);
            this.backstageViewControl1.Items.Add(this.bvbiClose);
            this.backstageViewControl1.Location = new System.Drawing.Point(0, 618);
            this.backstageViewControl1.Name = "backstageViewControl1";
            this.backstageViewControl1.Ribbon = this.ribbonControl1;
            this.backstageViewControl1.SelectedTab = this.backstageViewTabItem1;
            this.backstageViewControl1.SelectedTabIndex = 3;
            this.backstageViewControl1.Size = new System.Drawing.Size(649, 364);
            this.backstageViewControl1.TabIndex = 1;
            // 
            // backstageViewClientControl1
            // 
            this.backstageViewClientControl1.Controls.Add(this.groupControl1);
            this.backstageViewClientControl1.Location = new System.Drawing.Point(174, 0);
            this.backstageViewClientControl1.Name = "backstageViewClientControl1";
            this.backstageViewClientControl1.Size = new System.Drawing.Size(475, 364);
            this.backstageViewClientControl1.TabIndex = 2;
            // 
            // groupControl1
            // 
            this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupControl1.Controls.Add(this.btnDBConfigLoad);
            this.groupControl1.Controls.Add(this.btnDBConnection);
            this.groupControl1.Controls.Add(this.btnDBConfigSave);
            this.groupControl1.Controls.Add(this.txtDataBaseUserPwd);
            this.groupControl1.Controls.Add(this.labelControl4);
            this.groupControl1.Controls.Add(this.txtDataBaseUserId);
            this.groupControl1.Controls.Add(this.labelControl3);
            this.groupControl1.Controls.Add(this.txtDataBaseSource);
            this.groupControl1.Controls.Add(this.labelControl2);
            this.groupControl1.Controls.Add(this.rgpDataType);
            this.groupControl1.Controls.Add(this.labelControl1);
            this.groupControl1.Location = new System.Drawing.Point(10, 0);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(460, 360);
            this.groupControl1.TabIndex = 2;
            this.groupControl1.Text = "数据库连接设置";
            // 
            // btnDBConfigLoad
            // 
            this.btnDBConfigLoad.Appearance.Options.UseTextOptions = true;
            this.btnDBConfigLoad.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.btnDBConfigLoad.Image = ((System.Drawing.Image)(resources.GetObject("btnDBConfigLoad.Image")));
            this.btnDBConfigLoad.Location = new System.Drawing.Point(19, 315);
            this.btnDBConfigLoad.Name = "btnDBConfigLoad";
            this.btnDBConfigLoad.Size = new System.Drawing.Size(60, 23);
            this.btnDBConfigLoad.TabIndex = 11;
            this.btnDBConfigLoad.Text = "加载";
            this.btnDBConfigLoad.Click += new System.EventHandler(this.btnDBConfigLoad_Click);
            // 
            // btnDBConnection
            // 
            this.btnDBConnection.Appearance.Options.UseTextOptions = true;
            this.btnDBConnection.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.btnDBConnection.Image = ((System.Drawing.Image)(resources.GetObject("btnDBConnection.Image")));
            this.btnDBConnection.Location = new System.Drawing.Point(184, 315);
            this.btnDBConnection.Name = "btnDBConnection";
            this.btnDBConnection.Size = new System.Drawing.Size(60, 23);
            this.btnDBConnection.TabIndex = 10;
            this.btnDBConnection.Text = "连接";
            this.btnDBConnection.Click += new System.EventHandler(this.btnDBConnection_Click);
            // 
            // btnDBConfigSave
            // 
            this.btnDBConfigSave.Appearance.Options.UseTextOptions = true;
            this.btnDBConfigSave.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.btnDBConfigSave.Image = ((System.Drawing.Image)(resources.GetObject("btnDBConfigSave.Image")));
            this.btnDBConfigSave.Location = new System.Drawing.Point(102, 315);
            this.btnDBConfigSave.Name = "btnDBConfigSave";
            this.btnDBConfigSave.Size = new System.Drawing.Size(60, 23);
            this.btnDBConfigSave.TabIndex = 9;
            this.btnDBConfigSave.Text = "保存";
            this.btnDBConfigSave.Click += new System.EventHandler(this.btnDBConfigSave_Click);
            // 
            // txtDataBaseUserPwd
            // 
            this.txtDataBaseUserPwd.Location = new System.Drawing.Point(19, 267);
            this.txtDataBaseUserPwd.MenuManager = this.ribbonControl1;
            this.txtDataBaseUserPwd.Name = "txtDataBaseUserPwd";
            this.txtDataBaseUserPwd.Size = new System.Drawing.Size(256, 20);
            this.txtDataBaseUserPwd.TabIndex = 8;
            // 
            // labelControl4
            // 
            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 11F);
            this.labelControl4.Location = new System.Drawing.Point(19, 235);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(30, 18);
            this.labelControl4.TabIndex = 7;
            this.labelControl4.Text = "密码";
            // 
            // txtDataBaseUserId
            // 
            this.txtDataBaseUserId.Location = new System.Drawing.Point(19, 201);
            this.txtDataBaseUserId.MenuManager = this.ribbonControl1;
            this.txtDataBaseUserId.Name = "txtDataBaseUserId";
            this.txtDataBaseUserId.Size = new System.Drawing.Size(256, 20);
            this.txtDataBaseUserId.TabIndex = 6;
            // 
            // labelControl3
            // 
            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 11F);
            this.labelControl3.Location = new System.Drawing.Point(19, 169);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(45, 18);
            this.labelControl3.TabIndex = 5;
            this.labelControl3.Text = "用户名";
            // 
            // txtDataBaseSource
            // 
            this.txtDataBaseSource.Location = new System.Drawing.Point(19, 135);
            this.txtDataBaseSource.MenuManager = this.ribbonControl1;
            this.txtDataBaseSource.Name = "txtDataBaseSource";
            this.txtDataBaseSource.Size = new System.Drawing.Size(256, 20);
            this.txtDataBaseSource.TabIndex = 4;
            // 
            // labelControl2
            // 
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 11F);
            this.labelControl2.Location = new System.Drawing.Point(19, 103);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(60, 18);
            this.labelControl2.TabIndex = 3;
            this.labelControl2.Text = "数据库源";
            // 
            // rgpDataType
            // 
            this.rgpDataType.Location = new System.Drawing.Point(19, 60);
            this.rgpDataType.MenuManager = this.ribbonControl1;
            this.rgpDataType.Name = "rgpDataType";
            this.rgpDataType.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.rgpDataType.Properties.Columns = 2;
            this.rgpDataType.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem("SqlServerDataAccess", "SQL Server"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem("OracleDataAccess", "Oracle")});
            this.rgpDataType.Size = new System.Drawing.Size(256, 34);
            this.rgpDataType.TabIndex = 2;
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 11F);
            this.labelControl1.Location = new System.Drawing.Point(19, 35);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(75, 18);
            this.labelControl1.TabIndex = 1;
            this.labelControl1.Text = "数据库类型";
            // 
            // backstageViewItemSeparator1
            // 
            this.backstageViewItemSeparator1.Name = "backstageViewItemSeparator1";
            // 
            // backstageViewButtonItem1
            // 
            this.backstageViewButtonItem1.Caption = "返回";
            this.backstageViewButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("backstageViewButtonItem1.Glyph")));
            this.backstageViewButtonItem1.Name = "backstageViewButtonItem1";
            // 
            // backstageViewItemSeparator2
            // 
            this.backstageViewItemSeparator2.Name = "backstageViewItemSeparator2";
            // 
            // backstageViewTabItem1
            // 
            this.backstageViewTabItem1.Caption = "数据库设置";
            this.backstageViewTabItem1.ContentControl = this.backstageViewClientControl1;
            this.backstageViewTabItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("backstageViewTabItem1.Glyph")));
            this.backstageViewTabItem1.Name = "backstageViewTabItem1";
            this.backstageViewTabItem1.Selected = true;
            // 
            // backstageViewItemSeparator3
            // 
            this.backstageViewItemSeparator3.Name = "backstageViewItemSeparator3";
            // 
            // bvbiClose
            // 
            this.bvbiClose.Caption = "关闭";
            this.bvbiClose.Glyph = ((System.Drawing.Image)(resources.GetObject("bvbiClose.Glyph")));
            this.bvbiClose.Name = "bvbiClose";
            this.bvbiClose.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.bvbiClose_ItemClick);
            // 
            // rgbiTheme
            // 
            this.rgbiTheme.Caption = "ribbonGalleryBarItem1";
            // 
            // 
            // 
            galleryItemGroup1.Caption = "Group1";
            galleryItem1.Caption = "Office 2013";
            galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
            galleryItem1.Value = "Office 2013";
            galleryItem2.Caption = "Office 2013 Black";
            galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
            galleryItem2.Value = "Office 2013 Black";
            galleryItem3.Caption = "Office 2010 Black";
            galleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
            galleryItem3.Value = "Office 2010 Black";
            galleryItem4.Caption = "Office 2010 Blue";
            galleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
            galleryItem4.Value = "Office 2010 Blue";
            galleryItem5.Caption = "Seven Classic";
            galleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
            galleryItem5.Value = "Seven Classic";
            galleryItem6.Caption = "Item6";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6});
            this.rgbiTheme.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.rgbiTheme.Gallery.ImageSize = new System.Drawing.Size(10, 0);
            this.rgbiTheme.Gallery.ShowItemText = true;
            this.rgbiTheme.Id = 1;
            this.rgbiTheme.Name = "rgbiTheme";
            this.rgbiTheme.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiTheme_GalleryItemClick);
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "常规";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "导航";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup2});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "视图";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.rgbiTheme);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "主题";
            // 
            // colorPickEdit1
            // 
            this.colorPickEdit1.EditValue = System.Drawing.Color.Empty;
            this.colorPickEdit1.Location = new System.Drawing.Point(80, 39);
            this.colorPickEdit1.MenuManager = this.ribbonControl1;
            this.colorPickEdit1.Name = "colorPickEdit1";
            this.colorPickEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.colorPickEdit1.Size = new System.Drawing.Size(100, 20);
            this.colorPickEdit1.TabIndex = 0;
            // 
            // MainForm
            // 
            this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(884, 1021);
            this.Controls.Add(this.backstageViewControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "MainForm";
            this.Ribbon = this.ribbonControl1;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "R";
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            this.backstageViewControl1.ResumeLayout(false);
            this.backstageViewClientControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            this.groupControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtDataBaseUserPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDataBaseUserId.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDataBaseSource.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgpDataType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.colorPickEdit1.Properties)).EndInit();
            this.ResumeLayout(false);

        }
Esempio n. 14
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges2 = new DevExpress.Skins.SkinPaddingEdges();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biNewEmployee = new DevExpress.XtraBars.BarButtonItem();
            this.biNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biDelete = new DevExpress.XtraBars.BarButtonItem();
            this.biShowList = new DevExpress.XtraBars.BarCheckItem();
            this.biShowCard = new DevExpress.XtraBars.BarCheckItem();
            this.biMap = new DevExpress.XtraBars.BarButtonItem();
            this.biNewSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiNewEmployee = new DevExpress.XtraBars.BarButtonItem();
            this.bmiNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biChangeViewSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiShowList = new DevExpress.XtraBars.BarCheckItem();
            this.bmiShowCard = new DevExpress.XtraBars.BarCheckItem();
            this.biDataPaneSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiHorizontalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiVerticalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiHideDetail = new DevExpress.XtraBars.BarCheckItem();
            this.biResetView = new DevExpress.XtraBars.BarButtonItem();
            this.biPrintSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiPrintProfile = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSummary = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintDirectory = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintTaskList = new DevExpress.XtraBars.BarButtonItem();
            this.biMailMerge = new DevExpress.XtraBars.BarButtonItem();
            this.biEdit = new DevExpress.XtraBars.BarButtonItem();
            this.galleryQuickLetters = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.biMeeting = new DevExpress.XtraBars.BarButtonItem();
            this.biTask = new DevExpress.XtraBars.BarButtonItem();
            this.biViewSettings = new DevExpress.XtraBars.BarButtonItem();
            this.biReverseSort = new DevExpress.XtraBars.BarButtonItem();
            this.biAddColumns = new DevExpress.XtraBars.BarCheckItem();
            this.biExpandCollapse = new DevExpress.XtraBars.BarButtonItem();
            this.hiItemsCount = new DevExpress.XtraBars.BarHeaderItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.biNewCustomFilter = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.gridControl = new DevExpress.XtraGrid.GridControl();
            this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colPrefix = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDepartment = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFullName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAddress = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCity = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colState = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colZipCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemHyperLinkEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemHyperLinkEdit();
            this.colBirthDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colHireDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colHomePhone = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMobilePhone1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTitle = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.layoutView = new DevExpress.XtraGrid.Views.Layout.LayoutView();
            this.colPhoto = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colPhoto = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colFullName1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colFullName1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colAddress1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colAddress1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colEmail1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colEmail1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colMobilePhone = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colMobilePhone = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
            this.Item1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.modueLayout = new DevExpress.XtraLayout.LayoutControl();
            this.pnlView = new DevExpress.XtraEditors.PanelControl();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.masterItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.detailItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem = new DevExpress.XtraLayout.SplitterItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colPhoto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colFullName1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colAddress1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colEmail1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colMobilePhone)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Item1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.modueLayout)).BeginInit();
            this.modueLayout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.masterItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl
            // 
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biNewEmployee,
            this.biNewGroup,
            this.biDelete,
            this.biShowList,
            this.biShowCard,
            this.biMap,
            this.biNewSubItem,
            this.biChangeViewSubItem,
            this.biDataPaneSubItem,
            this.bmiHideDetail,
            this.bmiHorizontalLayout,
            this.bmiVerticalLayout,
            this.biResetView,
            this.bmiShowList,
            this.bmiShowCard,
            this.bmiNewEmployee,
            this.bmiNewGroup,
            this.biPrintSubItem,
            this.biMailMerge,
            this.bmiPrintProfile,
            this.bmiPrintSummary,
            this.bmiPrintDirectory,
            this.bmiPrintTaskList,
            this.biEdit,
            this.galleryQuickLetters,
            this.biMeeting,
            this.biTask,
            this.biViewSettings,
            this.biReverseSort,
            this.biAddColumns,
            this.biExpandCollapse,
            this.hiItemsCount});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 8;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2});
            this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbonControl.Size = new System.Drawing.Size(1280, 142);
            this.ribbonControl.StatusBar = this.ribbonStatusBar;
            // 
            // biNewEmployee
            // 
            this.biNewEmployee.Caption = "New Employee";
            this.biNewEmployee.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_employee_16;
            this.biNewEmployee.Id = 1;
            this.biNewEmployee.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_employee_32;
            this.biNewEmployee.Name = "biNewEmployee";
            // 
            // biNewGroup
            // 
            this.biNewGroup.Caption = "New Group";
            this.biNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.biNewGroup.Id = 2;
            this.biNewGroup.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_32;
            this.biNewGroup.Name = "biNewGroup";
            // 
            // biDelete
            // 
            this.biDelete.Caption = "Delete";
            this.biDelete.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_16;
            this.biDelete.Id = 3;
            this.biDelete.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_32;
            this.biDelete.Name = "biDelete";
            // 
            // biShowList
            // 
            this.biShowList.Caption = "List";
            this.biShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_16;
            this.biShowList.GroupIndex = 1;
            this.biShowList.Id = 4;
            this.biShowList.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.biShowList.LargeImageIndex = 37;
            this.biShowList.Name = "biShowList";
            // 
            // biShowCard
            // 
            this.biShowCard.Caption = "Card";
            this.biShowCard.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_16;
            this.biShowCard.GroupIndex = 1;
            this.biShowCard.Id = 5;
            this.biShowCard.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_32;
            this.biShowCard.LargeImageIndex = 34;
            this.biShowCard.Name = "biShowCard";
            // 
            // biMap
            // 
            this.biMap.Caption = "Map It";
            this.biMap.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_16;
            this.biMap.Id = 8;
            this.biMap.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_32;
            this.biMap.Name = "biMap";
            // 
            // biNewSubItem
            // 
            this.biNewSubItem.Caption = "New Items";
            this.biNewSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_item_16;
            this.biNewSubItem.Id = 10;
            this.biNewSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_item_32;
            this.biNewSubItem.LargeImageIndex = 29;
            this.biNewSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewEmployee),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewGroup)});
            this.biNewSubItem.Name = "biNewSubItem";
            this.biNewSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiNewEmployee
            // 
            this.bmiNewEmployee.Caption = "New Employee";
            this.bmiNewEmployee.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_employee_16;
            this.bmiNewEmployee.Id = 11;
            this.bmiNewEmployee.Name = "bmiNewEmployee";
            // 
            // bmiNewGroup
            // 
            this.bmiNewGroup.Caption = "New Group";
            this.bmiNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.bmiNewGroup.Id = 12;
            this.bmiNewGroup.Name = "bmiNewGroup";
            // 
            // biChangeViewSubItem
            // 
            this.biChangeViewSubItem.Caption = "Change View";
            this.biChangeViewSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_16;
            this.biChangeViewSubItem.Id = 10;
            this.biChangeViewSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_32;
            this.biChangeViewSubItem.LargeImageIndex = 40;
            this.biChangeViewSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowList),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowCard)});
            this.biChangeViewSubItem.Name = "biChangeViewSubItem";
            this.biChangeViewSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiShowList
            // 
            this.bmiShowList.Caption = "List";
            this.bmiShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.bmiShowList.GroupIndex = 3;
            this.bmiShowList.Id = 4;
            this.bmiShowList.Name = "bmiShowList";
            // 
            // bmiShowCard
            // 
            this.bmiShowCard.Caption = "Card";
            this.bmiShowCard.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_32;
            this.bmiShowCard.GroupIndex = 3;
            this.bmiShowCard.Id = 5;
            this.bmiShowCard.LargeImageIndex = 34;
            this.bmiShowCard.Name = "bmiShowCard";
            // 
            // biDataPaneSubItem
            // 
            this.biDataPaneSubItem.Caption = "Data Pane";
            this.biDataPaneSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_16;
            this.biDataPaneSubItem.Id = 10;
            this.biDataPaneSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_32;
            this.biDataPaneSubItem.LargeImageIndex = 41;
            this.biDataPaneSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHorizontalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiVerticalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHideDetail)});
            this.biDataPaneSubItem.Name = "biDataPaneSubItem";
            this.biDataPaneSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiHorizontalLayout
            // 
            this.bmiHorizontalLayout.Caption = "Right";
            this.bmiHorizontalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_bottom_16;
            this.bmiHorizontalLayout.GroupIndex = 2;
            this.bmiHorizontalLayout.Id = 6;
            this.bmiHorizontalLayout.Name = "bmiHorizontalLayout";
            // 
            // bmiVerticalLayout
            // 
            this.bmiVerticalLayout.Caption = "Bottom";
            this.bmiVerticalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_right_16;
            this.bmiVerticalLayout.GroupIndex = 2;
            this.bmiVerticalLayout.Id = 7;
            this.bmiVerticalLayout.Name = "bmiVerticalLayout";
            // 
            // bmiHideDetail
            // 
            this.bmiHideDetail.Caption = "Off";
            this.bmiHideDetail.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_off_16;
            this.bmiHideDetail.GroupIndex = 2;
            this.bmiHideDetail.Id = 7;
            this.bmiHideDetail.Name = "bmiHideDetail";
            // 
            // biResetView
            // 
            this.biResetView.Caption = "Reset View";
            this.biResetView.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_16;
            this.biResetView.Id = 9;
            this.biResetView.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_32;
            this.biResetView.Name = "biResetView";
            // 
            // biPrintSubItem
            // 
            this.biPrintSubItem.Caption = "Print";
            this.biPrintSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_16;
            this.biPrintSubItem.Id = 10;
            this.biPrintSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.biPrintSubItem.LargeImageIndex = 30;
            this.biPrintSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintProfile),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSummary),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintDirectory),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintTaskList)});
            this.biPrintSubItem.Name = "biPrintSubItem";
            this.biPrintSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiPrintProfile
            // 
            this.bmiPrintProfile.Caption = "Employee Profile";
            this.bmiPrintProfile.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_profile_16;
            this.bmiPrintProfile.GroupIndex = 5;
            this.bmiPrintProfile.Id = 6;
            this.bmiPrintProfile.Name = "bmiPrintProfile";
            // 
            // bmiPrintSummary
            // 
            this.bmiPrintSummary.Caption = "Summary Report";
            this.bmiPrintSummary.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_summary_16;
            this.bmiPrintSummary.GroupIndex = 5;
            this.bmiPrintSummary.Id = 6;
            this.bmiPrintSummary.Name = "bmiPrintSummary";
            // 
            // bmiPrintDirectory
            // 
            this.bmiPrintDirectory.Caption = "Directory";
            this.bmiPrintDirectory.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_directory_16;
            this.bmiPrintDirectory.GroupIndex = 5;
            this.bmiPrintDirectory.Id = 6;
            this.bmiPrintDirectory.Name = "bmiPrintDirectory";
            // 
            // bmiPrintTaskList
            // 
            this.bmiPrintTaskList.Caption = "Task List";
            this.bmiPrintTaskList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_task_list_16;
            this.bmiPrintTaskList.GroupIndex = 5;
            this.bmiPrintTaskList.Id = 6;
            this.bmiPrintTaskList.Name = "bmiPrintTaskList";
            // 
            // biMailMerge
            // 
            this.biMailMerge.Caption = "Mail Merge";
            this.biMailMerge.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mail_merge_16;
            this.biMailMerge.Id = 10;
            this.biMailMerge.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mail_merge_32;
            this.biMailMerge.Name = "biMailMerge";
            // 
            // biEdit
            // 
            this.biEdit.Caption = "Edit";
            this.biEdit.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_16;
            this.biEdit.Id = 13;
            this.biEdit.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_32;
            this.biEdit.Name = "biEdit";
            // 
            // galleryQuickLetters
            // 
            this.galleryQuickLetters.Caption = "ribbonGalleryBarItem1";
            // 
            // 
            // 
            this.galleryQuickLetters.Gallery.ColumnCount = 2;
            this.galleryQuickLetters.Gallery.DrawImageBackground = false;
            galleryItemGroup1.Caption = "Group1";
            galleryItem1.Caption = "Thank You Note";
            galleryItem1.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_thank_16;
            galleryItem2.Caption = "Employee Award";
            galleryItem2.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_award_16;
            galleryItem3.Caption = "Service Excellence";
            galleryItem3.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_excellence_16;
            galleryItem4.Caption = "Probation Notice";
            galleryItem4.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_probation_notice_16;
            galleryItem5.Caption = "Welcome To DevAV";
            galleryItem5.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_welcome_16;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5});
            this.galleryQuickLetters.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryQuickLetters.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.galleryQuickLetters.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -1;
            skinPaddingEdges2.Top = -1;
            this.galleryQuickLetters.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.galleryQuickLetters.Gallery.ShowItemText = true;
            this.galleryQuickLetters.Id = 15;
            this.galleryQuickLetters.Name = "galleryQuickLetters";
            // 
            // biMeeting
            // 
            this.biMeeting.Caption = "Meeting";
            this.biMeeting.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_meeting_16;
            this.biMeeting.Id = 1;
            this.biMeeting.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_meeting_32;
            this.biMeeting.Name = "biMeeting";
            // 
            // biTask
            // 
            this.biTask.Caption = "Task";
            this.biTask.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_task_16;
            this.biTask.Id = 2;
            this.biTask.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_task_32;
            this.biTask.Name = "biTask";
            // 
            // biViewSettings
            // 
            this.biViewSettings.Caption = "View Settings";
            this.biViewSettings.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_16;
            this.biViewSettings.Id = 3;
            this.biViewSettings.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_32;
            this.biViewSettings.Name = "biViewSettings";
            // 
            // biReverseSort
            // 
            this.biReverseSort.Caption = "Reverse Sort";
            this.biReverseSort.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_revers_sort_16;
            this.biReverseSort.Id = 4;
            this.biReverseSort.Name = "biReverseSort";
            this.biReverseSort.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biReverseSort_ItemClick);
            // 
            // biAddColumns
            // 
            this.biAddColumns.Caption = "Add Columns";
            this.biAddColumns.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_add_column_16;
            this.biAddColumns.Id = 5;
            this.biAddColumns.Name = "biAddColumns";
            this.biAddColumns.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.biAddColumns_ItemCheckedChanged);
            // 
            // biExpandCollapse
            // 
            this.biExpandCollapse.Caption = "Expand/Collapse";
            this.biExpandCollapse.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_expand_collapse_16;
            this.biExpandCollapse.Id = 6;
            this.biExpandCollapse.Name = "biExpandCollapse";
            this.biExpandCollapse.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biExpandCollapse_ItemClick);
            // 
            // hiItemsCount
            // 
            this.hiItemsCount.Caption = "RECORDS: 0";
            this.hiItemsCount.Id = 7;
            this.hiItemsCount.Name = "hiItemsCount";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup8,
            this.ribbonPageGroup4,
            this.ribbonPageGroup6});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "HOME";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewEmployee);
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewGroup);
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewSubItem);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "New";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.biDelete);
            this.ribbonPageGroup2.MergeOrder = 0;
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Delete";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.AllowTextClipping = false;
            this.ribbonPageGroup3.ItemLinks.Add(this.biEdit);
            this.ribbonPageGroup3.ItemLinks.Add(this.biPrintSubItem);
            this.ribbonPageGroup3.ItemLinks.Add(this.biMeeting);
            this.ribbonPageGroup3.ItemLinks.Add(this.biTask);
            this.ribbonPageGroup3.ItemLinks.Add(this.biMailMerge);
            this.ribbonPageGroup3.MergeOrder = 0;
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Actions";
            // 
            // ribbonPageGroup8
            // 
            this.ribbonPageGroup8.AllowTextClipping = false;
            this.ribbonPageGroup8.ItemLinks.Add(this.galleryQuickLetters);
            this.ribbonPageGroup8.MergeOrder = 0;
            this.ribbonPageGroup8.Name = "ribbonPageGroup8";
            this.ribbonPageGroup8.ShowCaptionButton = false;
            this.ribbonPageGroup8.Text = "Quick Letter";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.AllowTextClipping = false;
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowList);
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowCard);
            this.ribbonPageGroup4.ItemLinks.Add(this.biMap);
            this.ribbonPageGroup4.MergeOrder = 0;
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "View";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.AllowMinimize = false;
            this.ribbonPageGroup6.AllowTextClipping = false;
            this.ribbonPageGroup6.ItemLinks.Add(this.biNewCustomFilter);
            this.ribbonPageGroup6.MergeOrder = 0;
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Find";
            // 
            // biNewCustomFilter
            // 
            this.biNewCustomFilter.Caption = "Custom Filter";
            this.biNewCustomFilter.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_16;
            this.biNewCustomFilter.Id = 9;
            this.biNewCustomFilter.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_32;
            this.biNewCustomFilter.Name = "biNewCustomFilter";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup5,
            this.ribbonPageGroup7,
            this.ribbonPageGroup9});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "VIEW";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.AllowTextClipping = false;
            this.ribbonPageGroup5.ItemLinks.Add(this.biChangeViewSubItem);
            this.ribbonPageGroup5.ItemLinks.Add(this.biViewSettings);
            this.ribbonPageGroup5.ItemLinks.Add(this.biResetView);
            this.ribbonPageGroup5.MergeOrder = 0;
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Current View";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.AllowTextClipping = false;
            this.ribbonPageGroup7.ItemLinks.Add(this.biDataPaneSubItem);
            this.ribbonPageGroup7.MergeOrder = 1;
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.ShowCaptionButton = false;
            this.ribbonPageGroup7.Text = "Layout";
            // 
            // ribbonPageGroup9
            // 
            this.ribbonPageGroup9.AllowTextClipping = false;
            this.ribbonPageGroup9.ItemLinks.Add(this.biReverseSort);
            this.ribbonPageGroup9.ItemLinks.Add(this.biAddColumns);
            this.ribbonPageGroup9.ItemLinks.Add(this.biExpandCollapse);
            this.ribbonPageGroup9.MergeOrder = 1;
            this.ribbonPageGroup9.Name = "ribbonPageGroup9";
            this.ribbonPageGroup9.ShowCaptionButton = false;
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.hiItemsCount);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 773);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbonControl;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1280, 27);
            // 
            // gridControl
            // 
            this.gridControl.DataSource = this.bindingSource;
            this.gridControl.Location = new System.Drawing.Point(14, 14);
            this.gridControl.MainView = this.gridView;
            this.gridControl.Margin = new System.Windows.Forms.Padding(12);
            this.gridControl.MenuManager = this.ribbonControl;
            this.gridControl.Name = "gridControl";
            this.gridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemImageComboBox1,
            this.repositoryItemImageComboBox2,
            this.repositoryItemMemoEdit1,
            this.repositoryItemHyperLinkEdit1});
            this.gridControl.ShowOnlyPredefinedDetails = true;
            this.gridControl.Size = new System.Drawing.Size(749, 603);
            this.gridControl.TabIndex = 1;
            this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView,
            this.layoutView});
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Employee);
            // 
            // gridView
            // 
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colPrefix,
            this.colDepartment,
            this.colFullName,
            this.colAddress,
            this.colCity,
            this.colState,
            this.colZipCode,
            this.colEmail,
            this.colBirthDate,
            this.colHireDate,
            this.colHomePhone,
            this.colMobilePhone1,
            this.colTitle});
            this.gridView.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFullFocus;
            this.gridView.GridControl = this.gridControl;
            this.gridView.GroupCount = 1;
            this.gridView.GroupFormat = "[#image]{1} {2}";
            this.gridView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, "Id", null, "")});
            this.gridView.Name = "gridView";
            this.gridView.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridView.OptionsBehavior.Editable = false;
            this.gridView.OptionsFind.AlwaysVisible = true;
            this.gridView.OptionsFind.FindNullPrompt = "Search Employees (Ctrl + F)";
            this.gridView.OptionsFind.ShowClearButton = false;
            this.gridView.OptionsFind.ShowFindButton = false;
            this.gridView.OptionsSelection.MultiSelect = true;
            this.gridView.OptionsSelection.ShowCheckBoxSelectorInColumnHeader = DevExpress.Utils.DefaultBoolean.True;
            this.gridView.OptionsSelection.ShowCheckBoxSelectorInGroupRow = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.OptionsView.ShowIndicator = false;
            this.gridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartment, DevExpress.Data.ColumnSortOrder.Ascending)});
            // 
            // colPrefix
            // 
            this.colPrefix.Caption = "PREFIX";
            this.colPrefix.FieldName = "Prefix";
            this.colPrefix.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_prefix_16;
            this.colPrefix.ImageAlignment = System.Drawing.StringAlignment.Center;
            this.colPrefix.Name = "colPrefix";
            this.colPrefix.OptionsColumn.AllowFocus = false;
            this.colPrefix.OptionsColumn.AllowMove = false;
            this.colPrefix.OptionsColumn.AllowSize = false;
            this.colPrefix.OptionsColumn.FixedWidth = true;
            this.colPrefix.OptionsColumn.ShowCaption = false;
            this.colPrefix.Visible = true;
            this.colPrefix.VisibleIndex = 0;
            this.colPrefix.Width = 47;
            // 
            // colDepartment
            // 
            this.colDepartment.Caption = "DEPARTMENT";
            this.colDepartment.FieldName = "Department";
            this.colDepartment.Name = "colDepartment";
            this.colDepartment.OptionsColumn.AllowFocus = false;
            this.colDepartment.Visible = true;
            this.colDepartment.VisibleIndex = 0;
            // 
            // colFullName
            // 
            this.colFullName.Caption = "FULL NAME";
            this.colFullName.FieldName = "FullNameBindable";
            this.colFullName.Name = "colFullName";
            this.colFullName.OptionsColumn.AllowFocus = false;
            this.colFullName.Visible = true;
            this.colFullName.VisibleIndex = 1;
            this.colFullName.Width = 133;
            // 
            // colAddress
            // 
            this.colAddress.Caption = "ADDRESS";
            this.colAddress.FieldName = "Address.Line";
            this.colAddress.Name = "colAddress";
            this.colAddress.OptionsColumn.AllowFocus = false;
            this.colAddress.Visible = true;
            this.colAddress.VisibleIndex = 2;
            this.colAddress.Width = 142;
            // 
            // colCity
            // 
            this.colCity.Caption = "CITY";
            this.colCity.FieldName = "Address.City";
            this.colCity.Name = "colCity";
            this.colCity.OptionsColumn.AllowFocus = false;
            this.colCity.Visible = true;
            this.colCity.VisibleIndex = 3;
            this.colCity.Width = 113;
            // 
            // colState
            // 
            this.colState.Caption = "STATE";
            this.colState.FieldName = "Address.State";
            this.colState.Name = "colState";
            this.colState.OptionsColumn.AllowFocus = false;
            this.colState.Visible = true;
            this.colState.VisibleIndex = 4;
            this.colState.Width = 73;
            // 
            // colZipCode
            // 
            this.colZipCode.Caption = "ZIP CODE";
            this.colZipCode.FieldName = "Address.ZipCode";
            this.colZipCode.Name = "colZipCode";
            this.colZipCode.OptionsColumn.AllowFocus = false;
            this.colZipCode.Visible = true;
            this.colZipCode.VisibleIndex = 5;
            this.colZipCode.Width = 73;
            // 
            // colEmail
            // 
            this.colEmail.Caption = "EMAIL";
            this.colEmail.ColumnEdit = this.repositoryItemHyperLinkEdit1;
            this.colEmail.FieldName = "Email";
            this.colEmail.Name = "colEmail";
            this.colEmail.OptionsColumn.AllowFocus = false;
            this.colEmail.Visible = true;
            this.colEmail.VisibleIndex = 6;
            this.colEmail.Width = 166;
            // 
            // repositoryItemHyperLinkEdit1
            // 
            this.repositoryItemHyperLinkEdit1.AutoHeight = false;
            this.repositoryItemHyperLinkEdit1.Name = "repositoryItemHyperLinkEdit1";
            // 
            // colBirthDate
            // 
            this.colBirthDate.Caption = "BIRTH DATE";
            this.colBirthDate.FieldName = "BirthDate";
            this.colBirthDate.Name = "colBirthDate";
            this.colBirthDate.OptionsColumn.AllowFocus = false;
            // 
            // colHireDate
            // 
            this.colHireDate.Caption = "HIRE DATE";
            this.colHireDate.FieldName = "HireDate";
            this.colHireDate.Name = "colHireDate";
            this.colHireDate.OptionsColumn.AllowFocus = false;
            // 
            // colHomePhone
            // 
            this.colHomePhone.Caption = "HOME PHONE";
            this.colHomePhone.FieldName = "HomePhone";
            this.colHomePhone.Name = "colHomePhone";
            this.colHomePhone.OptionsColumn.AllowFocus = false;
            // 
            // colMobilePhone1
            // 
            this.colMobilePhone1.Caption = "MOBILE PHONE";
            this.colMobilePhone1.FieldName = "MobilePhone";
            this.colMobilePhone1.Name = "colMobilePhone1";
            this.colMobilePhone1.OptionsColumn.AllowFocus = false;
            // 
            // colTitle
            // 
            this.colTitle.Caption = "TITLE";
            this.colTitle.FieldName = "Title";
            this.colTitle.Name = "colTitle";
            this.colTitle.OptionsColumn.AllowFocus = false;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            // 
            // repositoryItemImageComboBox2
            // 
            this.repositoryItemImageComboBox2.AutoHeight = false;
            this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
            // 
            // repositoryItemMemoEdit1
            // 
            this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
            // 
            // layoutView
            // 
            this.layoutView.CardCaptionFormat = "{3}";
            this.layoutView.CardMinSize = new System.Drawing.Size(292, 183);
            this.layoutView.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
            this.colPhoto,
            this.colFullName1,
            this.colAddress1,
            this.colEmail1,
            this.colMobilePhone});
            this.layoutView.FieldCaptionFormat = "{0}";
            this.layoutView.GridControl = this.gridControl;
            this.layoutView.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colFullName1});
            this.layoutView.Name = "layoutView";
            this.layoutView.OptionsBehavior.AllowExpandCollapse = false;
            this.layoutView.OptionsBehavior.AllowRuntimeCustomization = false;
            this.layoutView.OptionsBehavior.Editable = false;
            this.layoutView.OptionsBehavior.ReadOnly = true;
            this.layoutView.OptionsFind.AlwaysVisible = true;
            this.layoutView.OptionsFind.FindNullPrompt = "Search Employees (Ctrl + F)";
            this.layoutView.OptionsFind.ShowClearButton = false;
            this.layoutView.OptionsFind.ShowCloseButton = false;
            this.layoutView.OptionsFind.ShowFindButton = false;
            this.layoutView.OptionsItemText.TextToControlDistance = 2;
            this.layoutView.OptionsMultiRecordMode.MultiRowScrollBarOrientation = DevExpress.XtraGrid.Views.Layout.ScrollBarOrientation.Vertical;
            this.layoutView.OptionsSelection.MultiSelect = true;
            this.layoutView.OptionsView.AllowHotTrackFields = false;
            this.layoutView.OptionsView.FocusRectStyle = DevExpress.XtraGrid.Views.Layout.FocusRectStyle.None;
            this.layoutView.OptionsView.ShowHeaderPanel = false;
            this.layoutView.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.MultiRow;
            this.layoutView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colFullName1, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.layoutView.TemplateCard = this.layoutViewCard1;
            this.layoutView.CustomDrawCardFieldValue += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.layoutView_CustomDrawCardFieldValue);
            // 
            // colPhoto
            // 
            this.colPhoto.AppearanceCell.Options.UseTextOptions = true;
            this.colPhoto.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
            this.colPhoto.FieldName = "Photo";
            this.colPhoto.LayoutViewField = this.layoutViewField_colPhoto;
            this.colPhoto.Name = "colPhoto";
            this.colPhoto.OptionsColumn.AllowEdit = false;
            this.colPhoto.OptionsColumn.AllowFocus = false;
            this.colPhoto.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colPhoto.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colPhoto
            // 
            this.layoutViewField_colPhoto.EditorPreferredWidth = 106;
            this.layoutViewField_colPhoto.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colPhoto.MaxSize = new System.Drawing.Size(120, 136);
            this.layoutViewField_colPhoto.MinSize = new System.Drawing.Size(120, 136);
            this.layoutViewField_colPhoto.Name = "layoutViewField_colPhoto";
            this.layoutViewField_colPhoto.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 12, 2, 2);
            this.layoutViewField_colPhoto.Size = new System.Drawing.Size(120, 136);
            this.layoutViewField_colPhoto.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutViewField_colPhoto.TextSize = new System.Drawing.Size(0, 0);
            this.layoutViewField_colPhoto.TextToControlDistance = 0;
            this.layoutViewField_colPhoto.TextVisible = false;
            // 
            // colFullName1
            // 
            this.colFullName1.FieldName = "FullNameBindable";
            this.colFullName1.LayoutViewField = this.layoutViewField_colFullName1;
            this.colFullName1.Name = "colFullName1";
            this.colFullName1.OptionsColumn.AllowFocus = false;
            // 
            // layoutViewField_colFullName1
            // 
            this.layoutViewField_colFullName1.EditorPreferredWidth = 20;
            this.layoutViewField_colFullName1.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colFullName1.Name = "layoutViewField_colFullName1";
            this.layoutViewField_colFullName1.Size = new System.Drawing.Size(272, 136);
            this.layoutViewField_colFullName1.TextSize = new System.Drawing.Size(67, 13);
            this.layoutViewField_colFullName1.TextToControlDistance = 5;
            // 
            // colAddress1
            // 
            this.colAddress1.Caption = "ADDRESS";
            this.colAddress1.ColumnEdit = this.repositoryItemMemoEdit1;
            this.colAddress1.FieldName = "Address";
            this.colAddress1.LayoutViewField = this.layoutViewField_colAddress1;
            this.colAddress1.Name = "colAddress1";
            this.colAddress1.OptionsColumn.AllowFocus = false;
            this.colAddress1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colAddress1.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colAddress1
            // 
            this.layoutViewField_colAddress1.EditorPreferredWidth = 148;
            this.layoutViewField_colAddress1.Location = new System.Drawing.Point(120, 0);
            this.layoutViewField_colAddress1.Name = "layoutViewField_colAddress1";
            this.layoutViewField_colAddress1.Size = new System.Drawing.Size(152, 36);
            this.layoutViewField_colAddress1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colAddress1.TextSize = new System.Drawing.Size(46, 13);
            // 
            // colEmail1
            // 
            this.colEmail1.Caption = "EMAIL";
            this.colEmail1.ColumnEdit = this.repositoryItemHyperLinkEdit1;
            this.colEmail1.FieldName = "Email";
            this.colEmail1.LayoutViewField = this.layoutViewField_colEmail1;
            this.colEmail1.Name = "colEmail1";
            this.colEmail1.OptionsColumn.AllowFocus = false;
            this.colEmail1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colEmail1.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colEmail1
            // 
            this.layoutViewField_colEmail1.EditorPreferredWidth = 148;
            this.layoutViewField_colEmail1.Location = new System.Drawing.Point(120, 36);
            this.layoutViewField_colEmail1.Name = "layoutViewField_colEmail1";
            this.layoutViewField_colEmail1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 8, 2);
            this.layoutViewField_colEmail1.Size = new System.Drawing.Size(152, 41);
            this.layoutViewField_colEmail1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colEmail1.TextSize = new System.Drawing.Size(46, 13);
            // 
            // colMobilePhone
            // 
            this.colMobilePhone.Caption = "PHONE";
            this.colMobilePhone.FieldName = "MobilePhone";
            this.colMobilePhone.LayoutViewField = this.layoutViewField_colMobilePhone;
            this.colMobilePhone.Name = "colMobilePhone";
            this.colMobilePhone.OptionsColumn.AllowFocus = false;
            this.colMobilePhone.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colMobilePhone.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colMobilePhone
            // 
            this.layoutViewField_colMobilePhone.EditorPreferredWidth = 148;
            this.layoutViewField_colMobilePhone.Location = new System.Drawing.Point(120, 77);
            this.layoutViewField_colMobilePhone.Name = "layoutViewField_colMobilePhone";
            this.layoutViewField_colMobilePhone.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 8, 2);
            this.layoutViewField_colMobilePhone.Size = new System.Drawing.Size(152, 45);
            this.layoutViewField_colMobilePhone.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colMobilePhone.TextSize = new System.Drawing.Size(46, 13);
            // 
            // layoutViewCard1
            // 
            this.layoutViewCard1.CustomizationFormText = "TemplateCard";
            this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
            this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colAddress1,
            this.layoutViewField_colEmail1,
            this.layoutViewField_colPhoto,
            this.layoutViewField_colMobilePhone,
            this.Item1});
            this.layoutViewCard1.Name = "layoutViewCard1";
            this.layoutViewCard1.OptionsItemText.TextToControlDistance = 2;
            this.layoutViewCard1.Text = "TemplateCard";
            // 
            // Item1
            // 
            this.Item1.AllowHotTrack = false;
            this.Item1.CustomizationFormText = "Item1";
            this.Item1.Location = new System.Drawing.Point(120, 122);
            this.Item1.Name = "Item1";
            this.Item1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.Item1.Size = new System.Drawing.Size(152, 14);
            this.Item1.Text = "Item1";
            this.Item1.TextSize = new System.Drawing.Size(0, 0);
            // 
            // modueLayout
            // 
            this.modueLayout.AllowCustomizationMenu = false;
            this.modueLayout.Controls.Add(this.pnlView);
            this.modueLayout.Controls.Add(this.gridControl);
            this.modueLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.modueLayout.Location = new System.Drawing.Point(0, 142);
            this.modueLayout.Name = "modueLayout";
            this.modueLayout.Root = this.layoutControlGroup1;
            this.modueLayout.Size = new System.Drawing.Size(1280, 631);
            this.modueLayout.TabIndex = 5;
            this.modueLayout.Text = "modueLayout";
            // 
            // pnlView
            // 
            this.pnlView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pnlView.Location = new System.Drawing.Point(772, 14);
            this.pnlView.Name = "pnlView";
            this.pnlView.Size = new System.Drawing.Size(494, 603);
            this.pnlView.TabIndex = 4;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.masterItem,
            this.detailItem,
            this.splitterItem});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(12, 12, 12, 12);
            this.layoutControlGroup1.Size = new System.Drawing.Size(1280, 631);
            this.layoutControlGroup1.Text = "Root";
            this.layoutControlGroup1.TextVisible = false;
            // 
            // masterItem
            // 
            this.masterItem.Control = this.gridControl;
            this.masterItem.CustomizationFormText = "layoutControlItem1";
            this.masterItem.Location = new System.Drawing.Point(0, 0);
            this.masterItem.Name = "layoutControlItem1";
            this.masterItem.Size = new System.Drawing.Size(753, 607);
            this.masterItem.Text = "layoutControlItem1";
            this.masterItem.TextSize = new System.Drawing.Size(0, 0);
            this.masterItem.TextToControlDistance = 0;
            this.masterItem.TextVisible = false;
            // 
            // detailItem
            // 
            this.detailItem.Control = this.pnlView;
            this.detailItem.CustomizationFormText = "layoutControlItem2";
            this.detailItem.Location = new System.Drawing.Point(758, 0);
            this.detailItem.Name = "layoutControlItem2";
            this.detailItem.Size = new System.Drawing.Size(498, 607);
            this.detailItem.Text = "layoutControlItem2";
            this.detailItem.TextSize = new System.Drawing.Size(0, 0);
            this.detailItem.TextToControlDistance = 0;
            this.detailItem.TextVisible = false;
            // 
            // splitterItem
            // 
            this.splitterItem.AllowHotTrack = true;
            this.splitterItem.CustomizationFormText = "splitterItem1";
            this.splitterItem.Location = new System.Drawing.Point(753, 0);
            this.splitterItem.Name = "splitterItem1";
            this.splitterItem.Size = new System.Drawing.Size(5, 607);
            // 
            // Employees
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.modueLayout);
            this.Controls.Add(this.ribbonControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Name = "Employees";
            this.Size = new System.Drawing.Size(1280, 800);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colPhoto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colFullName1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colAddress1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colEmail1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colMobilePhone)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Item1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.modueLayout)).EndInit();
            this.modueLayout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.masterItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 15
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportControl));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.exportGallery = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.backstageViewLabel1 = new DevExpress.ProductsDemo.Win.BackstageViewLabel();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.exportGallery)).BeginInit();
            this.exportGallery.SuspendLayout();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.splitContainer1, "splitContainer1");
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.exportGallery);
            this.splitContainer1.Panel1.Controls.Add(this.backstageViewLabel1);
            resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.labelControl4);
            // 
            // exportGallery
            // 
            this.exportGallery.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.exportGallery.Controls.Add(this.galleryControlClient1);
            this.exportGallery.DesignGalleryGroupIndex = 0;
            this.exportGallery.DesignGalleryItemIndex = 0;
            resources.ApplyResources(this.exportGallery, "exportGallery");
            // 
            // galleryControlGallery1
            // 
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseTextOptions = true;
            this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
            this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseTextOptions = true;
            this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.exportGallery.Gallery.AutoFitColumns = false;
            this.exportGallery.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
            this.exportGallery.Gallery.BackColor = System.Drawing.Color.Transparent;
            this.exportGallery.Gallery.CheckDrawMode = DevExpress.XtraBars.Ribbon.Gallery.CheckDrawMode.OnlyImage;
            this.exportGallery.Gallery.ColumnCount = 1;
            this.exportGallery.Gallery.FixedImageSize = false;
            resources.ApplyResources(galleryItemGroup1, "galleryItemGroup1");
            resources.ApplyResources(galleryItem1, "galleryItem1");
            galleryItem1.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToPDF_32x32;
            galleryItem1.Tag = "PDF";
            resources.ApplyResources(galleryItem2, "galleryItem2");
            galleryItem2.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToHTML_32x32;
            galleryItem2.Tag = "HTML";
            resources.ApplyResources(galleryItem3, "galleryItem3");
            galleryItem3.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToMHT_32x32;
            galleryItem3.Tag = "MHT";
            resources.ApplyResources(galleryItem4, "galleryItem4");
            galleryItem4.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToRTF_32x32;
            galleryItem4.Tag = "RTF";
            resources.ApplyResources(galleryItem5, "galleryItem5");
            galleryItem5.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToXLS_32x32;
            galleryItem5.Tag = "XLS";
            resources.ApplyResources(galleryItem6, "galleryItem6");
            galleryItem6.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToXLSX_32x32;
            galleryItem6.Tag = "XLSX";
            resources.ApplyResources(galleryItem7, "galleryItem7");
            galleryItem7.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToCSV_32x32;
            galleryItem7.Tag = "CSV";
            resources.ApplyResources(galleryItem8, "galleryItem8");
            galleryItem8.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToText_32x32;
            galleryItem8.Tag = "Text";
            resources.ApplyResources(galleryItem9, "galleryItem9");
            galleryItem9.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToImage_32x32;
            galleryItem9.Tag = "Image";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9});
            this.exportGallery.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.exportGallery.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.exportGallery.Gallery.ShowGroupCaption = false;
            this.exportGallery.Gallery.ShowItemText = true;
            this.exportGallery.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.exportGallery.Gallery.StretchItems = true;
            this.exportGallery.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.exportGallery.Name = "exportGallery";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.exportGallery;
            resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
            // 
            // backstageViewLabel1
            // 
            this.backstageViewLabel1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("backstageViewLabel1.Appearance.Font")));
            resources.ApplyResources(this.backstageViewLabel1, "backstageViewLabel1");
            this.backstageViewLabel1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.backstageViewLabel1.LineVisible = true;
            this.backstageViewLabel1.LookAndFeel.UseDefaultLookAndFeel = false;
            this.backstageViewLabel1.Name = "backstageViewLabel1";
            this.backstageViewLabel1.ShowLineShadow = false;
            // 
            // labelControl4
            // 
            resources.ApplyResources(this.labelControl4, "labelControl4");
            this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
            this.labelControl4.LineVisible = true;
            this.labelControl4.Name = "labelControl4";
            // 
            // saveFileDialog1
            // 
            resources.ApplyResources(this.saveFileDialog1, "saveFileDialog1");
            // 
            // ExportControl
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Name = "ExportControl";
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.exportGallery)).EndInit();
            this.exportGallery.ResumeLayout(false);
            this.ResumeLayout(false);

        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
            this.smalImages = new System.Windows.Forms.ImageList(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
            this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.rgHoverImages = new System.Windows.Forms.ImageList(this.components);
            this.rgImages = new System.Windows.Forms.ImageList(this.components);
            this.largeImages = new System.Windows.Forms.ImageList(this.components);
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemRichTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.applicationMenu1;
            this.ribbonControl1.ApplicationButtonText = null;
            this.ribbonControl1.ApplicationCaption = "DevExpress  学习1";
            this.ribbonControl1.ApplicationIcon = ((System.Drawing.Bitmap)(resources.GetObject("ribbonControl1.ApplicationIcon")));
            this.ribbonControl1.Controller = this.barAndDockingController1;
            // 
            // 
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.ExpandCollapseItem.Name = "";
            this.ribbonControl1.Images = this.smalImages;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barSubItem1,
            this.barButtonItem5,
            this.barButtonItem6,
            this.barStaticItem1,
            this.barStaticItem2,
            this.ribbonGalleryBarItem1,
            this.barEditItem1,
            this.barEditItem2,
            this.barEditItem3});
            this.ribbonControl1.LargeImages = this.largeImages;
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 14;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2,
            this.ribbonPage3});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemRichTextEdit1,
            this.repositoryItemDateEdit1,
            this.repositoryItemRadioGroup1});
            this.ribbonControl1.SelectedPage = this.ribbonPage3;
            this.ribbonControl1.Size = new System.Drawing.Size(782, 153);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barSubItem1);
            // 
            // applicationMenu1
            // 
            this.applicationMenu1.ItemLinks.Add(this.barButtonItem1);
            this.applicationMenu1.ItemLinks.Add(this.barButtonItem2);
            this.applicationMenu1.ItemLinks.Add(this.barButtonItem3);
            this.applicationMenu1.ItemLinks.Add(this.barButtonItem5);
            this.applicationMenu1.Name = "applicationMenu1";
            this.applicationMenu1.Ribbon = this.ribbonControl1;
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.barButtonItem1.Caption = "New";
            this.barButtonItem1.Id = 1;
            this.barButtonItem1.ImageIndex = 12;
            this.barButtonItem1.LargeImageIndex = 3;
            this.barButtonItem1.Name = "barButtonItem1";
            this.barButtonItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem2.Caption = "Open";
            this.barButtonItem2.Id = 2;
            this.barButtonItem2.ImageIndex = 0;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "Close";
            this.barButtonItem3.Id = 3;
            this.barButtonItem3.ImageIndex = 1;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Caption = "Save";
            this.barButtonItem5.Id = 6;
            this.barButtonItem5.Name = "barButtonItem5";
            // 
            // barAndDockingController1
            // 
            this.barAndDockingController1.LookAndFeel.SkinName = "Black";
            this.barAndDockingController1.LookAndFeel.UseDefaultLookAndFeel = false;
            this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
            // 
            // smalImages
            // 
            this.smalImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("smalImages.ImageStream")));
            this.smalImages.TransparentColor = System.Drawing.Color.Transparent;
            this.smalImages.Images.SetKeyName(0, "64 bit.png");
            this.smalImages.Images.SetKeyName(1, "address books.png");
            this.smalImages.Images.SetKeyName(2, "advanced.png");
            this.smalImages.Images.SetKeyName(3, "applications.png");
            this.smalImages.Images.SetKeyName(4, "archive.png");
            this.smalImages.Images.SetKeyName(5, "back_alt.png");
            this.smalImages.Images.SetKeyName(6, "burn.png");
            this.smalImages.Images.SetKeyName(7, "calculator.png");
            this.smalImages.Images.SetKeyName(8, "cash.png");
            this.smalImages.Images.SetKeyName(9, "color.png");
            this.smalImages.Images.SetKeyName(10, "Computer On.png");
            this.smalImages.Images.SetKeyName(11, "Computer.png");
            this.smalImages.Images.SetKeyName(12, "copy doc.png");
            this.smalImages.Images.SetKeyName(13, "Credit card.png");
            this.smalImages.Images.SetKeyName(14, "delete archive.png");
            this.smalImages.Images.SetKeyName(15, "Desktop 2.png");
            this.smalImages.Images.SetKeyName(16, "down_alt.png");
            this.smalImages.Images.SetKeyName(17, "edit.png");
            this.smalImages.Images.SetKeyName(18, "Ekisho Deep Ocean HD1.png");
            this.smalImages.Images.SetKeyName(19, "exclamation.png");
            this.smalImages.Images.SetKeyName(20, "exit.png");
            this.smalImages.Images.SetKeyName(21, "folder.png");
            this.smalImages.Images.SetKeyName(22, "folder_smart.png");
            this.smalImages.Images.SetKeyName(23, "forward all.png");
            this.smalImages.Images.SetKeyName(24, "forward button white.png");
            this.smalImages.Images.SetKeyName(25, "forward button.png");
            this.smalImages.Images.SetKeyName(26, "forward.png");
            this.smalImages.Images.SetKeyName(27, "forward_alt.png");
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "Print";
            this.barButtonItem4.Id = 4;
            this.barButtonItem4.ImageIndex = 2;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "Save";
            this.barSubItem1.Id = 5;
            this.barSubItem1.LargeImageIndex = 5;
            this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6)});
            this.barSubItem1.Name = "barSubItem1";
            // 
            // barButtonItem6
            // 
            this.barButtonItem6.Caption = "Save All";
            this.barButtonItem6.Id = 7;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "Page: 1";
            this.barStaticItem1.Id = 8;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem2
            // 
            this.barStaticItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barStaticItem2.Caption = "About";
            this.barStaticItem2.Id = 9;
            this.barStaticItem2.Name = "barStaticItem2";
            this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Gallery.AllowHoverImages = true;
            galleryItemGroup1.Caption = "Export";
            galleryItem1.Caption = "7zip";
            galleryItem1.HoverImageIndex = 0;
            galleryItem1.ImageIndex = 0;
            galleryItem2.Caption = "7zip_alt";
            galleryItem2.HoverImageIndex = 1;
            galleryItem2.ImageIndex = 1;
            galleryItem3.Caption = "abby_finereader";
            galleryItem3.HoverImageIndex = 2;
            galleryItem3.ImageIndex = 2;
            galleryItem4.Caption = "activesync";
            galleryItem4.HoverImageIndex = 3;
            galleryItem4.ImageIndex = 3;
            galleryItem5.Caption = "adobe_acrobat";
            galleryItem5.HoverImageIndex = 4;
            galleryItem5.ImageIndex = 4;
            galleryItem6.Caption = "adobe_air";
            galleryItem6.HoverImageIndex = 5;
            galleryItem6.ImageIndex = 5;
            galleryItem7.Caption = "adobe_flash";
            galleryItem7.HoverImageIndex = 6;
            galleryItem7.ImageIndex = 6;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7});
            this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.ribbonGalleryBarItem1.Gallery.HoverImages = this.rgHoverImages;
            this.ribbonGalleryBarItem1.Gallery.Images = this.rgImages;
            this.ribbonGalleryBarItem1.Gallery.InitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.ribbonGalleryBarItem1_Gallery_InitDropDownGallery);
            this.ribbonGalleryBarItem1.Id = 10;
            this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
            // 
            // rgHoverImages
            // 
            this.rgHoverImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("rgHoverImages.ImageStream")));
            this.rgHoverImages.TransparentColor = System.Drawing.Color.Transparent;
            this.rgHoverImages.Images.SetKeyName(0, "7zip.png");
            this.rgHoverImages.Images.SetKeyName(1, "7zip_alt.png");
            this.rgHoverImages.Images.SetKeyName(2, "abby_finereader.png");
            this.rgHoverImages.Images.SetKeyName(3, "activesync.png");
            this.rgHoverImages.Images.SetKeyName(4, "adobe_acrobat.png");
            this.rgHoverImages.Images.SetKeyName(5, "adobe_air.png");
            this.rgHoverImages.Images.SetKeyName(6, "adobe_flash.png");
            // 
            // rgImages
            // 
            this.rgImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("rgImages.ImageStream")));
            this.rgImages.TransparentColor = System.Drawing.Color.Transparent;
            this.rgImages.Images.SetKeyName(0, "7zip.png");
            this.rgImages.Images.SetKeyName(1, "7zip_alt.png");
            this.rgImages.Images.SetKeyName(2, "abby_finereader.png");
            this.rgImages.Images.SetKeyName(3, "activesync.png");
            this.rgImages.Images.SetKeyName(4, "adobe_acrobat.png");
            this.rgImages.Images.SetKeyName(5, "adobe_air.png");
            this.rgImages.Images.SetKeyName(6, "adobe_flash.png");
            // 
            // largeImages
            // 
            this.largeImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("largeImages.ImageStream")));
            this.largeImages.TransparentColor = System.Drawing.Color.Transparent;
            this.largeImages.Images.SetKeyName(0, "accept.png");
            this.largeImages.Images.SetKeyName(1, "accept_page.png");
            this.largeImages.Images.SetKeyName(2, "add.png");
            this.largeImages.Images.SetKeyName(3, "add_page.png");
            this.largeImages.Images.SetKeyName(4, "add_to_folder.png");
            this.largeImages.Images.SetKeyName(5, "attachment.png");
            this.largeImages.Images.SetKeyName(6, "back.png");
            this.largeImages.Images.SetKeyName(7, "block.png");
            this.largeImages.Images.SetKeyName(8, "calendar.png");
            this.largeImages.Images.SetKeyName(9, "calendar_empty.png");
            this.largeImages.Images.SetKeyName(10, "chart.png");
            this.largeImages.Images.SetKeyName(11, "chart_pie.png");
            this.largeImages.Images.SetKeyName(12, "clock.png");
            this.largeImages.Images.SetKeyName(13, "comment.png");
            this.largeImages.Images.SetKeyName(14, "comments.png");
            this.largeImages.Images.SetKeyName(15, "delete.png");
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "Home";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem3);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem4);
            this.ribbonPageGroup1.ItemLinks.Add(this.barSubItem1);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "File";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup2});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "Gallary Page";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.ribbonGalleryBarItem1);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.Text = "Export";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1);
            this.ribbonStatusBar1.ItemLinks.Add(this.barButtonItem4);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem2);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 399);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(782, 24);
            // 
            // galleryControl1
            // 
            this.galleryControl1.Controller = this.barAndDockingController1;
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            this.galleryControl1.Location = new System.Drawing.Point(0, 0);
            this.galleryControl1.Name = "galleryControl1";
            this.galleryControl1.Size = new System.Drawing.Size(140, 111);
            this.galleryControl1.TabIndex = 1;
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
            this.galleryControlClient1.Size = new System.Drawing.Size(119, 107);
            // 
            // ribbonPage3
            // 
            this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup3});
            this.ribbonPage3.Name = "ribbonPage3";
            this.ribbonPage3.Text = "Editor";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.barEditItem1);
            this.ribbonPageGroup3.ItemLinks.Add(this.barEditItem2);
            this.ribbonPageGroup3.ItemLinks.Add(this.barEditItem3);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.Text = "ribbonPageGroup3";
            // 
            // barEditItem1
            // 
            this.barEditItem1.Edit = this.repositoryItemRichTextEdit1;
            this.barEditItem1.EditHeight = 400;
            this.barEditItem1.Id = 11;
            this.barEditItem1.Name = "barEditItem1";
            this.barEditItem1.Width = 150;
            // 
            // repositoryItemRichTextEdit1
            // 
            this.repositoryItemRichTextEdit1.Name = "repositoryItemRichTextEdit1";
            // 
            // barEditItem2
            // 
            this.barEditItem2.Caption = "Date :";
            this.barEditItem2.Edit = this.repositoryItemDateEdit1;
            this.barEditItem2.Id = 12;
            this.barEditItem2.Name = "barEditItem2";
            this.barEditItem2.Width = 100;
            // 
            // repositoryItemDateEdit1
            // 
            this.repositoryItemDateEdit1.AutoHeight = false;
            this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
            this.repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            // 
            // barEditItem3
            // 
            this.barEditItem3.Edit = this.repositoryItemRadioGroup1;
            this.barEditItem3.EditHeight = 400;
            this.barEditItem3.Id = 13;
            this.barEditItem3.Name = "barEditItem3";
            this.barEditItem3.Width = 150;
            // 
            // repositoryItemRadioGroup1
            // 
            this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Radio Item# 1"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Radio Item# 2"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Radio Item# 3")});
            this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(782, 423);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.Controls.Add(this.galleryControl1);
            this.Name = "Form1";
            this.Ribbon = this.ribbonControl1;
            this.StatusBar = this.ribbonStatusBar1;
            this.Text = "DevExpress  学习1";
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDashboardDesigner));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup15 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem14 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem15 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem16 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem17 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem18 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem19 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem20 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup16 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup17 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup18 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup19 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup20 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup21 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup22 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup23 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem23 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem24 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem25 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup24 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem26 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem27 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem28 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem29 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem30 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem31 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup25 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem32 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem33 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem34 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem35 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem36 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem37 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem38 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup26 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem39 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem40 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup27 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem41 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup28 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem42 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem43 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem44 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            this.dashboardDesigner1 = new DevExpress.DashboardWin.DashboardDesigner();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.dashboardBackstageViewControl1 = new DevExpress.DashboardWin.Bars.DashboardBackstageViewControl();
            this.dashboardBarAndDockingController1 = new DevExpress.DashboardWin.Native.DashboardBarAndDockingController(this.components);
            this.dashboardBackstageNewButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageNewButton();
            this.dashboardBackstageOpenButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageOpenButton();
            this.dashboardBackstageSaveButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageSaveButton();
            this.dashboardBackstageSaveAsButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageSaveAsButton();
            this.dashboardBackstageRecentTab1 = new DevExpress.DashboardWin.Bars.DashboardBackstageRecentTab();
            this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.recentDashboardsControl1 = new DevExpress.DashboardWin.Bars.RecentDashboardsControl();
            this.dashboardBarController1 = new DevExpress.DashboardWin.Bars.DashboardBarController();
            this.fileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FileRibbonPageGroup();
            this.dashboardRibbonPage1 = new DevExpress.DashboardWin.Bars.DashboardRibbonPage();
            this.fileNewBarItem1 = new DevExpress.DashboardWin.Bars.FileNewBarItem();
            this.fileOpenBarItem1 = new DevExpress.DashboardWin.Bars.FileOpenBarItem();
            this.fileSaveBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveBarItem();
            this.fileSaveAsBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveAsBarItem();
            this.historyRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.HistoryRibbonPageGroup();
            this.undoBarItem1 = new DevExpress.DashboardWin.Bars.UndoBarItem();
            this.redoBarItem1 = new DevExpress.DashboardWin.Bars.RedoBarItem();
            this.dataSourceRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPageGroup();
            this.newDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.NewDataSourceBarItem();
            this.editDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceBarItem();
            this.deleteDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.DeleteDataSourceBarItem();
            this.insertRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InsertRibbonPageGroup();
            this.insertPivotBarItem1 = new DevExpress.DashboardWin.Bars.InsertPivotBarItem();
            this.insertGridBarItem1 = new DevExpress.DashboardWin.Bars.InsertGridBarItem();
            this.insertChartBarItem1 = new DevExpress.DashboardWin.Bars.InsertChartBarItem();
            this.insertPiesBarItem1 = new DevExpress.DashboardWin.Bars.InsertPiesBarItem();
            this.insertGaugesBarItem1 = new DevExpress.DashboardWin.Bars.InsertGaugesBarItem();
            this.insertCardsBarItem1 = new DevExpress.DashboardWin.Bars.InsertCardsBarItem();
            this.insertImageBarItem1 = new DevExpress.DashboardWin.Bars.InsertImageBarItem();
            this.insertTextBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertTextBoxBarItem();
            this.insertRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.InsertRangeFilterBarItem();
            this.itemsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ItemsRibbonPageGroup();
            this.duplicateItemBarItem1 = new DevExpress.DashboardWin.Bars.DuplicateItemBarItem();
            this.deleteItemBarItem1 = new DevExpress.DashboardWin.Bars.DeleteItemBarItem();
            this.formatRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FormatRibbonPageGroup();
            this.dashboardTitleBarItem1 = new DevExpress.DashboardWin.Bars.DashboardTitleBarItem();
            this.setCurrencyCultureBarItem1 = new DevExpress.DashboardWin.Bars.SetCurrencyCultureBarItem();
            this.skinsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.SkinsRibbonPageGroup();
            this.dashboardSkinsBarItem1 = new DevExpress.DashboardWin.Bars.DashboardSkinsBarItem();
            this.filteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage1 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.pivotToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PivotToolsRibbonPageCategory();
            this.editFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditFilterBarItem();
            this.clearFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearFilterBarItem();
            this.filteringRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage2 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.gridToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GridToolsRibbonPageCategory();
            this.filteringRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage3 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.chartToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChartToolsRibbonPageCategory();
            this.filteringRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage4 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.piesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PiesToolsRibbonPageCategory();
            this.filteringRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage5 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.gaugesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GaugesToolsRibbonPageCategory();
            this.filteringRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage6 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.cardsToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.CardsToolsRibbonPageCategory();
            this.filteringRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.dataRibbonPage7 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.rangeFilterToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.RangeFilterToolsRibbonPageCategory();
            this.masterFilterRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.ignoreMasterFiltersBarItem1 = new DevExpress.DashboardWin.Bars.IgnoreMasterFiltersBarItem();
            this.masterFilterRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.masterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MasterFilterBarItem();
            this.crossDataSourceFilteringBarItem1 = new DevExpress.DashboardWin.Bars.CrossDataSourceFilteringBarItem();
            this.masterFilterRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.filterByChartSeriesBarItem1 = new DevExpress.DashboardWin.Bars.FilterByChartSeriesBarItem();
            this.filterByChartArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.FilterByChartArgumentsBarItem();
            this.masterFilterRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.filterByPieSeriesBarItem1 = new DevExpress.DashboardWin.Bars.FilterByPieSeriesBarItem();
            this.filterByPieArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.FilterByPieArgumentsBarItem();
            this.masterFilterRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.masterFilterRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.masterFilterRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.drillDownRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DrillDownRibbonPageGroup();
            this.drillDownBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownBarItem();
            this.drillDownRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.DrillDownRibbonPageGroup();
            this.drillDownOnChartSeriesBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownOnChartSeriesBarItem();
            this.drillDownOnChartArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownOnChartArgumentsBarItem();
            this.drillDownRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.DrillDownRibbonPageGroup();
            this.drillDownOnPieSeriesBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownOnPieSeriesBarItem();
            this.drillDownOnPieArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownOnPieArgumentsBarItem();
            this.drillDownRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.DrillDownRibbonPageGroup();
            this.drillDownRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.DrillDownRibbonPageGroup();
            this.contentArrangementRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.layoutAndStyleRibbonPage1 = new DevExpress.DashboardWin.Bars.LayoutAndStyleRibbonPage();
            this.contentAutoArrangeBarItem1 = new DevExpress.DashboardWin.Bars.ContentAutoArrangeBarItem();
            this.contentArrangeInColumnsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInColumnsBarItem();
            this.contentArrangeInRowsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInRowsBarItem();
            this.contentArrangementCountBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangementCountBarItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.contentArrangementRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.layoutAndStyleRibbonPage2 = new DevExpress.DashboardWin.Bars.LayoutAndStyleRibbonPage();
            this.contentArrangementRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.layoutAndStyleRibbonPage3 = new DevExpress.DashboardWin.Bars.LayoutAndStyleRibbonPage();
            this.gridCellsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridCellsRibbonPageGroup();
            this.layoutAndStyleRibbonPage4 = new DevExpress.DashboardWin.Bars.LayoutAndStyleRibbonPage();
            this.gridHorizontalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridHorizontalLinesBarItem();
            this.gridVerticalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridVerticalLinesBarItem();
            this.gridMergeCellsBarItem1 = new DevExpress.DashboardWin.Bars.GridMergeCellsBarItem();
            this.gridBandedRowsBarItem1 = new DevExpress.DashboardWin.Bars.GridBandedRowsBarItem();
            this.gridColumnHeadersBarItem1 = new DevExpress.DashboardWin.Bars.GridColumnHeadersBarItem();
            this.chartLayoutPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLayoutPageGroup();
            this.chartLayoutAndStyleRibbonPage1 = new DevExpress.DashboardWin.Bars.ChartLayoutAndStyleRibbonPage();
            this.chartRotateBarItem1 = new DevExpress.DashboardWin.Bars.ChartRotateBarItem();
            this.chartXAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartXAxisSettingsBarItem();
            this.chartYAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartYAxisSettingsBarItem();
            this.chartLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLegendPositionPageGroup();
            this.chartShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.ChartShowLegendBarItem();
            this.galleryChartLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryChartLegendPositionItem();
            this.chartStylePageGroup1 = new DevExpress.DashboardWin.Bars.ChartStylePageGroup();
            this.galleryChartSeriesTypeItem1 = new DevExpress.DashboardWin.Bars.GalleryChartSeriesTypeItem();
            this.pieLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieLabelsRibbonPageGroup();
            this.pieLabelsDataLabelsBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsBarItem();
            this.pieLabelsDataLabelsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsNoneBarItem();
            this.pieLabelsDataLabelArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelArgumentBarItem();
            this.pieLabelsDataLabelsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueBarItem();
            this.pieLabelsDataLabelsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndValueBarItem();
            this.pieLabelsDataLabelsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsPercentBarItem();
            this.pieLabelsDataLabelsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentValueAndPercentBarItem();
            this.pieTooltipsBarItem1 = new DevExpress.DashboardWin.Bars.PieTooltipsBarItem();
            this.pieLabelsTooltipsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsNoneBarItem();
            this.pieLabelsTooltipsArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentBarItem();
            this.pieLabelsTooltipsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueBarItem();
            this.pieLabelsTooltipsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndValueBarItem();
            this.pieLabelsTooltipsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsPercentBarItem();
            this.pieLabelsTooltipsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueAndPercentBarItem();
            this.pieLabelsTooltipsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndPercentBarItem();
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentValueAndPercentBarItem();
            this.pieStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieStyleRibbonPageGroup();
            this.pieStylePieBarItem1 = new DevExpress.DashboardWin.Bars.PieStylePieBarItem();
            this.pieStyleDonutBarItem1 = new DevExpress.DashboardWin.Bars.PieStyleDonutBarItem();
            this.pieShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.PieShowCaptionsBarItem();
            this.gaugeStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugeStyleRibbonPageGroup();
            this.gaugeStyleFullCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleFullCircularBarItem();
            this.gaugeStyleHalfCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleHalfCircularBarItem();
            this.gaugeStyleLeftQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLeftQuarterCircularBarItem();
            this.gaugeStyleRightQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleRightQuarterCircularBarItem();
            this.gaugeStyleThreeForthCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleThreeForthCircularBarItem();
            this.gaugeStyleLinearHorizontalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearHorizontalBarItem();
            this.gaugeStyleLinearVerticalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearVerticalBarItem();
            this.gaugesLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugesLabelsRibbonPageGroup();
            this.gaugeShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.GaugeShowCaptionsBarItem();
            this.imageOpenRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageOpenRibbonPageGroup();
            this.imageOptionsRibbonPage1 = new DevExpress.DashboardWin.Bars.ImageOptionsRibbonPage();
            this.imageToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ImageToolsRibbonPageCategory();
            this.imageLoadBarItem1 = new DevExpress.DashboardWin.Bars.ImageLoadBarItem();
            this.imageImportBarItem1 = new DevExpress.DashboardWin.Bars.ImageImportBarItem();
            this.imageSizeModeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageSizeModeRibbonPageGroup();
            this.imageSizeModeClipBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeClipBarItem();
            this.imageSizeModeStretchBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeStretchBarItem();
            this.imageSizeModeSqueezeBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeSqueezeBarItem();
            this.imageSizeModeZoomBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeZoomBarItem();
            this.imageAlignmentRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageAlignmentRibbonPageGroup();
            this.imageAlignmentTopLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopLeftBarItem();
            this.imageAlignmentCenterLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterLeftBarItem();
            this.imageAlignmentBottomLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomLeftBarItem();
            this.imageAlignmentTopCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopCenterBarItem();
            this.imageAlignmentCenterCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterCenterBarItem();
            this.imageAlignmentBottomCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomCenterBarItem();
            this.imageAlignmentTopRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopRightBarItem();
            this.imageAlignmentCenterRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterRightBarItem();
            this.imageAlignmentBottomRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomRightBarItem();
            this.textBoxSettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TextBoxSettingsRibbonPageGroup();
            this.textBoxFormatRibbonPage1 = new DevExpress.DashboardWin.Bars.TextBoxFormatRibbonPage();
            this.textBoxToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.TextBoxToolsRibbonPageCategory();
            this.textBoxEditTextBarItem1 = new DevExpress.DashboardWin.Bars.TextBoxEditTextBarItem();
            this.rangeFilterSeriesTypeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.RangeFilterSeriesTypeRibbonPageGroup();
            this.rangeFilterStyleRibbonPage1 = new DevExpress.DashboardWin.Bars.RangeFilterStyleRibbonPage();
            this.rangeFilterLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterLineSeriesTypeBarItem();
            this.rangeFilterStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedLineSeriesTypeBarItem();
            this.rangeFilterFullStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedLineSeriesTypeBarItem();
            this.rangeFilterAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterAreaSeriesTypeBarItem();
            this.rangeFilterStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedAreaSeriesTypeBarItem();
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedAreaSeriesTypeBarItem();
            this.pivotLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PivotLayoutRibbonPageGroup();
            this.pivotInitialStateBarItem1 = new DevExpress.DashboardWin.Bars.PivotInitialStateBarItem();
            this.pivotAutoExpandColumnBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandColumnBarItem();
            this.pivotAutoExpandRowBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandRowBarItem();
            this.quickAccessHistoryRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.QuickAccessHistoryRibbonPageGroup();
            this.quickAccessUndoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessUndoBarItem();
            this.quickAccessRedoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessRedoBarItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            this.dashboardBackstageViewControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarAndDockingController1)).BeginInit();
            this.backstageViewClientControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            this.SuspendLayout();
            // 
            // dashboardDesigner1
            // 
            this.dashboardDesigner1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardDesigner1.Location = new System.Drawing.Point(0, 142);
            this.dashboardDesigner1.Name = "dashboardDesigner1";
            this.dashboardDesigner1.Size = new System.Drawing.Size(708, 262);
            this.dashboardDesigner1.TabIndex = 0;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.dashboardBackstageViewControl1;
            this.ribbonControl1.Controller = this.dashboardBarAndDockingController1;
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.fileNewBarItem1,
            this.fileOpenBarItem1,
            this.fileSaveBarItem1,
            this.fileSaveAsBarItem1,
            this.undoBarItem1,
            this.redoBarItem1,
            this.newDataSourceBarItem1,
            this.editDataSourceBarItem1,
            this.deleteDataSourceBarItem1,
            this.insertPivotBarItem1,
            this.insertGridBarItem1,
            this.insertChartBarItem1,
            this.insertPiesBarItem1,
            this.insertGaugesBarItem1,
            this.insertCardsBarItem1,
            this.insertImageBarItem1,
            this.insertTextBoxBarItem1,
            this.insertRangeFilterBarItem1,
            this.duplicateItemBarItem1,
            this.deleteItemBarItem1,
            this.dashboardTitleBarItem1,
            this.setCurrencyCultureBarItem1,
            this.dashboardSkinsBarItem1,
            this.editFilterBarItem1,
            this.clearFilterBarItem1,
            this.ignoreMasterFiltersBarItem1,
            this.masterFilterBarItem1,
            this.crossDataSourceFilteringBarItem1,
            this.filterByChartSeriesBarItem1,
            this.filterByChartArgumentsBarItem1,
            this.filterByPieSeriesBarItem1,
            this.filterByPieArgumentsBarItem1,
            this.drillDownBarItem1,
            this.drillDownOnChartSeriesBarItem1,
            this.drillDownOnChartArgumentsBarItem1,
            this.drillDownOnPieSeriesBarItem1,
            this.drillDownOnPieArgumentsBarItem1,
            this.contentAutoArrangeBarItem1,
            this.contentArrangeInColumnsBarItem1,
            this.contentArrangeInRowsBarItem1,
            this.contentArrangementCountBarItem1,
            this.gridHorizontalLinesBarItem1,
            this.gridVerticalLinesBarItem1,
            this.gridMergeCellsBarItem1,
            this.gridBandedRowsBarItem1,
            this.gridColumnHeadersBarItem1,
            this.chartRotateBarItem1,
            this.chartXAxisSettingsBarItem1,
            this.chartYAxisSettingsBarItem1,
            this.chartShowLegendBarItem1,
            this.galleryChartLegendPositionItem1,
            this.galleryChartSeriesTypeItem1,
            this.pieLabelsDataLabelsBarItem1,
            this.pieLabelsDataLabelsNoneBarItem1,
            this.pieLabelsDataLabelArgumentBarItem1,
            this.pieLabelsDataLabelsValueBarItem1,
            this.pieLabelsDataLabelsArgumentAndValueBarItem1,
            this.pieLabelsDataLabelsPercentBarItem1,
            this.pieLabelsDataLabelsValueAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1,
            this.pieTooltipsBarItem1,
            this.pieLabelsTooltipsNoneBarItem1,
            this.pieLabelsTooltipsArgumentBarItem1,
            this.pieLabelsTooltipsValueBarItem1,
            this.pieLabelsTooltipsArgumentAndValueBarItem1,
            this.pieLabelsTooltipsPercentBarItem1,
            this.pieLabelsTooltipsValueAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1,
            this.pieStylePieBarItem1,
            this.pieStyleDonutBarItem1,
            this.pieShowCaptionsBarItem1,
            this.gaugeStyleFullCircularBarItem1,
            this.gaugeStyleHalfCircularBarItem1,
            this.gaugeStyleLeftQuarterCircularBarItem1,
            this.gaugeStyleRightQuarterCircularBarItem1,
            this.gaugeStyleThreeForthCircularBarItem1,
            this.gaugeStyleLinearHorizontalBarItem1,
            this.gaugeStyleLinearVerticalBarItem1,
            this.gaugeShowCaptionsBarItem1,
            this.imageLoadBarItem1,
            this.imageImportBarItem1,
            this.imageSizeModeClipBarItem1,
            this.imageSizeModeStretchBarItem1,
            this.imageSizeModeSqueezeBarItem1,
            this.imageSizeModeZoomBarItem1,
            this.imageAlignmentTopLeftBarItem1,
            this.imageAlignmentCenterLeftBarItem1,
            this.imageAlignmentBottomLeftBarItem1,
            this.imageAlignmentTopCenterBarItem1,
            this.imageAlignmentCenterCenterBarItem1,
            this.imageAlignmentBottomCenterBarItem1,
            this.imageAlignmentTopRightBarItem1,
            this.imageAlignmentCenterRightBarItem1,
            this.imageAlignmentBottomRightBarItem1,
            this.textBoxEditTextBarItem1,
            this.rangeFilterLineSeriesTypeBarItem1,
            this.rangeFilterStackedLineSeriesTypeBarItem1,
            this.rangeFilterFullStackedLineSeriesTypeBarItem1,
            this.rangeFilterAreaSeriesTypeBarItem1,
            this.rangeFilterStackedAreaSeriesTypeBarItem1,
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1,
            this.pivotInitialStateBarItem1,
            this.pivotAutoExpandColumnBarItem1,
            this.pivotAutoExpandRowBarItem1,
            this.quickAccessUndoBarItem1,
            this.quickAccessRedoBarItem1});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 109;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.pivotToolsRibbonPageCategory1,
            this.gridToolsRibbonPageCategory1,
            this.chartToolsRibbonPageCategory1,
            this.piesToolsRibbonPageCategory1,
            this.gaugesToolsRibbonPageCategory1,
            this.cardsToolsRibbonPageCategory1,
            this.rangeFilterToolsRibbonPageCategory1,
            this.imageToolsRibbonPageCategory1,
            this.textBoxToolsRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl1.Size = new System.Drawing.Size(708, 142);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.fileSaveBarItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            // 
            // dashboardBackstageViewControl1
            // 
            this.dashboardBackstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.dashboardBackstageViewControl1.Controller = this.dashboardBarAndDockingController1;
            this.dashboardBackstageViewControl1.Controls.Add(this.backstageViewClientControl1);
            this.dashboardBackstageViewControl1.DashboardRecentTab = this.dashboardBackstageRecentTab1;
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageNewButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageOpenButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageSaveButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageSaveAsButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageRecentTab1);
            this.dashboardBackstageViewControl1.Location = new System.Drawing.Point(0, 0);
            this.dashboardBackstageViewControl1.Name = "dashboardBackstageViewControl1";
            this.dashboardBackstageViewControl1.Ribbon = this.ribbonControl1;
            this.dashboardBackstageViewControl1.SelectedTab = this.dashboardBackstageRecentTab1;
            this.dashboardBackstageViewControl1.SelectedTabIndex = 4;
            this.dashboardBackstageViewControl1.Size = new System.Drawing.Size(240, 150);
            this.dashboardBackstageViewControl1.TabIndex = 2;
            // 
            // dashboardBarAndDockingController1
            // 
            this.dashboardBarAndDockingController1.PropertiesBar.AllowLinkLighting = false;
            this.dashboardBarAndDockingController1.PropertiesBar.DefaultGlyphSize = new System.Drawing.Size(16, 16);
            this.dashboardBarAndDockingController1.PropertiesBar.DefaultLargeGlyphSize = new System.Drawing.Size(32, 32);
            // 
            // dashboardBackstageNewButton1
            // 
            this.dashboardBackstageNewButton1.DashboardDesigner = this.dashboardDesigner1;
            this.dashboardBackstageNewButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageNewButton1.Glyph")));
            this.dashboardBackstageNewButton1.Name = "dashboardBackstageNewButton1";
            // 
            // dashboardBackstageOpenButton1
            // 
            this.dashboardBackstageOpenButton1.DashboardDesigner = this.dashboardDesigner1;
            this.dashboardBackstageOpenButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageOpenButton1.Glyph")));
            this.dashboardBackstageOpenButton1.Name = "dashboardBackstageOpenButton1";
            // 
            // dashboardBackstageSaveButton1
            // 
            this.dashboardBackstageSaveButton1.DashboardDesigner = this.dashboardDesigner1;
            this.dashboardBackstageSaveButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageSaveButton1.Glyph")));
            this.dashboardBackstageSaveButton1.Name = "dashboardBackstageSaveButton1";
            // 
            // dashboardBackstageSaveAsButton1
            // 
            this.dashboardBackstageSaveAsButton1.DashboardDesigner = this.dashboardDesigner1;
            this.dashboardBackstageSaveAsButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageSaveAsButton1.Glyph")));
            this.dashboardBackstageSaveAsButton1.Name = "dashboardBackstageSaveAsButton1";
            // 
            // dashboardBackstageRecentTab1
            // 
            this.dashboardBackstageRecentTab1.ContentControl = this.backstageViewClientControl1;
            this.dashboardBackstageRecentTab1.Name = "dashboardBackstageRecentTab1";
            this.dashboardBackstageRecentTab1.RecentDashboardsControl = this.recentDashboardsControl1;
            this.dashboardBackstageRecentTab1.Selected = true;
            // 
            // backstageViewClientControl1
            // 
            this.backstageViewClientControl1.Controls.Add(this.recentDashboardsControl1);
            this.backstageViewClientControl1.Location = new System.Drawing.Point(132, 0);
            this.backstageViewClientControl1.Name = "backstageViewClientControl1";
            this.backstageViewClientControl1.Size = new System.Drawing.Size(108, 150);
            this.backstageViewClientControl1.TabIndex = 0;
            // 
            // recentDashboardsControl1
            // 
            this.recentDashboardsControl1.DashboardDesigner = this.dashboardDesigner1;
            this.recentDashboardsControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.recentDashboardsControl1.ForeColor = System.Drawing.Color.Transparent;
            this.recentDashboardsControl1.Location = new System.Drawing.Point(0, 0);
            this.recentDashboardsControl1.Name = "recentDashboardsControl1";
            this.recentDashboardsControl1.Size = new System.Drawing.Size(108, 150);
            this.recentDashboardsControl1.TabIndex = 0;
            // 
            // dashboardBarController1
            // 
            this.dashboardBarController1.BarItems.Add(this.fileNewBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileOpenBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileSaveBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileSaveAsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.undoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.redoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.newDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPivotBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGridBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertChartBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPiesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGaugesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertCardsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertImageBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertTextBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertRangeFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.duplicateItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardTitleBarItem1);
            this.dashboardBarController1.BarItems.Add(this.setCurrencyCultureBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardSkinsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.clearFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.ignoreMasterFiltersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.masterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.crossDataSourceFilteringBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByChartSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByChartArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByPieSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByPieArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnChartSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnChartArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnPieSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnPieArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentAutoArrangeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInColumnsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangementCountBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridHorizontalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridVerticalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridMergeCellsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridBandedRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridColumnHeadersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartRotateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartXAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartYAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartShowLegendBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartSeriesTypeItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTooltipsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStylePieBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStyleDonutBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieShowCaptionsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleFullCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleHalfCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeShowCaptionsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageLoadBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageImportBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeClipBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeStretchBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeSqueezeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeZoomBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.textBoxEditTextBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotInitialStateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotAutoExpandColumnBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotAutoExpandRowBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessUndoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessRedoBarItem1);
            this.dashboardBarController1.Control = this.dashboardDesigner1;
            // 
            // fileRibbonPageGroup1
            // 
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileNewBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileOpenBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsBarItem1);
            this.fileRibbonPageGroup1.Name = "fileRibbonPageGroup1";
            // 
            // dashboardRibbonPage1
            // 
            this.dashboardRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.fileRibbonPageGroup1,
            this.historyRibbonPageGroup1,
            this.dataSourceRibbonPageGroup1,
            this.insertRibbonPageGroup1,
            this.itemsRibbonPageGroup1,
            this.formatRibbonPageGroup1,
            this.skinsRibbonPageGroup1,
            this.quickAccessHistoryRibbonPageGroup1});
            this.dashboardRibbonPage1.Name = "dashboardRibbonPage1";
            // 
            // fileNewBarItem1
            // 
            this.fileNewBarItem1.Id = 1;
            this.fileNewBarItem1.Name = "fileNewBarItem1";
            // 
            // fileOpenBarItem1
            // 
            this.fileOpenBarItem1.Id = 2;
            this.fileOpenBarItem1.Name = "fileOpenBarItem1";
            // 
            // fileSaveBarItem1
            // 
            this.fileSaveBarItem1.Id = 3;
            this.fileSaveBarItem1.Name = "fileSaveBarItem1";
            // 
            // fileSaveAsBarItem1
            // 
            this.fileSaveAsBarItem1.Id = 4;
            this.fileSaveAsBarItem1.Name = "fileSaveAsBarItem1";
            // 
            // historyRibbonPageGroup1
            // 
            this.historyRibbonPageGroup1.ItemLinks.Add(this.undoBarItem1);
            this.historyRibbonPageGroup1.ItemLinks.Add(this.redoBarItem1);
            this.historyRibbonPageGroup1.Name = "historyRibbonPageGroup1";
            // 
            // undoBarItem1
            // 
            this.undoBarItem1.Id = 5;
            this.undoBarItem1.Name = "undoBarItem1";
            // 
            // redoBarItem1
            // 
            this.redoBarItem1.Id = 6;
            this.redoBarItem1.Name = "redoBarItem1";
            // 
            // dataSourceRibbonPageGroup1
            // 
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.newDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.deleteDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.Name = "dataSourceRibbonPageGroup1";
            // 
            // newDataSourceBarItem1
            // 
            this.newDataSourceBarItem1.Id = 7;
            this.newDataSourceBarItem1.Name = "newDataSourceBarItem1";
            // 
            // editDataSourceBarItem1
            // 
            this.editDataSourceBarItem1.Id = 8;
            this.editDataSourceBarItem1.Name = "editDataSourceBarItem1";
            // 
            // deleteDataSourceBarItem1
            // 
            this.deleteDataSourceBarItem1.Id = 9;
            this.deleteDataSourceBarItem1.Name = "deleteDataSourceBarItem1";
            // 
            // insertRibbonPageGroup1
            // 
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPivotBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGridBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChartBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPiesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGaugesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertCardsBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertImageBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertRangeFilterBarItem1);
            this.insertRibbonPageGroup1.Name = "insertRibbonPageGroup1";
            // 
            // insertPivotBarItem1
            // 
            this.insertPivotBarItem1.Id = 10;
            this.insertPivotBarItem1.Name = "insertPivotBarItem1";
            // 
            // insertGridBarItem1
            // 
            this.insertGridBarItem1.Id = 11;
            this.insertGridBarItem1.Name = "insertGridBarItem1";
            // 
            // insertChartBarItem1
            // 
            this.insertChartBarItem1.Id = 12;
            this.insertChartBarItem1.Name = "insertChartBarItem1";
            // 
            // insertPiesBarItem1
            // 
            this.insertPiesBarItem1.Id = 13;
            this.insertPiesBarItem1.Name = "insertPiesBarItem1";
            // 
            // insertGaugesBarItem1
            // 
            this.insertGaugesBarItem1.Id = 14;
            this.insertGaugesBarItem1.Name = "insertGaugesBarItem1";
            // 
            // insertCardsBarItem1
            // 
            this.insertCardsBarItem1.Id = 15;
            this.insertCardsBarItem1.Name = "insertCardsBarItem1";
            // 
            // insertImageBarItem1
            // 
            this.insertImageBarItem1.Id = 16;
            this.insertImageBarItem1.Name = "insertImageBarItem1";
            // 
            // insertTextBoxBarItem1
            // 
            this.insertTextBoxBarItem1.Id = 17;
            this.insertTextBoxBarItem1.Name = "insertTextBoxBarItem1";
            // 
            // insertRangeFilterBarItem1
            // 
            this.insertRangeFilterBarItem1.Id = 18;
            this.insertRangeFilterBarItem1.Name = "insertRangeFilterBarItem1";
            // 
            // itemsRibbonPageGroup1
            // 
            this.itemsRibbonPageGroup1.ItemLinks.Add(this.duplicateItemBarItem1);
            this.itemsRibbonPageGroup1.ItemLinks.Add(this.deleteItemBarItem1);
            this.itemsRibbonPageGroup1.Name = "itemsRibbonPageGroup1";
            // 
            // duplicateItemBarItem1
            // 
            this.duplicateItemBarItem1.Id = 19;
            this.duplicateItemBarItem1.Name = "duplicateItemBarItem1";
            // 
            // deleteItemBarItem1
            // 
            this.deleteItemBarItem1.Id = 20;
            this.deleteItemBarItem1.Name = "deleteItemBarItem1";
            // 
            // formatRibbonPageGroup1
            // 
            this.formatRibbonPageGroup1.ItemLinks.Add(this.dashboardTitleBarItem1);
            this.formatRibbonPageGroup1.ItemLinks.Add(this.setCurrencyCultureBarItem1);
            this.formatRibbonPageGroup1.Name = "formatRibbonPageGroup1";
            // 
            // dashboardTitleBarItem1
            // 
            this.dashboardTitleBarItem1.Id = 21;
            this.dashboardTitleBarItem1.Name = "dashboardTitleBarItem1";
            // 
            // setCurrencyCultureBarItem1
            // 
            this.setCurrencyCultureBarItem1.Id = 22;
            this.setCurrencyCultureBarItem1.Name = "setCurrencyCultureBarItem1";
            // 
            // skinsRibbonPageGroup1
            // 
            this.skinsRibbonPageGroup1.ItemLinks.Add(this.dashboardSkinsBarItem1);
            this.skinsRibbonPageGroup1.Name = "skinsRibbonPageGroup1";
            // 
            // dashboardSkinsBarItem1
            // 
            // 
            // 
            // 
            this.dashboardSkinsBarItem1.Gallery.AllowHoverImages = true;
            this.dashboardSkinsBarItem1.Gallery.ColumnCount = 4;
            this.dashboardSkinsBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup15.Caption = "Standard Skins";
            galleryItem11.Caption = "DevExpress Style";
            galleryItem11.Checked = true;
            galleryItem11.Hint = "DevExpress Style";
            galleryItem11.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem11.HoverImage")));
            galleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem11.Image")));
            galleryItem11.Tag = "DevExpress Style";
            galleryItem12.Caption = "DevExpress Dark Style";
            galleryItem12.Hint = "DevExpress Dark Style";
            galleryItem12.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem12.HoverImage")));
            galleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem12.Image")));
            galleryItem12.Tag = "DevExpress Dark Style";
            galleryItem13.Caption = "Office 2013 White";
            galleryItem13.Hint = "Office 2013 White";
            galleryItem13.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem13.HoverImage")));
            galleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem13.Image")));
            galleryItem13.Tag = "Office 2013";
            galleryItem14.Caption = "Office 2013 Dark Gray";
            galleryItem14.Hint = "Office 2013 Dark Gray";
            galleryItem14.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem14.HoverImage")));
            galleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem14.Image")));
            galleryItem14.Tag = "Office 2013 Dark Gray";
            galleryItem15.Caption = "Office 2013 Light Gray";
            galleryItem15.Hint = "Office 2013 Light Gray";
            galleryItem15.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem15.HoverImage")));
            galleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem15.Image")));
            galleryItem15.Tag = "Office 2013 Light Gray";
            galleryItem16.Caption = "Office 2010 Blue";
            galleryItem16.Hint = "Office 2010 Blue";
            galleryItem16.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem16.HoverImage")));
            galleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem16.Image")));
            galleryItem16.Tag = "Office 2010 Blue";
            galleryItem17.Caption = "Office 2010 Black";
            galleryItem17.Hint = "Office 2010 Black";
            galleryItem17.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem17.HoverImage")));
            galleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem17.Image")));
            galleryItem17.Tag = "Office 2010 Black";
            galleryItem18.Caption = "Office 2010 Silver";
            galleryItem18.Hint = "Office 2010 Silver";
            galleryItem18.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem18.HoverImage")));
            galleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem18.Image")));
            galleryItem18.Tag = "Office 2010 Silver";
            galleryItem19.Caption = "Seven Classic";
            galleryItem19.Hint = "Seven Classic";
            galleryItem19.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem19.HoverImage")));
            galleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem19.Image")));
            galleryItem19.Tag = "Seven Classic";
            galleryItem20.Caption = "VS2010";
            galleryItem20.Hint = "VS2010";
            galleryItem20.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem20.HoverImage")));
            galleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem20.Image")));
            galleryItem20.Tag = "VS2010";
            galleryItemGroup15.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem11,
            galleryItem12,
            galleryItem13,
            galleryItem14,
            galleryItem15,
            galleryItem16,
            galleryItem17,
            galleryItem18,
            galleryItem19,
            galleryItem20});
            galleryItemGroup16.Caption = "Bonus Skins";
            galleryItemGroup16.Visible = false;
            galleryItemGroup17.Caption = "Theme Skins";
            galleryItemGroup17.Visible = false;
            galleryItemGroup18.Caption = "Custom Skins";
            galleryItemGroup18.Visible = false;
            this.dashboardSkinsBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup15,
            galleryItemGroup16,
            galleryItemGroup17,
            galleryItemGroup18});
            this.dashboardSkinsBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 16);
            this.dashboardSkinsBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.dashboardSkinsBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.dashboardSkinsBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardSkinsBarItem1.Glyph")));
            this.dashboardSkinsBarItem1.Id = 23;
            this.dashboardSkinsBarItem1.Name = "dashboardSkinsBarItem1";
            // 
            // filteringRibbonPageGroup1
            // 
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup1.Name = "filteringRibbonPageGroup1";
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup1,
            this.masterFilterRibbonPageGroup1,
            this.pivotLayoutRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            this.dataRibbonPage1.Visible = false;
            // 
            // pivotToolsRibbonPageCategory1
            // 
            this.pivotToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.pivotToolsRibbonPageCategory1.Name = "pivotToolsRibbonPageCategory1";
            this.pivotToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage1});
            this.pivotToolsRibbonPageCategory1.Visible = false;
            // 
            // editFilterBarItem1
            // 
            this.editFilterBarItem1.Id = 24;
            this.editFilterBarItem1.Name = "editFilterBarItem1";
            // 
            // clearFilterBarItem1
            // 
            this.clearFilterBarItem1.Id = 25;
            this.clearFilterBarItem1.Name = "clearFilterBarItem1";
            // 
            // filteringRibbonPageGroup2
            // 
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup2.Name = "filteringRibbonPageGroup2";
            // 
            // dataRibbonPage2
            // 
            this.dataRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup2,
            this.masterFilterRibbonPageGroup2,
            this.drillDownRibbonPageGroup1});
            this.dataRibbonPage2.Name = "dataRibbonPage2";
            this.dataRibbonPage2.Visible = false;
            // 
            // gridToolsRibbonPageCategory1
            // 
            this.gridToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.gridToolsRibbonPageCategory1.Name = "gridToolsRibbonPageCategory1";
            this.gridToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage2,
            this.layoutAndStyleRibbonPage4});
            this.gridToolsRibbonPageCategory1.Visible = false;
            // 
            // filteringRibbonPageGroup3
            // 
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup3.Name = "filteringRibbonPageGroup3";
            // 
            // dataRibbonPage3
            // 
            this.dataRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup3,
            this.masterFilterRibbonPageGroup3,
            this.drillDownRibbonPageGroup2});
            this.dataRibbonPage3.Name = "dataRibbonPage3";
            this.dataRibbonPage3.Visible = false;
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage3,
            this.chartLayoutAndStyleRibbonPage1});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // filteringRibbonPageGroup4
            // 
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup4.Name = "filteringRibbonPageGroup4";
            // 
            // dataRibbonPage4
            // 
            this.dataRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup4,
            this.masterFilterRibbonPageGroup4,
            this.drillDownRibbonPageGroup3});
            this.dataRibbonPage4.Name = "dataRibbonPage4";
            this.dataRibbonPage4.Visible = false;
            // 
            // piesToolsRibbonPageCategory1
            // 
            this.piesToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.piesToolsRibbonPageCategory1.Name = "piesToolsRibbonPageCategory1";
            this.piesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage4,
            this.layoutAndStyleRibbonPage1});
            this.piesToolsRibbonPageCategory1.Visible = false;
            // 
            // filteringRibbonPageGroup5
            // 
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup5.Name = "filteringRibbonPageGroup5";
            // 
            // dataRibbonPage5
            // 
            this.dataRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup5,
            this.masterFilterRibbonPageGroup5,
            this.drillDownRibbonPageGroup4});
            this.dataRibbonPage5.Name = "dataRibbonPage5";
            this.dataRibbonPage5.Visible = false;
            // 
            // gaugesToolsRibbonPageCategory1
            // 
            this.gaugesToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.gaugesToolsRibbonPageCategory1.Name = "gaugesToolsRibbonPageCategory1";
            this.gaugesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage5,
            this.layoutAndStyleRibbonPage2});
            this.gaugesToolsRibbonPageCategory1.Visible = false;
            // 
            // filteringRibbonPageGroup6
            // 
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup6.Name = "filteringRibbonPageGroup6";
            // 
            // dataRibbonPage6
            // 
            this.dataRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup6,
            this.masterFilterRibbonPageGroup6,
            this.drillDownRibbonPageGroup5});
            this.dataRibbonPage6.Name = "dataRibbonPage6";
            this.dataRibbonPage6.Visible = false;
            // 
            // cardsToolsRibbonPageCategory1
            // 
            this.cardsToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.cardsToolsRibbonPageCategory1.Name = "cardsToolsRibbonPageCategory1";
            this.cardsToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage6,
            this.layoutAndStyleRibbonPage3});
            this.cardsToolsRibbonPageCategory1.Visible = false;
            // 
            // filteringRibbonPageGroup7
            // 
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup7.Name = "filteringRibbonPageGroup7";
            // 
            // dataRibbonPage7
            // 
            this.dataRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup7,
            this.masterFilterRibbonPageGroup7});
            this.dataRibbonPage7.Name = "dataRibbonPage7";
            this.dataRibbonPage7.Visible = false;
            // 
            // rangeFilterToolsRibbonPageCategory1
            // 
            this.rangeFilterToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.rangeFilterToolsRibbonPageCategory1.Name = "rangeFilterToolsRibbonPageCategory1";
            this.rangeFilterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage7,
            this.rangeFilterStyleRibbonPage1});
            this.rangeFilterToolsRibbonPageCategory1.Visible = false;
            // 
            // masterFilterRibbonPageGroup1
            // 
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup1.Name = "masterFilterRibbonPageGroup1";
            // 
            // ignoreMasterFiltersBarItem1
            // 
            this.ignoreMasterFiltersBarItem1.Id = 26;
            this.ignoreMasterFiltersBarItem1.Name = "ignoreMasterFiltersBarItem1";
            // 
            // masterFilterRibbonPageGroup2
            // 
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup2.Name = "masterFilterRibbonPageGroup2";
            // 
            // masterFilterBarItem1
            // 
            this.masterFilterBarItem1.Id = 27;
            this.masterFilterBarItem1.Name = "masterFilterBarItem1";
            // 
            // crossDataSourceFilteringBarItem1
            // 
            this.crossDataSourceFilteringBarItem1.Id = 28;
            this.crossDataSourceFilteringBarItem1.Name = "crossDataSourceFilteringBarItem1";
            // 
            // masterFilterRibbonPageGroup3
            // 
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.filterByChartSeriesBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.filterByChartArgumentsBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup3.Name = "masterFilterRibbonPageGroup3";
            // 
            // filterByChartSeriesBarItem1
            // 
            this.filterByChartSeriesBarItem1.Id = 29;
            this.filterByChartSeriesBarItem1.Name = "filterByChartSeriesBarItem1";
            // 
            // filterByChartArgumentsBarItem1
            // 
            this.filterByChartArgumentsBarItem1.Id = 30;
            this.filterByChartArgumentsBarItem1.Name = "filterByChartArgumentsBarItem1";
            // 
            // masterFilterRibbonPageGroup4
            // 
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.filterByPieSeriesBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.filterByPieArgumentsBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup4.Name = "masterFilterRibbonPageGroup4";
            // 
            // filterByPieSeriesBarItem1
            // 
            this.filterByPieSeriesBarItem1.Id = 31;
            this.filterByPieSeriesBarItem1.Name = "filterByPieSeriesBarItem1";
            // 
            // filterByPieArgumentsBarItem1
            // 
            this.filterByPieArgumentsBarItem1.Id = 32;
            this.filterByPieArgumentsBarItem1.Name = "filterByPieArgumentsBarItem1";
            // 
            // masterFilterRibbonPageGroup5
            // 
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup5.Name = "masterFilterRibbonPageGroup5";
            // 
            // masterFilterRibbonPageGroup6
            // 
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup6.Name = "masterFilterRibbonPageGroup6";
            // 
            // masterFilterRibbonPageGroup7
            // 
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup7.Name = "masterFilterRibbonPageGroup7";
            // 
            // drillDownRibbonPageGroup1
            // 
            this.drillDownRibbonPageGroup1.ItemLinks.Add(this.drillDownBarItem1);
            this.drillDownRibbonPageGroup1.Name = "drillDownRibbonPageGroup1";
            // 
            // drillDownBarItem1
            // 
            this.drillDownBarItem1.Id = 33;
            this.drillDownBarItem1.Name = "drillDownBarItem1";
            // 
            // drillDownRibbonPageGroup2
            // 
            this.drillDownRibbonPageGroup2.ItemLinks.Add(this.drillDownOnChartSeriesBarItem1);
            this.drillDownRibbonPageGroup2.ItemLinks.Add(this.drillDownOnChartArgumentsBarItem1);
            this.drillDownRibbonPageGroup2.Name = "drillDownRibbonPageGroup2";
            // 
            // drillDownOnChartSeriesBarItem1
            // 
            this.drillDownOnChartSeriesBarItem1.Id = 34;
            this.drillDownOnChartSeriesBarItem1.Name = "drillDownOnChartSeriesBarItem1";
            // 
            // drillDownOnChartArgumentsBarItem1
            // 
            this.drillDownOnChartArgumentsBarItem1.Id = 35;
            this.drillDownOnChartArgumentsBarItem1.Name = "drillDownOnChartArgumentsBarItem1";
            // 
            // drillDownRibbonPageGroup3
            // 
            this.drillDownRibbonPageGroup3.ItemLinks.Add(this.drillDownOnPieSeriesBarItem1);
            this.drillDownRibbonPageGroup3.ItemLinks.Add(this.drillDownOnPieArgumentsBarItem1);
            this.drillDownRibbonPageGroup3.Name = "drillDownRibbonPageGroup3";
            // 
            // drillDownOnPieSeriesBarItem1
            // 
            this.drillDownOnPieSeriesBarItem1.Id = 36;
            this.drillDownOnPieSeriesBarItem1.Name = "drillDownOnPieSeriesBarItem1";
            // 
            // drillDownOnPieArgumentsBarItem1
            // 
            this.drillDownOnPieArgumentsBarItem1.Id = 37;
            this.drillDownOnPieArgumentsBarItem1.Name = "drillDownOnPieArgumentsBarItem1";
            // 
            // drillDownRibbonPageGroup4
            // 
            this.drillDownRibbonPageGroup4.ItemLinks.Add(this.drillDownBarItem1);
            this.drillDownRibbonPageGroup4.Name = "drillDownRibbonPageGroup4";
            // 
            // drillDownRibbonPageGroup5
            // 
            this.drillDownRibbonPageGroup5.ItemLinks.Add(this.drillDownBarItem1);
            this.drillDownRibbonPageGroup5.Name = "drillDownRibbonPageGroup5";
            // 
            // contentArrangementRibbonPageGroup1
            // 
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup1.Name = "contentArrangementRibbonPageGroup1";
            // 
            // layoutAndStyleRibbonPage1
            // 
            this.layoutAndStyleRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.contentArrangementRibbonPageGroup1,
            this.pieLabelsRibbonPageGroup1,
            this.pieStyleRibbonPageGroup1});
            this.layoutAndStyleRibbonPage1.Name = "layoutAndStyleRibbonPage1";
            this.layoutAndStyleRibbonPage1.Visible = false;
            // 
            // contentAutoArrangeBarItem1
            // 
            this.contentAutoArrangeBarItem1.Id = 38;
            this.contentAutoArrangeBarItem1.Name = "contentAutoArrangeBarItem1";
            // 
            // contentArrangeInColumnsBarItem1
            // 
            this.contentArrangeInColumnsBarItem1.Id = 39;
            this.contentArrangeInColumnsBarItem1.Name = "contentArrangeInColumnsBarItem1";
            // 
            // contentArrangeInRowsBarItem1
            // 
            this.contentArrangeInRowsBarItem1.Id = 40;
            this.contentArrangeInRowsBarItem1.Name = "contentArrangeInRowsBarItem1";
            // 
            // contentArrangementCountBarItem1
            // 
            this.contentArrangementCountBarItem1.Edit = this.repositoryItemSpinEdit1;
            this.contentArrangementCountBarItem1.Id = 41;
            this.contentArrangementCountBarItem1.Name = "contentArrangementCountBarItem1";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // contentArrangementRibbonPageGroup2
            // 
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup2.Name = "contentArrangementRibbonPageGroup2";
            // 
            // layoutAndStyleRibbonPage2
            // 
            this.layoutAndStyleRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.contentArrangementRibbonPageGroup2,
            this.gaugeStyleRibbonPageGroup1,
            this.gaugesLabelsRibbonPageGroup1});
            this.layoutAndStyleRibbonPage2.Name = "layoutAndStyleRibbonPage2";
            this.layoutAndStyleRibbonPage2.Visible = false;
            // 
            // contentArrangementRibbonPageGroup3
            // 
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup3.Name = "contentArrangementRibbonPageGroup3";
            // 
            // layoutAndStyleRibbonPage3
            // 
            this.layoutAndStyleRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.contentArrangementRibbonPageGroup3});
            this.layoutAndStyleRibbonPage3.Name = "layoutAndStyleRibbonPage3";
            this.layoutAndStyleRibbonPage3.Visible = false;
            // 
            // gridCellsRibbonPageGroup1
            // 
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridHorizontalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridVerticalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridMergeCellsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridBandedRowsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridColumnHeadersBarItem1);
            this.gridCellsRibbonPageGroup1.Name = "gridCellsRibbonPageGroup1";
            // 
            // layoutAndStyleRibbonPage4
            // 
            this.layoutAndStyleRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.gridCellsRibbonPageGroup1});
            this.layoutAndStyleRibbonPage4.Name = "layoutAndStyleRibbonPage4";
            this.layoutAndStyleRibbonPage4.Visible = false;
            // 
            // gridHorizontalLinesBarItem1
            // 
            this.gridHorizontalLinesBarItem1.Id = 42;
            this.gridHorizontalLinesBarItem1.Name = "gridHorizontalLinesBarItem1";
            // 
            // gridVerticalLinesBarItem1
            // 
            this.gridVerticalLinesBarItem1.Id = 43;
            this.gridVerticalLinesBarItem1.Name = "gridVerticalLinesBarItem1";
            // 
            // gridMergeCellsBarItem1
            // 
            this.gridMergeCellsBarItem1.Id = 44;
            this.gridMergeCellsBarItem1.Name = "gridMergeCellsBarItem1";
            // 
            // gridBandedRowsBarItem1
            // 
            this.gridBandedRowsBarItem1.Id = 45;
            this.gridBandedRowsBarItem1.Name = "gridBandedRowsBarItem1";
            // 
            // gridColumnHeadersBarItem1
            // 
            this.gridColumnHeadersBarItem1.Id = 46;
            this.gridColumnHeadersBarItem1.Name = "gridColumnHeadersBarItem1";
            // 
            // chartLayoutPageGroup1
            // 
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartRotateBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartXAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartYAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.Name = "chartLayoutPageGroup1";
            // 
            // chartLayoutAndStyleRibbonPage1
            // 
            this.chartLayoutAndStyleRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.chartLayoutPageGroup1,
            this.chartLegendPositionPageGroup1,
            this.chartStylePageGroup1});
            this.chartLayoutAndStyleRibbonPage1.Name = "chartLayoutAndStyleRibbonPage1";
            this.chartLayoutAndStyleRibbonPage1.Visible = false;
            // 
            // chartRotateBarItem1
            // 
            this.chartRotateBarItem1.Id = 47;
            this.chartRotateBarItem1.Name = "chartRotateBarItem1";
            // 
            // chartXAxisSettingsBarItem1
            // 
            this.chartXAxisSettingsBarItem1.Id = 48;
            this.chartXAxisSettingsBarItem1.Name = "chartXAxisSettingsBarItem1";
            // 
            // chartYAxisSettingsBarItem1
            // 
            this.chartYAxisSettingsBarItem1.Id = 49;
            this.chartYAxisSettingsBarItem1.Name = "chartYAxisSettingsBarItem1";
            // 
            // chartLegendPositionPageGroup1
            // 
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.chartShowLegendBarItem1);
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.galleryChartLegendPositionItem1);
            this.chartLegendPositionPageGroup1.Name = "chartLegendPositionPageGroup1";
            // 
            // chartShowLegendBarItem1
            // 
            this.chartShowLegendBarItem1.Id = 50;
            this.chartShowLegendBarItem1.Name = "chartShowLegendBarItem1";
            // 
            // galleryChartLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryChartLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup19.Caption = "Inside Horizontal";
            galleryItemGroup20.Caption = "Inside Vertical";
            galleryItemGroup21.Caption = "Outside Horizontal";
            galleryItemGroup22.Caption = "Outside Vertical";
            this.galleryChartLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup19,
            galleryItemGroup20,
            galleryItemGroup21,
            galleryItemGroup22});
            this.galleryChartLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartLegendPositionItem1.Gallery.RowCount = 8;
            this.galleryChartLegendPositionItem1.Id = 51;
            this.galleryChartLegendPositionItem1.Name = "galleryChartLegendPositionItem1";
            // 
            // chartStylePageGroup1
            // 
            this.chartStylePageGroup1.ItemLinks.Add(this.galleryChartSeriesTypeItem1);
            this.chartStylePageGroup1.Name = "chartStylePageGroup1";
            // 
            // galleryChartSeriesTypeItem1
            // 
            // 
            // 
            // 
            galleryItemGroup23.Caption = "Bar";
            chartSeriesTypeGalleryItem23.Hint = "Bar";
            chartSeriesTypeGalleryItem23.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem23.Image")));
            chartSeriesTypeGalleryItem23.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem24.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem24.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem24.Image")));
            chartSeriesTypeGalleryItem24.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem25.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem25.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem25.Image")));
            chartSeriesTypeGalleryItem25.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup23.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem23,
            chartSeriesTypeGalleryItem24,
            chartSeriesTypeGalleryItem25});
            galleryItemGroup24.Caption = "Point / Line";
            chartSeriesTypeGalleryItem26.Hint = "Point";
            chartSeriesTypeGalleryItem26.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem26.Image")));
            chartSeriesTypeGalleryItem26.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem27.Hint = "Line";
            chartSeriesTypeGalleryItem27.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem27.Image")));
            chartSeriesTypeGalleryItem27.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem28.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem28.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem28.Image")));
            chartSeriesTypeGalleryItem28.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem29.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem29.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem29.Image")));
            chartSeriesTypeGalleryItem29.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem30.Hint = "Step Line";
            chartSeriesTypeGalleryItem30.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem30.Image")));
            chartSeriesTypeGalleryItem30.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem31.Hint = "Spline";
            chartSeriesTypeGalleryItem31.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem31.Image")));
            chartSeriesTypeGalleryItem31.SeriesTypeCaption = "Spline";
            galleryItemGroup24.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem26,
            chartSeriesTypeGalleryItem27,
            chartSeriesTypeGalleryItem28,
            chartSeriesTypeGalleryItem29,
            chartSeriesTypeGalleryItem30,
            chartSeriesTypeGalleryItem31});
            galleryItemGroup25.Caption = "Area";
            chartSeriesTypeGalleryItem32.Hint = "Area";
            chartSeriesTypeGalleryItem32.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem32.Image")));
            chartSeriesTypeGalleryItem32.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem33.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem33.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem33.Image")));
            chartSeriesTypeGalleryItem33.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem34.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem34.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem34.Image")));
            chartSeriesTypeGalleryItem34.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem35.Hint = "Step Area";
            chartSeriesTypeGalleryItem35.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem35.Image")));
            chartSeriesTypeGalleryItem35.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem36.Hint = "Spline Area";
            chartSeriesTypeGalleryItem36.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem36.Image")));
            chartSeriesTypeGalleryItem36.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem37.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem37.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem37.Image")));
            chartSeriesTypeGalleryItem37.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem38.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem38.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem38.Image")));
            chartSeriesTypeGalleryItem38.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup25.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem32,
            chartSeriesTypeGalleryItem33,
            chartSeriesTypeGalleryItem34,
            chartSeriesTypeGalleryItem35,
            chartSeriesTypeGalleryItem36,
            chartSeriesTypeGalleryItem37,
            chartSeriesTypeGalleryItem38});
            galleryItemGroup26.Caption = "Range";
            chartSeriesTypeGalleryItem39.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem39.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem39.Image")));
            chartSeriesTypeGalleryItem39.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem40.Hint = "Range Area";
            chartSeriesTypeGalleryItem40.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem40.Image")));
            chartSeriesTypeGalleryItem40.SeriesTypeCaption = "Range Area";
            galleryItemGroup26.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem39,
            chartSeriesTypeGalleryItem40});
            galleryItemGroup27.Caption = "Bubble";
            chartSeriesTypeGalleryItem41.Hint = "Bubble";
            chartSeriesTypeGalleryItem41.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem41.Image")));
            chartSeriesTypeGalleryItem41.SeriesTypeCaption = "Bubble";
            galleryItemGroup27.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem41});
            galleryItemGroup28.Caption = "Financial";
            chartSeriesTypeGalleryItem42.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem42.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem42.Image")));
            chartSeriesTypeGalleryItem42.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem43.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem43.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem43.Image")));
            chartSeriesTypeGalleryItem43.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem44.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem44.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem44.Image")));
            chartSeriesTypeGalleryItem44.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup28.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem42,
            chartSeriesTypeGalleryItem43,
            chartSeriesTypeGalleryItem44});
            this.galleryChartSeriesTypeItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup23,
            galleryItemGroup24,
            galleryItemGroup25,
            galleryItemGroup26,
            galleryItemGroup27,
            galleryItemGroup28});
            this.galleryChartSeriesTypeItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartSeriesTypeItem1.Gallery.RowCount = 8;
            this.galleryChartSeriesTypeItem1.Id = 52;
            this.galleryChartSeriesTypeItem1.Name = "galleryChartSeriesTypeItem1";
            // 
            // pieLabelsRibbonPageGroup1
            // 
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieLabelsDataLabelsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieTooltipsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieShowCaptionsBarItem1);
            this.pieLabelsRibbonPageGroup1.Name = "pieLabelsRibbonPageGroup1";
            // 
            // pieLabelsDataLabelsBarItem1
            // 
            this.pieLabelsDataLabelsBarItem1.Id = 53;
            this.pieLabelsDataLabelsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1)});
            this.pieLabelsDataLabelsBarItem1.Name = "pieLabelsDataLabelsBarItem1";
            this.pieLabelsDataLabelsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsDataLabelsNoneBarItem1
            // 
            this.pieLabelsDataLabelsNoneBarItem1.Id = 54;
            this.pieLabelsDataLabelsNoneBarItem1.Name = "pieLabelsDataLabelsNoneBarItem1";
            // 
            // pieLabelsDataLabelArgumentBarItem1
            // 
            this.pieLabelsDataLabelArgumentBarItem1.Id = 55;
            this.pieLabelsDataLabelArgumentBarItem1.Name = "pieLabelsDataLabelArgumentBarItem1";
            // 
            // pieLabelsDataLabelsValueBarItem1
            // 
            this.pieLabelsDataLabelsValueBarItem1.Id = 56;
            this.pieLabelsDataLabelsValueBarItem1.Name = "pieLabelsDataLabelsValueBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndValueBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Id = 57;
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Name = "pieLabelsDataLabelsArgumentAndValueBarItem1";
            // 
            // pieLabelsDataLabelsPercentBarItem1
            // 
            this.pieLabelsDataLabelsPercentBarItem1.Id = 58;
            this.pieLabelsDataLabelsPercentBarItem1.Name = "pieLabelsDataLabelsPercentBarItem1";
            // 
            // pieLabelsDataLabelsValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Id = 59;
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Name = "pieLabelsDataLabelsValueAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Id = 60;
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Id = 61;
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentValueAndPercentBarItem1";
            // 
            // pieTooltipsBarItem1
            // 
            this.pieTooltipsBarItem1.Id = 62;
            this.pieTooltipsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1)});
            this.pieTooltipsBarItem1.Name = "pieTooltipsBarItem1";
            this.pieTooltipsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsTooltipsNoneBarItem1
            // 
            this.pieLabelsTooltipsNoneBarItem1.Id = 63;
            this.pieLabelsTooltipsNoneBarItem1.Name = "pieLabelsTooltipsNoneBarItem1";
            // 
            // pieLabelsTooltipsArgumentBarItem1
            // 
            this.pieLabelsTooltipsArgumentBarItem1.Id = 64;
            this.pieLabelsTooltipsArgumentBarItem1.Name = "pieLabelsTooltipsArgumentBarItem1";
            // 
            // pieLabelsTooltipsValueBarItem1
            // 
            this.pieLabelsTooltipsValueBarItem1.Id = 65;
            this.pieLabelsTooltipsValueBarItem1.Name = "pieLabelsTooltipsValueBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndValueBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Id = 66;
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Name = "pieLabelsTooltipsArgumentAndValueBarItem1";
            // 
            // pieLabelsTooltipsPercentBarItem1
            // 
            this.pieLabelsTooltipsPercentBarItem1.Id = 67;
            this.pieLabelsTooltipsPercentBarItem1.Name = "pieLabelsTooltipsPercentBarItem1";
            // 
            // pieLabelsTooltipsValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsValueAndPercentBarItem1.Id = 68;
            this.pieLabelsTooltipsValueAndPercentBarItem1.Name = "pieLabelsTooltipsValueAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Id = 69;
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Id = 70;
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentValueAndPercentBarItem1";
            // 
            // pieStyleRibbonPageGroup1
            // 
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStylePieBarItem1);
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStyleDonutBarItem1);
            this.pieStyleRibbonPageGroup1.Name = "pieStyleRibbonPageGroup1";
            // 
            // pieStylePieBarItem1
            // 
            this.pieStylePieBarItem1.Id = 71;
            this.pieStylePieBarItem1.Name = "pieStylePieBarItem1";
            // 
            // pieStyleDonutBarItem1
            // 
            this.pieStyleDonutBarItem1.Id = 72;
            this.pieStyleDonutBarItem1.Name = "pieStyleDonutBarItem1";
            // 
            // pieShowCaptionsBarItem1
            // 
            this.pieShowCaptionsBarItem1.Id = 73;
            this.pieShowCaptionsBarItem1.Name = "pieShowCaptionsBarItem1";
            // 
            // gaugeStyleRibbonPageGroup1
            // 
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleFullCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleHalfCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.gaugeStyleRibbonPageGroup1.Name = "gaugeStyleRibbonPageGroup1";
            // 
            // gaugeStyleFullCircularBarItem1
            // 
            this.gaugeStyleFullCircularBarItem1.Id = 74;
            this.gaugeStyleFullCircularBarItem1.Name = "gaugeStyleFullCircularBarItem1";
            // 
            // gaugeStyleHalfCircularBarItem1
            // 
            this.gaugeStyleHalfCircularBarItem1.Id = 75;
            this.gaugeStyleHalfCircularBarItem1.Name = "gaugeStyleHalfCircularBarItem1";
            // 
            // gaugeStyleLeftQuarterCircularBarItem1
            // 
            this.gaugeStyleLeftQuarterCircularBarItem1.Id = 76;
            this.gaugeStyleLeftQuarterCircularBarItem1.Name = "gaugeStyleLeftQuarterCircularBarItem1";
            // 
            // gaugeStyleRightQuarterCircularBarItem1
            // 
            this.gaugeStyleRightQuarterCircularBarItem1.Id = 77;
            this.gaugeStyleRightQuarterCircularBarItem1.Name = "gaugeStyleRightQuarterCircularBarItem1";
            // 
            // gaugeStyleThreeForthCircularBarItem1
            // 
            this.gaugeStyleThreeForthCircularBarItem1.Id = 78;
            this.gaugeStyleThreeForthCircularBarItem1.Name = "gaugeStyleThreeForthCircularBarItem1";
            // 
            // gaugeStyleLinearHorizontalBarItem1
            // 
            this.gaugeStyleLinearHorizontalBarItem1.Id = 79;
            this.gaugeStyleLinearHorizontalBarItem1.Name = "gaugeStyleLinearHorizontalBarItem1";
            // 
            // gaugeStyleLinearVerticalBarItem1
            // 
            this.gaugeStyleLinearVerticalBarItem1.Id = 80;
            this.gaugeStyleLinearVerticalBarItem1.Name = "gaugeStyleLinearVerticalBarItem1";
            // 
            // gaugesLabelsRibbonPageGroup1
            // 
            this.gaugesLabelsRibbonPageGroup1.ItemLinks.Add(this.gaugeShowCaptionsBarItem1);
            this.gaugesLabelsRibbonPageGroup1.Name = "gaugesLabelsRibbonPageGroup1";
            // 
            // gaugeShowCaptionsBarItem1
            // 
            this.gaugeShowCaptionsBarItem1.Id = 81;
            this.gaugeShowCaptionsBarItem1.Name = "gaugeShowCaptionsBarItem1";
            // 
            // imageOpenRibbonPageGroup1
            // 
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageLoadBarItem1);
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageImportBarItem1);
            this.imageOpenRibbonPageGroup1.Name = "imageOpenRibbonPageGroup1";
            // 
            // imageOptionsRibbonPage1
            // 
            this.imageOptionsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.imageOpenRibbonPageGroup1,
            this.imageSizeModeRibbonPageGroup1,
            this.imageAlignmentRibbonPageGroup1});
            this.imageOptionsRibbonPage1.Name = "imageOptionsRibbonPage1";
            this.imageOptionsRibbonPage1.Visible = false;
            // 
            // imageToolsRibbonPageCategory1
            // 
            this.imageToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.imageToolsRibbonPageCategory1.Name = "imageToolsRibbonPageCategory1";
            this.imageToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.imageOptionsRibbonPage1});
            this.imageToolsRibbonPageCategory1.Visible = false;
            // 
            // imageLoadBarItem1
            // 
            this.imageLoadBarItem1.Id = 82;
            this.imageLoadBarItem1.Name = "imageLoadBarItem1";
            // 
            // imageImportBarItem1
            // 
            this.imageImportBarItem1.Id = 83;
            this.imageImportBarItem1.Name = "imageImportBarItem1";
            // 
            // imageSizeModeRibbonPageGroup1
            // 
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeClipBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeStretchBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeSqueezeBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeZoomBarItem1);
            this.imageSizeModeRibbonPageGroup1.Name = "imageSizeModeRibbonPageGroup1";
            // 
            // imageSizeModeClipBarItem1
            // 
            this.imageSizeModeClipBarItem1.Id = 84;
            this.imageSizeModeClipBarItem1.Name = "imageSizeModeClipBarItem1";
            // 
            // imageSizeModeStretchBarItem1
            // 
            this.imageSizeModeStretchBarItem1.Id = 85;
            this.imageSizeModeStretchBarItem1.Name = "imageSizeModeStretchBarItem1";
            // 
            // imageSizeModeSqueezeBarItem1
            // 
            this.imageSizeModeSqueezeBarItem1.Id = 86;
            this.imageSizeModeSqueezeBarItem1.Name = "imageSizeModeSqueezeBarItem1";
            // 
            // imageSizeModeZoomBarItem1
            // 
            this.imageSizeModeZoomBarItem1.Id = 87;
            this.imageSizeModeZoomBarItem1.Name = "imageSizeModeZoomBarItem1";
            // 
            // imageAlignmentRibbonPageGroup1
            // 
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.Name = "imageAlignmentRibbonPageGroup1";
            // 
            // imageAlignmentTopLeftBarItem1
            // 
            this.imageAlignmentTopLeftBarItem1.Id = 88;
            this.imageAlignmentTopLeftBarItem1.Name = "imageAlignmentTopLeftBarItem1";
            this.imageAlignmentTopLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterLeftBarItem1
            // 
            this.imageAlignmentCenterLeftBarItem1.Id = 89;
            this.imageAlignmentCenterLeftBarItem1.Name = "imageAlignmentCenterLeftBarItem1";
            this.imageAlignmentCenterLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomLeftBarItem1
            // 
            this.imageAlignmentBottomLeftBarItem1.Id = 90;
            this.imageAlignmentBottomLeftBarItem1.Name = "imageAlignmentBottomLeftBarItem1";
            this.imageAlignmentBottomLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopCenterBarItem1
            // 
            this.imageAlignmentTopCenterBarItem1.Id = 91;
            this.imageAlignmentTopCenterBarItem1.Name = "imageAlignmentTopCenterBarItem1";
            this.imageAlignmentTopCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterCenterBarItem1
            // 
            this.imageAlignmentCenterCenterBarItem1.Id = 92;
            this.imageAlignmentCenterCenterBarItem1.Name = "imageAlignmentCenterCenterBarItem1";
            this.imageAlignmentCenterCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomCenterBarItem1
            // 
            this.imageAlignmentBottomCenterBarItem1.Id = 93;
            this.imageAlignmentBottomCenterBarItem1.Name = "imageAlignmentBottomCenterBarItem1";
            this.imageAlignmentBottomCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopRightBarItem1
            // 
            this.imageAlignmentTopRightBarItem1.Id = 94;
            this.imageAlignmentTopRightBarItem1.Name = "imageAlignmentTopRightBarItem1";
            this.imageAlignmentTopRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterRightBarItem1
            // 
            this.imageAlignmentCenterRightBarItem1.Id = 95;
            this.imageAlignmentCenterRightBarItem1.Name = "imageAlignmentCenterRightBarItem1";
            this.imageAlignmentCenterRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomRightBarItem1
            // 
            this.imageAlignmentBottomRightBarItem1.Id = 96;
            this.imageAlignmentBottomRightBarItem1.Name = "imageAlignmentBottomRightBarItem1";
            this.imageAlignmentBottomRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // textBoxSettingsRibbonPageGroup1
            // 
            this.textBoxSettingsRibbonPageGroup1.ItemLinks.Add(this.textBoxEditTextBarItem1);
            this.textBoxSettingsRibbonPageGroup1.Name = "textBoxSettingsRibbonPageGroup1";
            // 
            // textBoxFormatRibbonPage1
            // 
            this.textBoxFormatRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.textBoxSettingsRibbonPageGroup1});
            this.textBoxFormatRibbonPage1.Name = "textBoxFormatRibbonPage1";
            this.textBoxFormatRibbonPage1.Visible = false;
            // 
            // textBoxToolsRibbonPageCategory1
            // 
            this.textBoxToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.textBoxToolsRibbonPageCategory1.Name = "textBoxToolsRibbonPageCategory1";
            this.textBoxToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.textBoxFormatRibbonPage1});
            this.textBoxToolsRibbonPageCategory1.Visible = false;
            // 
            // textBoxEditTextBarItem1
            // 
            this.textBoxEditTextBarItem1.Id = 97;
            this.textBoxEditTextBarItem1.Name = "textBoxEditTextBarItem1";
            // 
            // rangeFilterSeriesTypeRibbonPageGroup1
            // 
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.Name = "rangeFilterSeriesTypeRibbonPageGroup1";
            // 
            // rangeFilterStyleRibbonPage1
            // 
            this.rangeFilterStyleRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rangeFilterSeriesTypeRibbonPageGroup1});
            this.rangeFilterStyleRibbonPage1.Name = "rangeFilterStyleRibbonPage1";
            this.rangeFilterStyleRibbonPage1.Visible = false;
            // 
            // rangeFilterLineSeriesTypeBarItem1
            // 
            this.rangeFilterLineSeriesTypeBarItem1.Id = 98;
            this.rangeFilterLineSeriesTypeBarItem1.Name = "rangeFilterLineSeriesTypeBarItem1";
            // 
            // rangeFilterStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterStackedLineSeriesTypeBarItem1.Id = 99;
            this.rangeFilterStackedLineSeriesTypeBarItem1.Name = "rangeFilterStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Id = 100;
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Name = "rangeFilterFullStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterAreaSeriesTypeBarItem1
            // 
            this.rangeFilterAreaSeriesTypeBarItem1.Id = 101;
            this.rangeFilterAreaSeriesTypeBarItem1.Name = "rangeFilterAreaSeriesTypeBarItem1";
            // 
            // rangeFilterStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Id = 102;
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Name = "rangeFilterStackedAreaSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Id = 103;
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Name = "rangeFilterFullStackedAreaSeriesTypeBarItem1";
            // 
            // pivotLayoutRibbonPageGroup1
            // 
            this.pivotLayoutRibbonPageGroup1.ItemLinks.Add(this.pivotInitialStateBarItem1);
            this.pivotLayoutRibbonPageGroup1.Name = "pivotLayoutRibbonPageGroup1";
            // 
            // pivotInitialStateBarItem1
            // 
            this.pivotInitialStateBarItem1.Id = 104;
            this.pivotInitialStateBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandColumnBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandRowBarItem1)});
            this.pivotInitialStateBarItem1.Name = "pivotInitialStateBarItem1";
            this.pivotInitialStateBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pivotAutoExpandColumnBarItem1
            // 
            this.pivotAutoExpandColumnBarItem1.Id = 105;
            this.pivotAutoExpandColumnBarItem1.Name = "pivotAutoExpandColumnBarItem1";
            // 
            // pivotAutoExpandRowBarItem1
            // 
            this.pivotAutoExpandRowBarItem1.Id = 106;
            this.pivotAutoExpandRowBarItem1.Name = "pivotAutoExpandRowBarItem1";
            // 
            // quickAccessHistoryRibbonPageGroup1
            // 
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.Name = "quickAccessHistoryRibbonPageGroup1";
            this.quickAccessHistoryRibbonPageGroup1.Visible = false;
            // 
            // quickAccessUndoBarItem1
            // 
            this.quickAccessUndoBarItem1.Id = 107;
            this.quickAccessUndoBarItem1.Name = "quickAccessUndoBarItem1";
            // 
            // quickAccessRedoBarItem1
            // 
            this.quickAccessRedoBarItem1.Id = 108;
            this.quickAccessRedoBarItem1.Name = "quickAccessRedoBarItem1";
            // 
            // frmDashboardDesigner
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(708, 404);
            this.Controls.Add(this.dashboardDesigner1);
            this.Controls.Add(this.ribbonControl1);
            this.Controls.Add(this.dashboardBackstageViewControl1);
            this.Name = "frmDashboardDesigner";
            this.Text = "Dashboard Designer";
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            this.dashboardBackstageViewControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarAndDockingController1)).EndInit();
            this.backstageViewClientControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            this.ResumeLayout(false);

        }
Esempio n. 18
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup6 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem26 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup4 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem14 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem15 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem16 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem17 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup5 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem18 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem19 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem20 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem21 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem22 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem23 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem24 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem25 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.backstageViewControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
            this.backstageViewClientControl2 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.backstageViewClientControl3 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.backstageViewClientControl4 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.bvbiSaveAs = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.bvbiSaveAttachment = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.bvbiSaveCalendar = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.bvtiOpen = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.bvtiPrint = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.bvtiExport = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.bvbiExit = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bbiRotateLayout = new DevExpress.XtraBars.BarButtonItem();
            this.bbiFlipLayout = new DevExpress.XtraBars.BarButtonItem();
            this.bciShowUnreadMessageCount = new DevExpress.XtraBars.BarCheckItem();
            this.bciShowAllMessageCount = new DevExpress.XtraBars.BarCheckItem();
            this.bbiDelete = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNew = new DevExpress.XtraBars.BarButtonItem();
            this.bsiNavigation = new DevExpress.XtraBars.BarSubItem();
            this.bbiCloseSearch = new DevExpress.XtraBars.BarButtonItem();
            this.bbiShowUnread = new DevExpress.XtraBars.BarButtonItem();
            this.bbiImportant = new DevExpress.XtraBars.BarButtonItem();
            this.bbiHasAttachment = new DevExpress.XtraBars.BarButtonItem();
            this.bbiResetColumnsToDefault = new DevExpress.XtraBars.BarButtonItem();
            this.bsiColumns = new DevExpress.XtraBars.BarSubItem();
            this.bbiSubjectColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiFromColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDateColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiPriorityColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiAttachmentColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDate = new DevExpress.XtraBars.BarButtonItem();
            this.bbiClearFilter = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewFeed = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditFeed = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteFeed = new DevExpress.XtraBars.BarButtonItem();
            this.bbiRefreshFeed = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiCurrentView = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bsiInfo = new DevExpress.XtraBars.BarStaticItem();
            this.bbiNormal = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReading = new DevExpress.XtraBars.BarButtonItem();
            this.bsiTemp = new DevExpress.XtraBars.BarStaticItem();
            this.bbiManageView = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSaveCurrentView = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiCurrentViewTasks = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bbiTodayFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiTomorrowFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiThisWeekFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNextWeekFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNoDateFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiCustomFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewTask = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditTask = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteTask = new DevExpress.XtraBars.BarButtonItem();
            this.navigateViewBackwardItem1 = new DevExpress.XtraScheduler.UI.NavigateViewBackwardItem();
            this.navigateViewForwardItem1 = new DevExpress.XtraScheduler.UI.NavigateViewForwardItem();
            this.gotoTodayItem1 = new DevExpress.XtraScheduler.UI.GotoTodayItem();
            this.viewZoomInItem1 = new DevExpress.XtraScheduler.UI.ViewZoomInItem();
            this.viewZoomOutItem1 = new DevExpress.XtraScheduler.UI.ViewZoomOutItem();
            this.switchToDayViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToDayViewItem();
            this.switchToWorkWeekViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToWorkWeekViewItem();
            this.switchToWeekViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToWeekViewItem();
            this.switchToMonthViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToMonthViewItem();
            this.switchToTimelineViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToTimelineViewItem();
            this.groupByNoneItem1 = new DevExpress.XtraScheduler.UI.GroupByNoneItem();
            this.groupByDateItem1 = new DevExpress.XtraScheduler.UI.GroupByDateItem();
            this.groupByResourceItem1 = new DevExpress.XtraScheduler.UI.GroupByResourceItem();
            this.switchTimeScalesItem1 = new DevExpress.XtraScheduler.UI.SwitchTimeScalesItem();
            this.switchCompressWeekendItem1 = new DevExpress.XtraScheduler.UI.SwitchCompressWeekendItem();
            this.switchShowWorkTimeOnlyItem1 = new DevExpress.XtraScheduler.UI.SwitchShowWorkTimeOnlyItem();
            this.editAppointmentQueryItem1 = new DevExpress.XtraScheduler.UI.EditAppointmentQueryItem();
            this.editOccurrenceUICommandItem1 = new DevExpress.XtraScheduler.UI.EditOccurrenceUICommandItem();
            this.editSeriesUICommandItem1 = new DevExpress.XtraScheduler.UI.EditSeriesUICommandItem();
            this.deleteAppointmentsItem1 = new DevExpress.XtraScheduler.UI.DeleteAppointmentsItem();
            this.deleteOccurrenceItem1 = new DevExpress.XtraScheduler.UI.DeleteOccurrenceItem();
            this.deleteSeriesItem1 = new DevExpress.XtraScheduler.UI.DeleteSeriesItem();
            this.splitAppointmentItem1 = new DevExpress.XtraScheduler.UI.SplitAppointmentItem();
            this.changeAppointmentStatusItem1 = new DevExpress.XtraScheduler.UI.ChangeAppointmentStatusItem();
            this.changeAppointmentLabelItem1 = new DevExpress.XtraScheduler.UI.ChangeAppointmentLabelItem();
            this.toggleRecurrenceItem1 = new DevExpress.XtraScheduler.UI.ToggleRecurrenceItem();
            this.changeAppointmentReminderItem1 = new DevExpress.XtraScheduler.UI.ChangeAppointmentReminderItem();
            this.repositoryItemDuration1 = new DevExpress.XtraScheduler.UI.RepositoryItemDuration();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem18 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem19 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewCible = new DevExpress.XtraBars.BarButtonItem();
            this.bbiCharger = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.bbiSave = new DevExpress.XtraBars.BarButtonItem();
            this.rpCampagne = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgNew = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgTags = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgDelete = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpCalendar = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.RPGInsertions = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.RPGNavgation = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.RPGVue = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpDonnees = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgAjouter = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpVisualize = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgFeeds = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgActionsFeeds = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgLayoutFeeds = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpCible = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.RpgCible = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpOptimization = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgNewOpt = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.nbgContacts = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarItem4 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem5 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroupControlContainer2 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucPlaning1 = new DevExpress.MailClient.Win.Controls.ucPlaning();
            this.navBarGroupControlContainer4 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.navBarControl2 = new DevExpress.XtraNavBar.NavBarControl();
            this.nbgVisualizer = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer5 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.nbgCampagne = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem3 = new DevExpress.XtraNavBar.NavBarItem();
            this.nbgCible = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgCalendar = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgTasks = new DevExpress.XtraNavBar.NavBarGroup();
            this.pcMain = new DevExpress.XtraEditors.PanelControl();
            this.pmTreeView = new DevExpress.XtraBars.PopupMenu(this.components);
            this.pmMessage = new DevExpress.XtraBars.PopupMenu(this.components);
            this.pmFlagStatus = new DevExpress.XtraBars.PopupMenu(this.components);
            this.schedulerBarController1 = new DevExpress.XtraScheduler.UI.SchedulerBarController();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
            this.newAppointmentItem2 = new DevExpress.XtraScheduler.UI.NewAppointmentItem();
            this.groupByRibbonPageGroup1 = new DevExpress.XtraScheduler.UI.GroupByRibbonPageGroup();
            this.navigatorRibbonPageGroup1 = new DevExpress.XtraScheduler.UI.NavigatorRibbonPageGroup();
            this.appointmentRibbonPageGroup1 = new DevExpress.XtraScheduler.UI.AppointmentRibbonPageGroup();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            this.backstageViewControl1.SuspendLayout();
            this.backstageViewClientControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDuration1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.navBarControl1.SuspendLayout();
            this.navBarGroupControlContainer2.SuspendLayout();
            this.navBarGroupControlContainer4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcMain)).BeginInit();
            this.pcMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pmTreeView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMessage)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmFlagStatus)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.schedulerBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.backstageViewControl1;
            this.ribbonControl1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories1"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories2"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories3"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories4")))});
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.rgbiSkins,
            this.bbiRotateLayout,
            this.bbiFlipLayout,
            this.bciShowUnreadMessageCount,
            this.bciShowAllMessageCount,
            this.bbiDelete,
            this.bbiNew,
            this.bsiNavigation,
            this.bbiCloseSearch,
            this.bbiShowUnread,
            this.bbiImportant,
            this.bbiHasAttachment,
            this.bbiResetColumnsToDefault,
            this.bsiColumns,
            this.bbiSubjectColumn,
            this.bbiFromColumn,
            this.bbiDateColumn,
            this.bbiPriorityColumn,
            this.bbiAttachmentColumn,
            this.bbiDate,
            this.bbiClearFilter,
            this.bbiNewFeed,
            this.bbiEditFeed,
            this.bbiDeleteFeed,
            this.bbiRefreshFeed,
            this.rgbiCurrentView,
            this.bsiInfo,
            this.bbiNormal,
            this.bbiReading,
            this.bsiTemp,
            this.bbiManageView,
            this.bbiSaveCurrentView,
            this.rgbiCurrentViewTasks,
            this.bbiTodayFlag,
            this.bbiTomorrowFlag,
            this.bbiThisWeekFlag,
            this.bbiNextWeekFlag,
            this.bbiNoDateFlag,
            this.bbiCustomFlag,
            this.bbiNewContact,
            this.bbiEditContact,
            this.bbiDeleteContact,
            this.bbiNewTask,
            this.bbiEditTask,
            this.bbiDeleteTask,
            this.navigateViewBackwardItem1,
            this.navigateViewForwardItem1,
            this.gotoTodayItem1,
            this.viewZoomInItem1,
            this.viewZoomOutItem1,
            this.switchToDayViewItem1,
            this.switchToWorkWeekViewItem1,
            this.switchToWeekViewItem1,
            this.switchToMonthViewItem1,
            this.switchToTimelineViewItem1,
            this.groupByNoneItem1,
            this.groupByDateItem1,
            this.groupByResourceItem1,
            this.switchTimeScalesItem1,
            this.switchCompressWeekendItem1,
            this.switchShowWorkTimeOnlyItem1,
            this.editAppointmentQueryItem1,
            this.editOccurrenceUICommandItem1,
            this.editSeriesUICommandItem1,
            this.deleteAppointmentsItem1,
            this.deleteOccurrenceItem1,
            this.deleteSeriesItem1,
            this.splitAppointmentItem1,
            this.changeAppointmentStatusItem1,
            this.changeAppointmentLabelItem1,
            this.toggleRecurrenceItem1,
            this.changeAppointmentReminderItem1,
            this.barButtonItem1,
            this.barButtonGroup1,
            this.barButtonItem4,
            this.barButtonItem11,
            this.barButtonItem13,
            this.barButtonItem14,
            this.barButtonItem15,
            this.barButtonItem16,
            this.barButtonItem17,
            this.barButtonItem18,
            this.barButtonItem19,
            this.barButtonItem20,
            this.barButtonItem21,
            this.barButtonItem2,
            this.bbiNewCible,
            this.bbiCharger,
            this.barEditItem1,
            this.bbiSave});
            resources.ApplyResources(this.ribbonControl1, "ribbonControl1");
            this.ribbonControl1.MaxItemId = 122;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.rpCampagne,
            this.rpCalendar,
            this.rpDonnees,
            this.rpVisualize,
            this.rpCible,
            this.rpOptimization});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemZoomTrackBar1,
            this.repositoryItemSpinEdit1,
            this.repositoryItemDuration1,
            this.repositoryItemComboBox1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.TransparentEditors = true;
            this.ribbonControl1.BeforeApplicationButtonContentControlShow += new System.EventHandler(this.ribbonControl1_BeforeApplicationButtonContentControlShow);
            this.ribbonControl1.ShowCustomizationMenu += new DevExpress.XtraBars.Ribbon.RibbonCustomizationMenuEventHandler(this.ribbonControl1_ShowCustomizationMenu);
            // 
            // backstageViewControl1
            // 
            this.backstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl2);
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl3);
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl4);
            this.backstageViewControl1.Items.Add(this.bvbiSaveAs);
            this.backstageViewControl1.Items.Add(this.bvbiSaveAttachment);
            this.backstageViewControl1.Items.Add(this.bvbiSaveCalendar);
            this.backstageViewControl1.Items.Add(this.bvtiOpen);
            this.backstageViewControl1.Items.Add(this.bvtiPrint);
            this.backstageViewControl1.Items.Add(this.bvtiExport);
            this.backstageViewControl1.Items.Add(this.bvbiExit);
            resources.ApplyResources(this.backstageViewControl1, "backstageViewControl1");
            this.backstageViewControl1.Name = "backstageViewControl1";
            this.backstageViewControl1.Ribbon = this.ribbonControl1;
            this.backstageViewControl1.SelectedTab = null;
            this.backstageViewControl1.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.backstageViewControl1_ItemClick);
            // 
            // backstageViewClientControl2
            // 
            this.backstageViewClientControl2.Controls.Add(this.galleryControl1);
            resources.ApplyResources(this.backstageViewClientControl2, "backstageViewClientControl2");
            this.backstageViewClientControl2.Name = "backstageViewClientControl2";
            // 
            // galleryControl1
            // 
            this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            resources.ApplyResources(this.galleryControl1, "galleryControl1");
            // 
            // galleryControlGallery1
            // 
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.galleryControl1.Gallery.AutoFitColumns = false;
            this.galleryControl1.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
            this.galleryControl1.Gallery.BackColor = System.Drawing.Color.Transparent;
            this.galleryControl1.Gallery.ColumnCount = 1;
            this.galleryControl1.Gallery.FixedImageSize = false;
            galleryItem26.Image = global::DevExpress.MailClient.Win.Properties.Resources.OpenClendar_64x64;
            galleryItem26.Tag = "OpenCalendar";
            galleryItemGroup6.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem26});
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup6});
            this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.galleryControl1.Gallery.ShowGroupCaption = false;
            this.galleryControl1.Gallery.ShowItemText = true;
            this.galleryControl1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
            this.galleryControl1.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.galleryControl1.Name = "galleryControl1";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
            // 
            // backstageViewClientControl3
            // 
            resources.ApplyResources(this.backstageViewClientControl3, "backstageViewClientControl3");
            this.backstageViewClientControl3.Name = "backstageViewClientControl3";
            // 
            // backstageViewClientControl4
            // 
            resources.ApplyResources(this.backstageViewClientControl4, "backstageViewClientControl4");
            this.backstageViewClientControl4.Name = "backstageViewClientControl4";
            // 
            // bvbiSaveAs
            // 
            resources.ApplyResources(this.bvbiSaveAs, "bvbiSaveAs");
            this.bvbiSaveAs.Name = "bvbiSaveAs";
            // 
            // bvbiSaveAttachment
            // 
            resources.ApplyResources(this.bvbiSaveAttachment, "bvbiSaveAttachment");
            this.bvbiSaveAttachment.Name = "bvbiSaveAttachment";
            // 
            // bvbiSaveCalendar
            // 
            resources.ApplyResources(this.bvbiSaveCalendar, "bvbiSaveCalendar");
            this.bvbiSaveCalendar.Name = "bvbiSaveCalendar";
            // 
            // bvtiOpen
            // 
            resources.ApplyResources(this.bvtiOpen, "bvtiOpen");
            this.bvtiOpen.ContentControl = this.backstageViewClientControl2;
            this.bvtiOpen.Name = "bvtiOpen";
            this.bvtiOpen.Selected = false;
            // 
            // bvtiPrint
            // 
            resources.ApplyResources(this.bvtiPrint, "bvtiPrint");
            this.bvtiPrint.ContentControl = this.backstageViewClientControl3;
            this.bvtiPrint.Name = "bvtiPrint";
            this.bvtiPrint.Selected = false;
            this.bvtiPrint.SelectedChanged += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.bvtiPrint_SelectedChanged);
            // 
            // bvtiExport
            // 
            resources.ApplyResources(this.bvtiExport, "bvtiExport");
            this.bvtiExport.ContentControl = this.backstageViewClientControl4;
            this.bvtiExport.Name = "bvtiExport";
            this.bvtiExport.Selected = false;
            // 
            // bvbiExit
            // 
            resources.ApplyResources(this.bvbiExit, "bvbiExit");
            this.bvbiExit.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Close_16x16;
            this.bvbiExit.Name = "bvbiExit";
            // 
            // rgbiSkins
            // 
            resources.ApplyResources(this.rgbiSkins, "rgbiSkins");
            this.rgbiSkins.Id = 1;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // bbiRotateLayout
            // 
            resources.ApplyResources(this.bbiRotateLayout, "bbiRotateLayout");
            this.bbiRotateLayout.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutRotate_16x16;
            this.bbiRotateLayout.Id = 2;
            this.bbiRotateLayout.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutRotate_32x32;
            this.bbiRotateLayout.Name = "bbiRotateLayout";
            // 
            // bbiFlipLayout
            // 
            resources.ApplyResources(this.bbiFlipLayout, "bbiFlipLayout");
            this.bbiFlipLayout.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutFlip_16x16;
            this.bbiFlipLayout.Id = 3;
            this.bbiFlipLayout.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutFlip_32x32;
            this.bbiFlipLayout.Name = "bbiFlipLayout";
            // 
            // bciShowUnreadMessageCount
            // 
            resources.ApplyResources(this.bciShowUnreadMessageCount, "bciShowUnreadMessageCount");
            this.bciShowUnreadMessageCount.CloseSubMenuOnClick = false;
            this.bciShowUnreadMessageCount.Id = 4;
            this.bciShowUnreadMessageCount.Name = "bciShowUnreadMessageCount";
            // 
            // bciShowAllMessageCount
            // 
            resources.ApplyResources(this.bciShowAllMessageCount, "bciShowAllMessageCount");
            this.bciShowAllMessageCount.CloseSubMenuOnClick = false;
            this.bciShowAllMessageCount.Id = 5;
            this.bciShowAllMessageCount.Name = "bciShowAllMessageCount";
            // 
            // bbiDelete
            // 
            resources.ApplyResources(this.bbiDelete, "bbiDelete");
            this.bbiDelete.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDelete.Id = 6;
            this.bbiDelete.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D));
            this.bbiDelete.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDelete.Name = "bbiDelete";
            // 
            // bbiNew
            // 
            resources.ApplyResources(this.bbiNew, "bbiNew");
            this.bbiNew.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.adversiting_fav_16;
            this.bbiNew.Id = 7;
            this.bbiNew.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.bbiNew.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.email_industry_add_32;
            this.bbiNew.Name = "bbiNew";
            // 
            // bsiNavigation
            // 
            resources.ApplyResources(this.bsiNavigation, "bsiNavigation");
            this.bsiNavigation.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NavigationBar_16x16;
            this.bsiNavigation.Id = 16;
            this.bsiNavigation.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NavigationBar_32x32;
            this.bsiNavigation.Name = "bsiNavigation";
            // 
            // bbiCloseSearch
            // 
            resources.ApplyResources(this.bbiCloseSearch, "bbiCloseSearch");
            this.bbiCloseSearch.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Close_16x16;
            this.bbiCloseSearch.Id = 17;
            this.bbiCloseSearch.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Close_32x32;
            this.bbiCloseSearch.Name = "bbiCloseSearch";
            // 
            // bbiShowUnread
            // 
            resources.ApplyResources(this.bbiShowUnread, "bbiShowUnread");
            this.bbiShowUnread.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Mail_16x16;
            this.bbiShowUnread.Id = 18;
            this.bbiShowUnread.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Mail_32x32;
            this.bbiShowUnread.Name = "bbiShowUnread";
            // 
            // bbiImportant
            // 
            resources.ApplyResources(this.bbiImportant, "bbiImportant");
            this.bbiImportant.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Important_16x16;
            this.bbiImportant.Id = 19;
            this.bbiImportant.Name = "bbiImportant";
            // 
            // bbiHasAttachment
            // 
            resources.ApplyResources(this.bbiHasAttachment, "bbiHasAttachment");
            this.bbiHasAttachment.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.AttachmentObject_16x16;
            this.bbiHasAttachment.Id = 20;
            this.bbiHasAttachment.Name = "bbiHasAttachment";
            // 
            // bbiResetColumnsToDefault
            // 
            resources.ApplyResources(this.bbiResetColumnsToDefault, "bbiResetColumnsToDefault");
            this.bbiResetColumnsToDefault.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.ResetToDefault_16x16;
            this.bbiResetColumnsToDefault.Id = 23;
            this.bbiResetColumnsToDefault.Name = "bbiResetColumnsToDefault";
            // 
            // bsiColumns
            // 
            resources.ApplyResources(this.bsiColumns, "bsiColumns");
            this.bsiColumns.Id = 24;
            this.bsiColumns.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiSubjectColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiFromColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiDateColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiPriorityColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiAttachmentColumn)});
            this.bsiColumns.Name = "bsiColumns";
            // 
            // bbiSubjectColumn
            // 
            this.bbiSubjectColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiSubjectColumn, "bbiSubjectColumn");
            this.bbiSubjectColumn.CloseSubMenuOnClick = false;
            this.bbiSubjectColumn.Id = 25;
            this.bbiSubjectColumn.Name = "bbiSubjectColumn";
            // 
            // bbiFromColumn
            // 
            this.bbiFromColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiFromColumn, "bbiFromColumn");
            this.bbiFromColumn.CloseSubMenuOnClick = false;
            this.bbiFromColumn.Id = 26;
            this.bbiFromColumn.Name = "bbiFromColumn";
            // 
            // bbiDateColumn
            // 
            this.bbiDateColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiDateColumn, "bbiDateColumn");
            this.bbiDateColumn.CloseSubMenuOnClick = false;
            this.bbiDateColumn.Id = 27;
            this.bbiDateColumn.Name = "bbiDateColumn";
            // 
            // bbiPriorityColumn
            // 
            this.bbiPriorityColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiPriorityColumn, "bbiPriorityColumn");
            this.bbiPriorityColumn.CloseSubMenuOnClick = false;
            this.bbiPriorityColumn.Id = 28;
            this.bbiPriorityColumn.Name = "bbiPriorityColumn";
            // 
            // bbiAttachmentColumn
            // 
            this.bbiAttachmentColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiAttachmentColumn, "bbiAttachmentColumn");
            this.bbiAttachmentColumn.CloseSubMenuOnClick = false;
            this.bbiAttachmentColumn.Id = 29;
            this.bbiAttachmentColumn.Name = "bbiAttachmentColumn";
            // 
            // bbiDate
            // 
            this.bbiDate.ActAsDropDown = true;
            this.bbiDate.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            resources.ApplyResources(this.bbiDate, "bbiDate");
            this.bbiDate.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Today_16x16;
            this.bbiDate.Id = 30;
            this.bbiDate.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            this.bbiDate.Name = "bbiDate";
            // 
            // bbiClearFilter
            // 
            resources.ApplyResources(this.bbiClearFilter, "bbiClearFilter");
            this.bbiClearFilter.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiClearFilter.Id = 31;
            this.bbiClearFilter.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiClearFilter.Name = "bbiClearFilter";
            // 
            // bbiNewFeed
            // 
            resources.ApplyResources(this.bbiNewFeed, "bbiNewFeed");
            this.bbiNewFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewFeed_16x16;
            this.bbiNewFeed.Id = 32;
            this.bbiNewFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewFeed_32x32;
            this.bbiNewFeed.Name = "bbiNewFeed";
            // 
            // bbiEditFeed
            // 
            resources.ApplyResources(this.bbiEditFeed, "bbiEditFeed");
            this.bbiEditFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.EditFeed_16x16;
            this.bbiEditFeed.Id = 33;
            this.bbiEditFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.EditFeed_32x32;
            this.bbiEditFeed.Name = "bbiEditFeed";
            // 
            // bbiDeleteFeed
            // 
            resources.ApplyResources(this.bbiDeleteFeed, "bbiDeleteFeed");
            this.bbiDeleteFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteFeed.Id = 34;
            this.bbiDeleteFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteFeed.Name = "bbiDeleteFeed";
            // 
            // bbiRefreshFeed
            // 
            resources.ApplyResources(this.bbiRefreshFeed, "bbiRefreshFeed");
            this.bbiRefreshFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Refresh_16x16;
            this.bbiRefreshFeed.Id = 35;
            this.bbiRefreshFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Refresh_32x32;
            this.bbiRefreshFeed.Name = "bbiRefreshFeed";
            // 
            // rgbiCurrentView
            // 
            resources.ApplyResources(this.rgbiCurrentView, "rgbiCurrentView");
            // 
            // 
            // 
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.ColumnCount = 4;
            galleryItem14.Checked = true;
            galleryItem14.Image = global::DevExpress.MailClient.Win.Properties.Resources.List_32x32;
            galleryItem14.Tag = "List";
            galleryItem15.Image = global::DevExpress.MailClient.Win.Properties.Resources.SortAsc_32x32;
            galleryItem15.Tag = "Alphabetical";
            galleryItem16.Image = global::DevExpress.MailClient.Win.Properties.Resources.ByState_32x32;
            galleryItem16.Tag = "ByState";
            galleryItem17.Image = global::DevExpress.MailClient.Win.Properties.Resources.Card_32x32;
            galleryItem17.Tag = "Card";
            galleryItemGroup4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem14,
            galleryItem15,
            galleryItem16,
            galleryItem17});
            this.rgbiCurrentView.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup4});
            this.rgbiCurrentView.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.rgbiCurrentView.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.rgbiCurrentView.Gallery.RowCount = 1;
            this.rgbiCurrentView.Gallery.ShowItemText = true;
            this.rgbiCurrentView.Id = 36;
            this.rgbiCurrentView.Name = "rgbiCurrentView";
            this.rgbiCurrentView.GalleryInitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiCurrentView_GalleryInitDropDownGallery);
            // 
            // bsiInfo
            // 
            this.bsiInfo.Id = 37;
            this.bsiInfo.Name = "bsiInfo";
            this.bsiInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // bbiNormal
            // 
            this.bbiNormal.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiNormal.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.bbiNormal.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.normal;
            resources.ApplyResources(this.bbiNormal, "bbiNormal");
            this.bbiNormal.Id = 39;
            this.bbiNormal.Name = "bbiNormal";
            this.bbiNormal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNormal_ItemClick);
            // 
            // bbiReading
            // 
            this.bbiReading.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiReading.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.bbiReading.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.reading;
            resources.ApplyResources(this.bbiReading, "bbiReading");
            this.bbiReading.Id = 40;
            this.bbiReading.Name = "bbiReading";
            this.bbiReading.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiReading_ItemClick);
            // 
            // bsiTemp
            // 
            this.bsiTemp.Id = 41;
            this.bsiTemp.Name = "bsiTemp";
            this.bsiTemp.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // bbiManageView
            // 
            resources.ApplyResources(this.bbiManageView, "bbiManageView");
            this.bbiManageView.Enabled = false;
            this.bbiManageView.Id = 42;
            this.bbiManageView.Name = "bbiManageView";
            // 
            // bbiSaveCurrentView
            // 
            resources.ApplyResources(this.bbiSaveCurrentView, "bbiSaveCurrentView");
            this.bbiSaveCurrentView.Enabled = false;
            this.bbiSaveCurrentView.Id = 43;
            this.bbiSaveCurrentView.Name = "bbiSaveCurrentView";
            // 
            // rgbiCurrentViewTasks
            // 
            resources.ApplyResources(this.rgbiCurrentViewTasks, "rgbiCurrentViewTasks");
            // 
            // 
            // 
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Disabled.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.ColumnCount = 4;
            galleryItem18.Image = global::DevExpress.MailClient.Win.Properties.Resources.ListByDate_32x32;
            galleryItem18.Tag = "TaskList";
            galleryItem19.Image = global::DevExpress.MailClient.Win.Properties.Resources.ToDoList_32x32;
            galleryItem19.Tag = "TaskToDoList";
            galleryItem20.Image = global::DevExpress.MailClient.Win.Properties.Resources.Completed_32x32;
            galleryItem20.Tag = "TaskCompleted";
            galleryItem21.Image = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            galleryItem21.Tag = "TaskToday";
            galleryItem22.Image = global::DevExpress.MailClient.Win.Properties.Resources.Prioritized_32x32;
            galleryItem22.Tag = "TaskPrioritized";
            galleryItem23.Image = global::DevExpress.MailClient.Win.Properties.Resources.Overdue_32x32;
            galleryItem23.Tag = "TaskOverdue";
            galleryItem24.Image = global::DevExpress.MailClient.Win.Properties.Resources.List_32x32;
            galleryItem24.Tag = "TaskSimpleList";
            galleryItem25.Checked = true;
            galleryItem25.Image = global::DevExpress.MailClient.Win.Properties.Resources.Deferred_32x32;
            galleryItem25.Tag = "TaskDeferred";
            galleryItemGroup5.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem18,
            galleryItem19,
            galleryItem20,
            galleryItem21,
            galleryItem22,
            galleryItem23,
            galleryItem24,
            galleryItem25});
            this.rgbiCurrentViewTasks.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup5});
            this.rgbiCurrentViewTasks.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.rgbiCurrentViewTasks.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.rgbiCurrentViewTasks.Gallery.RowCount = 2;
            this.rgbiCurrentViewTasks.Gallery.ShowItemText = true;
            this.rgbiCurrentViewTasks.Id = 44;
            this.rgbiCurrentViewTasks.Name = "rgbiCurrentViewTasks";
            this.rgbiCurrentViewTasks.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiCurrentViewTasks_GalleryItemClick);
            this.rgbiCurrentViewTasks.GalleryInitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiCurrentView_GalleryInitDropDownGallery);
            // 
            // bbiTodayFlag
            // 
            this.bbiTodayFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiTodayFlag, "bbiTodayFlag");
            this.bbiTodayFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Today_Flag;
            this.bbiTodayFlag.Id = 45;
            this.bbiTodayFlag.Name = "bbiTodayFlag";
            // 
            // bbiTomorrowFlag
            // 
            this.bbiTomorrowFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiTomorrowFlag, "bbiTomorrowFlag");
            this.bbiTomorrowFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Tomorrow_Flag;
            this.bbiTomorrowFlag.Id = 46;
            this.bbiTomorrowFlag.Name = "bbiTomorrowFlag";
            // 
            // bbiThisWeekFlag
            // 
            this.bbiThisWeekFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiThisWeekFlag, "bbiThisWeekFlag");
            this.bbiThisWeekFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.ThisWeek_Flag;
            this.bbiThisWeekFlag.Id = 47;
            this.bbiThisWeekFlag.Name = "bbiThisWeekFlag";
            // 
            // bbiNextWeekFlag
            // 
            this.bbiNextWeekFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiNextWeekFlag, "bbiNextWeekFlag");
            this.bbiNextWeekFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NextWeek_Flag;
            this.bbiNextWeekFlag.Id = 48;
            this.bbiNextWeekFlag.Name = "bbiNextWeekFlag";
            // 
            // bbiNoDateFlag
            // 
            this.bbiNoDateFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiNoDateFlag, "bbiNoDateFlag");
            this.bbiNoDateFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NoDate_Flag;
            this.bbiNoDateFlag.Id = 49;
            this.bbiNoDateFlag.Name = "bbiNoDateFlag";
            // 
            // bbiCustomFlag
            // 
            resources.ApplyResources(this.bbiCustomFlag, "bbiCustomFlag");
            this.bbiCustomFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Custom_Flag;
            this.bbiCustomFlag.Id = 50;
            this.bbiCustomFlag.Name = "bbiCustomFlag";
            // 
            // bbiNewContact
            // 
            resources.ApplyResources(this.bbiNewContact, "bbiNewContact");
            this.bbiNewContact.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewContact_16x16;
            this.bbiNewContact.Id = 51;
            this.bbiNewContact.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewContact_32x32;
            this.bbiNewContact.Name = "bbiNewContact";
            // 
            // bbiEditContact
            // 
            resources.ApplyResources(this.bbiEditContact, "bbiEditContact");
            this.bbiEditContact.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.EditContact_16x16;
            this.bbiEditContact.Id = 52;
            this.bbiEditContact.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.EditContact_32x32;
            this.bbiEditContact.Name = "bbiEditContact";
            // 
            // bbiDeleteContact
            // 
            resources.ApplyResources(this.bbiDeleteContact, "bbiDeleteContact");
            this.bbiDeleteContact.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteContact.Id = 53;
            this.bbiDeleteContact.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteContact.Name = "bbiDeleteContact";
            // 
            // bbiNewTask
            // 
            resources.ApplyResources(this.bbiNewTask, "bbiNewTask");
            this.bbiNewTask.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewTask_16x16;
            this.bbiNewTask.Id = 54;
            this.bbiNewTask.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewTask_32x32;
            this.bbiNewTask.Name = "bbiNewTask";
            // 
            // bbiEditTask
            // 
            resources.ApplyResources(this.bbiEditTask, "bbiEditTask");
            this.bbiEditTask.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.EditTask_16x16;
            this.bbiEditTask.Id = 55;
            this.bbiEditTask.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.EditTask_32x32;
            this.bbiEditTask.Name = "bbiEditTask";
            // 
            // bbiDeleteTask
            // 
            resources.ApplyResources(this.bbiDeleteTask, "bbiDeleteTask");
            this.bbiDeleteTask.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteTask.Id = 56;
            this.bbiDeleteTask.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteTask.Name = "bbiDeleteTask";
            // 
            // navigateViewBackwardItem1
            // 
            this.navigateViewBackwardItem1.Enabled = false;
            this.navigateViewBackwardItem1.Id = 69;
            this.navigateViewBackwardItem1.Name = "navigateViewBackwardItem1";
            // 
            // navigateViewForwardItem1
            // 
            this.navigateViewForwardItem1.Enabled = false;
            this.navigateViewForwardItem1.Id = 70;
            this.navigateViewForwardItem1.Name = "navigateViewForwardItem1";
            // 
            // gotoTodayItem1
            // 
            this.gotoTodayItem1.Enabled = false;
            this.gotoTodayItem1.Id = 71;
            this.gotoTodayItem1.Name = "gotoTodayItem1";
            // 
            // viewZoomInItem1
            // 
            this.viewZoomInItem1.Enabled = false;
            this.viewZoomInItem1.Id = 72;
            this.viewZoomInItem1.Name = "viewZoomInItem1";
            // 
            // viewZoomOutItem1
            // 
            this.viewZoomOutItem1.Enabled = false;
            this.viewZoomOutItem1.Id = 73;
            this.viewZoomOutItem1.Name = "viewZoomOutItem1";
            // 
            // switchToDayViewItem1
            // 
            this.switchToDayViewItem1.Enabled = false;
            this.switchToDayViewItem1.Id = 74;
            this.switchToDayViewItem1.Name = "switchToDayViewItem1";
            // 
            // switchToWorkWeekViewItem1
            // 
            this.switchToWorkWeekViewItem1.Enabled = false;
            this.switchToWorkWeekViewItem1.Id = 75;
            this.switchToWorkWeekViewItem1.Name = "switchToWorkWeekViewItem1";
            // 
            // switchToWeekViewItem1
            // 
            this.switchToWeekViewItem1.Enabled = false;
            this.switchToWeekViewItem1.Id = 76;
            this.switchToWeekViewItem1.Name = "switchToWeekViewItem1";
            // 
            // switchToMonthViewItem1
            // 
            this.switchToMonthViewItem1.Enabled = false;
            this.switchToMonthViewItem1.Id = 77;
            this.switchToMonthViewItem1.Name = "switchToMonthViewItem1";
            // 
            // switchToTimelineViewItem1
            // 
            this.switchToTimelineViewItem1.Enabled = false;
            this.switchToTimelineViewItem1.Id = 78;
            this.switchToTimelineViewItem1.Name = "switchToTimelineViewItem1";
            // 
            // groupByNoneItem1
            // 
            this.groupByNoneItem1.Enabled = false;
            this.groupByNoneItem1.Id = 79;
            this.groupByNoneItem1.Name = "groupByNoneItem1";
            // 
            // groupByDateItem1
            // 
            this.groupByDateItem1.Enabled = false;
            this.groupByDateItem1.Id = 80;
            this.groupByDateItem1.Name = "groupByDateItem1";
            // 
            // groupByResourceItem1
            // 
            this.groupByResourceItem1.Enabled = false;
            this.groupByResourceItem1.Id = 81;
            this.groupByResourceItem1.Name = "groupByResourceItem1";
            // 
            // switchTimeScalesItem1
            // 
            this.switchTimeScalesItem1.Enabled = false;
            this.switchTimeScalesItem1.Id = 82;
            this.switchTimeScalesItem1.Name = "switchTimeScalesItem1";
            // 
            // switchCompressWeekendItem1
            // 
            this.switchCompressWeekendItem1.Enabled = false;
            this.switchCompressWeekendItem1.Id = 83;
            this.switchCompressWeekendItem1.Name = "switchCompressWeekendItem1";
            // 
            // switchShowWorkTimeOnlyItem1
            // 
            this.switchShowWorkTimeOnlyItem1.Enabled = false;
            this.switchShowWorkTimeOnlyItem1.Id = 84;
            this.switchShowWorkTimeOnlyItem1.Name = "switchShowWorkTimeOnlyItem1";
            // 
            // editAppointmentQueryItem1
            // 
            this.editAppointmentQueryItem1.Enabled = false;
            this.editAppointmentQueryItem1.Id = 85;
            this.editAppointmentQueryItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.editOccurrenceUICommandItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.editSeriesUICommandItem1)});
            this.editAppointmentQueryItem1.Name = "editAppointmentQueryItem1";
            this.editAppointmentQueryItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // editOccurrenceUICommandItem1
            // 
            this.editOccurrenceUICommandItem1.Enabled = false;
            this.editOccurrenceUICommandItem1.Id = 86;
            this.editOccurrenceUICommandItem1.Name = "editOccurrenceUICommandItem1";
            // 
            // editSeriesUICommandItem1
            // 
            this.editSeriesUICommandItem1.Enabled = false;
            this.editSeriesUICommandItem1.Id = 87;
            this.editSeriesUICommandItem1.Name = "editSeriesUICommandItem1";
            // 
            // deleteAppointmentsItem1
            // 
            this.deleteAppointmentsItem1.Enabled = false;
            this.deleteAppointmentsItem1.Id = 88;
            this.deleteAppointmentsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteOccurrenceItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteSeriesItem1)});
            this.deleteAppointmentsItem1.Name = "deleteAppointmentsItem1";
            this.deleteAppointmentsItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // deleteOccurrenceItem1
            // 
            this.deleteOccurrenceItem1.Enabled = false;
            this.deleteOccurrenceItem1.Id = 89;
            this.deleteOccurrenceItem1.Name = "deleteOccurrenceItem1";
            // 
            // deleteSeriesItem1
            // 
            this.deleteSeriesItem1.Enabled = false;
            this.deleteSeriesItem1.Id = 90;
            this.deleteSeriesItem1.Name = "deleteSeriesItem1";
            // 
            // splitAppointmentItem1
            // 
            this.splitAppointmentItem1.Enabled = false;
            this.splitAppointmentItem1.Id = 91;
            this.splitAppointmentItem1.Name = "splitAppointmentItem1";
            // 
            // changeAppointmentStatusItem1
            // 
            this.changeAppointmentStatusItem1.Enabled = false;
            this.changeAppointmentStatusItem1.Id = 92;
            this.changeAppointmentStatusItem1.Name = "changeAppointmentStatusItem1";
            // 
            // changeAppointmentLabelItem1
            // 
            this.changeAppointmentLabelItem1.Enabled = false;
            this.changeAppointmentLabelItem1.Id = 93;
            this.changeAppointmentLabelItem1.Name = "changeAppointmentLabelItem1";
            // 
            // toggleRecurrenceItem1
            // 
            this.toggleRecurrenceItem1.Enabled = false;
            this.toggleRecurrenceItem1.Id = 94;
            this.toggleRecurrenceItem1.Name = "toggleRecurrenceItem1";
            // 
            // changeAppointmentReminderItem1
            // 
            this.changeAppointmentReminderItem1.Edit = this.repositoryItemDuration1;
            this.changeAppointmentReminderItem1.Enabled = false;
            this.changeAppointmentReminderItem1.Id = 95;
            this.changeAppointmentReminderItem1.Name = "changeAppointmentReminderItem1";
            // 
            // repositoryItemDuration1
            // 
            this.repositoryItemDuration1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            resources.ApplyResources(this.repositoryItemDuration1, "repositoryItemDuration1");
            this.repositoryItemDuration1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemDuration1.Buttons"))))});
            this.repositoryItemDuration1.Name = "repositoryItemDuration1";
            this.repositoryItemDuration1.ShowEmptyItem = true;
            this.repositoryItemDuration1.ValidateOnEnterKey = true;
            // 
            // barButtonItem1
            // 
            resources.ApplyResources(this.barButtonItem1, "barButtonItem1");
            this.barButtonItem1.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.abacus_16;
            this.barButtonItem1.Id = 97;
            this.barButtonItem1.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.abacus_32;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonGroup1
            // 
            resources.ApplyResources(this.barButtonGroup1, "barButtonGroup1");
            this.barButtonGroup1.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonGroup1.Id = 98;
            this.barButtonGroup1.Name = "barButtonGroup1";
            // 
            // barButtonItem4
            // 
            resources.ApplyResources(this.barButtonItem4, "barButtonItem4");
            this.barButtonItem4.Id = 102;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barButtonItem11
            // 
            resources.ApplyResources(this.barButtonItem11, "barButtonItem11");
            this.barButtonItem11.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.accountin_book_16;
            this.barButtonItem11.Id = 105;
            this.barButtonItem11.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.accountin_book_32;
            this.barButtonItem11.Name = "barButtonItem11";
            // 
            // barButtonItem13
            // 
            resources.ApplyResources(this.barButtonItem13, "barButtonItem13");
            this.barButtonItem13.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.Glyph")));
            this.barButtonItem13.Id = 107;
            this.barButtonItem13.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.LargeGlyph")));
            this.barButtonItem13.Name = "barButtonItem13";
            // 
            // barButtonItem14
            // 
            resources.ApplyResources(this.barButtonItem14, "barButtonItem14");
            this.barButtonItem14.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.Glyph")));
            this.barButtonItem14.Id = 108;
            this.barButtonItem14.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.LargeGlyph")));
            this.barButtonItem14.Name = "barButtonItem14";
            // 
            // barButtonItem15
            // 
            resources.ApplyResources(this.barButtonItem15, "barButtonItem15");
            this.barButtonItem15.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem15.Glyph")));
            this.barButtonItem15.Id = 109;
            this.barButtonItem15.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem15.LargeGlyph")));
            this.barButtonItem15.Name = "barButtonItem15";
            // 
            // barButtonItem16
            // 
            resources.ApplyResources(this.barButtonItem16, "barButtonItem16");
            this.barButtonItem16.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.Glyph")));
            this.barButtonItem16.Id = 110;
            this.barButtonItem16.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.LargeGlyph")));
            this.barButtonItem16.Name = "barButtonItem16";
            // 
            // barButtonItem17
            // 
            resources.ApplyResources(this.barButtonItem17, "barButtonItem17");
            this.barButtonItem17.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.Glyph")));
            this.barButtonItem17.Id = 111;
            this.barButtonItem17.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.LargeGlyph")));
            this.barButtonItem17.Name = "barButtonItem17";
            // 
            // barButtonItem18
            // 
            resources.ApplyResources(this.barButtonItem18, "barButtonItem18");
            this.barButtonItem18.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem18.Glyph")));
            this.barButtonItem18.Id = 112;
            this.barButtonItem18.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem18.LargeGlyph")));
            this.barButtonItem18.Name = "barButtonItem18";
            // 
            // barButtonItem19
            // 
            resources.ApplyResources(this.barButtonItem19, "barButtonItem19");
            this.barButtonItem19.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem19.Glyph")));
            this.barButtonItem19.Id = 113;
            this.barButtonItem19.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem19.LargeGlyph")));
            this.barButtonItem19.Name = "barButtonItem19";
            // 
            // barButtonItem20
            // 
            resources.ApplyResources(this.barButtonItem20, "barButtonItem20");
            this.barButtonItem20.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem20.Glyph")));
            this.barButtonItem20.Id = 114;
            this.barButtonItem20.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem20.LargeGlyph")));
            this.barButtonItem20.Name = "barButtonItem20";
            // 
            // barButtonItem21
            // 
            resources.ApplyResources(this.barButtonItem21, "barButtonItem21");
            this.barButtonItem21.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem21.Glyph")));
            this.barButtonItem21.Id = 116;
            this.barButtonItem21.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem21.LargeGlyph")));
            this.barButtonItem21.Name = "barButtonItem21";
            // 
            // barButtonItem2
            // 
            resources.ApplyResources(this.barButtonItem2, "barButtonItem2");
            this.barButtonItem2.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonItem2.Id = 117;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // bbiNewCible
            // 
            resources.ApplyResources(this.bbiNewCible, "bbiNewCible");
            this.bbiNewCible.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNewCible.Glyph")));
            this.bbiNewCible.Id = 118;
            this.bbiNewCible.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiNewCible.LargeGlyph")));
            this.bbiNewCible.Name = "bbiNewCible";
            // 
            // bbiCharger
            // 
            resources.ApplyResources(this.bbiCharger, "bbiCharger");
            this.bbiCharger.Id = 119;
            this.bbiCharger.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiCharger.LargeGlyph")));
            this.bbiCharger.Name = "bbiCharger";
            // 
            // barEditItem1
            // 
            resources.ApplyResources(this.barEditItem1, "barEditItem1");
            this.barEditItem1.Edit = this.repositoryItemComboBox1;
            this.barEditItem1.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewFeed_16x16;
            this.barEditItem1.Id = 120;
            this.barEditItem1.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.BO_Feeds_Large;
            this.barEditItem1.Name = "barEditItem1";
            this.barEditItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // repositoryItemComboBox1
            // 
            resources.ApplyResources(this.repositoryItemComboBox1, "repositoryItemComboBox1");
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemComboBox1.Buttons"))))});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            // 
            // bbiSave
            // 
            resources.ApplyResources(this.bbiSave, "bbiSave");
            this.bbiSave.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiSave.Glyph")));
            this.bbiSave.Id = 121;
            this.bbiSave.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiSave.LargeGlyph")));
            this.bbiSave.Name = "bbiSave";
            // 
            // rpCampagne
            // 
            this.rpCampagne.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgNew,
            this.ribbonPageGroup1,
            this.rpgTags,
            this.rpgDelete});
            this.rpCampagne.Name = "rpCampagne";
            this.rpCampagne.Tag = "Campagne";
            resources.ApplyResources(this.rpCampagne, "rpCampagne");
            // 
            // rpgNew
            // 
            this.rpgNew.ItemLinks.Add(this.bbiNew);
            this.rpgNew.Name = "rpgNew";
            this.rpgNew.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgNew, "rpgNew");
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem11);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            resources.ApplyResources(this.ribbonPageGroup1, "ribbonPageGroup1");
            // 
            // rpgTags
            // 
            this.rpgTags.ItemLinks.Add(this.barButtonItem1, true);
            this.rpgTags.Name = "rpgTags";
            this.rpgTags.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgTags, "rpgTags");
            // 
            // rpgDelete
            // 
            this.rpgDelete.AllowTextClipping = false;
            this.rpgDelete.ItemLinks.Add(this.bbiDelete);
            this.rpgDelete.Name = "rpgDelete";
            this.rpgDelete.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgDelete, "rpgDelete");
            // 
            // rpCalendar
            // 
            this.rpCalendar.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.RPGInsertions,
            this.RPGNavgation,
            this.RPGVue});
            this.rpCalendar.Name = "rpCalendar";
            this.rpCalendar.Tag = "Scheduler";
            resources.ApplyResources(this.rpCalendar, "rpCalendar");
            // 
            // RPGInsertions
            // 
            this.RPGInsertions.AllowTextClipping = false;
            this.RPGInsertions.ItemLinks.Add(this.barButtonItem13);
            this.RPGInsertions.ItemLinks.Add(this.barButtonItem14);
            this.RPGInsertions.ItemLinks.Add(this.barButtonItem15);
            this.RPGInsertions.ItemLinks.Add(this.bbiSave);
            this.RPGInsertions.Name = "RPGInsertions";
            this.RPGInsertions.ShowCaptionButton = false;
            resources.ApplyResources(this.RPGInsertions, "RPGInsertions");
            // 
            // RPGNavgation
            // 
            this.RPGNavgation.ItemLinks.Add(this.barButtonItem16);
            this.RPGNavgation.ItemLinks.Add(this.barButtonItem17);
            this.RPGNavgation.ItemLinks.Add(this.barButtonItem18);
            this.RPGNavgation.ItemLinks.Add(this.barButtonItem19);
            this.RPGNavgation.ItemLinks.Add(this.barButtonItem20);
            this.RPGNavgation.Name = "RPGNavgation";
            resources.ApplyResources(this.RPGNavgation, "RPGNavgation");
            // 
            // RPGVue
            // 
            this.RPGVue.ItemLinks.Add(this.barButtonItem21);
            this.RPGVue.ItemLinks.Add(this.barEditItem1);
            this.RPGVue.Name = "RPGVue";
            resources.ApplyResources(this.RPGVue, "RPGVue");
            // 
            // rpDonnees
            // 
            this.rpDonnees.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgAjouter});
            this.rpDonnees.Name = "rpDonnees";
            this.rpDonnees.Tag = "Donnees";
            resources.ApplyResources(this.rpDonnees, "rpDonnees");
            // 
            // rpgAjouter
            // 
            this.rpgAjouter.AllowTextClipping = false;
            this.rpgAjouter.ItemLinks.Add(this.bbiCharger);
            this.rpgAjouter.Name = "rpgAjouter";
            this.rpgAjouter.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgAjouter, "rpgAjouter");
            // 
            // rpVisualize
            // 
            this.rpVisualize.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgFeeds,
            this.rpgActionsFeeds,
            this.rpgLayoutFeeds});
            this.rpVisualize.Name = "rpVisualize";
            this.rpVisualize.Tag = "Visualize";
            resources.ApplyResources(this.rpVisualize, "rpVisualize");
            // 
            // rpgFeeds
            // 
            this.rpgFeeds.ItemLinks.Add(this.bbiNewFeed);
            this.rpgFeeds.ItemLinks.Add(this.bbiEditFeed);
            this.rpgFeeds.ItemLinks.Add(this.bbiDeleteFeed, true);
            this.rpgFeeds.Name = "rpgFeeds";
            this.rpgFeeds.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgFeeds, "rpgFeeds");
            // 
            // rpgActionsFeeds
            // 
            this.rpgActionsFeeds.AllowTextClipping = false;
            this.rpgActionsFeeds.ItemLinks.Add(this.bbiRefreshFeed);
            this.rpgActionsFeeds.Name = "rpgActionsFeeds";
            this.rpgActionsFeeds.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgActionsFeeds, "rpgActionsFeeds");
            // 
            // rpgLayoutFeeds
            // 
            this.rpgLayoutFeeds.ItemLinks.Add(this.bbiRotateLayout);
            this.rpgLayoutFeeds.ItemLinks.Add(this.bbiFlipLayout);
            this.rpgLayoutFeeds.Name = "rpgLayoutFeeds";
            this.rpgLayoutFeeds.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgLayoutFeeds, "rpgLayoutFeeds");
            // 
            // rpCible
            // 
            this.rpCible.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.RpgCible});
            this.rpCible.Name = "rpCible";
            this.rpCible.Tag = "Cible";
            resources.ApplyResources(this.rpCible, "rpCible");
            // 
            // RpgCible
            // 
            this.RpgCible.AllowTextClipping = false;
            this.RpgCible.ItemLinks.Add(this.bbiNewCible);
            this.RpgCible.Name = "RpgCible";
            this.RpgCible.ShowCaptionButton = false;
            resources.ApplyResources(this.RpgCible, "RpgCible");
            // 
            // rpOptimization
            // 
            this.rpOptimization.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgNewOpt});
            this.rpOptimization.Name = "rpOptimization";
            resources.ApplyResources(this.rpOptimization, "rpOptimization");
            // 
            // rpgNewOpt
            // 
            this.rpgNewOpt.Name = "rpgNewOpt";
            resources.ApplyResources(this.rpgNewOpt, "rpgNewOpt");
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.Alignment = DevExpress.Utils.VertAlignment.Center;
            this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemZoomTrackBar1.Maximum = 19;
            this.repositoryItemZoomTrackBar1.Middle = 5;
            this.repositoryItemZoomTrackBar1.Minimum = 1;
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            // 
            // repositoryItemSpinEdit1
            // 
            resources.ApplyResources(this.repositoryItemSpinEdit1, "repositoryItemSpinEdit1");
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            200,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.bsiInfo);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiNormal);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiReading);
            this.ribbonStatusBar1.ItemLinks.Add(this.bsiTemp, true);
            resources.ApplyResources(this.ribbonStatusBar1, "ribbonStatusBar1");
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.nbgCalendar;
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer2);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer4);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer5);
            resources.ApplyResources(this.navBarControl1, "navBarControl1");
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.nbgVisualizer,
            this.nbgCampagne,
            this.nbgCible,
            this.nbgCalendar,
            this.nbgContacts});
            this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
            this.navBarItem1,
            this.navBarItem2,
            this.navBarItem3,
            this.navBarItem4,
            this.navBarItem5});
            this.navBarControl1.MenuManager = this.ribbonControl1;
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.NavigationPaneGroupClientHeight = 300;
            this.navBarControl1.OptionsNavPane.ExpandedWidth = ((int)(resources.GetObject("resource.ExpandedWidth")));
            this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.SkinNavigationPaneViewInfoRegistrator();
            this.navBarControl1.NavPaneStateChanged += new System.EventHandler(this.navBarControl1_NavPaneStateChanged);
            this.navBarControl1.ActiveGroupChanged += new DevExpress.XtraNavBar.NavBarGroupEventHandler(this.navBarControl1_ActiveGroupChanged);
            // 
            // nbgContacts
            // 
            resources.ApplyResources(this.nbgContacts, "nbgContacts");
            this.nbgContacts.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgContacts.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgContacts.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.nbgContacts.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem4),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem5)});
            this.nbgContacts.Name = "nbgContacts";
            // 
            // navBarItem4
            // 
            resources.ApplyResources(this.navBarItem4, "navBarItem4");
            this.navBarItem4.Name = "navBarItem4";
            // 
            // navBarItem5
            // 
            resources.ApplyResources(this.navBarItem5, "navBarItem5");
            this.navBarItem5.Name = "navBarItem5";
            // 
            // navBarGroupControlContainer2
            // 
            this.navBarGroupControlContainer2.Controls.Add(this.ucPlaning1);
            this.navBarGroupControlContainer2.Name = "navBarGroupControlContainer2";
            resources.ApplyResources(this.navBarGroupControlContainer2, "navBarGroupControlContainer2");
            // 
            // ucPlaning1
            // 
            resources.ApplyResources(this.ucPlaning1, "ucPlaning1");
            this.ucPlaning1.Name = "ucPlaning1";
            // 
            // navBarGroupControlContainer4
            // 
            this.navBarGroupControlContainer4.Controls.Add(this.navBarControl2);
            this.navBarGroupControlContainer4.Name = "navBarGroupControlContainer4";
            resources.ApplyResources(this.navBarGroupControlContainer4, "navBarGroupControlContainer4");
            // 
            // navBarControl2
            // 
            this.navBarControl2.ActiveGroup = this.nbgVisualizer;
            this.navBarControl2.AllowSelectedLink = true;
            resources.ApplyResources(this.navBarControl2, "navBarControl2");
            this.navBarControl2.Name = "navBarControl2";
            this.navBarControl2.OptionsNavPane.ExpandedWidth = ((int)(resources.GetObject("resource.ExpandedWidth1")));
            // 
            // nbgVisualizer
            // 
            resources.ApplyResources(this.nbgVisualizer, "nbgVisualizer");
            this.nbgVisualizer.ControlContainer = this.navBarGroupControlContainer4;
            this.nbgVisualizer.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgVisualizer.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgVisualizer.GroupClientHeight = 80;
            this.nbgVisualizer.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgVisualizer.Name = "nbgVisualizer";
            // 
            // navBarGroupControlContainer5
            // 
            this.navBarGroupControlContainer5.Name = "navBarGroupControlContainer5";
            resources.ApplyResources(this.navBarGroupControlContainer5, "navBarGroupControlContainer5");
            // 
            // nbgCampagne
            // 
            resources.ApplyResources(this.nbgCampagne, "nbgCampagne");
            this.nbgCampagne.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgCampagne.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgCampagne.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsList;
            this.nbgCampagne.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem3)});
            this.nbgCampagne.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.email_industry_32_hot;
            this.nbgCampagne.Name = "nbgCampagne";
            this.nbgCampagne.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.email_industry_16_hot;
            // 
            // navBarItem1
            // 
            resources.ApplyResources(this.navBarItem1, "navBarItem1");
            this.navBarItem1.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.email_industry_32_hot;
            this.navBarItem1.Name = "navBarItem1";
            // 
            // navBarItem2
            // 
            resources.ApplyResources(this.navBarItem2, "navBarItem2");
            this.navBarItem2.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.salesman_write_32_hot;
            this.navBarItem2.Name = "navBarItem2";
            // 
            // navBarItem3
            // 
            resources.ApplyResources(this.navBarItem3, "navBarItem3");
            this.navBarItem3.Name = "navBarItem3";
            // 
            // nbgCible
            // 
            resources.ApplyResources(this.nbgCible, "nbgCible");
            this.nbgCible.ControlContainer = this.navBarGroupControlContainer5;
            this.nbgCible.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgCible.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgCible.GroupClientHeight = 80;
            this.nbgCible.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgCible.Name = "nbgCible";
            // 
            // nbgCalendar
            // 
            resources.ApplyResources(this.nbgCalendar, "nbgCalendar");
            this.nbgCalendar.ControlContainer = this.navBarGroupControlContainer2;
            this.nbgCalendar.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgCalendar.Expanded = true;
            this.nbgCalendar.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgCalendar.GroupClientHeight = 80;
            this.nbgCalendar.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgCalendar.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            this.nbgCalendar.Name = "nbgCalendar";
            this.nbgCalendar.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.Today_16x16;
            // 
            // nbgTasks
            // 
            this.nbgTasks.Name = "nbgTasks";
            // 
            // pcMain
            // 
            this.pcMain.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pcMain.Controls.Add(this.backstageViewControl1);
            resources.ApplyResources(this.pcMain, "pcMain");
            this.pcMain.Name = "pcMain";
            // 
            // pmTreeView
            // 
            this.pmTreeView.ItemLinks.Add(this.bciShowAllMessageCount);
            this.pmTreeView.ItemLinks.Add(this.bciShowUnreadMessageCount);
            this.pmTreeView.Name = "pmTreeView";
            this.pmTreeView.Ribbon = this.ribbonControl1;
            // 
            // pmMessage
            // 
            this.pmMessage.ItemLinks.Add(this.bbiDelete, true);
            this.pmMessage.Name = "pmMessage";
            this.pmMessage.Ribbon = this.ribbonControl1;
            // 
            // pmFlagStatus
            // 
            this.pmFlagStatus.ItemLinks.Add(this.bbiTodayFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiTomorrowFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiThisWeekFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiNextWeekFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiNoDateFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiCustomFlag, true);
            this.pmFlagStatus.Name = "pmFlagStatus";
            this.pmFlagStatus.Ribbon = this.ribbonControl1;
            // 
            // schedulerBarController1
            // 
            this.schedulerBarController1.BarItems.Add(this.navigateViewBackwardItem1);
            this.schedulerBarController1.BarItems.Add(this.navigateViewForwardItem1);
            this.schedulerBarController1.BarItems.Add(this.gotoTodayItem1);
            this.schedulerBarController1.BarItems.Add(this.viewZoomInItem1);
            this.schedulerBarController1.BarItems.Add(this.viewZoomOutItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToDayViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToWorkWeekViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToWeekViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToMonthViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToTimelineViewItem1);
            this.schedulerBarController1.BarItems.Add(this.groupByNoneItem1);
            this.schedulerBarController1.BarItems.Add(this.groupByDateItem1);
            this.schedulerBarController1.BarItems.Add(this.groupByResourceItem1);
            this.schedulerBarController1.BarItems.Add(this.switchTimeScalesItem1);
            this.schedulerBarController1.BarItems.Add(this.switchCompressWeekendItem1);
            this.schedulerBarController1.BarItems.Add(this.switchShowWorkTimeOnlyItem1);
            this.schedulerBarController1.BarItems.Add(this.editAppointmentQueryItem1);
            this.schedulerBarController1.BarItems.Add(this.editOccurrenceUICommandItem1);
            this.schedulerBarController1.BarItems.Add(this.editSeriesUICommandItem1);
            this.schedulerBarController1.BarItems.Add(this.deleteAppointmentsItem1);
            this.schedulerBarController1.BarItems.Add(this.deleteOccurrenceItem1);
            this.schedulerBarController1.BarItems.Add(this.deleteSeriesItem1);
            this.schedulerBarController1.BarItems.Add(this.splitAppointmentItem1);
            this.schedulerBarController1.BarItems.Add(this.changeAppointmentStatusItem1);
            this.schedulerBarController1.BarItems.Add(this.changeAppointmentLabelItem1);
            this.schedulerBarController1.BarItems.Add(this.toggleRecurrenceItem1);
            this.schedulerBarController1.BarItems.Add(this.changeAppointmentReminderItem1);
            // 
            // barButtonItem6
            // 
            resources.ApplyResources(this.barButtonItem6, "barButtonItem6");
            this.barButtonItem6.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_16x16;
            this.barButtonItem6.Id = 7;
            this.barButtonItem6.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.barButtonItem6.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_32x32;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // barButtonItem7
            // 
            resources.ApplyResources(this.barButtonItem7, "barButtonItem7");
            this.barButtonItem7.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_16x16;
            this.barButtonItem7.Id = 7;
            this.barButtonItem7.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.barButtonItem7.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_32x32;
            this.barButtonItem7.Name = "barButtonItem7";
            // 
            // barButtonItem8
            // 
            resources.ApplyResources(this.barButtonItem8, "barButtonItem8");
            this.barButtonItem8.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_16x16;
            this.barButtonItem8.Id = 7;
            this.barButtonItem8.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.barButtonItem8.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_32x32;
            this.barButtonItem8.Name = "barButtonItem8";
            // 
            // barButtonItem9
            // 
            resources.ApplyResources(this.barButtonItem9, "barButtonItem9");
            this.barButtonItem9.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_16x16;
            this.barButtonItem9.Id = 7;
            this.barButtonItem9.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.barButtonItem9.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_32x32;
            this.barButtonItem9.Name = "barButtonItem9";
            // 
            // barButtonItem10
            // 
            resources.ApplyResources(this.barButtonItem10, "barButtonItem10");
            this.barButtonItem10.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_16x16;
            this.barButtonItem10.Id = 7;
            this.barButtonItem10.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.barButtonItem10.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_32x32;
            this.barButtonItem10.Name = "barButtonItem10";
            // 
            // newAppointmentItem2
            // 
            this.newAppointmentItem2.Id = 11;
            this.newAppointmentItem2.Name = "newAppointmentItem2";
            // 
            // groupByRibbonPageGroup1
            // 
            this.groupByRibbonPageGroup1.ItemLinks.Add(this.groupByNoneItem1);
            this.groupByRibbonPageGroup1.ItemLinks.Add(this.groupByDateItem1);
            this.groupByRibbonPageGroup1.ItemLinks.Add(this.groupByResourceItem1);
            this.groupByRibbonPageGroup1.Name = "groupByRibbonPageGroup1";
            resources.ApplyResources(this.groupByRibbonPageGroup1, "groupByRibbonPageGroup1");
            // 
            // navigatorRibbonPageGroup1
            // 
            this.navigatorRibbonPageGroup1.ItemLinks.Add(this.navigateViewBackwardItem1);
            this.navigatorRibbonPageGroup1.ItemLinks.Add(this.navigateViewForwardItem1);
            this.navigatorRibbonPageGroup1.ItemLinks.Add(this.gotoTodayItem1);
            this.navigatorRibbonPageGroup1.ItemLinks.Add(this.viewZoomInItem1);
            this.navigatorRibbonPageGroup1.ItemLinks.Add(this.viewZoomOutItem1);
            this.navigatorRibbonPageGroup1.Name = "navigatorRibbonPageGroup1";
            resources.ApplyResources(this.navigatorRibbonPageGroup1, "navigatorRibbonPageGroup1");
            // 
            // appointmentRibbonPageGroup1
            // 
            this.appointmentRibbonPageGroup1.Name = "appointmentRibbonPageGroup1";
            resources.ApplyResources(this.appointmentRibbonPageGroup1, "appointmentRibbonPageGroup1");
            // 
            // frmMain
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.pcMain);
            this.Controls.Add(this.navBarControl1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.KeyPreview = true;
            this.Name = "frmMain";
            this.Ribbon = this.ribbonControl1;
            this.StatusBar = this.ribbonStatusBar1;
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmMain_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            this.backstageViewControl1.ResumeLayout(false);
            this.backstageViewClientControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDuration1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.navBarControl1.ResumeLayout(false);
            this.navBarGroupControlContainer2.ResumeLayout(false);
            this.navBarGroupControlContainer4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcMain)).EndInit();
            this.pcMain.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pmTreeView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMessage)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmFlagStatus)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.schedulerBarController1)).EndInit();
            this.ResumeLayout(false);

        }
Esempio n. 19
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem39 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem40 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem41 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem42 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem43 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem44 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem45 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem46 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem47 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem48 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem49 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem50 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem51 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem52 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem53 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem54 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem55 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem56 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem57 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem58 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem59 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem60 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem61 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem62 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem63 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem64 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem65 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem66 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem67 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem68 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem69 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem70 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem71 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem72 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem73 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem74 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem75 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem76 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem77 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem78 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem79 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem80 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem81 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem82 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem83 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem84 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem85 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem86 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem87 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem88 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem89 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem90 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem91 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem92 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem93 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem94 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem95 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem96 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem97 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem98 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem99 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem100 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem101 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem102 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem103 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem104 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem105 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem106 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem107 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem108 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem109 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem110 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem111 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem112 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem113 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem114 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem115 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem116 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem117 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem118 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem119 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem120 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem121 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem122 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem123 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem124 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem125 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem126 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem127 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem128 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem129 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem130 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem131 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem132 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem133 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem134 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem135 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem136 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem137 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem138 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem139 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem140 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem141 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem142 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem143 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem144 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem145 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem146 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem147 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem148 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem149 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem150 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem151 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem152 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem153 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem154 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem155 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem156 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem157 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem158 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem159 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem160 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem161 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem162 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem163 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem164 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem165 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem166 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem167 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem168 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem169 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem170 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem171 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem172 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem173 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem174 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem175 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem176 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem177 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem178 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem179 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem180 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup39 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem181 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem182 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup40 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem183 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem184 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem185 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem186 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup41 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem187 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem188 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem189 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem190 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem191 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem192 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup42 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem193 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem194 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem195 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem196 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem197 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem198 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem14 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup43 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem199 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem200 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem201 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem202 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem203 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem204 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem205 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem206 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem207 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem208 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem209 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem210 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup44 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem211 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem212 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem213 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem214 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem215 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem216 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem217 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup45 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem218 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem219 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem220 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem221 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem222 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup46 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem223 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem224 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem225 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup47 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem226 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem227 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem228 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem229 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem230 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup48 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem231 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem232 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem233 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup49 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem234 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem235 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem236 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem237 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup50 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem238 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem239 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem240 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem241 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup51 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem242 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem243 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem244 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem245 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup52 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem246 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem247 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem248 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem249 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup53 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem250 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem251 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem252 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem253 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem254 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem255 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup54 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem256 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup55 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem257 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem258 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup56 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem259 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem260 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup57 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem261 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem262 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup58 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem263 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem264 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem265 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup59 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem266 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem267 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem268 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup60 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem269 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem270 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem271 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup61 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem272 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem273 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem274 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup62 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem275 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem276 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem277 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup63 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem278 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem279 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem280 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup64 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem281 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem282 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem283 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup65 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem284 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem285 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem286 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem287 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem288 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup66 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem289 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem290 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup67 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem291 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem292 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem293 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem294 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup68 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem295 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem296 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem297 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup69 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem298 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem299 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem300 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup70 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem301 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem302 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup71 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem303 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem304 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem305 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem306 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup72 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem307 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem308 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem309 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem310 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem311 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem312 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem313 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup73 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem314 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem315 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem316 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem317 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem318 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem319 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem320 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem321 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem322 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem323 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem324 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup74 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem325 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem326 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem327 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem328 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem329 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem330 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem331 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem332 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem333 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup75 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem334 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem335 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem336 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem337 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem338 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem339 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem340 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem341 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem342 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup76 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem343 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem344 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem345 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem346 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup77 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem347 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem348 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem349 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem350 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup78 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem351 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem352 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem353 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem354 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem355 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup79 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem356 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem357 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup80 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem358 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem359 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem360 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem361 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Salaries));
            this.stylesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.StylesRibbonPageGroup();
            this.spreadsheetCommandBarSubItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarSubItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem43 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem44 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem45 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem46 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem47 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem48 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem49 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem50 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem51 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem52 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem53 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem54 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem55 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown26 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.spreadsheetCommandBarButtonItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeFontSizeItem();
            this.repositoryItemSpreadsheetFontSizeEdit1 = new DevExpress.XtraSpreadsheet.Design.RepositoryItemSpreadsheetFontSizeEdit();
            this.spreadControl = new DevExpress.XtraSpreadsheet.SpreadsheetControl();
            this.spreadsheetCommandBarButtonItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarCheckItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarSubItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.changeBorderLineColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeBorderLineColorItem();
            this.changeBorderLineStyleItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeBorderLineStyleItem();
            this.commandBarGalleryDropDown25 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeCellFillColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeCellFillColorItem();
            this.changeFontColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeFontColorItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarCheckItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarCheckItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarButtonItem29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup8 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeNumberFormatItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeNumberFormatItem();
            this.repositoryItemPopupGalleryEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupGalleryEdit();
            this.barButtonGroup9 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarSubItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem39 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem40 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup10 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarButtonItem41 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem42 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown27 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown28 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonItem56 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem57 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.galleryFormatAsTableItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryFormatAsTableItem();
            this.commandBarGalleryDropDown29 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.galleryChangeStyleItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryChangeStyleItem();
            this.spreadsheetCommandBarSubItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem58 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem59 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem60 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem61 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem62 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem63 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem64 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem65 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem66 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem67 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem68 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem69 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem70 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem71 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem72 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem73 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem74 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem75 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.changeSheetTabColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeSheetTabColorItem();
            this.spreadsheetCommandBarButtonItem76 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem77 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem78 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem79 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem80 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem81 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem82 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem83 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem84 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem85 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem86 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem87 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem88 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem89 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem90 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem91 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem92 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem93 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem94 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem95 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem96 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem97 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem98 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem99 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem100 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem101 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem102 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem103 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown30 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown31 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown32 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown33 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown34 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown35 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown36 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonItem104 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem105 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.pageSetupPaperKindItem1 = new DevExpress.XtraSpreadsheet.UI.PageSetupPaperKindItem();
            this.spreadsheetCommandBarSubItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem106 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem107 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem108 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem109 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem110 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem111 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem112 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.functionsFinancialItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsFinancialItem();
            this.functionsLogicalItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsLogicalItem();
            this.functionsTextItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsTextItem();
            this.functionsDateAndTimeItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsDateAndTimeItem();
            this.functionsLookupAndReferenceItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsLookupAndReferenceItem();
            this.functionsMathAndTrigonometryItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsMathAndTrigonometryItem();
            this.spreadsheetCommandBarSubItem23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.functionsStatisticalItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsStatisticalItem();
            this.functionsEngineeringItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsEngineeringItem();
            this.functionsInformationItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsInformationItem();
            this.functionsCompatibilityItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsCompatibilityItem();
            this.functionsWebItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsWebItem();
            this.spreadsheetCommandBarButtonItem118 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem119 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.definedNameListItem1 = new DevExpress.XtraSpreadsheet.UI.DefinedNameListItem();
            this.spreadsheetCommandBarButtonItem120 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem121 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem122 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem123 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem124 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem125 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem126 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem127 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem128 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem129 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem130 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem131 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem132 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem133 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem134 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem135 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem136 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.galleryChartLayoutItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryChartLayoutItem();
            this.galleryChartStyleItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryChartStyleItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown37 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarSubItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown38 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown39 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown40 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown41 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarSubItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown42 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown43 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarSubItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown44 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown45 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown46 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown47 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown48 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.renameTableItem1 = new DevExpress.XtraSpreadsheet.UI.RenameTableItem();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.spreadsheetCommandBarCheckItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.galleryTableStylesItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryTableStylesItem();
            this.chartToolsRibbonPageCategory1 = new DevExpress.XtraSpreadsheet.UI.ChartToolsRibbonPageCategory();
            this.chartsDesignRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ChartsDesignRibbonPage();
            this.chartsDesignTypeRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsDesignTypeRibbonPageGroup();
            this.chartsDesignDataRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsDesignDataRibbonPageGroup();
            this.chartsDesignLayoutsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsDesignLayoutsRibbonPageGroup();
            this.chartsDesignStylesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsDesignStylesRibbonPageGroup();
            this.chartsLayoutRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ChartsLayoutRibbonPage();
            this.chartsLayoutLabelsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsLayoutLabelsRibbonPageGroup();
            this.chartsLayoutAxesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsLayoutAxesRibbonPageGroup();
            this.chartsLayoutAnalysisRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsLayoutAnalysisRibbonPageGroup();
            this.chartsFormatRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ChartsFormatRibbonPage();
            this.chartsFormatArrangeRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsFormatArrangeRibbonPageGroup();
            this.tableToolsRibbonPageCategory1 = new DevExpress.XtraSpreadsheet.UI.TableToolsRibbonPageCategory();
            this.tableToolsDesignRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.TableToolsDesignRibbonPage();
            this.tablePropertiesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.TablePropertiesRibbonPageGroup();
            this.tableToolsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.TableToolsRibbonPageGroup();
            this.tableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.TableStyleOptionsRibbonPageGroup();
            this.tableStylesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.TableStylesRibbonPageGroup();
            this.pictureToolsRibbonPageCategory1 = new DevExpress.XtraSpreadsheet.UI.PictureToolsRibbonPageCategory();
            this.pictureFormatRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.PictureFormatRibbonPage();
            this.pictureFormatArrangeRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PictureFormatArrangeRibbonPageGroup();
            this.drawingToolsRibbonPageCategory1 = new DevExpress.XtraSpreadsheet.UI.DrawingToolsRibbonPageCategory();
            this.drawingFormatRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.DrawingFormatRibbonPage();
            this.drawingFormatArrangeRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.DrawingFormatArrangeRibbonPageGroup();
            this.fileRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.CommonRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ClipboardRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FontRibbonPageGroup();
            this.alignmentRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.AlignmentRibbonPageGroup();
            this.numberRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.NumberRibbonPageGroup();
            this.cellsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.CellsRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.EditingRibbonPageGroup();
            this.insertRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.InsertRibbonPage();
            this.tablesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.TablesRibbonPageGroup();
            this.illustrationsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.IllustrationsRibbonPageGroup();
            this.chartsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChartsRibbonPageGroup();
            this.linksRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.LinksRibbonPageGroup();
            this.symbolsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.SymbolsRibbonPageGroup();
            this.pageLayoutRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.PageLayoutRibbonPage();
            this.pageSetupRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PageSetupRibbonPageGroup();
            this.pageSetupShowRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PageSetupShowRibbonPageGroup();
            this.pageSetupPrintRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PageSetupPrintRibbonPageGroup();
            this.arrangeRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ArrangeRibbonPageGroup();
            this.formulasRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.FormulasRibbonPage();
            this.functionLibraryRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FunctionLibraryRibbonPageGroup();
            this.formulaDefinedNamesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FormulaDefinedNamesRibbonPageGroup();
            this.formulaAuditingRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FormulaAuditingRibbonPageGroup();
            this.formulaCalculationRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FormulaCalculationRibbonPageGroup();
            this.dataRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.DataRibbonPage();
            this.sortAndFilterRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.SortAndFilterRibbonPageGroup();
            this.reviewRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ReviewRibbonPage();
            this.changesRibbonPageGroup2 = new DevExpress.XtraSpreadsheet.UI.ChangesRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ViewRibbonPage();
            this.showRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ShowRibbonPageGroup();
            this.zoomRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ZoomRibbonPageGroup();
            this.windowRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.WindowRibbonPageGroup();
            this.commandBarGalleryDropDown2 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown1 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown3 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown4 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown5 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown6 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown7 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown8 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown9 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown10 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown11 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown12 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown13 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown14 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown15 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown16 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown17 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown18 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown19 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown20 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown21 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown22 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown23 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown24 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.changesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ChangesRibbonPageGroup();
            this.spreadsheetFormulaBarControl1 = new DevExpress.XtraSpreadsheet.SpreadsheetFormulaBarControl();
            this.spreadsheetNameBoxControl1 = new DevExpress.XtraSpreadsheet.SpreadsheetNameBoxControl();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
            this.spreadsheetBarController1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetBarController();
            this.spreadsheetCommandBarButtonItem113 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem114 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem115 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem116 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem117 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.btnConfigMapCollumn = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown26)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown27)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown28)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown29)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown30)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown31)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown32)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown33)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown34)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown35)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown36)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown37)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown38)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown39)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown40)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown41)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown42)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown43)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown44)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown45)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown46)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown47)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown48)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown17)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown19)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown20)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown23)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown24)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spreadsheetNameBoxControl1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.spreadsheetBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem4);
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryFormatAsTableItem1);
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // spreadsheetCommandBarSubItem4
            // 
            this.spreadsheetCommandBarSubItem4.CommandName = "ConditionalFormattingCommandGroup";
            this.spreadsheetCommandBarSubItem4.Id = 75;
            this.spreadsheetCommandBarSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarSubItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarSubItem6),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarSubItem7)});
            this.spreadsheetCommandBarSubItem4.Name = "spreadsheetCommandBarSubItem4";
            // 
            // spreadsheetCommandBarSubItem5
            // 
            this.spreadsheetCommandBarSubItem5.CommandName = "ConditionalFormattingHighlightCellsRuleCommandGroup";
            this.spreadsheetCommandBarSubItem5.Id = 83;
            this.spreadsheetCommandBarSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem43),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem44),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem45),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem46),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem47),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem48),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem49)});
            this.spreadsheetCommandBarSubItem5.Name = "spreadsheetCommandBarSubItem5";
            // 
            // spreadsheetCommandBarButtonItem43
            // 
            this.spreadsheetCommandBarButtonItem43.CommandName = "ConditionalFormattingGreaterThanRuleCommand";
            this.spreadsheetCommandBarButtonItem43.Id = 76;
            this.spreadsheetCommandBarButtonItem43.Name = "spreadsheetCommandBarButtonItem43";
            this.spreadsheetCommandBarButtonItem43.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem44
            // 
            this.spreadsheetCommandBarButtonItem44.CommandName = "ConditionalFormattingLessThanRuleCommand";
            this.spreadsheetCommandBarButtonItem44.Id = 77;
            this.spreadsheetCommandBarButtonItem44.Name = "spreadsheetCommandBarButtonItem44";
            this.spreadsheetCommandBarButtonItem44.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem45
            // 
            this.spreadsheetCommandBarButtonItem45.CommandName = "ConditionalFormattingBetweenRuleCommand";
            this.spreadsheetCommandBarButtonItem45.Id = 78;
            this.spreadsheetCommandBarButtonItem45.Name = "spreadsheetCommandBarButtonItem45";
            this.spreadsheetCommandBarButtonItem45.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem46
            // 
            this.spreadsheetCommandBarButtonItem46.CommandName = "ConditionalFormattingEqualToRuleCommand";
            this.spreadsheetCommandBarButtonItem46.Id = 79;
            this.spreadsheetCommandBarButtonItem46.Name = "spreadsheetCommandBarButtonItem46";
            this.spreadsheetCommandBarButtonItem46.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem47
            // 
            this.spreadsheetCommandBarButtonItem47.CommandName = "ConditionalFormattingTextContainsRuleCommand";
            this.spreadsheetCommandBarButtonItem47.Id = 80;
            this.spreadsheetCommandBarButtonItem47.Name = "spreadsheetCommandBarButtonItem47";
            this.spreadsheetCommandBarButtonItem47.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem48
            // 
            this.spreadsheetCommandBarButtonItem48.CommandName = "ConditionalFormattingDateOccurringRuleCommand";
            this.spreadsheetCommandBarButtonItem48.Id = 81;
            this.spreadsheetCommandBarButtonItem48.Name = "spreadsheetCommandBarButtonItem48";
            this.spreadsheetCommandBarButtonItem48.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem49
            // 
            this.spreadsheetCommandBarButtonItem49.CommandName = "ConditionalFormattingDuplicateValuesRuleCommand";
            this.spreadsheetCommandBarButtonItem49.Id = 82;
            this.spreadsheetCommandBarButtonItem49.Name = "spreadsheetCommandBarButtonItem49";
            this.spreadsheetCommandBarButtonItem49.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarSubItem6
            // 
            this.spreadsheetCommandBarSubItem6.CommandName = "ConditionalFormattingTopBottomRuleCommandGroup";
            this.spreadsheetCommandBarSubItem6.Id = 90;
            this.spreadsheetCommandBarSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem50),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem51),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem52),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem53),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem54),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem55)});
            this.spreadsheetCommandBarSubItem6.Name = "spreadsheetCommandBarSubItem6";
            // 
            // spreadsheetCommandBarButtonItem50
            // 
            this.spreadsheetCommandBarButtonItem50.CommandName = "ConditionalFormattingTop10RuleCommand";
            this.spreadsheetCommandBarButtonItem50.Id = 84;
            this.spreadsheetCommandBarButtonItem50.Name = "spreadsheetCommandBarButtonItem50";
            this.spreadsheetCommandBarButtonItem50.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem51
            // 
            this.spreadsheetCommandBarButtonItem51.CommandName = "ConditionalFormattingTop10PercentRuleCommand";
            this.spreadsheetCommandBarButtonItem51.Id = 85;
            this.spreadsheetCommandBarButtonItem51.Name = "spreadsheetCommandBarButtonItem51";
            this.spreadsheetCommandBarButtonItem51.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem52
            // 
            this.spreadsheetCommandBarButtonItem52.CommandName = "ConditionalFormattingBottom10RuleCommand";
            this.spreadsheetCommandBarButtonItem52.Id = 86;
            this.spreadsheetCommandBarButtonItem52.Name = "spreadsheetCommandBarButtonItem52";
            this.spreadsheetCommandBarButtonItem52.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem53
            // 
            this.spreadsheetCommandBarButtonItem53.CommandName = "ConditionalFormattingBottom10PercentRuleCommand";
            this.spreadsheetCommandBarButtonItem53.Id = 87;
            this.spreadsheetCommandBarButtonItem53.Name = "spreadsheetCommandBarButtonItem53";
            this.spreadsheetCommandBarButtonItem53.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem54
            // 
            this.spreadsheetCommandBarButtonItem54.CommandName = "ConditionalFormattingAboveAverageRuleCommand";
            this.spreadsheetCommandBarButtonItem54.Id = 88;
            this.spreadsheetCommandBarButtonItem54.Name = "spreadsheetCommandBarButtonItem54";
            this.spreadsheetCommandBarButtonItem54.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem55
            // 
            this.spreadsheetCommandBarButtonItem55.CommandName = "ConditionalFormattingBelowAverageRuleCommand";
            this.spreadsheetCommandBarButtonItem55.Id = 89;
            this.spreadsheetCommandBarButtonItem55.Name = "spreadsheetCommandBarButtonItem55";
            this.spreadsheetCommandBarButtonItem55.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem1
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.CommandName = "ConditionalFormattingDataBarsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.DropDownControl = this.commandBarGalleryDropDown26;
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.Id = 91;
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.Name = "spreadsheetCommandBarButtonGalleryDropDownItem1";
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarGalleryDropDown26
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown26.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup1.CommandName = "ConditionalFormattingDataBarsGradientFillCommandGroup";
            spreadsheetCommandGalleryItem1.CommandName = "ConditionalFormattingDataBarGradientBlue";
            spreadsheetCommandGalleryItem2.CommandName = "ConditionalFormattingDataBarGradientGreen";
            spreadsheetCommandGalleryItem3.CommandName = "ConditionalFormattingDataBarGradientRed";
            spreadsheetCommandGalleryItem4.CommandName = "ConditionalFormattingDataBarGradientOrange";
            spreadsheetCommandGalleryItem5.CommandName = "ConditionalFormattingDataBarGradientLightBlue";
            spreadsheetCommandGalleryItem6.CommandName = "ConditionalFormattingDataBarGradientPurple";
            spreadsheetCommandGalleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem1,
            spreadsheetCommandGalleryItem2,
            spreadsheetCommandGalleryItem3,
            spreadsheetCommandGalleryItem4,
            spreadsheetCommandGalleryItem5,
            spreadsheetCommandGalleryItem6});
            spreadsheetCommandGalleryItemGroup2.CommandName = "ConditionalFormattingDataBarsSolidFillCommandGroup";
            spreadsheetCommandGalleryItem7.CommandName = "ConditionalFormattingDataBarSolidBlue";
            spreadsheetCommandGalleryItem8.CommandName = "ConditionalFormattingDataBarSolidGreen";
            spreadsheetCommandGalleryItem9.CommandName = "ConditionalFormattingDataBarSolidRed";
            spreadsheetCommandGalleryItem10.CommandName = "ConditionalFormattingDataBarSolidOrange";
            spreadsheetCommandGalleryItem11.CommandName = "ConditionalFormattingDataBarSolidLightBlue";
            spreadsheetCommandGalleryItem12.CommandName = "ConditionalFormattingDataBarSolidPurple";
            spreadsheetCommandGalleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem7,
            spreadsheetCommandGalleryItem8,
            spreadsheetCommandGalleryItem9,
            spreadsheetCommandGalleryItem10,
            spreadsheetCommandGalleryItem11,
            spreadsheetCommandGalleryItem12});
            this.commandBarGalleryDropDown26.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup1,
            spreadsheetCommandGalleryItemGroup2});
            this.commandBarGalleryDropDown26.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown26.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown26.Name = "commandBarGalleryDropDown26";
            this.commandBarGalleryDropDown26.Ribbon = this.ribbonControl1;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.spreadsheetCommandBarButtonItem1,
            this.spreadsheetCommandBarButtonItem2,
            this.spreadsheetCommandBarButtonItem3,
            this.spreadsheetCommandBarButtonItem4,
            this.spreadsheetCommandBarButtonItem5,
            this.spreadsheetCommandBarButtonItem6,
            this.spreadsheetCommandBarButtonItem7,
            this.spreadsheetCommandBarButtonItem8,
            this.spreadsheetCommandBarButtonItem9,
            this.spreadsheetCommandBarButtonItem10,
            this.spreadsheetCommandBarButtonItem11,
            this.spreadsheetCommandBarButtonItem12,
            this.spreadsheetCommandBarButtonItem13,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.spreadsheetCommandBarButtonItem14,
            this.spreadsheetCommandBarButtonItem15,
            this.barButtonGroup2,
            this.spreadsheetCommandBarCheckItem1,
            this.spreadsheetCommandBarCheckItem2,
            this.spreadsheetCommandBarCheckItem3,
            this.spreadsheetCommandBarCheckItem4,
            this.barButtonGroup3,
            this.spreadsheetCommandBarSubItem1,
            this.spreadsheetCommandBarButtonItem16,
            this.spreadsheetCommandBarButtonItem17,
            this.spreadsheetCommandBarButtonItem18,
            this.spreadsheetCommandBarButtonItem19,
            this.spreadsheetCommandBarButtonItem20,
            this.spreadsheetCommandBarButtonItem21,
            this.spreadsheetCommandBarButtonItem22,
            this.spreadsheetCommandBarButtonItem23,
            this.spreadsheetCommandBarButtonItem24,
            this.spreadsheetCommandBarButtonItem25,
            this.spreadsheetCommandBarButtonItem26,
            this.spreadsheetCommandBarButtonItem27,
            this.spreadsheetCommandBarButtonItem28,
            this.changeBorderLineColorItem1,
            this.changeBorderLineStyleItem1,
            this.barButtonGroup4,
            this.changeCellFillColorItem1,
            this.changeFontColorItem1,
            this.barButtonGroup5,
            this.spreadsheetCommandBarCheckItem5,
            this.spreadsheetCommandBarCheckItem6,
            this.spreadsheetCommandBarCheckItem7,
            this.barButtonGroup6,
            this.spreadsheetCommandBarCheckItem8,
            this.spreadsheetCommandBarCheckItem9,
            this.spreadsheetCommandBarCheckItem10,
            this.barButtonGroup7,
            this.spreadsheetCommandBarButtonItem29,
            this.spreadsheetCommandBarButtonItem30,
            this.spreadsheetCommandBarCheckItem11,
            this.spreadsheetCommandBarSubItem2,
            this.spreadsheetCommandBarCheckItem12,
            this.spreadsheetCommandBarButtonItem31,
            this.spreadsheetCommandBarButtonItem32,
            this.spreadsheetCommandBarButtonItem33,
            this.barButtonGroup8,
            this.changeNumberFormatItem1,
            this.barButtonGroup9,
            this.spreadsheetCommandBarSubItem3,
            this.spreadsheetCommandBarButtonItem34,
            this.spreadsheetCommandBarButtonItem35,
            this.spreadsheetCommandBarButtonItem36,
            this.spreadsheetCommandBarButtonItem37,
            this.spreadsheetCommandBarButtonItem38,
            this.spreadsheetCommandBarButtonItem39,
            this.spreadsheetCommandBarButtonItem40,
            this.barButtonGroup10,
            this.spreadsheetCommandBarButtonItem41,
            this.spreadsheetCommandBarButtonItem42,
            this.spreadsheetCommandBarSubItem4,
            this.spreadsheetCommandBarButtonItem43,
            this.spreadsheetCommandBarButtonItem44,
            this.spreadsheetCommandBarButtonItem45,
            this.spreadsheetCommandBarButtonItem46,
            this.spreadsheetCommandBarButtonItem47,
            this.spreadsheetCommandBarButtonItem48,
            this.spreadsheetCommandBarButtonItem49,
            this.spreadsheetCommandBarSubItem5,
            this.spreadsheetCommandBarButtonItem50,
            this.spreadsheetCommandBarButtonItem51,
            this.spreadsheetCommandBarButtonItem52,
            this.spreadsheetCommandBarButtonItem53,
            this.spreadsheetCommandBarButtonItem54,
            this.spreadsheetCommandBarButtonItem55,
            this.spreadsheetCommandBarSubItem6,
            this.spreadsheetCommandBarButtonGalleryDropDownItem1,
            this.spreadsheetCommandBarButtonGalleryDropDownItem2,
            this.spreadsheetCommandBarButtonGalleryDropDownItem3,
            this.spreadsheetCommandBarButtonItem56,
            this.spreadsheetCommandBarButtonItem57,
            this.spreadsheetCommandBarSubItem7,
            this.galleryFormatAsTableItem1,
            this.galleryChangeStyleItem1,
            this.spreadsheetCommandBarSubItem8,
            this.spreadsheetCommandBarButtonItem58,
            this.spreadsheetCommandBarButtonItem59,
            this.spreadsheetCommandBarButtonItem60,
            this.spreadsheetCommandBarSubItem9,
            this.spreadsheetCommandBarButtonItem61,
            this.spreadsheetCommandBarButtonItem62,
            this.spreadsheetCommandBarButtonItem63,
            this.spreadsheetCommandBarSubItem10,
            this.spreadsheetCommandBarButtonItem64,
            this.spreadsheetCommandBarButtonItem65,
            this.spreadsheetCommandBarButtonItem66,
            this.spreadsheetCommandBarButtonItem67,
            this.spreadsheetCommandBarButtonItem68,
            this.spreadsheetCommandBarButtonItem69,
            this.spreadsheetCommandBarButtonItem70,
            this.spreadsheetCommandBarButtonItem71,
            this.spreadsheetCommandBarButtonItem72,
            this.spreadsheetCommandBarButtonItem73,
            this.spreadsheetCommandBarButtonItem74,
            this.spreadsheetCommandBarSubItem11,
            this.spreadsheetCommandBarButtonItem75,
            this.changeSheetTabColorItem1,
            this.spreadsheetCommandBarButtonItem76,
            this.spreadsheetCommandBarCheckItem13,
            this.spreadsheetCommandBarButtonItem77,
            this.spreadsheetCommandBarSubItem12,
            this.spreadsheetCommandBarButtonItem78,
            this.spreadsheetCommandBarButtonItem79,
            this.spreadsheetCommandBarButtonItem80,
            this.spreadsheetCommandBarButtonItem81,
            this.spreadsheetCommandBarButtonItem82,
            this.spreadsheetCommandBarSubItem13,
            this.spreadsheetCommandBarButtonItem83,
            this.spreadsheetCommandBarButtonItem84,
            this.spreadsheetCommandBarButtonItem85,
            this.spreadsheetCommandBarButtonItem86,
            this.spreadsheetCommandBarSubItem14,
            this.spreadsheetCommandBarButtonItem87,
            this.spreadsheetCommandBarButtonItem88,
            this.spreadsheetCommandBarButtonItem89,
            this.spreadsheetCommandBarButtonItem90,
            this.spreadsheetCommandBarButtonItem91,
            this.spreadsheetCommandBarButtonItem92,
            this.spreadsheetCommandBarSubItem15,
            this.spreadsheetCommandBarButtonItem93,
            this.spreadsheetCommandBarButtonItem94,
            this.spreadsheetCommandBarSubItem16,
            this.spreadsheetCommandBarButtonItem95,
            this.spreadsheetCommandBarButtonItem96,
            this.spreadsheetCommandBarButtonItem97,
            this.spreadsheetCommandBarButtonItem98,
            this.spreadsheetCommandBarButtonItem99,
            this.spreadsheetCommandBarButtonItem100,
            this.spreadsheetCommandBarButtonItem101,
            this.spreadsheetCommandBarButtonItem102,
            this.spreadsheetCommandBarButtonItem103,
            this.spreadsheetCommandBarButtonGalleryDropDownItem4,
            this.spreadsheetCommandBarButtonGalleryDropDownItem5,
            this.spreadsheetCommandBarButtonGalleryDropDownItem6,
            this.spreadsheetCommandBarButtonGalleryDropDownItem7,
            this.spreadsheetCommandBarButtonGalleryDropDownItem8,
            this.spreadsheetCommandBarButtonGalleryDropDownItem9,
            this.spreadsheetCommandBarButtonGalleryDropDownItem10,
            this.spreadsheetCommandBarButtonItem104,
            this.spreadsheetCommandBarButtonItem105,
            this.spreadsheetCommandBarSubItem17,
            this.spreadsheetCommandBarCheckItem14,
            this.spreadsheetCommandBarCheckItem15,
            this.spreadsheetCommandBarCheckItem16,
            this.spreadsheetCommandBarSubItem18,
            this.spreadsheetCommandBarCheckItem17,
            this.spreadsheetCommandBarCheckItem18,
            this.pageSetupPaperKindItem1,
            this.spreadsheetCommandBarSubItem19,
            this.spreadsheetCommandBarButtonItem106,
            this.spreadsheetCommandBarButtonItem107,
            this.spreadsheetCommandBarButtonItem108,
            this.spreadsheetCommandBarCheckItem19,
            this.spreadsheetCommandBarCheckItem20,
            this.spreadsheetCommandBarCheckItem21,
            this.spreadsheetCommandBarCheckItem22,
            this.spreadsheetCommandBarSubItem20,
            this.spreadsheetCommandBarButtonItem109,
            this.spreadsheetCommandBarButtonItem110,
            this.spreadsheetCommandBarSubItem21,
            this.spreadsheetCommandBarButtonItem111,
            this.spreadsheetCommandBarButtonItem112,
            this.spreadsheetCommandBarSubItem22,
            this.functionsFinancialItem1,
            this.functionsLogicalItem1,
            this.functionsTextItem1,
            this.functionsDateAndTimeItem1,
            this.functionsLookupAndReferenceItem1,
            this.functionsMathAndTrigonometryItem1,
            this.spreadsheetCommandBarSubItem23,
            this.functionsStatisticalItem1,
            this.functionsEngineeringItem1,
            this.functionsInformationItem1,
            this.functionsCompatibilityItem1,
            this.functionsWebItem1,
            this.spreadsheetCommandBarButtonItem118,
            this.spreadsheetCommandBarButtonItem119,
            this.definedNameListItem1,
            this.spreadsheetCommandBarButtonItem120,
            this.spreadsheetCommandBarCheckItem23,
            this.spreadsheetCommandBarSubItem24,
            this.spreadsheetCommandBarCheckItem24,
            this.spreadsheetCommandBarCheckItem25,
            this.spreadsheetCommandBarButtonItem121,
            this.spreadsheetCommandBarButtonItem122,
            this.spreadsheetCommandBarButtonItem123,
            this.spreadsheetCommandBarButtonItem124,
            this.spreadsheetCommandBarButtonItem125,
            this.spreadsheetCommandBarButtonItem126,
            this.spreadsheetCommandBarButtonItem127,
            this.spreadsheetCommandBarButtonItem128,
            this.spreadsheetCommandBarButtonItem129,
            this.spreadsheetCommandBarSubItem25,
            this.spreadsheetCommandBarButtonItem130,
            this.spreadsheetCommandBarButtonItem131,
            this.spreadsheetCommandBarButtonItem132,
            this.spreadsheetCommandBarButtonItem133,
            this.spreadsheetCommandBarButtonItem134,
            this.spreadsheetCommandBarButtonItem135,
            this.spreadsheetCommandBarButtonItem136,
            this.galleryChartLayoutItem1,
            this.galleryChartStyleItem1,
            this.spreadsheetCommandBarButtonGalleryDropDownItem11,
            this.spreadsheetCommandBarSubItem26,
            this.spreadsheetCommandBarButtonGalleryDropDownItem12,
            this.spreadsheetCommandBarButtonGalleryDropDownItem13,
            this.spreadsheetCommandBarButtonGalleryDropDownItem14,
            this.spreadsheetCommandBarButtonGalleryDropDownItem15,
            this.spreadsheetCommandBarSubItem27,
            this.spreadsheetCommandBarButtonGalleryDropDownItem16,
            this.spreadsheetCommandBarButtonGalleryDropDownItem17,
            this.spreadsheetCommandBarSubItem28,
            this.spreadsheetCommandBarButtonGalleryDropDownItem18,
            this.spreadsheetCommandBarButtonGalleryDropDownItem19,
            this.spreadsheetCommandBarButtonGalleryDropDownItem20,
            this.spreadsheetCommandBarButtonGalleryDropDownItem21,
            this.spreadsheetCommandBarButtonGalleryDropDownItem22,
            this.barStaticItem1,
            this.renameTableItem1,
            this.spreadsheetCommandBarCheckItem26,
            this.spreadsheetCommandBarCheckItem27,
            this.spreadsheetCommandBarCheckItem28,
            this.spreadsheetCommandBarCheckItem29,
            this.spreadsheetCommandBarCheckItem30,
            this.spreadsheetCommandBarCheckItem31,
            this.spreadsheetCommandBarCheckItem32,
            this.galleryTableStylesItem1,
            this.barButtonItem1,
            this.btnConfigMapCollumn});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 255;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.chartToolsRibbonPageCategory1,
            this.tableToolsRibbonPageCategory1,
            this.pictureToolsRibbonPageCategory1,
            this.drawingToolsRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.insertRibbonPage1,
            this.pageLayoutRibbonPage1,
            this.formulasRibbonPage1,
            this.dataRibbonPage1,
            this.reviewRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFontEdit1,
            this.repositoryItemSpreadsheetFontSizeEdit1,
            this.repositoryItemPopupGalleryEdit1,
            this.repositoryItemTextEdit1});
            this.ribbonControl1.Size = new System.Drawing.Size(894, 142);
            // 
            // spreadsheetCommandBarButtonItem1
            // 
            this.spreadsheetCommandBarButtonItem1.CommandName = "FileNew";
            this.spreadsheetCommandBarButtonItem1.Id = 1;
            this.spreadsheetCommandBarButtonItem1.Name = "spreadsheetCommandBarButtonItem1";
            // 
            // spreadsheetCommandBarButtonItem2
            // 
            this.spreadsheetCommandBarButtonItem2.CommandName = "FileOpen";
            this.spreadsheetCommandBarButtonItem2.Id = 2;
            this.spreadsheetCommandBarButtonItem2.Name = "spreadsheetCommandBarButtonItem2";
            // 
            // spreadsheetCommandBarButtonItem3
            // 
            this.spreadsheetCommandBarButtonItem3.CommandName = "FileSave";
            this.spreadsheetCommandBarButtonItem3.Id = 3;
            this.spreadsheetCommandBarButtonItem3.Name = "spreadsheetCommandBarButtonItem3";
            // 
            // spreadsheetCommandBarButtonItem4
            // 
            this.spreadsheetCommandBarButtonItem4.CommandName = "FileSaveAs";
            this.spreadsheetCommandBarButtonItem4.Id = 4;
            this.spreadsheetCommandBarButtonItem4.Name = "spreadsheetCommandBarButtonItem4";
            // 
            // spreadsheetCommandBarButtonItem5
            // 
            this.spreadsheetCommandBarButtonItem5.CommandName = "FileQuickPrint";
            this.spreadsheetCommandBarButtonItem5.Id = 5;
            this.spreadsheetCommandBarButtonItem5.Name = "spreadsheetCommandBarButtonItem5";
            // 
            // spreadsheetCommandBarButtonItem6
            // 
            this.spreadsheetCommandBarButtonItem6.CommandName = "FilePrint";
            this.spreadsheetCommandBarButtonItem6.Id = 6;
            this.spreadsheetCommandBarButtonItem6.Name = "spreadsheetCommandBarButtonItem6";
            // 
            // spreadsheetCommandBarButtonItem7
            // 
            this.spreadsheetCommandBarButtonItem7.CommandName = "FilePrintPreview";
            this.spreadsheetCommandBarButtonItem7.Id = 7;
            this.spreadsheetCommandBarButtonItem7.Name = "spreadsheetCommandBarButtonItem7";
            // 
            // spreadsheetCommandBarButtonItem8
            // 
            this.spreadsheetCommandBarButtonItem8.CommandName = "FileUndo";
            this.spreadsheetCommandBarButtonItem8.Id = 8;
            this.spreadsheetCommandBarButtonItem8.Name = "spreadsheetCommandBarButtonItem8";
            // 
            // spreadsheetCommandBarButtonItem9
            // 
            this.spreadsheetCommandBarButtonItem9.CommandName = "FileRedo";
            this.spreadsheetCommandBarButtonItem9.Id = 9;
            this.spreadsheetCommandBarButtonItem9.Name = "spreadsheetCommandBarButtonItem9";
            // 
            // spreadsheetCommandBarButtonItem10
            // 
            this.spreadsheetCommandBarButtonItem10.CommandName = "PasteSelection";
            this.spreadsheetCommandBarButtonItem10.Id = 20;
            this.spreadsheetCommandBarButtonItem10.Name = "spreadsheetCommandBarButtonItem10";
            this.spreadsheetCommandBarButtonItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem11
            // 
            this.spreadsheetCommandBarButtonItem11.CommandName = "CutSelection";
            this.spreadsheetCommandBarButtonItem11.Id = 21;
            this.spreadsheetCommandBarButtonItem11.Name = "spreadsheetCommandBarButtonItem11";
            this.spreadsheetCommandBarButtonItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem12
            // 
            this.spreadsheetCommandBarButtonItem12.CommandName = "CopySelection";
            this.spreadsheetCommandBarButtonItem12.Id = 22;
            this.spreadsheetCommandBarButtonItem12.Name = "spreadsheetCommandBarButtonItem12";
            this.spreadsheetCommandBarButtonItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem13
            // 
            this.spreadsheetCommandBarButtonItem13.CommandName = "ShowPasteSpecialForm";
            this.spreadsheetCommandBarButtonItem13.Id = 23;
            this.spreadsheetCommandBarButtonItem13.Name = "spreadsheetCommandBarButtonItem13";
            this.spreadsheetCommandBarButtonItem13.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 10;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem14);
            this.barButtonGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem15);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 24;
            this.changeFontNameItem1.Name = "changeFontNameItem1";
            // 
            // repositoryItemFontEdit1
            // 
            this.repositoryItemFontEdit1.AutoHeight = false;
            this.repositoryItemFontEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemFontEdit1.Name = "repositoryItemFontEdit1";
            // 
            // changeFontSizeItem1
            // 
            this.changeFontSizeItem1.Edit = this.repositoryItemSpreadsheetFontSizeEdit1;
            this.changeFontSizeItem1.Id = 25;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemSpreadsheetFontSizeEdit1
            // 
            this.repositoryItemSpreadsheetFontSizeEdit1.AutoHeight = false;
            this.repositoryItemSpreadsheetFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemSpreadsheetFontSizeEdit1.Control = this.spreadControl;
            this.repositoryItemSpreadsheetFontSizeEdit1.Name = "repositoryItemSpreadsheetFontSizeEdit1";
            // 
            // spreadControl
            // 
            this.spreadControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.spreadControl.Location = new System.Drawing.Point(0, 167);
            this.spreadControl.MenuManager = this.ribbonControl1;
            this.spreadControl.Name = "spreadControl";
            this.spreadControl.Size = new System.Drawing.Size(894, 318);
            this.spreadControl.TabIndex = 0;
            this.spreadControl.Text = "spreadsheetControl1";
            // 
            // spreadsheetCommandBarButtonItem14
            // 
            this.spreadsheetCommandBarButtonItem14.ButtonGroupTag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            this.spreadsheetCommandBarButtonItem14.CommandName = "FormatIncreaseFontSize";
            this.spreadsheetCommandBarButtonItem14.Id = 26;
            this.spreadsheetCommandBarButtonItem14.Name = "spreadsheetCommandBarButtonItem14";
            this.spreadsheetCommandBarButtonItem14.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem15
            // 
            this.spreadsheetCommandBarButtonItem15.ButtonGroupTag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            this.spreadsheetCommandBarButtonItem15.CommandName = "FormatDecreaseFontSize";
            this.spreadsheetCommandBarButtonItem15.Id = 27;
            this.spreadsheetCommandBarButtonItem15.Name = "spreadsheetCommandBarButtonItem15";
            this.spreadsheetCommandBarButtonItem15.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 11;
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem1);
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem2);
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem3);
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem4);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            // 
            // spreadsheetCommandBarCheckItem1
            // 
            this.spreadsheetCommandBarCheckItem1.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem1.CommandName = "FormatFontBold";
            this.spreadsheetCommandBarCheckItem1.Id = 28;
            this.spreadsheetCommandBarCheckItem1.Name = "spreadsheetCommandBarCheckItem1";
            this.spreadsheetCommandBarCheckItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem2
            // 
            this.spreadsheetCommandBarCheckItem2.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem2.CommandName = "FormatFontItalic";
            this.spreadsheetCommandBarCheckItem2.Id = 29;
            this.spreadsheetCommandBarCheckItem2.Name = "spreadsheetCommandBarCheckItem2";
            this.spreadsheetCommandBarCheckItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem3
            // 
            this.spreadsheetCommandBarCheckItem3.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem3.CommandName = "FormatFontUnderline";
            this.spreadsheetCommandBarCheckItem3.Id = 30;
            this.spreadsheetCommandBarCheckItem3.Name = "spreadsheetCommandBarCheckItem3";
            this.spreadsheetCommandBarCheckItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem4
            // 
            this.spreadsheetCommandBarCheckItem4.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem4.CommandName = "FormatFontStrikeout";
            this.spreadsheetCommandBarCheckItem4.Id = 31;
            this.spreadsheetCommandBarCheckItem4.Name = "spreadsheetCommandBarCheckItem4";
            this.spreadsheetCommandBarCheckItem4.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 12;
            this.barButtonGroup3.ItemLinks.Add(this.spreadsheetCommandBarSubItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DDB05A32-9207-4556-85CB-FE3403A197C7}";
            // 
            // spreadsheetCommandBarSubItem1
            // 
            this.spreadsheetCommandBarSubItem1.ButtonGroupTag = "{DDB05A32-9207-4556-85CB-FE3403A197C7}";
            this.spreadsheetCommandBarSubItem1.CommandName = "FormatBordersCommandGroup";
            this.spreadsheetCommandBarSubItem1.Id = 32;
            this.spreadsheetCommandBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem17),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem18),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem19),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem20),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem21),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem22),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem23),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem24),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem25),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem26),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem27),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem28),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeBorderLineColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeBorderLineStyleItem1)});
            this.spreadsheetCommandBarSubItem1.Name = "spreadsheetCommandBarSubItem1";
            this.spreadsheetCommandBarSubItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem16
            // 
            this.spreadsheetCommandBarButtonItem16.CommandName = "FormatBottomBorder";
            this.spreadsheetCommandBarButtonItem16.Id = 33;
            this.spreadsheetCommandBarButtonItem16.Name = "spreadsheetCommandBarButtonItem16";
            // 
            // spreadsheetCommandBarButtonItem17
            // 
            this.spreadsheetCommandBarButtonItem17.CommandName = "FormatTopBorder";
            this.spreadsheetCommandBarButtonItem17.Id = 34;
            this.spreadsheetCommandBarButtonItem17.Name = "spreadsheetCommandBarButtonItem17";
            // 
            // spreadsheetCommandBarButtonItem18
            // 
            this.spreadsheetCommandBarButtonItem18.CommandName = "FormatLeftBorder";
            this.spreadsheetCommandBarButtonItem18.Id = 35;
            this.spreadsheetCommandBarButtonItem18.Name = "spreadsheetCommandBarButtonItem18";
            // 
            // spreadsheetCommandBarButtonItem19
            // 
            this.spreadsheetCommandBarButtonItem19.CommandName = "FormatRightBorder";
            this.spreadsheetCommandBarButtonItem19.Id = 36;
            this.spreadsheetCommandBarButtonItem19.Name = "spreadsheetCommandBarButtonItem19";
            // 
            // spreadsheetCommandBarButtonItem20
            // 
            this.spreadsheetCommandBarButtonItem20.CommandName = "FormatNoBorders";
            this.spreadsheetCommandBarButtonItem20.Id = 37;
            this.spreadsheetCommandBarButtonItem20.Name = "spreadsheetCommandBarButtonItem20";
            // 
            // spreadsheetCommandBarButtonItem21
            // 
            this.spreadsheetCommandBarButtonItem21.CommandName = "FormatAllBorders";
            this.spreadsheetCommandBarButtonItem21.Id = 38;
            this.spreadsheetCommandBarButtonItem21.Name = "spreadsheetCommandBarButtonItem21";
            // 
            // spreadsheetCommandBarButtonItem22
            // 
            this.spreadsheetCommandBarButtonItem22.CommandName = "FormatOutsideBorders";
            this.spreadsheetCommandBarButtonItem22.Id = 39;
            this.spreadsheetCommandBarButtonItem22.Name = "spreadsheetCommandBarButtonItem22";
            // 
            // spreadsheetCommandBarButtonItem23
            // 
            this.spreadsheetCommandBarButtonItem23.CommandName = "FormatThickBorder";
            this.spreadsheetCommandBarButtonItem23.Id = 40;
            this.spreadsheetCommandBarButtonItem23.Name = "spreadsheetCommandBarButtonItem23";
            // 
            // spreadsheetCommandBarButtonItem24
            // 
            this.spreadsheetCommandBarButtonItem24.CommandName = "FormatBottomDoubleBorder";
            this.spreadsheetCommandBarButtonItem24.Id = 41;
            this.spreadsheetCommandBarButtonItem24.Name = "spreadsheetCommandBarButtonItem24";
            // 
            // spreadsheetCommandBarButtonItem25
            // 
            this.spreadsheetCommandBarButtonItem25.CommandName = "FormatBottomThickBorder";
            this.spreadsheetCommandBarButtonItem25.Id = 42;
            this.spreadsheetCommandBarButtonItem25.Name = "spreadsheetCommandBarButtonItem25";
            // 
            // spreadsheetCommandBarButtonItem26
            // 
            this.spreadsheetCommandBarButtonItem26.CommandName = "FormatTopAndBottomBorder";
            this.spreadsheetCommandBarButtonItem26.Id = 43;
            this.spreadsheetCommandBarButtonItem26.Name = "spreadsheetCommandBarButtonItem26";
            // 
            // spreadsheetCommandBarButtonItem27
            // 
            this.spreadsheetCommandBarButtonItem27.CommandName = "FormatTopAndThickBottomBorder";
            this.spreadsheetCommandBarButtonItem27.Id = 44;
            this.spreadsheetCommandBarButtonItem27.Name = "spreadsheetCommandBarButtonItem27";
            // 
            // spreadsheetCommandBarButtonItem28
            // 
            this.spreadsheetCommandBarButtonItem28.CommandName = "FormatTopAndDoubleBottomBorder";
            this.spreadsheetCommandBarButtonItem28.Id = 45;
            this.spreadsheetCommandBarButtonItem28.Name = "spreadsheetCommandBarButtonItem28";
            // 
            // changeBorderLineColorItem1
            // 
            this.changeBorderLineColorItem1.ActAsDropDown = true;
            this.changeBorderLineColorItem1.Id = 46;
            this.changeBorderLineColorItem1.Name = "changeBorderLineColorItem1";
            // 
            // changeBorderLineStyleItem1
            // 
            this.changeBorderLineStyleItem1.DropDownControl = this.commandBarGalleryDropDown25;
            this.changeBorderLineStyleItem1.Id = 47;
            this.changeBorderLineStyleItem1.Name = "changeBorderLineStyleItem1";
            // 
            // commandBarGalleryDropDown25
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown25.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown25.Gallery.ColumnCount = 1;
            this.commandBarGalleryDropDown25.Gallery.DrawImageBackground = false;
            this.commandBarGalleryDropDown25.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.commandBarGalleryDropDown25.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.commandBarGalleryDropDown25.Gallery.ItemSize = new System.Drawing.Size(136, 26);
            this.commandBarGalleryDropDown25.Gallery.RowCount = 14;
            this.commandBarGalleryDropDown25.Gallery.ShowGroupCaption = false;
            this.commandBarGalleryDropDown25.Gallery.ShowItemText = true;
            this.commandBarGalleryDropDown25.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown25.Name = "commandBarGalleryDropDown25";
            this.commandBarGalleryDropDown25.Ribbon = this.ribbonControl1;
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 13;
            this.barButtonGroup4.ItemLinks.Add(this.changeCellFillColorItem1);
            this.barButtonGroup4.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{C2275623-04A3-41E8-8D6A-EB5C7F8541D1}";
            // 
            // changeCellFillColorItem1
            // 
            this.changeCellFillColorItem1.Id = 48;
            this.changeCellFillColorItem1.Name = "changeCellFillColorItem1";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 49;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 14;
            this.barButtonGroup5.ItemLinks.Add(this.spreadsheetCommandBarCheckItem5);
            this.barButtonGroup5.ItemLinks.Add(this.spreadsheetCommandBarCheckItem6);
            this.barButtonGroup5.ItemLinks.Add(this.spreadsheetCommandBarCheckItem7);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            // 
            // spreadsheetCommandBarCheckItem5
            // 
            this.spreadsheetCommandBarCheckItem5.ButtonGroupTag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            this.spreadsheetCommandBarCheckItem5.CommandName = "FormatAlignmentTop";
            this.spreadsheetCommandBarCheckItem5.Id = 50;
            this.spreadsheetCommandBarCheckItem5.Name = "spreadsheetCommandBarCheckItem5";
            this.spreadsheetCommandBarCheckItem5.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem6
            // 
            this.spreadsheetCommandBarCheckItem6.ButtonGroupTag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            this.spreadsheetCommandBarCheckItem6.CommandName = "FormatAlignmentMiddle";
            this.spreadsheetCommandBarCheckItem6.Id = 51;
            this.spreadsheetCommandBarCheckItem6.Name = "spreadsheetCommandBarCheckItem6";
            this.spreadsheetCommandBarCheckItem6.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem7
            // 
            this.spreadsheetCommandBarCheckItem7.ButtonGroupTag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            this.spreadsheetCommandBarCheckItem7.CommandName = "FormatAlignmentBottom";
            this.spreadsheetCommandBarCheckItem7.Id = 52;
            this.spreadsheetCommandBarCheckItem7.Name = "spreadsheetCommandBarCheckItem7";
            this.spreadsheetCommandBarCheckItem7.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 15;
            this.barButtonGroup6.ItemLinks.Add(this.spreadsheetCommandBarCheckItem8);
            this.barButtonGroup6.ItemLinks.Add(this.spreadsheetCommandBarCheckItem9);
            this.barButtonGroup6.ItemLinks.Add(this.spreadsheetCommandBarCheckItem10);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            // 
            // spreadsheetCommandBarCheckItem8
            // 
            this.spreadsheetCommandBarCheckItem8.ButtonGroupTag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            this.spreadsheetCommandBarCheckItem8.CommandName = "FormatAlignmentLeft";
            this.spreadsheetCommandBarCheckItem8.Id = 53;
            this.spreadsheetCommandBarCheckItem8.Name = "spreadsheetCommandBarCheckItem8";
            this.spreadsheetCommandBarCheckItem8.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem9
            // 
            this.spreadsheetCommandBarCheckItem9.ButtonGroupTag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            this.spreadsheetCommandBarCheckItem9.CommandName = "FormatAlignmentCenter";
            this.spreadsheetCommandBarCheckItem9.Id = 54;
            this.spreadsheetCommandBarCheckItem9.Name = "spreadsheetCommandBarCheckItem9";
            this.spreadsheetCommandBarCheckItem9.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem10
            // 
            this.spreadsheetCommandBarCheckItem10.ButtonGroupTag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            this.spreadsheetCommandBarCheckItem10.CommandName = "FormatAlignmentRight";
            this.spreadsheetCommandBarCheckItem10.Id = 55;
            this.spreadsheetCommandBarCheckItem10.Name = "spreadsheetCommandBarCheckItem10";
            this.spreadsheetCommandBarCheckItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 16;
            this.barButtonGroup7.ItemLinks.Add(this.spreadsheetCommandBarButtonItem29);
            this.barButtonGroup7.ItemLinks.Add(this.spreadsheetCommandBarButtonItem30);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            // 
            // spreadsheetCommandBarButtonItem29
            // 
            this.spreadsheetCommandBarButtonItem29.ButtonGroupTag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            this.spreadsheetCommandBarButtonItem29.CommandName = "FormatDecreaseIndent";
            this.spreadsheetCommandBarButtonItem29.Id = 56;
            this.spreadsheetCommandBarButtonItem29.Name = "spreadsheetCommandBarButtonItem29";
            this.spreadsheetCommandBarButtonItem29.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem30
            // 
            this.spreadsheetCommandBarButtonItem30.ButtonGroupTag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            this.spreadsheetCommandBarButtonItem30.CommandName = "FormatIncreaseIndent";
            this.spreadsheetCommandBarButtonItem30.Id = 57;
            this.spreadsheetCommandBarButtonItem30.Name = "spreadsheetCommandBarButtonItem30";
            this.spreadsheetCommandBarButtonItem30.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem11
            // 
            this.spreadsheetCommandBarCheckItem11.CommandName = "FormatWrapText";
            this.spreadsheetCommandBarCheckItem11.Id = 58;
            this.spreadsheetCommandBarCheckItem11.Name = "spreadsheetCommandBarCheckItem11";
            this.spreadsheetCommandBarCheckItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarSubItem2
            // 
            this.spreadsheetCommandBarSubItem2.CommandName = "EditingMergeCellsCommandGroup";
            this.spreadsheetCommandBarSubItem2.Id = 59;
            this.spreadsheetCommandBarSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem12),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem31),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem32),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem33)});
            this.spreadsheetCommandBarSubItem2.Name = "spreadsheetCommandBarSubItem2";
            this.spreadsheetCommandBarSubItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem12
            // 
            this.spreadsheetCommandBarCheckItem12.CommandName = "EditingMergeAndCenterCells";
            this.spreadsheetCommandBarCheckItem12.Id = 60;
            this.spreadsheetCommandBarCheckItem12.Name = "spreadsheetCommandBarCheckItem12";
            // 
            // spreadsheetCommandBarButtonItem31
            // 
            this.spreadsheetCommandBarButtonItem31.CommandName = "EditingMergeCellsAcross";
            this.spreadsheetCommandBarButtonItem31.Id = 61;
            this.spreadsheetCommandBarButtonItem31.Name = "spreadsheetCommandBarButtonItem31";
            // 
            // spreadsheetCommandBarButtonItem32
            // 
            this.spreadsheetCommandBarButtonItem32.CommandName = "EditingMergeCells";
            this.spreadsheetCommandBarButtonItem32.Id = 62;
            this.spreadsheetCommandBarButtonItem32.Name = "spreadsheetCommandBarButtonItem32";
            // 
            // spreadsheetCommandBarButtonItem33
            // 
            this.spreadsheetCommandBarButtonItem33.CommandName = "EditingUnmergeCells";
            this.spreadsheetCommandBarButtonItem33.Id = 63;
            this.spreadsheetCommandBarButtonItem33.Name = "spreadsheetCommandBarButtonItem33";
            // 
            // barButtonGroup8
            // 
            this.barButtonGroup8.Id = 17;
            this.barButtonGroup8.ItemLinks.Add(this.changeNumberFormatItem1);
            this.barButtonGroup8.Name = "barButtonGroup8";
            this.barButtonGroup8.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // changeNumberFormatItem1
            // 
            this.changeNumberFormatItem1.Edit = this.repositoryItemPopupGalleryEdit1;
            this.changeNumberFormatItem1.Id = 64;
            this.changeNumberFormatItem1.Name = "changeNumberFormatItem1";
            // 
            // repositoryItemPopupGalleryEdit1
            // 
            this.repositoryItemPopupGalleryEdit1.AutoHeight = false;
            this.repositoryItemPopupGalleryEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            // 
            // 
            // 
            this.repositoryItemPopupGalleryEdit1.Gallery.AllowFilter = false;
            this.repositoryItemPopupGalleryEdit1.Gallery.AutoFitColumns = false;
            this.repositoryItemPopupGalleryEdit1.Gallery.ColumnCount = 1;
            this.repositoryItemPopupGalleryEdit1.Gallery.FixedImageSize = false;
            spreadsheetCommandGalleryItem13.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem13.CaptionAsValue = true;
            spreadsheetCommandGalleryItem13.CommandName = "FormatNumberGeneral";
            spreadsheetCommandGalleryItem13.IsEmptyHint = true;
            spreadsheetCommandGalleryItem14.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem14.CaptionAsValue = true;
            spreadsheetCommandGalleryItem14.CommandName = "FormatNumberDecimal";
            spreadsheetCommandGalleryItem14.IsEmptyHint = true;
            spreadsheetCommandGalleryItem15.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem15.CaptionAsValue = true;
            spreadsheetCommandGalleryItem15.CommandName = "FormatNumberAccountingCurrency";
            spreadsheetCommandGalleryItem15.IsEmptyHint = true;
            spreadsheetCommandGalleryItem16.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem16.CaptionAsValue = true;
            spreadsheetCommandGalleryItem16.CommandName = "FormatNumberAccountingRegular";
            spreadsheetCommandGalleryItem16.IsEmptyHint = true;
            spreadsheetCommandGalleryItem17.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem17.CaptionAsValue = true;
            spreadsheetCommandGalleryItem17.CommandName = "FormatNumberShortDate";
            spreadsheetCommandGalleryItem17.IsEmptyHint = true;
            spreadsheetCommandGalleryItem18.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem18.CaptionAsValue = true;
            spreadsheetCommandGalleryItem18.CommandName = "FormatNumberLongDate";
            spreadsheetCommandGalleryItem18.IsEmptyHint = true;
            spreadsheetCommandGalleryItem19.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem19.CaptionAsValue = true;
            spreadsheetCommandGalleryItem19.CommandName = "FormatNumberTime";
            spreadsheetCommandGalleryItem19.IsEmptyHint = true;
            spreadsheetCommandGalleryItem20.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem20.CaptionAsValue = true;
            spreadsheetCommandGalleryItem20.CommandName = "FormatNumberPercentage";
            spreadsheetCommandGalleryItem20.IsEmptyHint = true;
            spreadsheetCommandGalleryItem21.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem21.CaptionAsValue = true;
            spreadsheetCommandGalleryItem21.CommandName = "FormatNumberFraction";
            spreadsheetCommandGalleryItem21.IsEmptyHint = true;
            spreadsheetCommandGalleryItem22.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem22.CaptionAsValue = true;
            spreadsheetCommandGalleryItem22.CommandName = "FormatNumberScientific";
            spreadsheetCommandGalleryItem22.IsEmptyHint = true;
            spreadsheetCommandGalleryItem23.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem23.CaptionAsValue = true;
            spreadsheetCommandGalleryItem23.CommandName = "FormatNumberText";
            spreadsheetCommandGalleryItem23.IsEmptyHint = true;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem13,
            spreadsheetCommandGalleryItem14,
            spreadsheetCommandGalleryItem15,
            spreadsheetCommandGalleryItem16,
            spreadsheetCommandGalleryItem17,
            spreadsheetCommandGalleryItem18,
            spreadsheetCommandGalleryItem19,
            spreadsheetCommandGalleryItem20,
            spreadsheetCommandGalleryItem21,
            spreadsheetCommandGalleryItem22,
            spreadsheetCommandGalleryItem23});
            this.repositoryItemPopupGalleryEdit1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.repositoryItemPopupGalleryEdit1.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.repositoryItemPopupGalleryEdit1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.repositoryItemPopupGalleryEdit1.Gallery.RowCount = 11;
            this.repositoryItemPopupGalleryEdit1.Gallery.ShowGroupCaption = false;
            this.repositoryItemPopupGalleryEdit1.Gallery.ShowItemText = true;
            this.repositoryItemPopupGalleryEdit1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
            this.repositoryItemPopupGalleryEdit1.Gallery.StretchItems = true;
            this.repositoryItemPopupGalleryEdit1.Name = "repositoryItemPopupGalleryEdit1";
            this.repositoryItemPopupGalleryEdit1.ShowButtons = false;
            this.repositoryItemPopupGalleryEdit1.ShowPopupCloseButton = false;
            this.repositoryItemPopupGalleryEdit1.ShowSizeGrip = false;
            // 
            // barButtonGroup9
            // 
            this.barButtonGroup9.Id = 18;
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarSubItem3);
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarButtonItem39);
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarButtonItem40);
            this.barButtonGroup9.Name = "barButtonGroup9";
            this.barButtonGroup9.Tag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            // 
            // spreadsheetCommandBarSubItem3
            // 
            this.spreadsheetCommandBarSubItem3.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarSubItem3.CommandName = "FormatNumberAccountingCommandGroup";
            this.spreadsheetCommandBarSubItem3.Id = 65;
            this.spreadsheetCommandBarSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem34),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem35),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem36),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem37),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem38)});
            this.spreadsheetCommandBarSubItem3.Name = "spreadsheetCommandBarSubItem3";
            this.spreadsheetCommandBarSubItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem34
            // 
            this.spreadsheetCommandBarButtonItem34.CommandName = "FormatNumberAccountingUS";
            this.spreadsheetCommandBarButtonItem34.Id = 66;
            this.spreadsheetCommandBarButtonItem34.Name = "spreadsheetCommandBarButtonItem34";
            // 
            // spreadsheetCommandBarButtonItem35
            // 
            this.spreadsheetCommandBarButtonItem35.CommandName = "FormatNumberAccountingUK";
            this.spreadsheetCommandBarButtonItem35.Id = 67;
            this.spreadsheetCommandBarButtonItem35.Name = "spreadsheetCommandBarButtonItem35";
            // 
            // spreadsheetCommandBarButtonItem36
            // 
            this.spreadsheetCommandBarButtonItem36.CommandName = "FormatNumberAccountingEuro";
            this.spreadsheetCommandBarButtonItem36.Id = 68;
            this.spreadsheetCommandBarButtonItem36.Name = "spreadsheetCommandBarButtonItem36";
            // 
            // spreadsheetCommandBarButtonItem37
            // 
            this.spreadsheetCommandBarButtonItem37.CommandName = "FormatNumberAccountingPRC";
            this.spreadsheetCommandBarButtonItem37.Id = 69;
            this.spreadsheetCommandBarButtonItem37.Name = "spreadsheetCommandBarButtonItem37";
            // 
            // spreadsheetCommandBarButtonItem38
            // 
            this.spreadsheetCommandBarButtonItem38.CommandName = "FormatNumberAccountingSwiss";
            this.spreadsheetCommandBarButtonItem38.Id = 70;
            this.spreadsheetCommandBarButtonItem38.Name = "spreadsheetCommandBarButtonItem38";
            // 
            // spreadsheetCommandBarButtonItem39
            // 
            this.spreadsheetCommandBarButtonItem39.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarButtonItem39.CommandName = "FormatNumberPercent";
            this.spreadsheetCommandBarButtonItem39.Id = 71;
            this.spreadsheetCommandBarButtonItem39.Name = "spreadsheetCommandBarButtonItem39";
            this.spreadsheetCommandBarButtonItem39.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem40
            // 
            this.spreadsheetCommandBarButtonItem40.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarButtonItem40.CommandName = "FormatNumberAccounting";
            this.spreadsheetCommandBarButtonItem40.Id = 72;
            this.spreadsheetCommandBarButtonItem40.Name = "spreadsheetCommandBarButtonItem40";
            this.spreadsheetCommandBarButtonItem40.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup10
            // 
            this.barButtonGroup10.Id = 19;
            this.barButtonGroup10.ItemLinks.Add(this.spreadsheetCommandBarButtonItem41);
            this.barButtonGroup10.ItemLinks.Add(this.spreadsheetCommandBarButtonItem42);
            this.barButtonGroup10.Name = "barButtonGroup10";
            this.barButtonGroup10.Tag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            // 
            // spreadsheetCommandBarButtonItem41
            // 
            this.spreadsheetCommandBarButtonItem41.ButtonGroupTag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            this.spreadsheetCommandBarButtonItem41.CommandName = "FormatNumberIncreaseDecimal";
            this.spreadsheetCommandBarButtonItem41.Id = 73;
            this.spreadsheetCommandBarButtonItem41.Name = "spreadsheetCommandBarButtonItem41";
            this.spreadsheetCommandBarButtonItem41.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem42
            // 
            this.spreadsheetCommandBarButtonItem42.ButtonGroupTag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            this.spreadsheetCommandBarButtonItem42.CommandName = "FormatNumberDecreaseDecimal";
            this.spreadsheetCommandBarButtonItem42.Id = 74;
            this.spreadsheetCommandBarButtonItem42.Name = "spreadsheetCommandBarButtonItem42";
            this.spreadsheetCommandBarButtonItem42.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem2
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.CommandName = "ConditionalFormattingColorScalesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.DropDownControl = this.commandBarGalleryDropDown27;
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.Id = 92;
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.Name = "spreadsheetCommandBarButtonGalleryDropDownItem2";
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarGalleryDropDown27
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown27.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup3.CommandName = "ConditionalFormattingColorScalesCommandGroup";
            spreadsheetCommandGalleryItem24.CommandName = "ConditionalFormattingColorScaleGreenYellowRed";
            spreadsheetCommandGalleryItem25.CommandName = "ConditionalFormattingColorScaleRedYellowGreen";
            spreadsheetCommandGalleryItem26.CommandName = "ConditionalFormattingColorScaleGreenWhiteRed";
            spreadsheetCommandGalleryItem27.CommandName = "ConditionalFormattingColorScaleRedWhiteGreen";
            spreadsheetCommandGalleryItem28.CommandName = "ConditionalFormattingColorScaleBlueWhiteRed";
            spreadsheetCommandGalleryItem29.CommandName = "ConditionalFormattingColorScaleRedWhiteBlue";
            spreadsheetCommandGalleryItem30.CommandName = "ConditionalFormattingColorScaleWhiteRed";
            spreadsheetCommandGalleryItem31.CommandName = "ConditionalFormattingColorScaleRedWhite";
            spreadsheetCommandGalleryItem32.CommandName = "ConditionalFormattingColorScaleGreenWhite";
            spreadsheetCommandGalleryItem33.CommandName = "ConditionalFormattingColorScaleWhiteGreen";
            spreadsheetCommandGalleryItem34.CommandName = "ConditionalFormattingColorScaleGreenYellow";
            spreadsheetCommandGalleryItem35.CommandName = "ConditionalFormattingColorScaleYellowGreen";
            spreadsheetCommandGalleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem24,
            spreadsheetCommandGalleryItem25,
            spreadsheetCommandGalleryItem26,
            spreadsheetCommandGalleryItem27,
            spreadsheetCommandGalleryItem28,
            spreadsheetCommandGalleryItem29,
            spreadsheetCommandGalleryItem30,
            spreadsheetCommandGalleryItem31,
            spreadsheetCommandGalleryItem32,
            spreadsheetCommandGalleryItem33,
            spreadsheetCommandGalleryItem34,
            spreadsheetCommandGalleryItem35});
            this.commandBarGalleryDropDown27.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup3});
            this.commandBarGalleryDropDown27.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown27.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown27.Name = "commandBarGalleryDropDown27";
            this.commandBarGalleryDropDown27.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem3
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.CommandName = "ConditionalFormattingIconSetsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.DropDownControl = this.commandBarGalleryDropDown28;
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.Id = 93;
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.Name = "spreadsheetCommandBarButtonGalleryDropDownItem3";
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarGalleryDropDown28
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown28.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup4.CommandName = "ConditionalFormattingIconSetsDirectionalCommandGroup";
            spreadsheetCommandGalleryItem36.CommandName = "ConditionalFormattingIconSetArrows3Colored";
            spreadsheetCommandGalleryItem37.CommandName = "ConditionalFormattingIconSetArrows3Grayed";
            spreadsheetCommandGalleryItem38.CommandName = "ConditionalFormattingIconSetArrows4Colored";
            spreadsheetCommandGalleryItem39.CommandName = "ConditionalFormattingIconSetArrows4Grayed";
            spreadsheetCommandGalleryItem40.CommandName = "ConditionalFormattingIconSetArrows5Colored";
            spreadsheetCommandGalleryItem41.CommandName = "ConditionalFormattingIconSetArrows5Grayed";
            spreadsheetCommandGalleryItem42.CommandName = "ConditionalFormattingIconSetTriangles3";
            spreadsheetCommandGalleryItemGroup4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem36,
            spreadsheetCommandGalleryItem37,
            spreadsheetCommandGalleryItem38,
            spreadsheetCommandGalleryItem39,
            spreadsheetCommandGalleryItem40,
            spreadsheetCommandGalleryItem41,
            spreadsheetCommandGalleryItem42});
            spreadsheetCommandGalleryItemGroup5.CommandName = "ConditionalFormattingIconSetsShapesCommandGroup";
            spreadsheetCommandGalleryItem43.CommandName = "ConditionalFormattingIconSetTrafficLights3";
            spreadsheetCommandGalleryItem44.CommandName = "ConditionalFormattingIconSetTrafficLights3Rimmed";
            spreadsheetCommandGalleryItem45.CommandName = "ConditionalFormattingIconSetTrafficLights4";
            spreadsheetCommandGalleryItem46.CommandName = "ConditionalFormattingIconSetSigns3";
            spreadsheetCommandGalleryItem47.CommandName = "ConditionalFormattingIconSetRedToBlack";
            spreadsheetCommandGalleryItemGroup5.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem43,
            spreadsheetCommandGalleryItem44,
            spreadsheetCommandGalleryItem45,
            spreadsheetCommandGalleryItem46,
            spreadsheetCommandGalleryItem47});
            spreadsheetCommandGalleryItemGroup6.CommandName = "ConditionalFormattingIconSetsIndicatorsCommandGroup";
            spreadsheetCommandGalleryItem48.CommandName = "ConditionalFormattingIconSetSymbols3Circled";
            spreadsheetCommandGalleryItem49.CommandName = "ConditionalFormattingIconSetSymbols3";
            spreadsheetCommandGalleryItem50.CommandName = "ConditionalFormattingIconSetFlags3";
            spreadsheetCommandGalleryItemGroup6.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem48,
            spreadsheetCommandGalleryItem49,
            spreadsheetCommandGalleryItem50});
            spreadsheetCommandGalleryItemGroup7.CommandName = "ConditionalFormattingIconSetsRatingsCommandGroup";
            spreadsheetCommandGalleryItem51.CommandName = "ConditionalFormattingIconSetStars3";
            spreadsheetCommandGalleryItem52.CommandName = "ConditionalFormattingIconSetRatings4";
            spreadsheetCommandGalleryItem53.CommandName = "ConditionalFormattingIconSetRatings5";
            spreadsheetCommandGalleryItem54.CommandName = "ConditionalFormattingIconSetQuarters5";
            spreadsheetCommandGalleryItem55.CommandName = "ConditionalFormattingIconSetBoxes5";
            spreadsheetCommandGalleryItemGroup7.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem51,
            spreadsheetCommandGalleryItem52,
            spreadsheetCommandGalleryItem53,
            spreadsheetCommandGalleryItem54,
            spreadsheetCommandGalleryItem55});
            this.commandBarGalleryDropDown28.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup4,
            spreadsheetCommandGalleryItemGroup5,
            spreadsheetCommandGalleryItemGroup6,
            spreadsheetCommandGalleryItemGroup7});
            this.commandBarGalleryDropDown28.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown28.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown28.Name = "commandBarGalleryDropDown28";
            this.commandBarGalleryDropDown28.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonItem56
            // 
            this.spreadsheetCommandBarButtonItem56.CommandName = "ConditionalFormattingRemoveFromSheet";
            this.spreadsheetCommandBarButtonItem56.Id = 94;
            this.spreadsheetCommandBarButtonItem56.Name = "spreadsheetCommandBarButtonItem56";
            // 
            // spreadsheetCommandBarButtonItem57
            // 
            this.spreadsheetCommandBarButtonItem57.CommandName = "ConditionalFormattingRemove";
            this.spreadsheetCommandBarButtonItem57.Id = 95;
            this.spreadsheetCommandBarButtonItem57.Name = "spreadsheetCommandBarButtonItem57";
            // 
            // spreadsheetCommandBarSubItem7
            // 
            this.spreadsheetCommandBarSubItem7.CommandName = "ConditionalFormattingRemoveCommandGroup";
            this.spreadsheetCommandBarSubItem7.Id = 96;
            this.spreadsheetCommandBarSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem56),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem57)});
            this.spreadsheetCommandBarSubItem7.Name = "spreadsheetCommandBarSubItem7";
            // 
            // galleryFormatAsTableItem1
            // 
            this.galleryFormatAsTableItem1.DropDownControl = this.commandBarGalleryDropDown29;
            this.galleryFormatAsTableItem1.Id = 97;
            this.galleryFormatAsTableItem1.Name = "galleryFormatAsTableItem1";
            // 
            // commandBarGalleryDropDown29
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown29.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown29.Gallery.ColumnCount = 7;
            this.commandBarGalleryDropDown29.Gallery.DrawImageBackground = false;
            this.commandBarGalleryDropDown29.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.commandBarGalleryDropDown29.Gallery.ItemSize = new System.Drawing.Size(73, 58);
            this.commandBarGalleryDropDown29.Gallery.RowCount = 10;
            this.commandBarGalleryDropDown29.Name = "commandBarGalleryDropDown29";
            this.commandBarGalleryDropDown29.Ribbon = this.ribbonControl1;
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.DrawImageBackground = false;
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.galleryChangeStyleItem1.Gallery.ItemSize = new System.Drawing.Size(106, 28);
            this.galleryChangeStyleItem1.Gallery.RowCount = 9;
            this.galleryChangeStyleItem1.Gallery.ShowItemText = true;
            this.galleryChangeStyleItem1.Id = 98;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // spreadsheetCommandBarSubItem8
            // 
            this.spreadsheetCommandBarSubItem8.CommandName = "InsertCellsCommandGroup";
            this.spreadsheetCommandBarSubItem8.Id = 99;
            this.spreadsheetCommandBarSubItem8.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem58),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem59),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem60)});
            this.spreadsheetCommandBarSubItem8.Name = "spreadsheetCommandBarSubItem8";
            // 
            // spreadsheetCommandBarButtonItem58
            // 
            this.spreadsheetCommandBarButtonItem58.CommandName = "InsertSheetRows";
            this.spreadsheetCommandBarButtonItem58.Id = 100;
            this.spreadsheetCommandBarButtonItem58.Name = "spreadsheetCommandBarButtonItem58";
            // 
            // spreadsheetCommandBarButtonItem59
            // 
            this.spreadsheetCommandBarButtonItem59.CommandName = "InsertSheetColumns";
            this.spreadsheetCommandBarButtonItem59.Id = 101;
            this.spreadsheetCommandBarButtonItem59.Name = "spreadsheetCommandBarButtonItem59";
            // 
            // spreadsheetCommandBarButtonItem60
            // 
            this.spreadsheetCommandBarButtonItem60.CommandName = "InsertSheet";
            this.spreadsheetCommandBarButtonItem60.Id = 102;
            this.spreadsheetCommandBarButtonItem60.Name = "spreadsheetCommandBarButtonItem60";
            // 
            // spreadsheetCommandBarSubItem9
            // 
            this.spreadsheetCommandBarSubItem9.CommandName = "RemoveCellsCommandGroup";
            this.spreadsheetCommandBarSubItem9.Id = 103;
            this.spreadsheetCommandBarSubItem9.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem61),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem62),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem63)});
            this.spreadsheetCommandBarSubItem9.Name = "spreadsheetCommandBarSubItem9";
            // 
            // spreadsheetCommandBarButtonItem61
            // 
            this.spreadsheetCommandBarButtonItem61.CommandName = "RemoveSheetRows";
            this.spreadsheetCommandBarButtonItem61.Id = 104;
            this.spreadsheetCommandBarButtonItem61.Name = "spreadsheetCommandBarButtonItem61";
            // 
            // spreadsheetCommandBarButtonItem62
            // 
            this.spreadsheetCommandBarButtonItem62.CommandName = "RemoveSheetColumns";
            this.spreadsheetCommandBarButtonItem62.Id = 105;
            this.spreadsheetCommandBarButtonItem62.Name = "spreadsheetCommandBarButtonItem62";
            // 
            // spreadsheetCommandBarButtonItem63
            // 
            this.spreadsheetCommandBarButtonItem63.CommandName = "RemoveSheet";
            this.spreadsheetCommandBarButtonItem63.Id = 106;
            this.spreadsheetCommandBarButtonItem63.Name = "spreadsheetCommandBarButtonItem63";
            // 
            // spreadsheetCommandBarSubItem10
            // 
            this.spreadsheetCommandBarSubItem10.CommandName = "FormatCommandGroup";
            this.spreadsheetCommandBarSubItem10.Id = 107;
            this.spreadsheetCommandBarSubItem10.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem64),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem65),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem66),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem67),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem68),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarSubItem11),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem75),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeSheetTabColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem76),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem13),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem77)});
            this.spreadsheetCommandBarSubItem10.Name = "spreadsheetCommandBarSubItem10";
            // 
            // spreadsheetCommandBarButtonItem64
            // 
            this.spreadsheetCommandBarButtonItem64.CommandName = "FormatRowHeight";
            this.spreadsheetCommandBarButtonItem64.Id = 108;
            this.spreadsheetCommandBarButtonItem64.Name = "spreadsheetCommandBarButtonItem64";
            // 
            // spreadsheetCommandBarButtonItem65
            // 
            this.spreadsheetCommandBarButtonItem65.CommandName = "FormatAutoFitRowHeight";
            this.spreadsheetCommandBarButtonItem65.Id = 109;
            this.spreadsheetCommandBarButtonItem65.Name = "spreadsheetCommandBarButtonItem65";
            // 
            // spreadsheetCommandBarButtonItem66
            // 
            this.spreadsheetCommandBarButtonItem66.CommandName = "FormatColumnWidth";
            this.spreadsheetCommandBarButtonItem66.Id = 110;
            this.spreadsheetCommandBarButtonItem66.Name = "spreadsheetCommandBarButtonItem66";
            // 
            // spreadsheetCommandBarButtonItem67
            // 
            this.spreadsheetCommandBarButtonItem67.CommandName = "FormatAutoFitColumnWidth";
            this.spreadsheetCommandBarButtonItem67.Id = 111;
            this.spreadsheetCommandBarButtonItem67.Name = "spreadsheetCommandBarButtonItem67";
            // 
            // spreadsheetCommandBarButtonItem68
            // 
            this.spreadsheetCommandBarButtonItem68.CommandName = "FormatDefaultColumnWidth";
            this.spreadsheetCommandBarButtonItem68.Id = 112;
            this.spreadsheetCommandBarButtonItem68.Name = "spreadsheetCommandBarButtonItem68";
            // 
            // spreadsheetCommandBarSubItem11
            // 
            this.spreadsheetCommandBarSubItem11.CommandName = "HideAndUnhideCommandGroup";
            this.spreadsheetCommandBarSubItem11.Id = 119;
            this.spreadsheetCommandBarSubItem11.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem69),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem70),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem71),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem72),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem73),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem74)});
            this.spreadsheetCommandBarSubItem11.Name = "spreadsheetCommandBarSubItem11";
            // 
            // spreadsheetCommandBarButtonItem69
            // 
            this.spreadsheetCommandBarButtonItem69.CommandName = "HideRows";
            this.spreadsheetCommandBarButtonItem69.Id = 113;
            this.spreadsheetCommandBarButtonItem69.Name = "spreadsheetCommandBarButtonItem69";
            // 
            // spreadsheetCommandBarButtonItem70
            // 
            this.spreadsheetCommandBarButtonItem70.CommandName = "HideColumns";
            this.spreadsheetCommandBarButtonItem70.Id = 114;
            this.spreadsheetCommandBarButtonItem70.Name = "spreadsheetCommandBarButtonItem70";
            // 
            // spreadsheetCommandBarButtonItem71
            // 
            this.spreadsheetCommandBarButtonItem71.CommandName = "HideSheet";
            this.spreadsheetCommandBarButtonItem71.Id = 115;
            this.spreadsheetCommandBarButtonItem71.Name = "spreadsheetCommandBarButtonItem71";
            // 
            // spreadsheetCommandBarButtonItem72
            // 
            this.spreadsheetCommandBarButtonItem72.CommandName = "UnhideRows";
            this.spreadsheetCommandBarButtonItem72.Id = 116;
            this.spreadsheetCommandBarButtonItem72.Name = "spreadsheetCommandBarButtonItem72";
            // 
            // spreadsheetCommandBarButtonItem73
            // 
            this.spreadsheetCommandBarButtonItem73.CommandName = "UnhideColumns";
            this.spreadsheetCommandBarButtonItem73.Id = 117;
            this.spreadsheetCommandBarButtonItem73.Name = "spreadsheetCommandBarButtonItem73";
            // 
            // spreadsheetCommandBarButtonItem74
            // 
            this.spreadsheetCommandBarButtonItem74.CommandName = "UnhideSheet";
            this.spreadsheetCommandBarButtonItem74.Id = 118;
            this.spreadsheetCommandBarButtonItem74.Name = "spreadsheetCommandBarButtonItem74";
            // 
            // spreadsheetCommandBarButtonItem75
            // 
            this.spreadsheetCommandBarButtonItem75.CommandName = "RenameSheet";
            this.spreadsheetCommandBarButtonItem75.Id = 120;
            this.spreadsheetCommandBarButtonItem75.Name = "spreadsheetCommandBarButtonItem75";
            // 
            // changeSheetTabColorItem1
            // 
            this.changeSheetTabColorItem1.ActAsDropDown = true;
            this.changeSheetTabColorItem1.Id = 121;
            this.changeSheetTabColorItem1.Name = "changeSheetTabColorItem1";
            // 
            // spreadsheetCommandBarButtonItem76
            // 
            this.spreadsheetCommandBarButtonItem76.CommandName = "ReviewProtectSheet";
            this.spreadsheetCommandBarButtonItem76.Id = 122;
            this.spreadsheetCommandBarButtonItem76.Name = "spreadsheetCommandBarButtonItem76";
            // 
            // spreadsheetCommandBarCheckItem13
            // 
            this.spreadsheetCommandBarCheckItem13.CommandName = "FormatCellLocked";
            this.spreadsheetCommandBarCheckItem13.Id = 123;
            this.spreadsheetCommandBarCheckItem13.Name = "spreadsheetCommandBarCheckItem13";
            // 
            // spreadsheetCommandBarButtonItem77
            // 
            this.spreadsheetCommandBarButtonItem77.CommandName = "FormatCellsContextMenuItem";
            this.spreadsheetCommandBarButtonItem77.Id = 124;
            this.spreadsheetCommandBarButtonItem77.Name = "spreadsheetCommandBarButtonItem77";
            // 
            // spreadsheetCommandBarSubItem12
            // 
            this.spreadsheetCommandBarSubItem12.CommandName = "EditingAutoSumCommandGroup";
            this.spreadsheetCommandBarSubItem12.Id = 125;
            this.spreadsheetCommandBarSubItem12.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem78),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem79),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem80),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem81),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem82)});
            this.spreadsheetCommandBarSubItem12.Name = "spreadsheetCommandBarSubItem12";
            this.spreadsheetCommandBarSubItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem78
            // 
            this.spreadsheetCommandBarButtonItem78.CommandName = "FunctionsInsertSum";
            this.spreadsheetCommandBarButtonItem78.Id = 126;
            this.spreadsheetCommandBarButtonItem78.Name = "spreadsheetCommandBarButtonItem78";
            // 
            // spreadsheetCommandBarButtonItem79
            // 
            this.spreadsheetCommandBarButtonItem79.CommandName = "FunctionsInsertAverage";
            this.spreadsheetCommandBarButtonItem79.Id = 127;
            this.spreadsheetCommandBarButtonItem79.Name = "spreadsheetCommandBarButtonItem79";
            // 
            // spreadsheetCommandBarButtonItem80
            // 
            this.spreadsheetCommandBarButtonItem80.CommandName = "FunctionsInsertCountNumbers";
            this.spreadsheetCommandBarButtonItem80.Id = 128;
            this.spreadsheetCommandBarButtonItem80.Name = "spreadsheetCommandBarButtonItem80";
            // 
            // spreadsheetCommandBarButtonItem81
            // 
            this.spreadsheetCommandBarButtonItem81.CommandName = "FunctionsInsertMax";
            this.spreadsheetCommandBarButtonItem81.Id = 129;
            this.spreadsheetCommandBarButtonItem81.Name = "spreadsheetCommandBarButtonItem81";
            // 
            // spreadsheetCommandBarButtonItem82
            // 
            this.spreadsheetCommandBarButtonItem82.CommandName = "FunctionsInsertMin";
            this.spreadsheetCommandBarButtonItem82.Id = 130;
            this.spreadsheetCommandBarButtonItem82.Name = "spreadsheetCommandBarButtonItem82";
            // 
            // spreadsheetCommandBarSubItem13
            // 
            this.spreadsheetCommandBarSubItem13.CommandName = "EditingFillCommandGroup";
            this.spreadsheetCommandBarSubItem13.Id = 131;
            this.spreadsheetCommandBarSubItem13.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem83),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem84),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem85),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem86)});
            this.spreadsheetCommandBarSubItem13.Name = "spreadsheetCommandBarSubItem13";
            this.spreadsheetCommandBarSubItem13.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem83
            // 
            this.spreadsheetCommandBarButtonItem83.CommandName = "EditingFillDown";
            this.spreadsheetCommandBarButtonItem83.Id = 132;
            this.spreadsheetCommandBarButtonItem83.Name = "spreadsheetCommandBarButtonItem83";
            // 
            // spreadsheetCommandBarButtonItem84
            // 
            this.spreadsheetCommandBarButtonItem84.CommandName = "EditingFillRight";
            this.spreadsheetCommandBarButtonItem84.Id = 133;
            this.spreadsheetCommandBarButtonItem84.Name = "spreadsheetCommandBarButtonItem84";
            // 
            // spreadsheetCommandBarButtonItem85
            // 
            this.spreadsheetCommandBarButtonItem85.CommandName = "EditingFillUp";
            this.spreadsheetCommandBarButtonItem85.Id = 134;
            this.spreadsheetCommandBarButtonItem85.Name = "spreadsheetCommandBarButtonItem85";
            // 
            // spreadsheetCommandBarButtonItem86
            // 
            this.spreadsheetCommandBarButtonItem86.CommandName = "EditingFillLeft";
            this.spreadsheetCommandBarButtonItem86.Id = 135;
            this.spreadsheetCommandBarButtonItem86.Name = "spreadsheetCommandBarButtonItem86";
            // 
            // spreadsheetCommandBarSubItem14
            // 
            this.spreadsheetCommandBarSubItem14.CommandName = "FormatClearCommandGroup";
            this.spreadsheetCommandBarSubItem14.Id = 136;
            this.spreadsheetCommandBarSubItem14.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem87),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem88),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem89),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem90),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem91),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem92)});
            this.spreadsheetCommandBarSubItem14.Name = "spreadsheetCommandBarSubItem14";
            this.spreadsheetCommandBarSubItem14.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem87
            // 
            this.spreadsheetCommandBarButtonItem87.CommandName = "FormatClearAll";
            this.spreadsheetCommandBarButtonItem87.Id = 137;
            this.spreadsheetCommandBarButtonItem87.Name = "spreadsheetCommandBarButtonItem87";
            // 
            // spreadsheetCommandBarButtonItem88
            // 
            this.spreadsheetCommandBarButtonItem88.CommandName = "FormatClearFormats";
            this.spreadsheetCommandBarButtonItem88.Id = 138;
            this.spreadsheetCommandBarButtonItem88.Name = "spreadsheetCommandBarButtonItem88";
            // 
            // spreadsheetCommandBarButtonItem89
            // 
            this.spreadsheetCommandBarButtonItem89.CommandName = "FormatClearContents";
            this.spreadsheetCommandBarButtonItem89.Id = 139;
            this.spreadsheetCommandBarButtonItem89.Name = "spreadsheetCommandBarButtonItem89";
            // 
            // spreadsheetCommandBarButtonItem90
            // 
            this.spreadsheetCommandBarButtonItem90.CommandName = "FormatClearComments";
            this.spreadsheetCommandBarButtonItem90.Id = 140;
            this.spreadsheetCommandBarButtonItem90.Name = "spreadsheetCommandBarButtonItem90";
            // 
            // spreadsheetCommandBarButtonItem91
            // 
            this.spreadsheetCommandBarButtonItem91.CommandName = "FormatClearHyperlinks";
            this.spreadsheetCommandBarButtonItem91.Id = 141;
            this.spreadsheetCommandBarButtonItem91.Name = "spreadsheetCommandBarButtonItem91";
            // 
            // spreadsheetCommandBarButtonItem92
            // 
            this.spreadsheetCommandBarButtonItem92.CommandName = "FormatRemoveHyperlinks";
            this.spreadsheetCommandBarButtonItem92.Id = 142;
            this.spreadsheetCommandBarButtonItem92.Name = "spreadsheetCommandBarButtonItem92";
            // 
            // spreadsheetCommandBarSubItem15
            // 
            this.spreadsheetCommandBarSubItem15.CommandName = "EditingSortAndFilterCommandGroup";
            this.spreadsheetCommandBarSubItem15.Id = 143;
            this.spreadsheetCommandBarSubItem15.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem93),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem94)});
            this.spreadsheetCommandBarSubItem15.Name = "spreadsheetCommandBarSubItem15";
            // 
            // spreadsheetCommandBarButtonItem93
            // 
            this.spreadsheetCommandBarButtonItem93.CommandName = "DataSortAscending";
            this.spreadsheetCommandBarButtonItem93.Id = 144;
            this.spreadsheetCommandBarButtonItem93.Name = "spreadsheetCommandBarButtonItem93";
            // 
            // spreadsheetCommandBarButtonItem94
            // 
            this.spreadsheetCommandBarButtonItem94.CommandName = "DataSortDescending";
            this.spreadsheetCommandBarButtonItem94.Id = 145;
            this.spreadsheetCommandBarButtonItem94.Name = "spreadsheetCommandBarButtonItem94";
            // 
            // spreadsheetCommandBarSubItem16
            // 
            this.spreadsheetCommandBarSubItem16.CommandName = "EditingFindAndSelectCommandGroup";
            this.spreadsheetCommandBarSubItem16.Id = 146;
            this.spreadsheetCommandBarSubItem16.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem95),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem96),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem97),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem98),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem99),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem100),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem101)});
            this.spreadsheetCommandBarSubItem16.Name = "spreadsheetCommandBarSubItem16";
            // 
            // spreadsheetCommandBarButtonItem95
            // 
            this.spreadsheetCommandBarButtonItem95.CommandName = "EditingFind";
            this.spreadsheetCommandBarButtonItem95.Id = 147;
            this.spreadsheetCommandBarButtonItem95.Name = "spreadsheetCommandBarButtonItem95";
            // 
            // spreadsheetCommandBarButtonItem96
            // 
            this.spreadsheetCommandBarButtonItem96.CommandName = "EditingReplace";
            this.spreadsheetCommandBarButtonItem96.Id = 148;
            this.spreadsheetCommandBarButtonItem96.Name = "spreadsheetCommandBarButtonItem96";
            // 
            // spreadsheetCommandBarButtonItem97
            // 
            this.spreadsheetCommandBarButtonItem97.CommandName = "EditingSelectFormulas";
            this.spreadsheetCommandBarButtonItem97.Id = 149;
            this.spreadsheetCommandBarButtonItem97.Name = "spreadsheetCommandBarButtonItem97";
            // 
            // spreadsheetCommandBarButtonItem98
            // 
            this.spreadsheetCommandBarButtonItem98.CommandName = "EditingSelectComments";
            this.spreadsheetCommandBarButtonItem98.Id = 150;
            this.spreadsheetCommandBarButtonItem98.Name = "spreadsheetCommandBarButtonItem98";
            // 
            // spreadsheetCommandBarButtonItem99
            // 
            this.spreadsheetCommandBarButtonItem99.CommandName = "EditingSelectConditionalFormatting";
            this.spreadsheetCommandBarButtonItem99.Id = 151;
            this.spreadsheetCommandBarButtonItem99.Name = "spreadsheetCommandBarButtonItem99";
            // 
            // spreadsheetCommandBarButtonItem100
            // 
            this.spreadsheetCommandBarButtonItem100.CommandName = "EditingSelectConstants";
            this.spreadsheetCommandBarButtonItem100.Id = 152;
            this.spreadsheetCommandBarButtonItem100.Name = "spreadsheetCommandBarButtonItem100";
            // 
            // spreadsheetCommandBarButtonItem101
            // 
            this.spreadsheetCommandBarButtonItem101.CommandName = "EditingSelectDataValidation";
            this.spreadsheetCommandBarButtonItem101.Id = 153;
            this.spreadsheetCommandBarButtonItem101.Name = "spreadsheetCommandBarButtonItem101";
            // 
            // spreadsheetCommandBarButtonItem102
            // 
            this.spreadsheetCommandBarButtonItem102.CommandName = "InsertTable";
            this.spreadsheetCommandBarButtonItem102.Id = 154;
            this.spreadsheetCommandBarButtonItem102.Name = "spreadsheetCommandBarButtonItem102";
            // 
            // spreadsheetCommandBarButtonItem103
            // 
            this.spreadsheetCommandBarButtonItem103.CommandName = "InsertPicture";
            this.spreadsheetCommandBarButtonItem103.Id = 155;
            this.spreadsheetCommandBarButtonItem103.Name = "spreadsheetCommandBarButtonItem103";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem4
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.CommandName = "InsertChartColumnCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.DropDownControl = this.commandBarGalleryDropDown30;
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.Id = 156;
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.Name = "spreadsheetCommandBarButtonGalleryDropDownItem4";
            // 
            // commandBarGalleryDropDown30
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown30.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup8.CommandName = "InsertChartColumn2DCommandGroup";
            spreadsheetCommandGalleryItem56.CommandName = "InsertChartColumnClustered2D";
            spreadsheetCommandGalleryItem57.CommandName = "InsertChartColumnStacked2D";
            spreadsheetCommandGalleryItem58.CommandName = "InsertChartColumnPercentStacked2D";
            spreadsheetCommandGalleryItemGroup8.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem56,
            spreadsheetCommandGalleryItem57,
            spreadsheetCommandGalleryItem58});
            spreadsheetCommandGalleryItemGroup9.CommandName = "InsertChartColumn3DCommandGroup";
            spreadsheetCommandGalleryItem59.CommandName = "InsertChartColumnClustered3D";
            spreadsheetCommandGalleryItem60.CommandName = "InsertChartColumnStacked3D";
            spreadsheetCommandGalleryItem61.CommandName = "InsertChartColumnPercentStacked3D";
            spreadsheetCommandGalleryItem62.CommandName = "InsertChartColumn3D";
            spreadsheetCommandGalleryItemGroup9.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem59,
            spreadsheetCommandGalleryItem60,
            spreadsheetCommandGalleryItem61,
            spreadsheetCommandGalleryItem62});
            spreadsheetCommandGalleryItemGroup10.CommandName = "InsertChartCylinderCommandGroup";
            spreadsheetCommandGalleryItem63.CommandName = "InsertChartCylinderClustered";
            spreadsheetCommandGalleryItem64.CommandName = "InsertChartCylinderStacked";
            spreadsheetCommandGalleryItem65.CommandName = "InsertChartCylinderPercentStacked";
            spreadsheetCommandGalleryItem66.CommandName = "InsertChartCylinder";
            spreadsheetCommandGalleryItemGroup10.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem63,
            spreadsheetCommandGalleryItem64,
            spreadsheetCommandGalleryItem65,
            spreadsheetCommandGalleryItem66});
            spreadsheetCommandGalleryItemGroup11.CommandName = "InsertChartConeCommandGroup";
            spreadsheetCommandGalleryItem67.CommandName = "InsertChartConeClustered";
            spreadsheetCommandGalleryItem68.CommandName = "InsertChartConeStacked";
            spreadsheetCommandGalleryItem69.CommandName = "InsertChartConePercentStacked";
            spreadsheetCommandGalleryItem70.CommandName = "InsertChartCone";
            spreadsheetCommandGalleryItemGroup11.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem67,
            spreadsheetCommandGalleryItem68,
            spreadsheetCommandGalleryItem69,
            spreadsheetCommandGalleryItem70});
            spreadsheetCommandGalleryItemGroup12.CommandName = "InsertChartPyramidCommandGroup";
            spreadsheetCommandGalleryItem71.CommandName = "InsertChartPyramidClustered";
            spreadsheetCommandGalleryItem72.CommandName = "InsertChartPyramidStacked";
            spreadsheetCommandGalleryItem73.CommandName = "InsertChartPyramidPercentStacked";
            spreadsheetCommandGalleryItem74.CommandName = "InsertChartPyramid";
            spreadsheetCommandGalleryItemGroup12.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem71,
            spreadsheetCommandGalleryItem72,
            spreadsheetCommandGalleryItem73,
            spreadsheetCommandGalleryItem74});
            this.commandBarGalleryDropDown30.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup8,
            spreadsheetCommandGalleryItemGroup9,
            spreadsheetCommandGalleryItemGroup10,
            spreadsheetCommandGalleryItemGroup11,
            spreadsheetCommandGalleryItemGroup12});
            this.commandBarGalleryDropDown30.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown30.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown30.Name = "commandBarGalleryDropDown30";
            this.commandBarGalleryDropDown30.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem5
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.CommandName = "InsertChartLineCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.DropDownControl = this.commandBarGalleryDropDown31;
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.Id = 157;
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.Name = "spreadsheetCommandBarButtonGalleryDropDownItem5";
            // 
            // commandBarGalleryDropDown31
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown31.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup13.CommandName = "InsertChartLine2DCommandGroup";
            spreadsheetCommandGalleryItem75.CommandName = "InsertChartLine";
            spreadsheetCommandGalleryItem76.CommandName = "InsertChartStackedLine";
            spreadsheetCommandGalleryItem77.CommandName = "InsertChartPercentStackedLine";
            spreadsheetCommandGalleryItem78.CommandName = "InsertChartLineWithMarkers";
            spreadsheetCommandGalleryItem79.CommandName = "InsertChartStackedLineWithMarkers";
            spreadsheetCommandGalleryItem80.CommandName = "InsertChartPercentStackedLineWithMarkers";
            spreadsheetCommandGalleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem75,
            spreadsheetCommandGalleryItem76,
            spreadsheetCommandGalleryItem77,
            spreadsheetCommandGalleryItem78,
            spreadsheetCommandGalleryItem79,
            spreadsheetCommandGalleryItem80});
            spreadsheetCommandGalleryItemGroup14.CommandName = "InsertChartLine3DCommandGroup";
            spreadsheetCommandGalleryItem81.CommandName = "InsertChartLine3D";
            spreadsheetCommandGalleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem81});
            this.commandBarGalleryDropDown31.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup13,
            spreadsheetCommandGalleryItemGroup14});
            this.commandBarGalleryDropDown31.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown31.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown31.Name = "commandBarGalleryDropDown31";
            this.commandBarGalleryDropDown31.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem6
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.CommandName = "InsertChartPieCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.DropDownControl = this.commandBarGalleryDropDown32;
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.Id = 158;
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.Name = "spreadsheetCommandBarButtonGalleryDropDownItem6";
            // 
            // commandBarGalleryDropDown32
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown32.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup15.CommandName = "InsertChartPie2DCommandGroup";
            spreadsheetCommandGalleryItem82.CommandName = "InsertChartPie2D";
            spreadsheetCommandGalleryItem83.CommandName = "InsertChartPieExploded2D";
            spreadsheetCommandGalleryItemGroup15.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem82,
            spreadsheetCommandGalleryItem83});
            spreadsheetCommandGalleryItemGroup16.CommandName = "InsertChartPie3DCommandGroup";
            spreadsheetCommandGalleryItem84.CommandName = "InsertChartPie3D";
            spreadsheetCommandGalleryItem85.CommandName = "InsertChartPieExploded3D";
            spreadsheetCommandGalleryItemGroup16.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem84,
            spreadsheetCommandGalleryItem85});
            spreadsheetCommandGalleryItemGroup17.CommandName = "InsertChartDoughnut2DCommandGroup";
            spreadsheetCommandGalleryItem86.CommandName = "InsertChartDoughnut2D";
            spreadsheetCommandGalleryItem87.CommandName = "InsertChartDoughnutExploded2D";
            spreadsheetCommandGalleryItemGroup17.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem86,
            spreadsheetCommandGalleryItem87});
            this.commandBarGalleryDropDown32.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup15,
            spreadsheetCommandGalleryItemGroup16,
            spreadsheetCommandGalleryItemGroup17});
            this.commandBarGalleryDropDown32.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown32.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown32.Name = "commandBarGalleryDropDown32";
            this.commandBarGalleryDropDown32.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem7
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.CommandName = "InsertChartBarCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.DropDownControl = this.commandBarGalleryDropDown33;
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.Id = 159;
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.Name = "spreadsheetCommandBarButtonGalleryDropDownItem7";
            // 
            // commandBarGalleryDropDown33
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown33.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup18.CommandName = "InsertChartBar2DCommandGroup";
            spreadsheetCommandGalleryItem88.CommandName = "InsertChartBarClustered2D";
            spreadsheetCommandGalleryItem89.CommandName = "InsertChartBarStacked2D";
            spreadsheetCommandGalleryItem90.CommandName = "InsertChartBarPercentStacked2D";
            spreadsheetCommandGalleryItemGroup18.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem88,
            spreadsheetCommandGalleryItem89,
            spreadsheetCommandGalleryItem90});
            spreadsheetCommandGalleryItemGroup19.CommandName = "InsertChartBar3DCommandGroup";
            spreadsheetCommandGalleryItem91.CommandName = "InsertChartBarClustered3D";
            spreadsheetCommandGalleryItem92.CommandName = "InsertChartBarStacked3D";
            spreadsheetCommandGalleryItem93.CommandName = "InsertChartBarPercentStacked3D";
            spreadsheetCommandGalleryItemGroup19.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem91,
            spreadsheetCommandGalleryItem92,
            spreadsheetCommandGalleryItem93});
            spreadsheetCommandGalleryItemGroup20.CommandName = "InsertChartHorizontalCylinderCommandGroup";
            spreadsheetCommandGalleryItem94.CommandName = "InsertChartHorizontalCylinderClustered";
            spreadsheetCommandGalleryItem95.CommandName = "InsertChartHorizontalCylinderStacked";
            spreadsheetCommandGalleryItem96.CommandName = "InsertChartHorizontalCylinderPercentStacked";
            spreadsheetCommandGalleryItemGroup20.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem94,
            spreadsheetCommandGalleryItem95,
            spreadsheetCommandGalleryItem96});
            spreadsheetCommandGalleryItemGroup21.CommandName = "InsertChartHorizontalConeCommandGroup";
            spreadsheetCommandGalleryItem97.CommandName = "InsertChartHorizontalConeClustered";
            spreadsheetCommandGalleryItem98.CommandName = "InsertChartHorizontalConeStacked";
            spreadsheetCommandGalleryItem99.CommandName = "InsertChartHorizontalConePercentStacked";
            spreadsheetCommandGalleryItemGroup21.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem97,
            spreadsheetCommandGalleryItem98,
            spreadsheetCommandGalleryItem99});
            spreadsheetCommandGalleryItemGroup22.CommandName = "InsertChartHorizontalPyramidCommandGroup";
            spreadsheetCommandGalleryItem100.CommandName = "InsertChartHorizontalPyramidClustered";
            spreadsheetCommandGalleryItem101.CommandName = "InsertChartHorizontalPyramidStacked";
            spreadsheetCommandGalleryItem102.CommandName = "InsertChartHorizontalPyramidPercentStacked";
            spreadsheetCommandGalleryItemGroup22.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem100,
            spreadsheetCommandGalleryItem101,
            spreadsheetCommandGalleryItem102});
            this.commandBarGalleryDropDown33.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup18,
            spreadsheetCommandGalleryItemGroup19,
            spreadsheetCommandGalleryItemGroup20,
            spreadsheetCommandGalleryItemGroup21,
            spreadsheetCommandGalleryItemGroup22});
            this.commandBarGalleryDropDown33.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown33.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown33.Name = "commandBarGalleryDropDown33";
            this.commandBarGalleryDropDown33.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem8
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.CommandName = "InsertChartAreaCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.DropDownControl = this.commandBarGalleryDropDown34;
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.Id = 160;
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.Name = "spreadsheetCommandBarButtonGalleryDropDownItem8";
            // 
            // commandBarGalleryDropDown34
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown34.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup23.CommandName = "InsertChartArea2DCommandGroup";
            spreadsheetCommandGalleryItem103.CommandName = "InsertChartArea";
            spreadsheetCommandGalleryItem104.CommandName = "InsertChartStackedArea";
            spreadsheetCommandGalleryItem105.CommandName = "InsertChartPercentStackedArea";
            spreadsheetCommandGalleryItemGroup23.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem103,
            spreadsheetCommandGalleryItem104,
            spreadsheetCommandGalleryItem105});
            spreadsheetCommandGalleryItemGroup24.CommandName = "InsertChartArea3DCommandGroup";
            spreadsheetCommandGalleryItem106.CommandName = "InsertChartArea3D";
            spreadsheetCommandGalleryItem107.CommandName = "InsertChartStackedArea3D";
            spreadsheetCommandGalleryItem108.CommandName = "InsertChartPercentStackedArea3D";
            spreadsheetCommandGalleryItemGroup24.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem106,
            spreadsheetCommandGalleryItem107,
            spreadsheetCommandGalleryItem108});
            this.commandBarGalleryDropDown34.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup23,
            spreadsheetCommandGalleryItemGroup24});
            this.commandBarGalleryDropDown34.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown34.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown34.Name = "commandBarGalleryDropDown34";
            this.commandBarGalleryDropDown34.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem9
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.CommandName = "InsertChartScatterCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.DropDownControl = this.commandBarGalleryDropDown35;
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.Id = 161;
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.Name = "spreadsheetCommandBarButtonGalleryDropDownItem9";
            // 
            // commandBarGalleryDropDown35
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown35.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup25.CommandName = "InsertChartScatterCommandGroup";
            spreadsheetCommandGalleryItem109.CommandName = "InsertChartScatterMarkers";
            spreadsheetCommandGalleryItem110.CommandName = "InsertChartScatterSmoothLinesAndMarkers";
            spreadsheetCommandGalleryItem111.CommandName = "InsertChartScatterSmoothLines";
            spreadsheetCommandGalleryItem112.CommandName = "InsertChartScatterLinesAndMarkers";
            spreadsheetCommandGalleryItem113.CommandName = "InsertChartScatterLines";
            spreadsheetCommandGalleryItemGroup25.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem109,
            spreadsheetCommandGalleryItem110,
            spreadsheetCommandGalleryItem111,
            spreadsheetCommandGalleryItem112,
            spreadsheetCommandGalleryItem113});
            spreadsheetCommandGalleryItemGroup26.CommandName = "InsertChartBubbleCommandGroup";
            spreadsheetCommandGalleryItem114.CommandName = "InsertChartBubble";
            spreadsheetCommandGalleryItem115.CommandName = "InsertChartBubble3D";
            spreadsheetCommandGalleryItemGroup26.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem114,
            spreadsheetCommandGalleryItem115});
            this.commandBarGalleryDropDown35.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup25,
            spreadsheetCommandGalleryItemGroup26});
            this.commandBarGalleryDropDown35.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown35.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown35.Name = "commandBarGalleryDropDown35";
            this.commandBarGalleryDropDown35.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem10
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.CommandName = "InsertChartOtherCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.DropDownControl = this.commandBarGalleryDropDown36;
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.Id = 162;
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.Name = "spreadsheetCommandBarButtonGalleryDropDownItem10";
            // 
            // commandBarGalleryDropDown36
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown36.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup27.CommandName = "InsertChartStockCommandGroup";
            spreadsheetCommandGalleryItem116.CommandName = "InsertChartStockHighLowClose";
            spreadsheetCommandGalleryItem117.CommandName = "InsertChartStockOpenHighLowClose";
            spreadsheetCommandGalleryItem118.CommandName = "InsertChartStockVolumeHighLowClose";
            spreadsheetCommandGalleryItem119.CommandName = "InsertChartStockVolumeOpenHighLowClose";
            spreadsheetCommandGalleryItemGroup27.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem116,
            spreadsheetCommandGalleryItem117,
            spreadsheetCommandGalleryItem118,
            spreadsheetCommandGalleryItem119});
            spreadsheetCommandGalleryItemGroup28.CommandName = "InsertChartRadarCommandGroup";
            spreadsheetCommandGalleryItem120.CommandName = "InsertChartRadar";
            spreadsheetCommandGalleryItem121.CommandName = "InsertChartRadarWithMarkers";
            spreadsheetCommandGalleryItem122.CommandName = "InsertChartRadarFilled";
            spreadsheetCommandGalleryItemGroup28.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem120,
            spreadsheetCommandGalleryItem121,
            spreadsheetCommandGalleryItem122});
            this.commandBarGalleryDropDown36.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup27,
            spreadsheetCommandGalleryItemGroup28});
            this.commandBarGalleryDropDown36.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown36.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown36.Name = "commandBarGalleryDropDown36";
            this.commandBarGalleryDropDown36.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonItem104
            // 
            this.spreadsheetCommandBarButtonItem104.CommandName = "InsertHyperlink";
            this.spreadsheetCommandBarButtonItem104.Id = 163;
            this.spreadsheetCommandBarButtonItem104.Name = "spreadsheetCommandBarButtonItem104";
            // 
            // spreadsheetCommandBarButtonItem105
            // 
            this.spreadsheetCommandBarButtonItem105.CommandName = "InsertSymbol";
            this.spreadsheetCommandBarButtonItem105.Id = 164;
            this.spreadsheetCommandBarButtonItem105.Name = "spreadsheetCommandBarButtonItem105";
            // 
            // spreadsheetCommandBarSubItem17
            // 
            this.spreadsheetCommandBarSubItem17.CommandName = "PageSetupMarginsCommandGroup";
            this.spreadsheetCommandBarSubItem17.Id = 165;
            this.spreadsheetCommandBarSubItem17.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem14),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem15),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem16)});
            this.spreadsheetCommandBarSubItem17.Name = "spreadsheetCommandBarSubItem17";
            // 
            // spreadsheetCommandBarCheckItem14
            // 
            this.spreadsheetCommandBarCheckItem14.CaptionDependOnUnits = true;
            this.spreadsheetCommandBarCheckItem14.CommandName = "PageSetupMarginsNormal";
            this.spreadsheetCommandBarCheckItem14.Id = 166;
            this.spreadsheetCommandBarCheckItem14.Name = "spreadsheetCommandBarCheckItem14";
            // 
            // spreadsheetCommandBarCheckItem15
            // 
            this.spreadsheetCommandBarCheckItem15.CaptionDependOnUnits = true;
            this.spreadsheetCommandBarCheckItem15.CommandName = "PageSetupMarginsWide";
            this.spreadsheetCommandBarCheckItem15.Id = 167;
            this.spreadsheetCommandBarCheckItem15.Name = "spreadsheetCommandBarCheckItem15";
            // 
            // spreadsheetCommandBarCheckItem16
            // 
            this.spreadsheetCommandBarCheckItem16.CaptionDependOnUnits = true;
            this.spreadsheetCommandBarCheckItem16.CommandName = "PageSetupMarginsNarrow";
            this.spreadsheetCommandBarCheckItem16.Id = 168;
            this.spreadsheetCommandBarCheckItem16.Name = "spreadsheetCommandBarCheckItem16";
            // 
            // spreadsheetCommandBarSubItem18
            // 
            this.spreadsheetCommandBarSubItem18.CommandName = "PageSetupOrientationCommandGroup";
            this.spreadsheetCommandBarSubItem18.Id = 169;
            this.spreadsheetCommandBarSubItem18.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem17),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem18)});
            this.spreadsheetCommandBarSubItem18.Name = "spreadsheetCommandBarSubItem18";
            // 
            // spreadsheetCommandBarCheckItem17
            // 
            this.spreadsheetCommandBarCheckItem17.CommandName = "PageSetupOrientationPortrait";
            this.spreadsheetCommandBarCheckItem17.Id = 170;
            this.spreadsheetCommandBarCheckItem17.Name = "spreadsheetCommandBarCheckItem17";
            // 
            // spreadsheetCommandBarCheckItem18
            // 
            this.spreadsheetCommandBarCheckItem18.CommandName = "PageSetupOrientationLandscape";
            this.spreadsheetCommandBarCheckItem18.Id = 171;
            this.spreadsheetCommandBarCheckItem18.Name = "spreadsheetCommandBarCheckItem18";
            // 
            // pageSetupPaperKindItem1
            // 
            this.pageSetupPaperKindItem1.Id = 172;
            this.pageSetupPaperKindItem1.Name = "pageSetupPaperKindItem1";
            // 
            // spreadsheetCommandBarSubItem19
            // 
            this.spreadsheetCommandBarSubItem19.CommandName = "PageSetupPrintAreaCommandGroup";
            this.spreadsheetCommandBarSubItem19.Id = 173;
            this.spreadsheetCommandBarSubItem19.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem106),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem107),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem108)});
            this.spreadsheetCommandBarSubItem19.Name = "spreadsheetCommandBarSubItem19";
            // 
            // spreadsheetCommandBarButtonItem106
            // 
            this.spreadsheetCommandBarButtonItem106.CommandName = "PageSetupSetPrintArea";
            this.spreadsheetCommandBarButtonItem106.Id = 174;
            this.spreadsheetCommandBarButtonItem106.Name = "spreadsheetCommandBarButtonItem106";
            // 
            // spreadsheetCommandBarButtonItem107
            // 
            this.spreadsheetCommandBarButtonItem107.CommandName = "PageSetupClearPrintArea";
            this.spreadsheetCommandBarButtonItem107.Id = 175;
            this.spreadsheetCommandBarButtonItem107.Name = "spreadsheetCommandBarButtonItem107";
            // 
            // spreadsheetCommandBarButtonItem108
            // 
            this.spreadsheetCommandBarButtonItem108.CommandName = "PageSetupAddPrintArea";
            this.spreadsheetCommandBarButtonItem108.Id = 176;
            this.spreadsheetCommandBarButtonItem108.Name = "spreadsheetCommandBarButtonItem108";
            // 
            // spreadsheetCommandBarCheckItem19
            // 
            this.spreadsheetCommandBarCheckItem19.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem19.CommandName = "ViewShowGridlines";
            this.spreadsheetCommandBarCheckItem19.Id = 177;
            this.spreadsheetCommandBarCheckItem19.Name = "spreadsheetCommandBarCheckItem19";
            // 
            // spreadsheetCommandBarCheckItem20
            // 
            this.spreadsheetCommandBarCheckItem20.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem20.CommandName = "ViewShowHeadings";
            this.spreadsheetCommandBarCheckItem20.Id = 178;
            this.spreadsheetCommandBarCheckItem20.Name = "spreadsheetCommandBarCheckItem20";
            // 
            // spreadsheetCommandBarCheckItem21
            // 
            this.spreadsheetCommandBarCheckItem21.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem21.CommandName = "PageSetupPrintGridlines";
            this.spreadsheetCommandBarCheckItem21.Id = 179;
            this.spreadsheetCommandBarCheckItem21.Name = "spreadsheetCommandBarCheckItem21";
            // 
            // spreadsheetCommandBarCheckItem22
            // 
            this.spreadsheetCommandBarCheckItem22.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem22.CommandName = "PageSetupPrintHeadings";
            this.spreadsheetCommandBarCheckItem22.Id = 180;
            this.spreadsheetCommandBarCheckItem22.Name = "spreadsheetCommandBarCheckItem22";
            // 
            // spreadsheetCommandBarSubItem20
            // 
            this.spreadsheetCommandBarSubItem20.CommandName = "ArrangeBringForwardCommandGroup";
            this.spreadsheetCommandBarSubItem20.Id = 181;
            this.spreadsheetCommandBarSubItem20.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem109),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem110)});
            this.spreadsheetCommandBarSubItem20.Name = "spreadsheetCommandBarSubItem20";
            // 
            // spreadsheetCommandBarButtonItem109
            // 
            this.spreadsheetCommandBarButtonItem109.CommandName = "ArrangeBringForward";
            this.spreadsheetCommandBarButtonItem109.Id = 182;
            this.spreadsheetCommandBarButtonItem109.Name = "spreadsheetCommandBarButtonItem109";
            // 
            // spreadsheetCommandBarButtonItem110
            // 
            this.spreadsheetCommandBarButtonItem110.CommandName = "ArrangeBringToFront";
            this.spreadsheetCommandBarButtonItem110.Id = 183;
            this.spreadsheetCommandBarButtonItem110.Name = "spreadsheetCommandBarButtonItem110";
            // 
            // spreadsheetCommandBarSubItem21
            // 
            this.spreadsheetCommandBarSubItem21.CommandName = "ArrangeSendBackwardCommandGroup";
            this.spreadsheetCommandBarSubItem21.Id = 184;
            this.spreadsheetCommandBarSubItem21.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem111),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem112)});
            this.spreadsheetCommandBarSubItem21.Name = "spreadsheetCommandBarSubItem21";
            // 
            // spreadsheetCommandBarButtonItem111
            // 
            this.spreadsheetCommandBarButtonItem111.CommandName = "ArrangeSendBackward";
            this.spreadsheetCommandBarButtonItem111.Id = 185;
            this.spreadsheetCommandBarButtonItem111.Name = "spreadsheetCommandBarButtonItem111";
            // 
            // spreadsheetCommandBarButtonItem112
            // 
            this.spreadsheetCommandBarButtonItem112.CommandName = "ArrangeSendToBack";
            this.spreadsheetCommandBarButtonItem112.Id = 186;
            this.spreadsheetCommandBarButtonItem112.Name = "spreadsheetCommandBarButtonItem112";
            // 
            // spreadsheetCommandBarSubItem22
            // 
            this.spreadsheetCommandBarSubItem22.CommandName = "FunctionsAutoSumCommandGroup";
            this.spreadsheetCommandBarSubItem22.Id = 187;
            this.spreadsheetCommandBarSubItem22.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem78),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem79),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem80),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem81),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem82)});
            this.spreadsheetCommandBarSubItem22.Name = "spreadsheetCommandBarSubItem22";
            // 
            // functionsFinancialItem1
            // 
            this.functionsFinancialItem1.Id = 188;
            this.functionsFinancialItem1.Name = "functionsFinancialItem1";
            // 
            // functionsLogicalItem1
            // 
            this.functionsLogicalItem1.Id = 189;
            this.functionsLogicalItem1.Name = "functionsLogicalItem1";
            // 
            // functionsTextItem1
            // 
            this.functionsTextItem1.Id = 190;
            this.functionsTextItem1.Name = "functionsTextItem1";
            // 
            // functionsDateAndTimeItem1
            // 
            this.functionsDateAndTimeItem1.Id = 191;
            this.functionsDateAndTimeItem1.Name = "functionsDateAndTimeItem1";
            // 
            // functionsLookupAndReferenceItem1
            // 
            this.functionsLookupAndReferenceItem1.Id = 192;
            this.functionsLookupAndReferenceItem1.Name = "functionsLookupAndReferenceItem1";
            // 
            // functionsMathAndTrigonometryItem1
            // 
            this.functionsMathAndTrigonometryItem1.Id = 193;
            this.functionsMathAndTrigonometryItem1.Name = "functionsMathAndTrigonometryItem1";
            // 
            // spreadsheetCommandBarSubItem23
            // 
            this.spreadsheetCommandBarSubItem23.CommandName = "FunctionsMoreCommandGroup";
            this.spreadsheetCommandBarSubItem23.Id = 194;
            this.spreadsheetCommandBarSubItem23.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsStatisticalItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsEngineeringItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsInformationItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsCompatibilityItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsWebItem1)});
            this.spreadsheetCommandBarSubItem23.Name = "spreadsheetCommandBarSubItem23";
            // 
            // functionsStatisticalItem1
            // 
            this.functionsStatisticalItem1.Id = 195;
            this.functionsStatisticalItem1.Name = "functionsStatisticalItem1";
            // 
            // functionsEngineeringItem1
            // 
            this.functionsEngineeringItem1.Id = 196;
            this.functionsEngineeringItem1.Name = "functionsEngineeringItem1";
            // 
            // functionsInformationItem1
            // 
            this.functionsInformationItem1.Id = 197;
            this.functionsInformationItem1.Name = "functionsInformationItem1";
            // 
            // functionsCompatibilityItem1
            // 
            this.functionsCompatibilityItem1.Id = 198;
            this.functionsCompatibilityItem1.Name = "functionsCompatibilityItem1";
            // 
            // functionsWebItem1
            // 
            this.functionsWebItem1.Id = 199;
            this.functionsWebItem1.Name = "functionsWebItem1";
            // 
            // spreadsheetCommandBarButtonItem118
            // 
            this.spreadsheetCommandBarButtonItem118.CommandName = "FormulasShowNameManager";
            this.spreadsheetCommandBarButtonItem118.Id = 200;
            this.spreadsheetCommandBarButtonItem118.Name = "spreadsheetCommandBarButtonItem118";
            // 
            // spreadsheetCommandBarButtonItem119
            // 
            this.spreadsheetCommandBarButtonItem119.CommandName = "FormulasDefineNameCommand";
            this.spreadsheetCommandBarButtonItem119.Id = 201;
            this.spreadsheetCommandBarButtonItem119.Name = "spreadsheetCommandBarButtonItem119";
            this.spreadsheetCommandBarButtonItem119.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // definedNameListItem1
            // 
            this.definedNameListItem1.Id = 202;
            this.definedNameListItem1.Name = "definedNameListItem1";
            this.definedNameListItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem120
            // 
            this.spreadsheetCommandBarButtonItem120.CommandName = "FormulasCreateDefinedNamesFromSelection";
            this.spreadsheetCommandBarButtonItem120.Id = 203;
            this.spreadsheetCommandBarButtonItem120.Name = "spreadsheetCommandBarButtonItem120";
            this.spreadsheetCommandBarButtonItem120.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem23
            // 
            this.spreadsheetCommandBarCheckItem23.CommandName = "ViewShowFormulas";
            this.spreadsheetCommandBarCheckItem23.Id = 204;
            this.spreadsheetCommandBarCheckItem23.Name = "spreadsheetCommandBarCheckItem23";
            // 
            // spreadsheetCommandBarSubItem24
            // 
            this.spreadsheetCommandBarSubItem24.CommandName = "FormulasCalculationOptionsCommandGroup";
            this.spreadsheetCommandBarSubItem24.Id = 205;
            this.spreadsheetCommandBarSubItem24.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem24),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem25)});
            this.spreadsheetCommandBarSubItem24.Name = "spreadsheetCommandBarSubItem24";
            // 
            // spreadsheetCommandBarCheckItem24
            // 
            this.spreadsheetCommandBarCheckItem24.CommandName = "FormulasCalculationModeAutomatic";
            this.spreadsheetCommandBarCheckItem24.Id = 206;
            this.spreadsheetCommandBarCheckItem24.Name = "spreadsheetCommandBarCheckItem24";
            // 
            // spreadsheetCommandBarCheckItem25
            // 
            this.spreadsheetCommandBarCheckItem25.CommandName = "FormulasCalculationModeManual";
            this.spreadsheetCommandBarCheckItem25.Id = 207;
            this.spreadsheetCommandBarCheckItem25.Name = "spreadsheetCommandBarCheckItem25";
            // 
            // spreadsheetCommandBarButtonItem121
            // 
            this.spreadsheetCommandBarButtonItem121.CommandName = "FormulasCalculateNow";
            this.spreadsheetCommandBarButtonItem121.Id = 208;
            this.spreadsheetCommandBarButtonItem121.Name = "spreadsheetCommandBarButtonItem121";
            this.spreadsheetCommandBarButtonItem121.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem122
            // 
            this.spreadsheetCommandBarButtonItem122.CommandName = "FormulasCalculateSheet";
            this.spreadsheetCommandBarButtonItem122.Id = 209;
            this.spreadsheetCommandBarButtonItem122.Name = "spreadsheetCommandBarButtonItem122";
            this.spreadsheetCommandBarButtonItem122.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem123
            // 
            this.spreadsheetCommandBarButtonItem123.CommandName = "ReviewUnprotectSheet";
            this.spreadsheetCommandBarButtonItem123.Id = 210;
            this.spreadsheetCommandBarButtonItem123.Name = "spreadsheetCommandBarButtonItem123";
            // 
            // spreadsheetCommandBarButtonItem124
            // 
            this.spreadsheetCommandBarButtonItem124.CommandName = "ReviewProtectWorkbook";
            this.spreadsheetCommandBarButtonItem124.Id = 211;
            this.spreadsheetCommandBarButtonItem124.Name = "spreadsheetCommandBarButtonItem124";
            // 
            // spreadsheetCommandBarButtonItem125
            // 
            this.spreadsheetCommandBarButtonItem125.CommandName = "ReviewUnprotectWorkbook";
            this.spreadsheetCommandBarButtonItem125.Id = 212;
            this.spreadsheetCommandBarButtonItem125.Name = "spreadsheetCommandBarButtonItem125";
            // 
            // spreadsheetCommandBarButtonItem126
            // 
            this.spreadsheetCommandBarButtonItem126.CommandName = "ReviewShowProtectedRangeManager";
            this.spreadsheetCommandBarButtonItem126.Id = 213;
            this.spreadsheetCommandBarButtonItem126.Name = "spreadsheetCommandBarButtonItem126";
            // 
            // spreadsheetCommandBarButtonItem127
            // 
            this.spreadsheetCommandBarButtonItem127.CommandName = "ViewZoomOut";
            this.spreadsheetCommandBarButtonItem127.Id = 214;
            this.spreadsheetCommandBarButtonItem127.Name = "spreadsheetCommandBarButtonItem127";
            // 
            // spreadsheetCommandBarButtonItem128
            // 
            this.spreadsheetCommandBarButtonItem128.CommandName = "ViewZoomIn";
            this.spreadsheetCommandBarButtonItem128.Id = 215;
            this.spreadsheetCommandBarButtonItem128.Name = "spreadsheetCommandBarButtonItem128";
            // 
            // spreadsheetCommandBarButtonItem129
            // 
            this.spreadsheetCommandBarButtonItem129.CommandName = "ViewZoom100Percent";
            this.spreadsheetCommandBarButtonItem129.Id = 216;
            this.spreadsheetCommandBarButtonItem129.Name = "spreadsheetCommandBarButtonItem129";
            // 
            // spreadsheetCommandBarSubItem25
            // 
            this.spreadsheetCommandBarSubItem25.CommandName = "ViewFreezePanesCommandGroup";
            this.spreadsheetCommandBarSubItem25.Id = 217;
            this.spreadsheetCommandBarSubItem25.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem130),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem131),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem132),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem133)});
            this.spreadsheetCommandBarSubItem25.Name = "spreadsheetCommandBarSubItem25";
            // 
            // spreadsheetCommandBarButtonItem130
            // 
            this.spreadsheetCommandBarButtonItem130.CommandName = "ViewFreezePanes";
            this.spreadsheetCommandBarButtonItem130.Id = 218;
            this.spreadsheetCommandBarButtonItem130.Name = "spreadsheetCommandBarButtonItem130";
            // 
            // spreadsheetCommandBarButtonItem131
            // 
            this.spreadsheetCommandBarButtonItem131.CommandName = "ViewUnfreezePanes";
            this.spreadsheetCommandBarButtonItem131.Id = 219;
            this.spreadsheetCommandBarButtonItem131.Name = "spreadsheetCommandBarButtonItem131";
            // 
            // spreadsheetCommandBarButtonItem132
            // 
            this.spreadsheetCommandBarButtonItem132.CommandName = "ViewFreezeTopRow";
            this.spreadsheetCommandBarButtonItem132.Id = 220;
            this.spreadsheetCommandBarButtonItem132.Name = "spreadsheetCommandBarButtonItem132";
            // 
            // spreadsheetCommandBarButtonItem133
            // 
            this.spreadsheetCommandBarButtonItem133.CommandName = "ViewFreezeFirstColumn";
            this.spreadsheetCommandBarButtonItem133.Id = 221;
            this.spreadsheetCommandBarButtonItem133.Name = "spreadsheetCommandBarButtonItem133";
            // 
            // spreadsheetCommandBarButtonItem134
            // 
            this.spreadsheetCommandBarButtonItem134.CommandName = "ChartChangeType";
            this.spreadsheetCommandBarButtonItem134.Id = 222;
            this.spreadsheetCommandBarButtonItem134.Name = "spreadsheetCommandBarButtonItem134";
            // 
            // spreadsheetCommandBarButtonItem135
            // 
            this.spreadsheetCommandBarButtonItem135.CommandName = "ChartSwitchRowColumn";
            this.spreadsheetCommandBarButtonItem135.Id = 223;
            this.spreadsheetCommandBarButtonItem135.Name = "spreadsheetCommandBarButtonItem135";
            // 
            // spreadsheetCommandBarButtonItem136
            // 
            this.spreadsheetCommandBarButtonItem136.CommandName = "ChartSelectData";
            this.spreadsheetCommandBarButtonItem136.Id = 224;
            this.spreadsheetCommandBarButtonItem136.Name = "spreadsheetCommandBarButtonItem136";
            // 
            // galleryChartLayoutItem1
            // 
            // 
            // 
            // 
            this.galleryChartLayoutItem1.Gallery.ColumnCount = 6;
            this.galleryChartLayoutItem1.Gallery.DrawImageBackground = false;
            this.galleryChartLayoutItem1.Gallery.ImageSize = new System.Drawing.Size(48, 48);
            this.galleryChartLayoutItem1.Gallery.RowCount = 2;
            this.galleryChartLayoutItem1.Id = 225;
            this.galleryChartLayoutItem1.Name = "galleryChartLayoutItem1";
            // 
            // galleryChartStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChartStyleItem1.Gallery.ColumnCount = 8;
            this.galleryChartStyleItem1.Gallery.DrawImageBackground = false;
            this.galleryChartStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChartStyleItem1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.galleryChartStyleItem1.Gallery.ItemSize = new System.Drawing.Size(93, 56);
            this.galleryChartStyleItem1.Gallery.MinimumColumnCount = 4;
            this.galleryChartStyleItem1.Gallery.RowCount = 6;
            this.galleryChartStyleItem1.Id = 226;
            this.galleryChartStyleItem1.Name = "galleryChartStyleItem1";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem11
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.CommandName = "ChartTitleCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.DropDownControl = this.commandBarGalleryDropDown37;
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.Id = 227;
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.Name = "spreadsheetCommandBarButtonGalleryDropDownItem11";
            // 
            // commandBarGalleryDropDown37
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown37.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown37.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup29.CommandName = "ChartTitleCommandGroup";
            spreadsheetCommandGalleryItem123.CommandName = "ChartTitleNone";
            spreadsheetCommandGalleryItem124.CommandName = "ChartTitleCenteredOverlay";
            spreadsheetCommandGalleryItem125.CommandName = "ChartTitleAbove";
            spreadsheetCommandGalleryItemGroup29.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem123,
            spreadsheetCommandGalleryItem124,
            spreadsheetCommandGalleryItem125});
            this.commandBarGalleryDropDown37.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup29});
            this.commandBarGalleryDropDown37.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown37.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown37.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown37.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown37.Name = "commandBarGalleryDropDown37";
            this.commandBarGalleryDropDown37.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarSubItem26
            // 
            this.spreadsheetCommandBarSubItem26.CommandName = "ChartAxisTitlesCommandGroup";
            this.spreadsheetCommandBarSubItem26.Id = 228;
            this.spreadsheetCommandBarSubItem26.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem12),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem13)});
            this.spreadsheetCommandBarSubItem26.Name = "spreadsheetCommandBarSubItem26";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem12
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.CommandName = "ChartPrimaryHorizontalAxisTitleCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.DropDownControl = this.commandBarGalleryDropDown38;
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.Id = 229;
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.Name = "spreadsheetCommandBarButtonGalleryDropDownItem12";
            // 
            // commandBarGalleryDropDown38
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown38.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown38.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup30.CommandName = "ChartPrimaryHorizontalAxisTitleCommandGroup";
            spreadsheetCommandGalleryItem126.CommandName = "ChartPrimaryHorizontalAxisTitleNone";
            spreadsheetCommandGalleryItem127.CommandName = "ChartPrimaryHorizontalAxisTitleBelow";
            spreadsheetCommandGalleryItemGroup30.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem126,
            spreadsheetCommandGalleryItem127});
            this.commandBarGalleryDropDown38.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup30});
            this.commandBarGalleryDropDown38.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown38.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown38.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown38.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown38.Name = "commandBarGalleryDropDown38";
            this.commandBarGalleryDropDown38.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem13
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.CommandName = "ChartPrimaryVerticalAxisTitleCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.DropDownControl = this.commandBarGalleryDropDown39;
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.Id = 230;
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.Name = "spreadsheetCommandBarButtonGalleryDropDownItem13";
            // 
            // commandBarGalleryDropDown39
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown39.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown39.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup31.CommandName = "ChartPrimaryVerticalAxisTitleCommandGroup";
            spreadsheetCommandGalleryItem128.CommandName = "ChartPrimaryVerticalAxisTitleNone";
            spreadsheetCommandGalleryItem129.CommandName = "ChartPrimaryVerticalAxisTitleRotated";
            spreadsheetCommandGalleryItem130.CommandName = "ChartPrimaryVerticalAxisTitleVertical";
            spreadsheetCommandGalleryItem131.CommandName = "ChartPrimaryVerticalAxisTitleHorizontal";
            spreadsheetCommandGalleryItemGroup31.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem128,
            spreadsheetCommandGalleryItem129,
            spreadsheetCommandGalleryItem130,
            spreadsheetCommandGalleryItem131});
            this.commandBarGalleryDropDown39.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup31});
            this.commandBarGalleryDropDown39.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown39.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown39.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown39.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown39.Name = "commandBarGalleryDropDown39";
            this.commandBarGalleryDropDown39.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem14
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.CommandName = "ChartLegendCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.DropDownControl = this.commandBarGalleryDropDown40;
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.Id = 231;
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.Name = "spreadsheetCommandBarButtonGalleryDropDownItem14";
            // 
            // commandBarGalleryDropDown40
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown40.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown40.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup32.CommandName = "ChartLegendCommandGroup";
            spreadsheetCommandGalleryItem132.CommandName = "ChartLegendNone";
            spreadsheetCommandGalleryItem133.CommandName = "ChartLegendAtRight";
            spreadsheetCommandGalleryItem134.CommandName = "ChartLegendAtTop";
            spreadsheetCommandGalleryItem135.CommandName = "ChartLegendAtLeft";
            spreadsheetCommandGalleryItem136.CommandName = "ChartLegendAtBottom";
            spreadsheetCommandGalleryItem137.CommandName = "ChartLegendOverlayAtRight";
            spreadsheetCommandGalleryItem138.CommandName = "ChartLegendOverlayAtLeft";
            spreadsheetCommandGalleryItemGroup32.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem132,
            spreadsheetCommandGalleryItem133,
            spreadsheetCommandGalleryItem134,
            spreadsheetCommandGalleryItem135,
            spreadsheetCommandGalleryItem136,
            spreadsheetCommandGalleryItem137,
            spreadsheetCommandGalleryItem138});
            this.commandBarGalleryDropDown40.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup32});
            this.commandBarGalleryDropDown40.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown40.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown40.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown40.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown40.Name = "commandBarGalleryDropDown40";
            this.commandBarGalleryDropDown40.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem15
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.CommandName = "ChartDataLabelsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.DropDownControl = this.commandBarGalleryDropDown41;
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.Id = 232;
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.Name = "spreadsheetCommandBarButtonGalleryDropDownItem15";
            // 
            // commandBarGalleryDropDown41
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown41.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown41.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup33.CommandName = "ChartDataLabelsCommandGroup";
            spreadsheetCommandGalleryItem139.CommandName = "ChartDataLabelsNone";
            spreadsheetCommandGalleryItem140.CommandName = "ChartDataLabelsDefault";
            spreadsheetCommandGalleryItem141.CommandName = "ChartDataLabelsCenter";
            spreadsheetCommandGalleryItem142.CommandName = "ChartDataLabelsInsideEnd";
            spreadsheetCommandGalleryItem143.CommandName = "ChartDataLabelsInsideBase";
            spreadsheetCommandGalleryItem144.CommandName = "ChartDataLabelsOutsideEnd";
            spreadsheetCommandGalleryItem145.CommandName = "ChartDataLabelsBestFit";
            spreadsheetCommandGalleryItem146.CommandName = "ChartDataLabelsLeft";
            spreadsheetCommandGalleryItem147.CommandName = "ChartDataLabelsRight";
            spreadsheetCommandGalleryItem148.CommandName = "ChartDataLabelsAbove";
            spreadsheetCommandGalleryItem149.CommandName = "ChartDataLabelsBelow";
            spreadsheetCommandGalleryItemGroup33.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem139,
            spreadsheetCommandGalleryItem140,
            spreadsheetCommandGalleryItem141,
            spreadsheetCommandGalleryItem142,
            spreadsheetCommandGalleryItem143,
            spreadsheetCommandGalleryItem144,
            spreadsheetCommandGalleryItem145,
            spreadsheetCommandGalleryItem146,
            spreadsheetCommandGalleryItem147,
            spreadsheetCommandGalleryItem148,
            spreadsheetCommandGalleryItem149});
            this.commandBarGalleryDropDown41.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup33});
            this.commandBarGalleryDropDown41.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown41.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown41.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown41.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown41.Name = "commandBarGalleryDropDown41";
            this.commandBarGalleryDropDown41.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarSubItem27
            // 
            this.spreadsheetCommandBarSubItem27.CommandName = "ChartAxesCommandGroup";
            this.spreadsheetCommandBarSubItem27.Id = 233;
            this.spreadsheetCommandBarSubItem27.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem17)});
            this.spreadsheetCommandBarSubItem27.Name = "spreadsheetCommandBarSubItem27";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem16
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.CommandName = "ChartPrimaryHorizontalAxisCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.DropDownControl = this.commandBarGalleryDropDown42;
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.Id = 234;
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.Name = "spreadsheetCommandBarButtonGalleryDropDownItem16";
            // 
            // commandBarGalleryDropDown42
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown42.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown42.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup34.CommandName = "ChartPrimaryHorizontalAxisCommandGroup";
            spreadsheetCommandGalleryItem150.CommandName = "ChartHidePrimaryHorizontalAxis";
            spreadsheetCommandGalleryItem151.CommandName = "ChartPrimaryHorizontalAxisLeftToRight";
            spreadsheetCommandGalleryItem152.CommandName = "ChartPrimaryHorizontalAxisHideLabels";
            spreadsheetCommandGalleryItem153.CommandName = "ChartPrimaryHorizontalAxisRightToLeft";
            spreadsheetCommandGalleryItem154.CommandName = "ChartPrimaryHorizontalAxisDefault";
            spreadsheetCommandGalleryItem155.CommandName = "ChartPrimaryHorizontalAxisScaleThousands";
            spreadsheetCommandGalleryItem156.CommandName = "ChartPrimaryHorizontalAxisScaleMillions";
            spreadsheetCommandGalleryItem157.CommandName = "ChartPrimaryHorizontalAxisScaleBillions";
            spreadsheetCommandGalleryItem158.CommandName = "ChartPrimaryHorizontalAxisScaleLogarithm";
            spreadsheetCommandGalleryItemGroup34.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem150,
            spreadsheetCommandGalleryItem151,
            spreadsheetCommandGalleryItem152,
            spreadsheetCommandGalleryItem153,
            spreadsheetCommandGalleryItem154,
            spreadsheetCommandGalleryItem155,
            spreadsheetCommandGalleryItem156,
            spreadsheetCommandGalleryItem157,
            spreadsheetCommandGalleryItem158});
            this.commandBarGalleryDropDown42.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup34});
            this.commandBarGalleryDropDown42.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown42.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown42.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown42.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown42.Name = "commandBarGalleryDropDown42";
            this.commandBarGalleryDropDown42.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem17
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.CommandName = "ChartPrimaryVerticalAxisCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.DropDownControl = this.commandBarGalleryDropDown43;
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.Id = 235;
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.Name = "spreadsheetCommandBarButtonGalleryDropDownItem17";
            // 
            // commandBarGalleryDropDown43
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown43.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown43.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup35.CommandName = "ChartPrimaryVerticalAxisCommandGroup";
            spreadsheetCommandGalleryItem159.CommandName = "ChartHidePrimaryVerticalAxis";
            spreadsheetCommandGalleryItem160.CommandName = "ChartPrimaryVerticalAxisLeftToRight";
            spreadsheetCommandGalleryItem161.CommandName = "ChartPrimaryVerticalAxisHideLabels";
            spreadsheetCommandGalleryItem162.CommandName = "ChartPrimaryVerticalAxisRightToLeft";
            spreadsheetCommandGalleryItem163.CommandName = "ChartPrimaryVerticalAxisDefault";
            spreadsheetCommandGalleryItem164.CommandName = "ChartPrimaryVerticalAxisScaleThousands";
            spreadsheetCommandGalleryItem165.CommandName = "ChartPrimaryVerticalAxisScaleMillions";
            spreadsheetCommandGalleryItem166.CommandName = "ChartPrimaryVerticalAxisScaleBillions";
            spreadsheetCommandGalleryItem167.CommandName = "ChartPrimaryVerticalAxisScaleLogarithm";
            spreadsheetCommandGalleryItemGroup35.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem159,
            spreadsheetCommandGalleryItem160,
            spreadsheetCommandGalleryItem161,
            spreadsheetCommandGalleryItem162,
            spreadsheetCommandGalleryItem163,
            spreadsheetCommandGalleryItem164,
            spreadsheetCommandGalleryItem165,
            spreadsheetCommandGalleryItem166,
            spreadsheetCommandGalleryItem167});
            this.commandBarGalleryDropDown43.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup35});
            this.commandBarGalleryDropDown43.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown43.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown43.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown43.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown43.Name = "commandBarGalleryDropDown43";
            this.commandBarGalleryDropDown43.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarSubItem28
            // 
            this.spreadsheetCommandBarSubItem28.CommandName = "ChartGridlinesCommandGroup";
            this.spreadsheetCommandBarSubItem28.Id = 236;
            this.spreadsheetCommandBarSubItem28.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem18),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem19)});
            this.spreadsheetCommandBarSubItem28.Name = "spreadsheetCommandBarSubItem28";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem18
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.CommandName = "ChartPrimaryHorizontalGridlinesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.DropDownControl = this.commandBarGalleryDropDown44;
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.Id = 237;
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.Name = "spreadsheetCommandBarButtonGalleryDropDownItem18";
            // 
            // commandBarGalleryDropDown44
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown44.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown44.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup36.CommandName = "ChartPrimaryHorizontalGridlinesCommandGroup";
            spreadsheetCommandGalleryItem168.CommandName = "ChartPrimaryHorizontalGridlinesNone";
            spreadsheetCommandGalleryItem169.CommandName = "ChartPrimaryHorizontalGridlinesMajor";
            spreadsheetCommandGalleryItem170.CommandName = "ChartPrimaryHorizontalGridlinesMinor";
            spreadsheetCommandGalleryItem171.CommandName = "ChartPrimaryHorizontalGridlinesMajorAndMinor";
            spreadsheetCommandGalleryItemGroup36.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem168,
            spreadsheetCommandGalleryItem169,
            spreadsheetCommandGalleryItem170,
            spreadsheetCommandGalleryItem171});
            this.commandBarGalleryDropDown44.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup36});
            this.commandBarGalleryDropDown44.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown44.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown44.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown44.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown44.Name = "commandBarGalleryDropDown44";
            this.commandBarGalleryDropDown44.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem19
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.CommandName = "ChartPrimaryVerticalGridlinesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.DropDownControl = this.commandBarGalleryDropDown45;
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.Id = 238;
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.Name = "spreadsheetCommandBarButtonGalleryDropDownItem19";
            // 
            // commandBarGalleryDropDown45
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown45.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown45.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup37.CommandName = "ChartPrimaryVerticalGridlinesCommandGroup";
            spreadsheetCommandGalleryItem172.CommandName = "ChartPrimaryVerticalGridlinesNone";
            spreadsheetCommandGalleryItem173.CommandName = "ChartPrimaryVerticalGridlinesMajor";
            spreadsheetCommandGalleryItem174.CommandName = "ChartPrimaryVerticalGridlinesMinor";
            spreadsheetCommandGalleryItem175.CommandName = "ChartPrimaryVerticalGridlinesMajorAndMinor";
            spreadsheetCommandGalleryItemGroup37.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem172,
            spreadsheetCommandGalleryItem173,
            spreadsheetCommandGalleryItem174,
            spreadsheetCommandGalleryItem175});
            this.commandBarGalleryDropDown45.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup37});
            this.commandBarGalleryDropDown45.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown45.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown45.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown45.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown45.Name = "commandBarGalleryDropDown45";
            this.commandBarGalleryDropDown45.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem20
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.CommandName = "ChartLinesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.DropDownControl = this.commandBarGalleryDropDown46;
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.Id = 239;
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.Name = "spreadsheetCommandBarButtonGalleryDropDownItem20";
            // 
            // commandBarGalleryDropDown46
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown46.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown46.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup38.CommandName = "ChartLinesCommandGroup";
            spreadsheetCommandGalleryItem176.CommandName = "ChartLinesNone";
            spreadsheetCommandGalleryItem177.CommandName = "ChartShowDropLines";
            spreadsheetCommandGalleryItem178.CommandName = "ChartShowHighLowLines";
            spreadsheetCommandGalleryItem179.CommandName = "ChartShowDropLinesAndHighLowLines";
            spreadsheetCommandGalleryItem180.CommandName = "ChartShowSeriesLines";
            spreadsheetCommandGalleryItemGroup38.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem176,
            spreadsheetCommandGalleryItem177,
            spreadsheetCommandGalleryItem178,
            spreadsheetCommandGalleryItem179,
            spreadsheetCommandGalleryItem180});
            this.commandBarGalleryDropDown46.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup38});
            this.commandBarGalleryDropDown46.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown46.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown46.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown46.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown46.Name = "commandBarGalleryDropDown46";
            this.commandBarGalleryDropDown46.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem21
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.CommandName = "ChartUpDownBarsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.DropDownControl = this.commandBarGalleryDropDown47;
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.Id = 240;
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.Name = "spreadsheetCommandBarButtonGalleryDropDownItem21";
            // 
            // commandBarGalleryDropDown47
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown47.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown47.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup39.CommandName = "ChartUpDownBarsCommandGroup";
            spreadsheetCommandGalleryItem181.CommandName = "ChartHideUpDownBars";
            spreadsheetCommandGalleryItem182.CommandName = "ChartShowUpDownBars";
            spreadsheetCommandGalleryItemGroup39.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem181,
            spreadsheetCommandGalleryItem182});
            this.commandBarGalleryDropDown47.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup39});
            this.commandBarGalleryDropDown47.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown47.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown47.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown47.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown47.Name = "commandBarGalleryDropDown47";
            this.commandBarGalleryDropDown47.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem22
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.CommandName = "ChartErrorBarsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.DropDownControl = this.commandBarGalleryDropDown48;
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.Id = 241;
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.Name = "spreadsheetCommandBarButtonGalleryDropDownItem22";
            // 
            // commandBarGalleryDropDown48
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown48.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown48.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup40.CommandName = "ChartErrorBarsCommandGroup";
            spreadsheetCommandGalleryItem183.CommandName = "ChartErrorBarsNone";
            spreadsheetCommandGalleryItem184.CommandName = "ChartErrorBarsStandardError";
            spreadsheetCommandGalleryItem185.CommandName = "ChartErrorBarsPercentage";
            spreadsheetCommandGalleryItem186.CommandName = "ChartErrorBarsStandardDeviation";
            spreadsheetCommandGalleryItemGroup40.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem183,
            spreadsheetCommandGalleryItem184,
            spreadsheetCommandGalleryItem185,
            spreadsheetCommandGalleryItem186});
            this.commandBarGalleryDropDown48.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup40});
            this.commandBarGalleryDropDown48.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown48.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown48.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown48.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown48.Name = "commandBarGalleryDropDown48";
            this.commandBarGalleryDropDown48.Ribbon = this.ribbonControl1;
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "Table Name:";
            this.barStaticItem1.Id = 242;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // renameTableItem1
            // 
            this.renameTableItem1.Edit = this.repositoryItemTextEdit1;
            this.renameTableItem1.Id = 243;
            this.renameTableItem1.Name = "renameTableItem1";
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // spreadsheetCommandBarCheckItem26
            // 
            this.spreadsheetCommandBarCheckItem26.CommandName = "TableToolsConvertToRange";
            this.spreadsheetCommandBarCheckItem26.Id = 244;
            this.spreadsheetCommandBarCheckItem26.Name = "spreadsheetCommandBarCheckItem26";
            this.spreadsheetCommandBarCheckItem26.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem27
            // 
            this.spreadsheetCommandBarCheckItem27.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem27.CommandName = "TableToolsToggleHeaderRow";
            this.spreadsheetCommandBarCheckItem27.Id = 245;
            this.spreadsheetCommandBarCheckItem27.Name = "spreadsheetCommandBarCheckItem27";
            // 
            // spreadsheetCommandBarCheckItem28
            // 
            this.spreadsheetCommandBarCheckItem28.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem28.CommandName = "TableToolsToggleTotalRow";
            this.spreadsheetCommandBarCheckItem28.Id = 246;
            this.spreadsheetCommandBarCheckItem28.Name = "spreadsheetCommandBarCheckItem28";
            // 
            // spreadsheetCommandBarCheckItem29
            // 
            this.spreadsheetCommandBarCheckItem29.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem29.CommandName = "TableToolsToggleBandedColumns";
            this.spreadsheetCommandBarCheckItem29.Id = 247;
            this.spreadsheetCommandBarCheckItem29.Name = "spreadsheetCommandBarCheckItem29";
            // 
            // spreadsheetCommandBarCheckItem30
            // 
            this.spreadsheetCommandBarCheckItem30.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem30.CommandName = "TableToolsToggleFirstColumn";
            this.spreadsheetCommandBarCheckItem30.Id = 248;
            this.spreadsheetCommandBarCheckItem30.Name = "spreadsheetCommandBarCheckItem30";
            // 
            // spreadsheetCommandBarCheckItem31
            // 
            this.spreadsheetCommandBarCheckItem31.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem31.CommandName = "TableToolsToggleLastColumn";
            this.spreadsheetCommandBarCheckItem31.Id = 249;
            this.spreadsheetCommandBarCheckItem31.Name = "spreadsheetCommandBarCheckItem31";
            // 
            // spreadsheetCommandBarCheckItem32
            // 
            this.spreadsheetCommandBarCheckItem32.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem32.CommandName = "TableToolsToggleBandedRows";
            this.spreadsheetCommandBarCheckItem32.Id = 250;
            this.spreadsheetCommandBarCheckItem32.Name = "spreadsheetCommandBarCheckItem32";
            // 
            // galleryTableStylesItem1
            // 
            // 
            // 
            // 
            this.galleryTableStylesItem1.Gallery.ColumnCount = 7;
            this.galleryTableStylesItem1.Gallery.DrawImageBackground = false;
            this.galleryTableStylesItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryTableStylesItem1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.galleryTableStylesItem1.Gallery.ItemSize = new System.Drawing.Size(73, 58);
            this.galleryTableStylesItem1.Gallery.RowCount = 10;
            this.galleryTableStylesItem1.Id = 251;
            this.galleryTableStylesItem1.Name = "galleryTableStylesItem1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.spreadControl;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.chartsDesignRibbonPage1,
            this.chartsLayoutRibbonPage1,
            this.chartsFormatRibbonPage1});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // chartsDesignRibbonPage1
            // 
            this.chartsDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.chartsDesignTypeRibbonPageGroup1,
            this.chartsDesignDataRibbonPageGroup1,
            this.chartsDesignLayoutsRibbonPageGroup1,
            this.chartsDesignStylesRibbonPageGroup1});
            this.chartsDesignRibbonPage1.Name = "chartsDesignRibbonPage1";
            this.chartsDesignRibbonPage1.Visible = false;
            // 
            // chartsDesignTypeRibbonPageGroup1
            // 
            this.chartsDesignTypeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem134);
            this.chartsDesignTypeRibbonPageGroup1.Name = "chartsDesignTypeRibbonPageGroup1";
            // 
            // chartsDesignDataRibbonPageGroup1
            // 
            this.chartsDesignDataRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem135);
            this.chartsDesignDataRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem136);
            this.chartsDesignDataRibbonPageGroup1.Name = "chartsDesignDataRibbonPageGroup1";
            // 
            // chartsDesignLayoutsRibbonPageGroup1
            // 
            this.chartsDesignLayoutsRibbonPageGroup1.ItemLinks.Add(this.galleryChartLayoutItem1);
            this.chartsDesignLayoutsRibbonPageGroup1.Name = "chartsDesignLayoutsRibbonPageGroup1";
            // 
            // chartsDesignStylesRibbonPageGroup1
            // 
            this.chartsDesignStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChartStyleItem1);
            this.chartsDesignStylesRibbonPageGroup1.Name = "chartsDesignStylesRibbonPageGroup1";
            // 
            // chartsLayoutRibbonPage1
            // 
            this.chartsLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.chartsLayoutLabelsRibbonPageGroup1,
            this.chartsLayoutAxesRibbonPageGroup1,
            this.chartsLayoutAnalysisRibbonPageGroup1});
            this.chartsLayoutRibbonPage1.Name = "chartsLayoutRibbonPage1";
            this.chartsLayoutRibbonPage1.Visible = false;
            // 
            // chartsLayoutLabelsRibbonPageGroup1
            // 
            this.chartsLayoutLabelsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem11);
            this.chartsLayoutLabelsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem26);
            this.chartsLayoutLabelsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem14);
            this.chartsLayoutLabelsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem15);
            this.chartsLayoutLabelsRibbonPageGroup1.Name = "chartsLayoutLabelsRibbonPageGroup1";
            // 
            // chartsLayoutAxesRibbonPageGroup1
            // 
            this.chartsLayoutAxesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem27);
            this.chartsLayoutAxesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem28);
            this.chartsLayoutAxesRibbonPageGroup1.Name = "chartsLayoutAxesRibbonPageGroup1";
            // 
            // chartsLayoutAnalysisRibbonPageGroup1
            // 
            this.chartsLayoutAnalysisRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem20);
            this.chartsLayoutAnalysisRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem21);
            this.chartsLayoutAnalysisRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem22);
            this.chartsLayoutAnalysisRibbonPageGroup1.Name = "chartsLayoutAnalysisRibbonPageGroup1";
            // 
            // chartsFormatRibbonPage1
            // 
            this.chartsFormatRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.chartsFormatArrangeRibbonPageGroup1});
            this.chartsFormatRibbonPage1.Name = "chartsFormatRibbonPage1";
            this.chartsFormatRibbonPage1.Visible = false;
            // 
            // chartsFormatArrangeRibbonPageGroup1
            // 
            this.chartsFormatArrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem20);
            this.chartsFormatArrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem21);
            this.chartsFormatArrangeRibbonPageGroup1.Name = "chartsFormatArrangeRibbonPageGroup1";
            // 
            // tableToolsRibbonPageCategory1
            // 
            this.tableToolsRibbonPageCategory1.Control = this.spreadControl;
            this.tableToolsRibbonPageCategory1.Name = "tableToolsRibbonPageCategory1";
            this.tableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.tableToolsDesignRibbonPage1});
            this.tableToolsRibbonPageCategory1.Visible = false;
            // 
            // tableToolsDesignRibbonPage1
            // 
            this.tableToolsDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tablePropertiesRibbonPageGroup1,
            this.tableToolsRibbonPageGroup1,
            this.tableStyleOptionsRibbonPageGroup1,
            this.tableStylesRibbonPageGroup1});
            this.tableToolsDesignRibbonPage1.Name = "tableToolsDesignRibbonPage1";
            this.tableToolsDesignRibbonPage1.Visible = false;
            // 
            // tablePropertiesRibbonPageGroup1
            // 
            this.tablePropertiesRibbonPageGroup1.ItemLinks.Add(this.barStaticItem1);
            this.tablePropertiesRibbonPageGroup1.ItemLinks.Add(this.renameTableItem1);
            this.tablePropertiesRibbonPageGroup1.Name = "tablePropertiesRibbonPageGroup1";
            // 
            // tableToolsRibbonPageGroup1
            // 
            this.tableToolsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem26);
            this.tableToolsRibbonPageGroup1.Name = "tableToolsRibbonPageGroup1";
            // 
            // tableStyleOptionsRibbonPageGroup1
            // 
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem27);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem28);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem29);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem30);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem31);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem32);
            this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
            // 
            // tableStylesRibbonPageGroup1
            // 
            this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryTableStylesItem1);
            this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
            // 
            // pictureToolsRibbonPageCategory1
            // 
            this.pictureToolsRibbonPageCategory1.Control = this.spreadControl;
            this.pictureToolsRibbonPageCategory1.Name = "pictureToolsRibbonPageCategory1";
            this.pictureToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.pictureFormatRibbonPage1});
            this.pictureToolsRibbonPageCategory1.Visible = false;
            // 
            // pictureFormatRibbonPage1
            // 
            this.pictureFormatRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pictureFormatArrangeRibbonPageGroup1});
            this.pictureFormatRibbonPage1.Name = "pictureFormatRibbonPage1";
            this.pictureFormatRibbonPage1.Visible = false;
            // 
            // pictureFormatArrangeRibbonPageGroup1
            // 
            this.pictureFormatArrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem20);
            this.pictureFormatArrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem21);
            this.pictureFormatArrangeRibbonPageGroup1.Name = "pictureFormatArrangeRibbonPageGroup1";
            // 
            // drawingToolsRibbonPageCategory1
            // 
            this.drawingToolsRibbonPageCategory1.Control = this.spreadControl;
            this.drawingToolsRibbonPageCategory1.Name = "drawingToolsRibbonPageCategory1";
            this.drawingToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.drawingFormatRibbonPage1});
            this.drawingToolsRibbonPageCategory1.Visible = false;
            // 
            // drawingFormatRibbonPage1
            // 
            this.drawingFormatRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.drawingFormatArrangeRibbonPageGroup1});
            this.drawingFormatRibbonPage1.Name = "drawingFormatRibbonPage1";
            this.drawingFormatRibbonPage1.Visible = false;
            // 
            // drawingFormatArrangeRibbonPageGroup1
            // 
            this.drawingFormatArrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem20);
            this.drawingFormatArrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem21);
            this.drawingFormatArrangeRibbonPageGroup1.Name = "drawingFormatArrangeRibbonPageGroup1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1,
            this.ribbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem2);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem3);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem4);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem5);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem6);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem7);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem8);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem9);
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.alignmentRibbonPageGroup1,
            this.numberRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.cellsRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            reduceOperation1.Behavior = DevExpress.XtraBars.Ribbon.ReduceOperationBehavior.UntilAvailable;
            reduceOperation1.Group = this.stylesRibbonPageGroup1;
            reduceOperation1.ItemLinkIndex = 2;
            reduceOperation1.ItemLinksCount = 0;
            reduceOperation1.Operation = DevExpress.XtraBars.Ribbon.ReduceOperationType.Gallery;
            this.homeRibbonPage1.ReduceOperations.Add(reduceOperation1);
            // 
            // clipboardRibbonPageGroup1
            // 
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem10);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem11);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem12);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem13);
            this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
            // 
            // fontRibbonPageGroup1
            // 
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup2);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup3);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // alignmentRibbonPageGroup1
            // 
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem11);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem2);
            this.alignmentRibbonPageGroup1.Name = "alignmentRibbonPageGroup1";
            // 
            // numberRibbonPageGroup1
            // 
            this.numberRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup8);
            this.numberRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup9);
            this.numberRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup10);
            this.numberRibbonPageGroup1.Name = "numberRibbonPageGroup1";
            // 
            // cellsRibbonPageGroup1
            // 
            this.cellsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem8);
            this.cellsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem9);
            this.cellsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem10);
            this.cellsRibbonPageGroup1.Name = "cellsRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem12);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem13);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem14);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem15);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem16);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // insertRibbonPage1
            // 
            this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tablesRibbonPageGroup1,
            this.illustrationsRibbonPageGroup1,
            this.chartsRibbonPageGroup1,
            this.linksRibbonPageGroup1,
            this.symbolsRibbonPageGroup1});
            this.insertRibbonPage1.Name = "insertRibbonPage1";
            // 
            // tablesRibbonPageGroup1
            // 
            this.tablesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem102);
            this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem103);
            this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
            // 
            // chartsRibbonPageGroup1
            // 
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem4);
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem5);
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem6);
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem7);
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem8);
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem9);
            this.chartsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem10);
            this.chartsRibbonPageGroup1.Name = "chartsRibbonPageGroup1";
            // 
            // linksRibbonPageGroup1
            // 
            this.linksRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem104);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // symbolsRibbonPageGroup1
            // 
            this.symbolsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem105);
            this.symbolsRibbonPageGroup1.Name = "symbolsRibbonPageGroup1";
            // 
            // pageLayoutRibbonPage1
            // 
            this.pageLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pageSetupRibbonPageGroup1,
            this.pageSetupShowRibbonPageGroup1,
            this.pageSetupPrintRibbonPageGroup1,
            this.arrangeRibbonPageGroup1});
            this.pageLayoutRibbonPage1.Name = "pageLayoutRibbonPage1";
            // 
            // pageSetupRibbonPageGroup1
            // 
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem17);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem18);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.pageSetupPaperKindItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem19);
            this.pageSetupRibbonPageGroup1.Name = "pageSetupRibbonPageGroup1";
            // 
            // pageSetupShowRibbonPageGroup1
            // 
            this.pageSetupShowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem19);
            this.pageSetupShowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem20);
            this.pageSetupShowRibbonPageGroup1.Name = "pageSetupShowRibbonPageGroup1";
            // 
            // pageSetupPrintRibbonPageGroup1
            // 
            this.pageSetupPrintRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem21);
            this.pageSetupPrintRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem22);
            this.pageSetupPrintRibbonPageGroup1.Name = "pageSetupPrintRibbonPageGroup1";
            // 
            // arrangeRibbonPageGroup1
            // 
            this.arrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem20);
            this.arrangeRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem21);
            this.arrangeRibbonPageGroup1.Name = "arrangeRibbonPageGroup1";
            // 
            // formulasRibbonPage1
            // 
            this.formulasRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.functionLibraryRibbonPageGroup1,
            this.formulaDefinedNamesRibbonPageGroup1,
            this.formulaAuditingRibbonPageGroup1,
            this.formulaCalculationRibbonPageGroup1});
            this.formulasRibbonPage1.Name = "formulasRibbonPage1";
            // 
            // functionLibraryRibbonPageGroup1
            // 
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem22);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsFinancialItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsLogicalItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsTextItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsDateAndTimeItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsLookupAndReferenceItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsMathAndTrigonometryItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem23);
            this.functionLibraryRibbonPageGroup1.Name = "functionLibraryRibbonPageGroup1";
            // 
            // formulaDefinedNamesRibbonPageGroup1
            // 
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem118);
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem119);
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.definedNameListItem1);
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem120);
            this.formulaDefinedNamesRibbonPageGroup1.Name = "formulaDefinedNamesRibbonPageGroup1";
            // 
            // formulaAuditingRibbonPageGroup1
            // 
            this.formulaAuditingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem23);
            this.formulaAuditingRibbonPageGroup1.Name = "formulaAuditingRibbonPageGroup1";
            // 
            // formulaCalculationRibbonPageGroup1
            // 
            this.formulaCalculationRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem24);
            this.formulaCalculationRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem121);
            this.formulaCalculationRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem122);
            this.formulaCalculationRibbonPageGroup1.Name = "formulaCalculationRibbonPageGroup1";
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.sortAndFilterRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            // 
            // sortAndFilterRibbonPageGroup1
            // 
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem93);
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem94);
            this.sortAndFilterRibbonPageGroup1.Name = "sortAndFilterRibbonPageGroup1";
            // 
            // reviewRibbonPage1
            // 
            this.reviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.changesRibbonPageGroup2});
            this.reviewRibbonPage1.Name = "reviewRibbonPage1";
            // 
            // changesRibbonPageGroup2
            // 
            this.changesRibbonPageGroup2.ItemLinks.Add(this.spreadsheetCommandBarButtonItem76);
            this.changesRibbonPageGroup2.ItemLinks.Add(this.spreadsheetCommandBarButtonItem123);
            this.changesRibbonPageGroup2.ItemLinks.Add(this.spreadsheetCommandBarButtonItem124);
            this.changesRibbonPageGroup2.ItemLinks.Add(this.spreadsheetCommandBarButtonItem125);
            this.changesRibbonPageGroup2.ItemLinks.Add(this.spreadsheetCommandBarButtonItem126);
            this.changesRibbonPageGroup2.Name = "changesRibbonPageGroup2";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.showRibbonPageGroup1,
            this.zoomRibbonPageGroup1,
            this.windowRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // showRibbonPageGroup1
            // 
            this.showRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem19);
            this.showRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem20);
            this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
            // 
            // zoomRibbonPageGroup1
            // 
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem127);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem128);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem129);
            this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
            // 
            // windowRibbonPageGroup1
            // 
            this.windowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem25);
            this.windowRibbonPageGroup1.Name = "windowRibbonPageGroup1";
            // 
            // commandBarGalleryDropDown2
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown2.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup41.Caption = "Gradient Fill";
            spreadsheetCommandGalleryItemGroup41.CommandName = "ConditionalFormattingDataBarsGradientFillCommandGroup";
            spreadsheetCommandGalleryItem187.Caption = "Blue Data Bar (Gradient)";
            spreadsheetCommandGalleryItem187.CommandName = "ConditionalFormattingDataBarGradientBlue";
            spreadsheetCommandGalleryItem187.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem187.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem188.Caption = "Green Data Bar (Gradient)";
            spreadsheetCommandGalleryItem188.CommandName = "ConditionalFormattingDataBarGradientGreen";
            spreadsheetCommandGalleryItem188.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem188.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem189.Caption = "Red Data Bar (Gradient)";
            spreadsheetCommandGalleryItem189.CommandName = "ConditionalFormattingDataBarGradientRed";
            spreadsheetCommandGalleryItem189.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem189.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem190.Caption = "Orange Data Bar (Gradient)";
            spreadsheetCommandGalleryItem190.CommandName = "ConditionalFormattingDataBarGradientOrange";
            spreadsheetCommandGalleryItem190.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem190.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem191.Caption = "Light Blue Data Bar (Gradient)";
            spreadsheetCommandGalleryItem191.CommandName = "ConditionalFormattingDataBarGradientLightBlue";
            spreadsheetCommandGalleryItem191.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem191.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem192.Caption = "Purple Data Bar (Gradient)";
            spreadsheetCommandGalleryItem192.CommandName = "ConditionalFormattingDataBarGradientPurple";
            spreadsheetCommandGalleryItem192.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem192.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItemGroup41.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem187,
            spreadsheetCommandGalleryItem188,
            spreadsheetCommandGalleryItem189,
            spreadsheetCommandGalleryItem190,
            spreadsheetCommandGalleryItem191,
            spreadsheetCommandGalleryItem192});
            spreadsheetCommandGalleryItemGroup42.Caption = "Solid Fill";
            spreadsheetCommandGalleryItemGroup42.CommandName = "ConditionalFormattingDataBarsSolidFillCommandGroup";
            spreadsheetCommandGalleryItem193.Caption = "Blue Data Bar (Solid)";
            spreadsheetCommandGalleryItem193.CommandName = "ConditionalFormattingDataBarSolidBlue";
            spreadsheetCommandGalleryItem193.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem193.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem194.Caption = "Green Data Bar (Solid)";
            spreadsheetCommandGalleryItem194.CommandName = "ConditionalFormattingDataBarSolidGreen";
            spreadsheetCommandGalleryItem194.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem194.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem195.Caption = "Red Data Bar (Solid)";
            spreadsheetCommandGalleryItem195.CommandName = "ConditionalFormattingDataBarSolidRed";
            spreadsheetCommandGalleryItem195.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem195.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem196.Caption = "Orange Data Bar (Solid)";
            spreadsheetCommandGalleryItem196.CommandName = "ConditionalFormattingDataBarSolidOrange";
            spreadsheetCommandGalleryItem196.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem196.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem197.Caption = "Light Blue Data Bar (Solid)";
            spreadsheetCommandGalleryItem197.CommandName = "ConditionalFormattingDataBarSolidLightBlue";
            spreadsheetCommandGalleryItem197.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem197.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem198.Caption = "Purple Data Bar (Solid)";
            spreadsheetCommandGalleryItem198.CommandName = "ConditionalFormattingDataBarSolidPurple";
            spreadsheetCommandGalleryItem198.Description = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItem198.Hint = "View a colored data bar in the cell. The length of the data bar represents the va" +
    "lue in the cell. A longer bar represents a higher value.";
            spreadsheetCommandGalleryItemGroup42.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem193,
            spreadsheetCommandGalleryItem194,
            spreadsheetCommandGalleryItem195,
            spreadsheetCommandGalleryItem196,
            spreadsheetCommandGalleryItem197,
            spreadsheetCommandGalleryItem198});
            this.commandBarGalleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup41,
            spreadsheetCommandGalleryItemGroup42});
            this.commandBarGalleryDropDown2.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown2.Manager = null;
            this.commandBarGalleryDropDown2.Name = "commandBarGalleryDropDown2";
            // 
            // commandBarGalleryDropDown1
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown1.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown1.Gallery.ColumnCount = 1;
            this.commandBarGalleryDropDown1.Gallery.DrawImageBackground = false;
            galleryItem1.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.None;
            galleryItem2.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Thin;
            galleryItem3.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Hair;
            galleryItem4.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Dotted;
            galleryItem5.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Dashed;
            galleryItem6.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.DashDot;
            galleryItem7.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.DashDotDot;
            galleryItem8.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Double;
            galleryItem9.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Medium;
            galleryItem10.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.MediumDashed;
            galleryItem11.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.MediumDashDot;
            galleryItem12.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.MediumDashDotDot;
            galleryItem13.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.SlantDashDot;
            galleryItem14.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Thick;
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9,
            galleryItem10,
            galleryItem11,
            galleryItem12,
            galleryItem13,
            galleryItem14});
            this.commandBarGalleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.commandBarGalleryDropDown1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.commandBarGalleryDropDown1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.commandBarGalleryDropDown1.Gallery.ItemSize = new System.Drawing.Size(136, 26);
            this.commandBarGalleryDropDown1.Gallery.RowCount = 14;
            this.commandBarGalleryDropDown1.Gallery.ShowGroupCaption = false;
            this.commandBarGalleryDropDown1.Gallery.ShowItemText = true;
            this.commandBarGalleryDropDown1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown1.Manager = null;
            this.commandBarGalleryDropDown1.Name = "commandBarGalleryDropDown1";
            // 
            // commandBarGalleryDropDown3
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown3.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup43.Caption = "Color Scales";
            spreadsheetCommandGalleryItemGroup43.CommandName = "ConditionalFormattingColorScalesCommandGroup";
            spreadsheetCommandGalleryItem199.Caption = "Green - Yellow - Red Color Scale";
            spreadsheetCommandGalleryItem199.CommandName = "ConditionalFormattingColorScaleGreenYellowRed";
            spreadsheetCommandGalleryItem199.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem199.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem200.Caption = "Red - Yellow - Green Color Scale";
            spreadsheetCommandGalleryItem200.CommandName = "ConditionalFormattingColorScaleRedYellowGreen";
            spreadsheetCommandGalleryItem200.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem200.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem201.Caption = "Green - White - Red Color Scale";
            spreadsheetCommandGalleryItem201.CommandName = "ConditionalFormattingColorScaleGreenWhiteRed";
            spreadsheetCommandGalleryItem201.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem201.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem202.Caption = "Red - White - Green Color Scale";
            spreadsheetCommandGalleryItem202.CommandName = "ConditionalFormattingColorScaleRedWhiteGreen";
            spreadsheetCommandGalleryItem202.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem202.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem203.Caption = "Blue - White - Red Color Scale";
            spreadsheetCommandGalleryItem203.CommandName = "ConditionalFormattingColorScaleBlueWhiteRed";
            spreadsheetCommandGalleryItem203.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem203.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem204.Caption = "Red - White - Blue Color Scale";
            spreadsheetCommandGalleryItem204.CommandName = "ConditionalFormattingColorScaleRedWhiteBlue";
            spreadsheetCommandGalleryItem204.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem204.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem205.Caption = "White - Red Color Scale";
            spreadsheetCommandGalleryItem205.CommandName = "ConditionalFormattingColorScaleWhiteRed";
            spreadsheetCommandGalleryItem205.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem205.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem206.Caption = "Red - White Color Scale";
            spreadsheetCommandGalleryItem206.CommandName = "ConditionalFormattingColorScaleRedWhite";
            spreadsheetCommandGalleryItem206.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem206.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem207.Caption = "Green - White Color Scale";
            spreadsheetCommandGalleryItem207.CommandName = "ConditionalFormattingColorScaleGreenWhite";
            spreadsheetCommandGalleryItem207.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem207.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem208.Caption = "White - Green Color Scale";
            spreadsheetCommandGalleryItem208.CommandName = "ConditionalFormattingColorScaleWhiteGreen";
            spreadsheetCommandGalleryItem208.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem208.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem209.Caption = "Green - Yellow Color Scale";
            spreadsheetCommandGalleryItem209.CommandName = "ConditionalFormattingColorScaleGreenYellow";
            spreadsheetCommandGalleryItem209.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem209.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem210.Caption = "Yellow - Green Color Scale";
            spreadsheetCommandGalleryItem210.CommandName = "ConditionalFormattingColorScaleYellowGreen";
            spreadsheetCommandGalleryItem210.Description = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItem210.Hint = "Displays a two or three color gradient in a range of cells. The shade of the colo" +
    "r represents the value in the cell.";
            spreadsheetCommandGalleryItemGroup43.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem199,
            spreadsheetCommandGalleryItem200,
            spreadsheetCommandGalleryItem201,
            spreadsheetCommandGalleryItem202,
            spreadsheetCommandGalleryItem203,
            spreadsheetCommandGalleryItem204,
            spreadsheetCommandGalleryItem205,
            spreadsheetCommandGalleryItem206,
            spreadsheetCommandGalleryItem207,
            spreadsheetCommandGalleryItem208,
            spreadsheetCommandGalleryItem209,
            spreadsheetCommandGalleryItem210});
            this.commandBarGalleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup43});
            this.commandBarGalleryDropDown3.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown3.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown3.Manager = null;
            this.commandBarGalleryDropDown3.Name = "commandBarGalleryDropDown3";
            // 
            // commandBarGalleryDropDown4
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown4.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup44.Caption = "Directional";
            spreadsheetCommandGalleryItemGroup44.CommandName = "ConditionalFormattingIconSetsDirectionalCommandGroup";
            spreadsheetCommandGalleryItem211.Caption = "3 Arrows (Colored)";
            spreadsheetCommandGalleryItem211.CommandName = "ConditionalFormattingIconSetArrows3Colored";
            spreadsheetCommandGalleryItem211.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem211.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem212.Caption = "3 Arrows (Gray)";
            spreadsheetCommandGalleryItem212.CommandName = "ConditionalFormattingIconSetArrows3Grayed";
            spreadsheetCommandGalleryItem212.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem212.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem213.Caption = "4 Arrows (Colored)";
            spreadsheetCommandGalleryItem213.CommandName = "ConditionalFormattingIconSetArrows4Colored";
            spreadsheetCommandGalleryItem213.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem213.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem214.Caption = "4 Arrows (Gray)";
            spreadsheetCommandGalleryItem214.CommandName = "ConditionalFormattingIconSetArrows4Grayed";
            spreadsheetCommandGalleryItem214.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem214.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem215.Caption = "5 Arrows (Colored)";
            spreadsheetCommandGalleryItem215.CommandName = "ConditionalFormattingIconSetArrows5Colored";
            spreadsheetCommandGalleryItem215.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem215.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem216.Caption = "5 Arrows (Gray)";
            spreadsheetCommandGalleryItem216.CommandName = "ConditionalFormattingIconSetArrows5Grayed";
            spreadsheetCommandGalleryItem216.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem216.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem217.Caption = "3 Triangles";
            spreadsheetCommandGalleryItem217.CommandName = "ConditionalFormattingIconSetTriangles3";
            spreadsheetCommandGalleryItem217.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem217.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup44.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem211,
            spreadsheetCommandGalleryItem212,
            spreadsheetCommandGalleryItem213,
            spreadsheetCommandGalleryItem214,
            spreadsheetCommandGalleryItem215,
            spreadsheetCommandGalleryItem216,
            spreadsheetCommandGalleryItem217});
            spreadsheetCommandGalleryItemGroup45.Caption = "Shapes";
            spreadsheetCommandGalleryItemGroup45.CommandName = "ConditionalFormattingIconSetsShapesCommandGroup";
            spreadsheetCommandGalleryItem218.Caption = "3 Traffic Lights ()";
            spreadsheetCommandGalleryItem218.CommandName = "ConditionalFormattingIconSetTrafficLights3";
            spreadsheetCommandGalleryItem218.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem218.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem219.Caption = "3 Traffic Lights (Rimmed)";
            spreadsheetCommandGalleryItem219.CommandName = "ConditionalFormattingIconSetTrafficLights3Rimmed";
            spreadsheetCommandGalleryItem219.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem219.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem220.Caption = "4 Traffic Lights";
            spreadsheetCommandGalleryItem220.CommandName = "ConditionalFormattingIconSetTrafficLights4";
            spreadsheetCommandGalleryItem220.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem220.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem221.Caption = "3 Signs";
            spreadsheetCommandGalleryItem221.CommandName = "ConditionalFormattingIconSetSigns3";
            spreadsheetCommandGalleryItem221.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem221.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem222.Caption = "Red To Black";
            spreadsheetCommandGalleryItem222.CommandName = "ConditionalFormattingIconSetRedToBlack";
            spreadsheetCommandGalleryItem222.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem222.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup45.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem218,
            spreadsheetCommandGalleryItem219,
            spreadsheetCommandGalleryItem220,
            spreadsheetCommandGalleryItem221,
            spreadsheetCommandGalleryItem222});
            spreadsheetCommandGalleryItemGroup46.Caption = "Indicators";
            spreadsheetCommandGalleryItemGroup46.CommandName = "ConditionalFormattingIconSetsIndicatorsCommandGroup";
            spreadsheetCommandGalleryItem223.Caption = "3 Symbols (Circled)";
            spreadsheetCommandGalleryItem223.CommandName = "ConditionalFormattingIconSetSymbols3Circled";
            spreadsheetCommandGalleryItem223.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem223.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem224.Caption = "3 Symbols (Uncircled)";
            spreadsheetCommandGalleryItem224.CommandName = "ConditionalFormattingIconSetSymbols3";
            spreadsheetCommandGalleryItem224.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem224.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem225.Caption = "3 Flags";
            spreadsheetCommandGalleryItem225.CommandName = "ConditionalFormattingIconSetFlags3";
            spreadsheetCommandGalleryItem225.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem225.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup46.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem223,
            spreadsheetCommandGalleryItem224,
            spreadsheetCommandGalleryItem225});
            spreadsheetCommandGalleryItemGroup47.Caption = "Ratings";
            spreadsheetCommandGalleryItemGroup47.CommandName = "ConditionalFormattingIconSetsRatingsCommandGroup";
            spreadsheetCommandGalleryItem226.Caption = "3 Stars";
            spreadsheetCommandGalleryItem226.CommandName = "ConditionalFormattingIconSetStars3";
            spreadsheetCommandGalleryItem226.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem226.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem227.Caption = "4 Ratings";
            spreadsheetCommandGalleryItem227.CommandName = "ConditionalFormattingIconSetRatings4";
            spreadsheetCommandGalleryItem227.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem227.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem228.Caption = "5 Ratings";
            spreadsheetCommandGalleryItem228.CommandName = "ConditionalFormattingIconSetRatings5";
            spreadsheetCommandGalleryItem228.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem228.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem229.Caption = "5 Quarters";
            spreadsheetCommandGalleryItem229.CommandName = "ConditionalFormattingIconSetQuarters5";
            spreadsheetCommandGalleryItem229.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem229.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem230.Caption = "5 Boxes";
            spreadsheetCommandGalleryItem230.CommandName = "ConditionalFormattingIconSetBoxes5";
            spreadsheetCommandGalleryItem230.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem230.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup47.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem226,
            spreadsheetCommandGalleryItem227,
            spreadsheetCommandGalleryItem228,
            spreadsheetCommandGalleryItem229,
            spreadsheetCommandGalleryItem230});
            this.commandBarGalleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup44,
            spreadsheetCommandGalleryItemGroup45,
            spreadsheetCommandGalleryItemGroup46,
            spreadsheetCommandGalleryItemGroup47});
            this.commandBarGalleryDropDown4.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown4.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown4.Manager = null;
            this.commandBarGalleryDropDown4.Name = "commandBarGalleryDropDown4";
            // 
            // commandBarGalleryDropDown5
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown5.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown5.Gallery.ColumnCount = 7;
            this.commandBarGalleryDropDown5.Gallery.DrawImageBackground = false;
            this.commandBarGalleryDropDown5.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.commandBarGalleryDropDown5.Gallery.ItemSize = new System.Drawing.Size(73, 58);
            this.commandBarGalleryDropDown5.Gallery.RowCount = 10;
            this.commandBarGalleryDropDown5.Manager = null;
            this.commandBarGalleryDropDown5.Name = "commandBarGalleryDropDown5";
            // 
            // commandBarGalleryDropDown6
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown6.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup48.Caption = "2-D Column";
            spreadsheetCommandGalleryItemGroup48.CommandName = "InsertChartColumn2DCommandGroup";
            spreadsheetCommandGalleryItem231.Caption = "Clustered Column";
            spreadsheetCommandGalleryItem231.CommandName = "InsertChartColumnClustered2D";
            spreadsheetCommandGalleryItem231.Description = "Compare values across categories by using vertical rectangles.\r\n\r\nUse it when the" +
    " order of categories is not important or for displaying item counts such as a hi" +
    "stogram.";
            spreadsheetCommandGalleryItem231.Hint = "Compare values across categories by using vertical rectangles.\r\n\r\nUse it when the" +
    " order of categories is not important or for displaying item counts such as a hi" +
    "stogram.";
            spreadsheetCommandGalleryItem232.Caption = "Stacked Column";
            spreadsheetCommandGalleryItem232.CommandName = "InsertChartColumnStacked2D";
            spreadsheetCommandGalleryItem232.Description = "Compare the contribution of each value to a total across categories by using vert" +
    "ical rectangles.\r\n\r\nUse it to emphasize the total across series for one category" +
    ".";
            spreadsheetCommandGalleryItem232.Hint = "Compare the contribution of each value to a total across categories by using vert" +
    "ical rectangles.\r\n\r\nUse it to emphasize the total across series for one category" +
    ".";
            spreadsheetCommandGalleryItem233.Caption = "100% Stacked Column";
            spreadsheetCommandGalleryItem233.CommandName = "InsertChartColumnPercentStacked2D";
            spreadsheetCommandGalleryItem233.Description = "Compare the percentage that each value contributes to a total across categories b" +
    "y using vertical rectangles.\r\n\r\nUse is to emphasize the proportion of each data " +
    "series.";
            spreadsheetCommandGalleryItem233.Hint = "Compare the percentage that each value contributes to a total across categories b" +
    "y using vertical rectangles.\r\n\r\nUse is to emphasize the proportion of each data " +
    "series.";
            spreadsheetCommandGalleryItemGroup48.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem231,
            spreadsheetCommandGalleryItem232,
            spreadsheetCommandGalleryItem233});
            spreadsheetCommandGalleryItemGroup49.Caption = "3-D Column";
            spreadsheetCommandGalleryItemGroup49.CommandName = "InsertChartColumn3DCommandGroup";
            spreadsheetCommandGalleryItem234.Caption = "3-D Clustered Column";
            spreadsheetCommandGalleryItem234.CommandName = "InsertChartColumnClustered3D";
            spreadsheetCommandGalleryItem234.Description = "Compare values across categories and display clustered columns in 3-D format.";
            spreadsheetCommandGalleryItem234.Hint = "Compare values across categories and display clustered columns in 3-D format.";
            spreadsheetCommandGalleryItem235.Caption = "Stacked Column in 3-D";
            spreadsheetCommandGalleryItem235.CommandName = "InsertChartColumnStacked3D";
            spreadsheetCommandGalleryItem235.Description = "Compare the contribution of each value to a total across categories and display s" +
    "tacked columns in 3-D format.";
            spreadsheetCommandGalleryItem235.Hint = "Compare the contribution of each value to a total across categories and display s" +
    "tacked columns in 3-D format.";
            spreadsheetCommandGalleryItem236.Caption = "100% Stacked Column in 3-D";
            spreadsheetCommandGalleryItem236.CommandName = "InsertChartColumnPercentStacked3D";
            spreadsheetCommandGalleryItem236.Description = "Compare the percentage that each value contributes to a total across categories a" +
    "nd display 100% stacked columns in 3-D format.";
            spreadsheetCommandGalleryItem236.Hint = "Compare the percentage that each value contributes to a total across categories a" +
    "nd display 100% stacked columns in 3-D format.";
            spreadsheetCommandGalleryItem237.Caption = "3-D Column";
            spreadsheetCommandGalleryItem237.CommandName = "InsertChartColumn3D";
            spreadsheetCommandGalleryItem237.Description = "Compare values across categories and across series on three axes.\r\n\r\nUse it when " +
    "the categories and series are equally important.";
            spreadsheetCommandGalleryItem237.Hint = "Compare values across categories and across series on three axes.\r\n\r\nUse it when " +
    "the categories and series are equally important.";
            spreadsheetCommandGalleryItemGroup49.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem234,
            spreadsheetCommandGalleryItem235,
            spreadsheetCommandGalleryItem236,
            spreadsheetCommandGalleryItem237});
            spreadsheetCommandGalleryItemGroup50.Caption = "Cylinder";
            spreadsheetCommandGalleryItemGroup50.CommandName = "InsertChartCylinderCommandGroup";
            spreadsheetCommandGalleryItem238.Caption = "Clustered Cylinder";
            spreadsheetCommandGalleryItem238.CommandName = "InsertChartCylinderClustered";
            spreadsheetCommandGalleryItem238.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem238.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem239.Caption = "Stacked Cylinder";
            spreadsheetCommandGalleryItem239.CommandName = "InsertChartCylinderStacked";
            spreadsheetCommandGalleryItem239.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem239.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem240.Caption = "100% Stacked Cylinder";
            spreadsheetCommandGalleryItem240.CommandName = "InsertChartCylinderPercentStacked";
            spreadsheetCommandGalleryItem240.Description = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem240.Hint = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem241.Caption = "3-D Cylinder";
            spreadsheetCommandGalleryItem241.CommandName = "InsertChartCylinder";
            spreadsheetCommandGalleryItem241.Description = "Compare values across categories and across series and display a cylinder chart o" +
    "n three axes.";
            spreadsheetCommandGalleryItem241.Hint = "Compare values across categories and across series and display a cylinder chart o" +
    "n three axes.";
            spreadsheetCommandGalleryItemGroup50.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem238,
            spreadsheetCommandGalleryItem239,
            spreadsheetCommandGalleryItem240,
            spreadsheetCommandGalleryItem241});
            spreadsheetCommandGalleryItemGroup51.Caption = "Cone";
            spreadsheetCommandGalleryItemGroup51.CommandName = "InsertChartConeCommandGroup";
            spreadsheetCommandGalleryItem242.Caption = "Clustered Cone";
            spreadsheetCommandGalleryItem242.CommandName = "InsertChartConeClustered";
            spreadsheetCommandGalleryItem242.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem242.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem243.Caption = "Stacked Cone";
            spreadsheetCommandGalleryItem243.CommandName = "InsertChartConeStacked";
            spreadsheetCommandGalleryItem243.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem243.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem244.Caption = "100% Stacked Cone";
            spreadsheetCommandGalleryItem244.CommandName = "InsertChartConePercentStacked";
            spreadsheetCommandGalleryItem244.Description = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem244.Hint = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem245.Caption = "3-D Cone";
            spreadsheetCommandGalleryItem245.CommandName = "InsertChartCone";
            spreadsheetCommandGalleryItem245.Description = "Compare values across categories and across series and display a cone chart on th" +
    "ree axes.";
            spreadsheetCommandGalleryItem245.Hint = "Compare values across categories and across series and display a cone chart on th" +
    "ree axes.";
            spreadsheetCommandGalleryItemGroup51.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem242,
            spreadsheetCommandGalleryItem243,
            spreadsheetCommandGalleryItem244,
            spreadsheetCommandGalleryItem245});
            spreadsheetCommandGalleryItemGroup52.Caption = "Pyramid";
            spreadsheetCommandGalleryItemGroup52.CommandName = "InsertChartPyramidCommandGroup";
            spreadsheetCommandGalleryItem246.Caption = "Clustered Pyramid";
            spreadsheetCommandGalleryItem246.CommandName = "InsertChartPyramidClustered";
            spreadsheetCommandGalleryItem246.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem246.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem247.Caption = "Stacked Pyramid";
            spreadsheetCommandGalleryItem247.CommandName = "InsertChartPyramidStacked";
            spreadsheetCommandGalleryItem247.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem247.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem248.Caption = "100% Stacked Pyramid";
            spreadsheetCommandGalleryItem248.CommandName = "InsertChartPyramidPercentStacked";
            spreadsheetCommandGalleryItem248.Description = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem248.Hint = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem249.Caption = "3-D Pyramid";
            spreadsheetCommandGalleryItem249.CommandName = "InsertChartPyramid";
            spreadsheetCommandGalleryItem249.Description = "Compare values across categories and across series and display a pyramid chart on" +
    " three axes.";
            spreadsheetCommandGalleryItem249.Hint = "Compare values across categories and across series and display a pyramid chart on" +
    " three axes.";
            spreadsheetCommandGalleryItemGroup52.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem246,
            spreadsheetCommandGalleryItem247,
            spreadsheetCommandGalleryItem248,
            spreadsheetCommandGalleryItem249});
            this.commandBarGalleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup48,
            spreadsheetCommandGalleryItemGroup49,
            spreadsheetCommandGalleryItemGroup50,
            spreadsheetCommandGalleryItemGroup51,
            spreadsheetCommandGalleryItemGroup52});
            this.commandBarGalleryDropDown6.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown6.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown6.Manager = null;
            this.commandBarGalleryDropDown6.Name = "commandBarGalleryDropDown6";
            // 
            // commandBarGalleryDropDown7
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown7.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup53.Caption = "2-D Line";
            spreadsheetCommandGalleryItemGroup53.CommandName = "InsertChartLine2DCommandGroup";
            spreadsheetCommandGalleryItem250.Caption = "Line";
            spreadsheetCommandGalleryItem250.CommandName = "InsertChartLine";
            spreadsheetCommandGalleryItem250.Description = "Display trend over time (dates, years) or ordered categories.\r\n\r\nUseful when ther" +
    "e are many data points and the order is important.";
            spreadsheetCommandGalleryItem250.Hint = "Display trend over time (dates, years) or ordered categories.\r\n\r\nUseful when ther" +
    "e are many data points and the order is important.";
            spreadsheetCommandGalleryItem251.Caption = "Stacked Line";
            spreadsheetCommandGalleryItem251.CommandName = "InsertChartStackedLine";
            spreadsheetCommandGalleryItem251.Description = "Display the trend of the contribution of each value over time or ordered categori" +
    "es.\r\n\r\nConsider using a stacked area chart instead.";
            spreadsheetCommandGalleryItem251.Hint = "Display the trend of the contribution of each value over time or ordered categori" +
    "es.\r\n\r\nConsider using a stacked area chart instead.";
            spreadsheetCommandGalleryItem252.Caption = "100% Stacked line";
            spreadsheetCommandGalleryItem252.CommandName = "InsertChartPercentStackedLine";
            spreadsheetCommandGalleryItem252.Description = "Display the trend of the percentage each value contributes over time or ordered c" +
    "ategories.\r\n\r\nConsider using 100% stacked area chart instead.";
            spreadsheetCommandGalleryItem252.Hint = "Display the trend of the percentage each value contributes over time or ordered c" +
    "ategories.\r\n\r\nConsider using 100% stacked area chart instead.";
            spreadsheetCommandGalleryItem253.Caption = "Line with Markers";
            spreadsheetCommandGalleryItem253.CommandName = "InsertChartLineWithMarkers";
            spreadsheetCommandGalleryItem253.Description = "Display trend over time (dates, years) or ordered categories.\r\n\r\nUseful when ther" +
    "e are only a few data points.";
            spreadsheetCommandGalleryItem253.Hint = "Display trend over time (dates, years) or ordered categories.\r\n\r\nUseful when ther" +
    "e are only a few data points.";
            spreadsheetCommandGalleryItem254.Caption = "Stacked Line with Markers";
            spreadsheetCommandGalleryItem254.CommandName = "InsertChartStackedLineWithMarkers";
            spreadsheetCommandGalleryItem254.Description = "Display the trend of the contribution of each value over time or ordered categori" +
    "es.\r\n\r\nConsider using a stacked area chart instead.";
            spreadsheetCommandGalleryItem254.Hint = "Display the trend of the contribution of each value over time or ordered categori" +
    "es.\r\n\r\nConsider using a stacked area chart instead.";
            spreadsheetCommandGalleryItem255.Caption = "100% Stacked Line with Markers";
            spreadsheetCommandGalleryItem255.CommandName = "InsertChartPercentStackedLineWithMarkers";
            spreadsheetCommandGalleryItem255.Description = "Display the trend of the percentage each value contributes over time or ordered c" +
    "ategories.\r\n\r\nConsider using 100% stacked area chart instead.";
            spreadsheetCommandGalleryItem255.Hint = "Display the trend of the percentage each value contributes over time or ordered c" +
    "ategories.\r\n\r\nConsider using 100% stacked area chart instead.";
            spreadsheetCommandGalleryItemGroup53.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem250,
            spreadsheetCommandGalleryItem251,
            spreadsheetCommandGalleryItem252,
            spreadsheetCommandGalleryItem253,
            spreadsheetCommandGalleryItem254,
            spreadsheetCommandGalleryItem255});
            spreadsheetCommandGalleryItemGroup54.Caption = "3-D Line";
            spreadsheetCommandGalleryItemGroup54.CommandName = "InsertChartLine3DCommandGroup";
            spreadsheetCommandGalleryItem256.Caption = "3-D Line";
            spreadsheetCommandGalleryItem256.CommandName = "InsertChartLine3D";
            spreadsheetCommandGalleryItem256.Description = "Display each row or column of data as a 3-D ribbon on three axes.";
            spreadsheetCommandGalleryItem256.Hint = "Display each row or column of data as a 3-D ribbon on three axes.";
            spreadsheetCommandGalleryItemGroup54.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem256});
            this.commandBarGalleryDropDown7.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup53,
            spreadsheetCommandGalleryItemGroup54});
            this.commandBarGalleryDropDown7.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown7.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown7.Manager = null;
            this.commandBarGalleryDropDown7.Name = "commandBarGalleryDropDown7";
            // 
            // commandBarGalleryDropDown8
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown8.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup55.Caption = "2-D Pie";
            spreadsheetCommandGalleryItemGroup55.CommandName = "InsertChartPie2DCommandGroup";
            spreadsheetCommandGalleryItem257.Caption = "Pie";
            spreadsheetCommandGalleryItem257.CommandName = "InsertChartPie2D";
            spreadsheetCommandGalleryItem257.Description = "Display the contribution of each value to a total.\r\n\r\nUse it when the values can " +
    "be added together or when you have only one data series and all values are posit" +
    "ive.";
            spreadsheetCommandGalleryItem257.Hint = "Display the contribution of each value to a total.\r\n\r\nUse it when the values can " +
    "be added together or when you have only one data series and all values are posit" +
    "ive.";
            spreadsheetCommandGalleryItem258.Caption = "Exploded Pie";
            spreadsheetCommandGalleryItem258.CommandName = "InsertChartPieExploded2D";
            spreadsheetCommandGalleryItem258.Description = "Display the contribution of each value to a total while emphasizing individual va" +
    "lues.\r\n\r\nConsider using a pie chart, and explode individual values instead.";
            spreadsheetCommandGalleryItem258.Hint = "Display the contribution of each value to a total while emphasizing individual va" +
    "lues.\r\n\r\nConsider using a pie chart, and explode individual values instead.";
            spreadsheetCommandGalleryItemGroup55.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem257,
            spreadsheetCommandGalleryItem258});
            spreadsheetCommandGalleryItemGroup56.Caption = "3-D Pie";
            spreadsheetCommandGalleryItemGroup56.CommandName = "InsertChartPie3DCommandGroup";
            spreadsheetCommandGalleryItem259.Caption = "Pie in 3-D";
            spreadsheetCommandGalleryItem259.CommandName = "InsertChartPie3D";
            spreadsheetCommandGalleryItem259.Description = "Display the contribution of each value to a total.";
            spreadsheetCommandGalleryItem259.Hint = "Display the contribution of each value to a total.";
            spreadsheetCommandGalleryItem260.Caption = "Exploded pie in 3-D";
            spreadsheetCommandGalleryItem260.CommandName = "InsertChartPieExploded3D";
            spreadsheetCommandGalleryItem260.Description = "Display the contribution of each value to a total while emphasizing individual va" +
    "lues.\r\n\r\nConsider using a 3-D pie chart, and explode individual values instead.";
            spreadsheetCommandGalleryItem260.Hint = "Display the contribution of each value to a total while emphasizing individual va" +
    "lues.\r\n\r\nConsider using a 3-D pie chart, and explode individual values instead.";
            spreadsheetCommandGalleryItemGroup56.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem259,
            spreadsheetCommandGalleryItem260});
            spreadsheetCommandGalleryItemGroup57.Caption = "Doughnut";
            spreadsheetCommandGalleryItemGroup57.CommandName = "InsertChartDoughnut2DCommandGroup";
            spreadsheetCommandGalleryItem261.Caption = "Doughnut";
            spreadsheetCommandGalleryItem261.CommandName = "InsertChartDoughnut2D";
            spreadsheetCommandGalleryItem261.Description = "Display the contribution of each value to a total like a pie chart, but it can co" +
    "ntain multiple series.";
            spreadsheetCommandGalleryItem261.Hint = "Display the contribution of each value to a total like a pie chart, but it can co" +
    "ntain multiple series.";
            spreadsheetCommandGalleryItem262.Caption = "Exploded Doughnut";
            spreadsheetCommandGalleryItem262.CommandName = "InsertChartDoughnutExploded2D";
            spreadsheetCommandGalleryItem262.Description = "Display the contribution of each value to a total while emphasizing individual va" +
    "lues like an exploded pie chart, but it can contain multiple series.";
            spreadsheetCommandGalleryItem262.Hint = "Display the contribution of each value to a total while emphasizing individual va" +
    "lues like an exploded pie chart, but it can contain multiple series.";
            spreadsheetCommandGalleryItemGroup57.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem261,
            spreadsheetCommandGalleryItem262});
            this.commandBarGalleryDropDown8.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup55,
            spreadsheetCommandGalleryItemGroup56,
            spreadsheetCommandGalleryItemGroup57});
            this.commandBarGalleryDropDown8.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown8.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown8.Manager = null;
            this.commandBarGalleryDropDown8.Name = "commandBarGalleryDropDown8";
            // 
            // commandBarGalleryDropDown9
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown9.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup58.Caption = "2-D Bar";
            spreadsheetCommandGalleryItemGroup58.CommandName = "InsertChartBar2DCommandGroup";
            spreadsheetCommandGalleryItem263.Caption = "Clustered Bar";
            spreadsheetCommandGalleryItem263.CommandName = "InsertChartBarClustered2D";
            spreadsheetCommandGalleryItem263.Description = "Compare values across categories using horizontal rectangles.\r\n\r\nUse it when the " +
    "values on the chart represent durations or when the category text is very long.";
            spreadsheetCommandGalleryItem263.Hint = "Compare values across categories using horizontal rectangles.\r\n\r\nUse it when the " +
    "values on the chart represent durations or when the category text is very long.";
            spreadsheetCommandGalleryItem264.Caption = "Stacked Bar";
            spreadsheetCommandGalleryItem264.CommandName = "InsertChartBarStacked2D";
            spreadsheetCommandGalleryItem264.Description = "Compare the contribution of each value to a total across categories by using hori" +
    "zontal rectangles.\r\n\r\nUse it when the values on the chart represent durations or" +
    " when the category text is very long.";
            spreadsheetCommandGalleryItem264.Hint = "Compare the contribution of each value to a total across categories by using hori" +
    "zontal rectangles.\r\n\r\nUse it when the values on the chart represent durations or" +
    " when the category text is very long.";
            spreadsheetCommandGalleryItem265.Caption = "100% Stacked Bar";
            spreadsheetCommandGalleryItem265.CommandName = "InsertChartBarPercentStacked2D";
            spreadsheetCommandGalleryItem265.Description = resources.GetString("spreadsheetCommandGalleryItem265.Description");
            spreadsheetCommandGalleryItem265.Hint = resources.GetString("spreadsheetCommandGalleryItem265.Hint");
            spreadsheetCommandGalleryItemGroup58.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem263,
            spreadsheetCommandGalleryItem264,
            spreadsheetCommandGalleryItem265});
            spreadsheetCommandGalleryItemGroup59.Caption = "3-D Bar";
            spreadsheetCommandGalleryItemGroup59.CommandName = "InsertChartBar3DCommandGroup";
            spreadsheetCommandGalleryItem266.Caption = "Clustered Bar in 3-D";
            spreadsheetCommandGalleryItem266.CommandName = "InsertChartBarClustered3D";
            spreadsheetCommandGalleryItem266.Description = "Compare values across categories and display clustered bars in 3-D format.";
            spreadsheetCommandGalleryItem266.Hint = "Compare values across categories and display clustered bars in 3-D format.";
            spreadsheetCommandGalleryItem267.Caption = "Stacked Bar in 3-D";
            spreadsheetCommandGalleryItem267.CommandName = "InsertChartBarStacked3D";
            spreadsheetCommandGalleryItem267.Description = "Compare the contribution of each value to a total across categories and display s" +
    "tacked bars in 3-D format.";
            spreadsheetCommandGalleryItem267.Hint = "Compare the contribution of each value to a total across categories and display s" +
    "tacked bars in 3-D format.";
            spreadsheetCommandGalleryItem268.Caption = "100% Stacked Bar in 3-D";
            spreadsheetCommandGalleryItem268.CommandName = "InsertChartBarPercentStacked3D";
            spreadsheetCommandGalleryItem268.Description = "Compare the percentange each value contributes to a total across categories and d" +
    "isplay 100% stacked bars in 3-D format.";
            spreadsheetCommandGalleryItem268.Hint = "Compare the percentange each value contributes to a total across categories and d" +
    "isplay 100% stacked bars in 3-D format.";
            spreadsheetCommandGalleryItemGroup59.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem266,
            spreadsheetCommandGalleryItem267,
            spreadsheetCommandGalleryItem268});
            spreadsheetCommandGalleryItemGroup60.Caption = "Cylinder";
            spreadsheetCommandGalleryItemGroup60.CommandName = "InsertChartHorizontalCylinderCommandGroup";
            spreadsheetCommandGalleryItem269.Caption = "Clustered Horizontal Cylinder";
            spreadsheetCommandGalleryItem269.CommandName = "InsertChartHorizontalCylinderClustered";
            spreadsheetCommandGalleryItem269.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem269.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem270.Caption = "Stacked Horizontal Cylinder";
            spreadsheetCommandGalleryItem270.CommandName = "InsertChartHorizontalCylinderStacked";
            spreadsheetCommandGalleryItem270.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem270.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem271.Caption = "100% Stacked Horizontal Cylinder";
            spreadsheetCommandGalleryItem271.CommandName = "InsertChartHorizontalCylinderPercentStacked";
            spreadsheetCommandGalleryItem271.Description = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem271.Hint = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItemGroup60.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem269,
            spreadsheetCommandGalleryItem270,
            spreadsheetCommandGalleryItem271});
            spreadsheetCommandGalleryItemGroup61.Caption = "Cone";
            spreadsheetCommandGalleryItemGroup61.CommandName = "InsertChartHorizontalConeCommandGroup";
            spreadsheetCommandGalleryItem272.Caption = "Clustered Horizontal Cone";
            spreadsheetCommandGalleryItem272.CommandName = "InsertChartHorizontalConeClustered";
            spreadsheetCommandGalleryItem272.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem272.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem273.Caption = "Stacked Horizontal Cone";
            spreadsheetCommandGalleryItem273.CommandName = "InsertChartHorizontalConeStacked";
            spreadsheetCommandGalleryItem273.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem273.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem274.Caption = "100% Stacked Horizontal Cone";
            spreadsheetCommandGalleryItem274.CommandName = "InsertChartHorizontalConePercentStacked";
            spreadsheetCommandGalleryItem274.Description = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem274.Hint = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItemGroup61.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem272,
            spreadsheetCommandGalleryItem273,
            spreadsheetCommandGalleryItem274});
            spreadsheetCommandGalleryItemGroup62.Caption = "Pyramid";
            spreadsheetCommandGalleryItemGroup62.CommandName = "InsertChartHorizontalPyramidCommandGroup";
            spreadsheetCommandGalleryItem275.Caption = "Clustered Horizontal Pyramid";
            spreadsheetCommandGalleryItem275.CommandName = "InsertChartHorizontalPyramidClustered";
            spreadsheetCommandGalleryItem275.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem275.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem276.Caption = "Stacked Horizontal Pyramid";
            spreadsheetCommandGalleryItem276.CommandName = "InsertChartHorizontalPyramidStacked";
            spreadsheetCommandGalleryItem276.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem276.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem277.Caption = "100% Stacked Horizontal Pyramid";
            spreadsheetCommandGalleryItem277.CommandName = "InsertChartHorizontalPyramidPercentStacked";
            spreadsheetCommandGalleryItem277.Description = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem277.Hint = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItemGroup62.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem275,
            spreadsheetCommandGalleryItem276,
            spreadsheetCommandGalleryItem277});
            this.commandBarGalleryDropDown9.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup58,
            spreadsheetCommandGalleryItemGroup59,
            spreadsheetCommandGalleryItemGroup60,
            spreadsheetCommandGalleryItemGroup61,
            spreadsheetCommandGalleryItemGroup62});
            this.commandBarGalleryDropDown9.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown9.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown9.Manager = null;
            this.commandBarGalleryDropDown9.Name = "commandBarGalleryDropDown9";
            // 
            // commandBarGalleryDropDown10
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown10.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup63.Caption = "2-D Area";
            spreadsheetCommandGalleryItemGroup63.CommandName = "InsertChartArea2DCommandGroup";
            spreadsheetCommandGalleryItem278.Caption = "Area";
            spreadsheetCommandGalleryItem278.CommandName = "InsertChartArea";
            spreadsheetCommandGalleryItem278.Description = "Display the trend of values over time or categories.";
            spreadsheetCommandGalleryItem278.Hint = "Display the trend of values over time or categories.";
            spreadsheetCommandGalleryItem279.Caption = "Stacked Area";
            spreadsheetCommandGalleryItem279.CommandName = "InsertChartStackedArea";
            spreadsheetCommandGalleryItem279.Description = "Display the trend of the contribution of each value over time or categories.\r\n\r\nU" +
    "se it to emphasize the trend in the total across series for one category.";
            spreadsheetCommandGalleryItem279.Hint = "Display the trend of the contribution of each value over time or categories.\r\n\r\nU" +
    "se it to emphasize the trend in the total across series for one category.";
            spreadsheetCommandGalleryItem280.Caption = "100% Stacked Area";
            spreadsheetCommandGalleryItem280.CommandName = "InsertChartPercentStackedArea";
            spreadsheetCommandGalleryItem280.Description = "Display the trend of the percentage each value contibutes over time or categories" +
    ".\r\n\r\nUse it to emphasize the trend in the proportion of each series.";
            spreadsheetCommandGalleryItem280.Hint = "Display the trend of the percentage each value contibutes over time or categories" +
    ".\r\n\r\nUse it to emphasize the trend in the proportion of each series.";
            spreadsheetCommandGalleryItemGroup63.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem278,
            spreadsheetCommandGalleryItem279,
            spreadsheetCommandGalleryItem280});
            spreadsheetCommandGalleryItemGroup64.Caption = "3-D Area";
            spreadsheetCommandGalleryItemGroup64.CommandName = "InsertChartArea3DCommandGroup";
            spreadsheetCommandGalleryItem281.Caption = "3-D Area";
            spreadsheetCommandGalleryItem281.CommandName = "InsertChartArea3D";
            spreadsheetCommandGalleryItem281.Description = "Display the trend of values over time or categories using areas on three axes.";
            spreadsheetCommandGalleryItem281.Hint = "Display the trend of values over time or categories using areas on three axes.";
            spreadsheetCommandGalleryItem282.Caption = "Stacked Area in 3-D";
            spreadsheetCommandGalleryItem282.CommandName = "InsertChartStackedArea3D";
            spreadsheetCommandGalleryItem282.Description = "Display the trend of the contribution of each value over time or categories by us" +
    "ing stacked areas in a 3-D format.";
            spreadsheetCommandGalleryItem282.Hint = "Display the trend of the contribution of each value over time or categories by us" +
    "ing stacked areas in a 3-D format.";
            spreadsheetCommandGalleryItem283.Caption = "100% Stacked Area in 3-D";
            spreadsheetCommandGalleryItem283.CommandName = "InsertChartPercentStackedArea3D";
            spreadsheetCommandGalleryItem283.Description = "Display the trend of the percentage each value contributes over time or categorie" +
    "s by using 100% stacked areas in 3-D format.";
            spreadsheetCommandGalleryItem283.Hint = "Display the trend of the percentage each value contributes over time or categorie" +
    "s by using 100% stacked areas in 3-D format.";
            spreadsheetCommandGalleryItemGroup64.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem281,
            spreadsheetCommandGalleryItem282,
            spreadsheetCommandGalleryItem283});
            this.commandBarGalleryDropDown10.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup63,
            spreadsheetCommandGalleryItemGroup64});
            this.commandBarGalleryDropDown10.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown10.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown10.Manager = null;
            this.commandBarGalleryDropDown10.Name = "commandBarGalleryDropDown10";
            // 
            // commandBarGalleryDropDown11
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown11.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup65.Caption = "Scatter";
            spreadsheetCommandGalleryItemGroup65.CommandName = "InsertChartScatterCommandGroup";
            spreadsheetCommandGalleryItem284.Caption = "Scatter with only Markers";
            spreadsheetCommandGalleryItem284.CommandName = "InsertChartScatterMarkers";
            spreadsheetCommandGalleryItem284.Description = "Compare pairs of values.\r\n\r\nUse is when the values are not in X-axis order or whe" +
    "n they represent separate measurements.";
            spreadsheetCommandGalleryItem284.Hint = "Compare pairs of values.\r\n\r\nUse is when the values are not in X-axis order or whe" +
    "n they represent separate measurements.";
            spreadsheetCommandGalleryItem285.Caption = "Scatter with Smooth Lines and Markers";
            spreadsheetCommandGalleryItem285.CommandName = "InsertChartScatterSmoothLinesAndMarkers";
            spreadsheetCommandGalleryItem285.Description = "Compare pairs of values.\r\n\r\nUse is when there are a few data points in X-axis ord" +
    "er and the data represents a function.";
            spreadsheetCommandGalleryItem285.Hint = "Compare pairs of values.\r\n\r\nUse is when there are a few data points in X-axis ord" +
    "er and the data represents a function.";
            spreadsheetCommandGalleryItem286.Caption = "Scatter with Smooth Lines";
            spreadsheetCommandGalleryItem286.CommandName = "InsertChartScatterSmoothLines";
            spreadsheetCommandGalleryItem286.Description = "Compare pairs of values.\r\n\r\nUse is when there are many data points in X-axis orde" +
    "r and the data represents a function.";
            spreadsheetCommandGalleryItem286.Hint = "Compare pairs of values.\r\n\r\nUse is when there are many data points in X-axis orde" +
    "r and the data represents a function.";
            spreadsheetCommandGalleryItem287.Caption = "Scatter with Straight Lines and Markers";
            spreadsheetCommandGalleryItem287.CommandName = "InsertChartScatterLinesAndMarkers";
            spreadsheetCommandGalleryItem287.Description = "Compare pairs of values.\r\n\r\nUse is when there are a few data points in X-axis ord" +
    "er and the data represents separate samples.";
            spreadsheetCommandGalleryItem287.Hint = "Compare pairs of values.\r\n\r\nUse is when there are a few data points in X-axis ord" +
    "er and the data represents separate samples.";
            spreadsheetCommandGalleryItem288.Caption = "Scatter with Straight Lines";
            spreadsheetCommandGalleryItem288.CommandName = "InsertChartScatterLines";
            spreadsheetCommandGalleryItem288.Description = "Compare pairs of values.\r\n\r\nUse is when there are many data points in X-axis orde" +
    "r and the data represents separate samples.";
            spreadsheetCommandGalleryItem288.Hint = "Compare pairs of values.\r\n\r\nUse is when there are many data points in X-axis orde" +
    "r and the data represents separate samples.";
            spreadsheetCommandGalleryItemGroup65.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem284,
            spreadsheetCommandGalleryItem285,
            spreadsheetCommandGalleryItem286,
            spreadsheetCommandGalleryItem287,
            spreadsheetCommandGalleryItem288});
            spreadsheetCommandGalleryItemGroup66.Caption = "Bubble";
            spreadsheetCommandGalleryItemGroup66.CommandName = "InsertChartBubbleCommandGroup";
            spreadsheetCommandGalleryItem289.Caption = "Bubble";
            spreadsheetCommandGalleryItem289.CommandName = "InsertChartBubble";
            spreadsheetCommandGalleryItem289.Description = "Resembles a scatter chart, but compares sets of three values instead of two. The " +
    "third value determines the size of the bubble marker.";
            spreadsheetCommandGalleryItem289.Hint = "Resembles a scatter chart, but compares sets of three values instead of two. The " +
    "third value determines the size of the bubble marker.";
            spreadsheetCommandGalleryItem290.Caption = "Bubble with a 3-D effect";
            spreadsheetCommandGalleryItem290.CommandName = "InsertChartBubble3D";
            spreadsheetCommandGalleryItem290.Description = "Resembles a scatter chart, but compares sets of three values instead of two. The " +
    "third value determines the size of the bubble marker, which is displayed with a " +
    "3-D effect.";
            spreadsheetCommandGalleryItem290.Hint = "Resembles a scatter chart, but compares sets of three values instead of two. The " +
    "third value determines the size of the bubble marker, which is displayed with a " +
    "3-D effect.";
            spreadsheetCommandGalleryItemGroup66.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem289,
            spreadsheetCommandGalleryItem290});
            this.commandBarGalleryDropDown11.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup65,
            spreadsheetCommandGalleryItemGroup66});
            this.commandBarGalleryDropDown11.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown11.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown11.Manager = null;
            this.commandBarGalleryDropDown11.Name = "commandBarGalleryDropDown11";
            // 
            // commandBarGalleryDropDown12
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown12.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup67.Caption = "Stock";
            spreadsheetCommandGalleryItemGroup67.CommandName = "InsertChartStockCommandGroup";
            spreadsheetCommandGalleryItem291.Caption = "High-Low-Close";
            spreadsheetCommandGalleryItem291.CommandName = "InsertChartStockHighLowClose";
            spreadsheetCommandGalleryItem291.Description = "Requires three series of values in order High, Low and Close.";
            spreadsheetCommandGalleryItem291.Hint = "Requires three series of values in order High, Low and Close.";
            spreadsheetCommandGalleryItem292.Caption = "Open-High-Low-Close";
            spreadsheetCommandGalleryItem292.CommandName = "InsertChartStockOpenHighLowClose";
            spreadsheetCommandGalleryItem292.Description = "Requires four series of values in order Open, High, Low and Close.";
            spreadsheetCommandGalleryItem292.Hint = "Requires four series of values in order Open, High, Low and Close.";
            spreadsheetCommandGalleryItem293.Caption = "Volume-High-Low-Close";
            spreadsheetCommandGalleryItem293.CommandName = "InsertChartStockVolumeHighLowClose";
            spreadsheetCommandGalleryItem293.Description = "Requires four series of values in order Volume, High, Low and Close.";
            spreadsheetCommandGalleryItem293.Hint = "Requires four series of values in order Volume, High, Low and Close.";
            spreadsheetCommandGalleryItem294.Caption = "Volume-Open-High-Low-Close";
            spreadsheetCommandGalleryItem294.CommandName = "InsertChartStockVolumeOpenHighLowClose";
            spreadsheetCommandGalleryItem294.Description = "Requires five series of values in order Volume, Open, High, Low and Close.";
            spreadsheetCommandGalleryItem294.Hint = "Requires five series of values in order Volume, Open, High, Low and Close.";
            spreadsheetCommandGalleryItemGroup67.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem291,
            spreadsheetCommandGalleryItem292,
            spreadsheetCommandGalleryItem293,
            spreadsheetCommandGalleryItem294});
            spreadsheetCommandGalleryItemGroup68.Caption = "Radar";
            spreadsheetCommandGalleryItemGroup68.CommandName = "InsertChartRadarCommandGroup";
            spreadsheetCommandGalleryItem295.Caption = "Radar";
            spreadsheetCommandGalleryItem295.CommandName = "InsertChartRadar";
            spreadsheetCommandGalleryItem295.Description = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem295.Hint = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem296.Caption = "Radar with Markers";
            spreadsheetCommandGalleryItem296.CommandName = "InsertChartRadarWithMarkers";
            spreadsheetCommandGalleryItem296.Description = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem296.Hint = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem297.Caption = "Filled Radar";
            spreadsheetCommandGalleryItem297.CommandName = "InsertChartRadarFilled";
            spreadsheetCommandGalleryItem297.Description = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable and there is only one series.";
            spreadsheetCommandGalleryItem297.Hint = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable and there is only one series.";
            spreadsheetCommandGalleryItemGroup68.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem295,
            spreadsheetCommandGalleryItem296,
            spreadsheetCommandGalleryItem297});
            this.commandBarGalleryDropDown12.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup67,
            spreadsheetCommandGalleryItemGroup68});
            this.commandBarGalleryDropDown12.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown12.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown12.Manager = null;
            this.commandBarGalleryDropDown12.Name = "commandBarGalleryDropDown12";
            // 
            // commandBarGalleryDropDown13
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown13.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown13.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup69.Caption = "Chart Title";
            spreadsheetCommandGalleryItemGroup69.CommandName = "ChartTitleCommandGroup";
            spreadsheetCommandGalleryItem298.Caption = "None";
            spreadsheetCommandGalleryItem298.CommandName = "ChartTitleNone";
            spreadsheetCommandGalleryItem298.Description = "Do not display a chart Title";
            spreadsheetCommandGalleryItem298.Hint = "Do not display a chart Title";
            spreadsheetCommandGalleryItem299.Caption = "Centered Overlay Title";
            spreadsheetCommandGalleryItem299.CommandName = "ChartTitleCenteredOverlay";
            spreadsheetCommandGalleryItem299.Description = "Overlay centered Title on chart without resizing chart";
            spreadsheetCommandGalleryItem299.Hint = "Overlay centered Title on chart without resizing chart";
            spreadsheetCommandGalleryItem300.Caption = "Above Chart";
            spreadsheetCommandGalleryItem300.CommandName = "ChartTitleAbove";
            spreadsheetCommandGalleryItem300.Description = "Display Title at top of chart area and resize chart";
            spreadsheetCommandGalleryItem300.Hint = "Display Title at top of chart area and resize chart";
            spreadsheetCommandGalleryItemGroup69.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem298,
            spreadsheetCommandGalleryItem299,
            spreadsheetCommandGalleryItem300});
            this.commandBarGalleryDropDown13.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup69});
            this.commandBarGalleryDropDown13.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown13.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown13.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown13.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown13.Manager = null;
            this.commandBarGalleryDropDown13.Name = "commandBarGalleryDropDown13";
            // 
            // commandBarGalleryDropDown14
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown14.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown14.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup70.Caption = "Primary Horizontal Axis Title";
            spreadsheetCommandGalleryItemGroup70.CommandName = "ChartPrimaryHorizontalAxisTitleCommandGroup";
            spreadsheetCommandGalleryItem301.Caption = "None";
            spreadsheetCommandGalleryItem301.CommandName = "ChartPrimaryHorizontalAxisTitleNone";
            spreadsheetCommandGalleryItem301.Description = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem301.Hint = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem302.Caption = "Title Below Axis";
            spreadsheetCommandGalleryItem302.CommandName = "ChartPrimaryHorizontalAxisTitleBelow";
            spreadsheetCommandGalleryItem302.Description = "Display Title below Horizontal Axis and resize chart";
            spreadsheetCommandGalleryItem302.Hint = "Display Title below Horizontal Axis and resize chart";
            spreadsheetCommandGalleryItemGroup70.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem301,
            spreadsheetCommandGalleryItem302});
            this.commandBarGalleryDropDown14.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup70});
            this.commandBarGalleryDropDown14.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown14.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown14.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown14.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown14.Manager = null;
            this.commandBarGalleryDropDown14.Name = "commandBarGalleryDropDown14";
            // 
            // commandBarGalleryDropDown15
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown15.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown15.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup71.Caption = "Primary Vertical Axis Title";
            spreadsheetCommandGalleryItemGroup71.CommandName = "ChartPrimaryVerticalAxisTitleCommandGroup";
            spreadsheetCommandGalleryItem303.Caption = "None";
            spreadsheetCommandGalleryItem303.CommandName = "ChartPrimaryVerticalAxisTitleNone";
            spreadsheetCommandGalleryItem303.Description = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem303.Hint = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem304.Caption = "Rotated Title";
            spreadsheetCommandGalleryItem304.CommandName = "ChartPrimaryVerticalAxisTitleRotated";
            spreadsheetCommandGalleryItem304.Description = "Display Rotated Axis Title and resize chart";
            spreadsheetCommandGalleryItem304.Hint = "Display Rotated Axis Title and resize chart";
            spreadsheetCommandGalleryItem305.Caption = "Vertical Title";
            spreadsheetCommandGalleryItem305.CommandName = "ChartPrimaryVerticalAxisTitleVertical";
            spreadsheetCommandGalleryItem305.Description = "Display Axis Title with vertical text and resize chart";
            spreadsheetCommandGalleryItem305.Hint = "Display Axis Title with vertical text and resize chart";
            spreadsheetCommandGalleryItem306.Caption = "Horizontal Title";
            spreadsheetCommandGalleryItem306.CommandName = "ChartPrimaryVerticalAxisTitleHorizontal";
            spreadsheetCommandGalleryItem306.Description = "Display Axis Title horizontally and resize chart";
            spreadsheetCommandGalleryItem306.Hint = "Display Axis Title horizontally and resize chart";
            spreadsheetCommandGalleryItemGroup71.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem303,
            spreadsheetCommandGalleryItem304,
            spreadsheetCommandGalleryItem305,
            spreadsheetCommandGalleryItem306});
            this.commandBarGalleryDropDown15.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup71});
            this.commandBarGalleryDropDown15.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown15.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown15.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown15.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown15.Manager = null;
            this.commandBarGalleryDropDown15.Name = "commandBarGalleryDropDown15";
            // 
            // commandBarGalleryDropDown16
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown16.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown16.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup72.Caption = "Legend";
            spreadsheetCommandGalleryItemGroup72.CommandName = "ChartLegendCommandGroup";
            spreadsheetCommandGalleryItem307.Caption = "None";
            spreadsheetCommandGalleryItem307.CommandName = "ChartLegendNone";
            spreadsheetCommandGalleryItem307.Description = "Turn off Legend";
            spreadsheetCommandGalleryItem307.Hint = "Turn off Legend";
            spreadsheetCommandGalleryItem308.Caption = "Show Legend at Right";
            spreadsheetCommandGalleryItem308.CommandName = "ChartLegendAtRight";
            spreadsheetCommandGalleryItem308.Description = "Show Legend and align right";
            spreadsheetCommandGalleryItem308.Hint = "Show Legend and align right";
            spreadsheetCommandGalleryItem309.Caption = "Show Legend at Top";
            spreadsheetCommandGalleryItem309.CommandName = "ChartLegendAtTop";
            spreadsheetCommandGalleryItem309.Description = "Show Legend and align top";
            spreadsheetCommandGalleryItem309.Hint = "Show Legend and align top";
            spreadsheetCommandGalleryItem310.Caption = "Show Legend at Left";
            spreadsheetCommandGalleryItem310.CommandName = "ChartLegendAtLeft";
            spreadsheetCommandGalleryItem310.Description = "Show Legend and align left";
            spreadsheetCommandGalleryItem310.Hint = "Show Legend and align left";
            spreadsheetCommandGalleryItem311.Caption = "Show Legend at Bottom";
            spreadsheetCommandGalleryItem311.CommandName = "ChartLegendAtBottom";
            spreadsheetCommandGalleryItem311.Description = "Show Legend and align bottom";
            spreadsheetCommandGalleryItem311.Hint = "Show Legend and align bottom";
            spreadsheetCommandGalleryItem312.Caption = "Overlay Legend at Right";
            spreadsheetCommandGalleryItem312.CommandName = "ChartLegendOverlayAtRight";
            spreadsheetCommandGalleryItem312.Description = "Show Legend at right of the chart without resizing";
            spreadsheetCommandGalleryItem312.Hint = "Show Legend at right of the chart without resizing";
            spreadsheetCommandGalleryItem313.Caption = "Overlay Legend at Left";
            spreadsheetCommandGalleryItem313.CommandName = "ChartLegendOverlayAtLeft";
            spreadsheetCommandGalleryItem313.Description = "Show Legend at left of the chart without resizing";
            spreadsheetCommandGalleryItem313.Hint = "Show Legend at left of the chart without resizing";
            spreadsheetCommandGalleryItemGroup72.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem307,
            spreadsheetCommandGalleryItem308,
            spreadsheetCommandGalleryItem309,
            spreadsheetCommandGalleryItem310,
            spreadsheetCommandGalleryItem311,
            spreadsheetCommandGalleryItem312,
            spreadsheetCommandGalleryItem313});
            this.commandBarGalleryDropDown16.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup72});
            this.commandBarGalleryDropDown16.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown16.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown16.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown16.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown16.Manager = null;
            this.commandBarGalleryDropDown16.Name = "commandBarGalleryDropDown16";
            // 
            // commandBarGalleryDropDown17
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown17.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown17.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup73.Caption = "Data Labels";
            spreadsheetCommandGalleryItemGroup73.CommandName = "ChartDataLabelsCommandGroup";
            spreadsheetCommandGalleryItem314.Caption = "None";
            spreadsheetCommandGalleryItem314.CommandName = "ChartDataLabelsNone";
            spreadsheetCommandGalleryItem314.Description = "Turn off Data Labels for selection";
            spreadsheetCommandGalleryItem314.Hint = "Turn off Data Labels for selection";
            spreadsheetCommandGalleryItem315.Caption = "Show";
            spreadsheetCommandGalleryItem315.CommandName = "ChartDataLabelsDefault";
            spreadsheetCommandGalleryItem315.Description = "Turn on Data Labels for selection";
            spreadsheetCommandGalleryItem315.Hint = "Turn on Data Labels for selection";
            spreadsheetCommandGalleryItem316.Caption = "Center";
            spreadsheetCommandGalleryItem316.CommandName = "ChartDataLabelsCenter";
            spreadsheetCommandGalleryItem316.Description = "Display Data Labels and position centered on the data point(s)";
            spreadsheetCommandGalleryItem316.Hint = "Display Data Labels and position centered on the data point(s)";
            spreadsheetCommandGalleryItem317.Caption = "Inside End";
            spreadsheetCommandGalleryItem317.CommandName = "ChartDataLabelsInsideEnd";
            spreadsheetCommandGalleryItem317.Description = "Display Data Labels and position inside the end of data point(s)";
            spreadsheetCommandGalleryItem317.Hint = "Display Data Labels and position inside the end of data point(s)";
            spreadsheetCommandGalleryItem318.Caption = "Inside Base";
            spreadsheetCommandGalleryItem318.CommandName = "ChartDataLabelsInsideBase";
            spreadsheetCommandGalleryItem318.Description = "Display Data Labels and position inside the base of data point(s)";
            spreadsheetCommandGalleryItem318.Hint = "Display Data Labels and position inside the base of data point(s)";
            spreadsheetCommandGalleryItem319.Caption = "Outside End";
            spreadsheetCommandGalleryItem319.CommandName = "ChartDataLabelsOutsideEnd";
            spreadsheetCommandGalleryItem319.Description = "Display Data Labels and position outside the end of data point(s)";
            spreadsheetCommandGalleryItem319.Hint = "Display Data Labels and position outside the end of data point(s)";
            spreadsheetCommandGalleryItem320.Caption = "Best Fit";
            spreadsheetCommandGalleryItem320.CommandName = "ChartDataLabelsBestFit";
            spreadsheetCommandGalleryItem320.Description = "Display Data Labels and position with Best Fit";
            spreadsheetCommandGalleryItem320.Hint = "Display Data Labels and position with Best Fit";
            spreadsheetCommandGalleryItem321.Caption = "Left";
            spreadsheetCommandGalleryItem321.CommandName = "ChartDataLabelsLeft";
            spreadsheetCommandGalleryItem321.Description = "Display Data Labels and position left of the data point(s)";
            spreadsheetCommandGalleryItem321.Hint = "Display Data Labels and position left of the data point(s)";
            spreadsheetCommandGalleryItem322.Caption = "Right";
            spreadsheetCommandGalleryItem322.CommandName = "ChartDataLabelsRight";
            spreadsheetCommandGalleryItem322.Description = "Display Data Labels and position right of the data point(s)";
            spreadsheetCommandGalleryItem322.Hint = "Display Data Labels and position right of the data point(s)";
            spreadsheetCommandGalleryItem323.Caption = "Above";
            spreadsheetCommandGalleryItem323.CommandName = "ChartDataLabelsAbove";
            spreadsheetCommandGalleryItem323.Description = "Display Data Labels and position above data point(s)";
            spreadsheetCommandGalleryItem323.Hint = "Display Data Labels and position above data point(s)";
            spreadsheetCommandGalleryItem324.Caption = "Below";
            spreadsheetCommandGalleryItem324.CommandName = "ChartDataLabelsBelow";
            spreadsheetCommandGalleryItem324.Description = "Display Data Labels and position below data point(s)";
            spreadsheetCommandGalleryItem324.Hint = "Display Data Labels and position below data point(s)";
            spreadsheetCommandGalleryItemGroup73.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem314,
            spreadsheetCommandGalleryItem315,
            spreadsheetCommandGalleryItem316,
            spreadsheetCommandGalleryItem317,
            spreadsheetCommandGalleryItem318,
            spreadsheetCommandGalleryItem319,
            spreadsheetCommandGalleryItem320,
            spreadsheetCommandGalleryItem321,
            spreadsheetCommandGalleryItem322,
            spreadsheetCommandGalleryItem323,
            spreadsheetCommandGalleryItem324});
            this.commandBarGalleryDropDown17.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup73});
            this.commandBarGalleryDropDown17.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown17.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown17.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown17.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown17.Manager = null;
            this.commandBarGalleryDropDown17.Name = "commandBarGalleryDropDown17";
            // 
            // commandBarGalleryDropDown18
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown18.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown18.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup74.Caption = "Primary Horizontal Axis";
            spreadsheetCommandGalleryItemGroup74.CommandName = "ChartPrimaryHorizontalAxisCommandGroup";
            spreadsheetCommandGalleryItem325.Caption = "None";
            spreadsheetCommandGalleryItem325.CommandName = "ChartHidePrimaryHorizontalAxis";
            spreadsheetCommandGalleryItem325.Description = "Do not display axis.";
            spreadsheetCommandGalleryItem325.Hint = "Do not display axis.";
            spreadsheetCommandGalleryItem326.Caption = "Show Left to Right Axis";
            spreadsheetCommandGalleryItem326.CommandName = "ChartPrimaryHorizontalAxisLeftToRight";
            spreadsheetCommandGalleryItem326.Description = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem326.Hint = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem327.Caption = "Show Axis without Labeling";
            spreadsheetCommandGalleryItem327.CommandName = "ChartPrimaryHorizontalAxisHideLabels";
            spreadsheetCommandGalleryItem327.Description = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem327.Hint = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem328.Caption = "Show Right to Left Axis";
            spreadsheetCommandGalleryItem328.CommandName = "ChartPrimaryHorizontalAxisRightToLeft";
            spreadsheetCommandGalleryItem328.Description = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem328.Hint = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem329.Caption = "Show Default Axis";
            spreadsheetCommandGalleryItem329.CommandName = "ChartPrimaryHorizontalAxisDefault";
            spreadsheetCommandGalleryItem329.Description = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem329.Hint = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem330.Caption = "Show Axis in Thousands";
            spreadsheetCommandGalleryItem330.CommandName = "ChartPrimaryHorizontalAxisScaleThousands";
            spreadsheetCommandGalleryItem330.Description = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem330.Hint = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem331.Caption = "Show Axis in Millions";
            spreadsheetCommandGalleryItem331.CommandName = "ChartPrimaryHorizontalAxisScaleMillions";
            spreadsheetCommandGalleryItem331.Description = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem331.Hint = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem332.Caption = "Show Axis in Billions";
            spreadsheetCommandGalleryItem332.CommandName = "ChartPrimaryHorizontalAxisScaleBillions";
            spreadsheetCommandGalleryItem332.Description = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem332.Hint = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem333.Caption = "Show Axis in Log Scale";
            spreadsheetCommandGalleryItem333.CommandName = "ChartPrimaryHorizontalAxisScaleLogarithm";
            spreadsheetCommandGalleryItem333.Description = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItem333.Hint = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItemGroup74.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem325,
            spreadsheetCommandGalleryItem326,
            spreadsheetCommandGalleryItem327,
            spreadsheetCommandGalleryItem328,
            spreadsheetCommandGalleryItem329,
            spreadsheetCommandGalleryItem330,
            spreadsheetCommandGalleryItem331,
            spreadsheetCommandGalleryItem332,
            spreadsheetCommandGalleryItem333});
            this.commandBarGalleryDropDown18.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup74});
            this.commandBarGalleryDropDown18.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown18.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown18.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown18.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown18.Manager = null;
            this.commandBarGalleryDropDown18.Name = "commandBarGalleryDropDown18";
            // 
            // commandBarGalleryDropDown19
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown19.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown19.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup75.Caption = "Primary Vertical Axis";
            spreadsheetCommandGalleryItemGroup75.CommandName = "ChartPrimaryVerticalAxisCommandGroup";
            spreadsheetCommandGalleryItem334.Caption = "None";
            spreadsheetCommandGalleryItem334.CommandName = "ChartHidePrimaryVerticalAxis";
            spreadsheetCommandGalleryItem334.Description = "Do not display axis.";
            spreadsheetCommandGalleryItem334.Hint = "Do not display axis.";
            spreadsheetCommandGalleryItem335.Caption = "Show Left to Right Axis";
            spreadsheetCommandGalleryItem335.CommandName = "ChartPrimaryVerticalAxisLeftToRight";
            spreadsheetCommandGalleryItem335.Description = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem335.Hint = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem336.Caption = "Show Axis without Labeling";
            spreadsheetCommandGalleryItem336.CommandName = "ChartPrimaryVerticalAxisHideLabels";
            spreadsheetCommandGalleryItem336.Description = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem336.Hint = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem337.Caption = "Show Right to Left Axis";
            spreadsheetCommandGalleryItem337.CommandName = "ChartPrimaryVerticalAxisRightToLeft";
            spreadsheetCommandGalleryItem337.Description = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem337.Hint = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem338.Caption = "Show Default Axis";
            spreadsheetCommandGalleryItem338.CommandName = "ChartPrimaryVerticalAxisDefault";
            spreadsheetCommandGalleryItem338.Description = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem338.Hint = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem339.Caption = "Show Axis in Thousands";
            spreadsheetCommandGalleryItem339.CommandName = "ChartPrimaryVerticalAxisScaleThousands";
            spreadsheetCommandGalleryItem339.Description = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem339.Hint = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem340.Caption = "Show Axis in Millions";
            spreadsheetCommandGalleryItem340.CommandName = "ChartPrimaryVerticalAxisScaleMillions";
            spreadsheetCommandGalleryItem340.Description = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem340.Hint = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem341.Caption = "Show Axis in Billions";
            spreadsheetCommandGalleryItem341.CommandName = "ChartPrimaryVerticalAxisScaleBillions";
            spreadsheetCommandGalleryItem341.Description = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem341.Hint = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem342.Caption = "Show Axis in Log Scale";
            spreadsheetCommandGalleryItem342.CommandName = "ChartPrimaryVerticalAxisScaleLogarithm";
            spreadsheetCommandGalleryItem342.Description = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItem342.Hint = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItemGroup75.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem334,
            spreadsheetCommandGalleryItem335,
            spreadsheetCommandGalleryItem336,
            spreadsheetCommandGalleryItem337,
            spreadsheetCommandGalleryItem338,
            spreadsheetCommandGalleryItem339,
            spreadsheetCommandGalleryItem340,
            spreadsheetCommandGalleryItem341,
            spreadsheetCommandGalleryItem342});
            this.commandBarGalleryDropDown19.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup75});
            this.commandBarGalleryDropDown19.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown19.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown19.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown19.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown19.Manager = null;
            this.commandBarGalleryDropDown19.Name = "commandBarGalleryDropDown19";
            // 
            // commandBarGalleryDropDown20
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown20.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown20.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup76.Caption = "Primary Horizontal Gridlines";
            spreadsheetCommandGalleryItemGroup76.CommandName = "ChartPrimaryHorizontalGridlinesCommandGroup";
            spreadsheetCommandGalleryItem343.Caption = "None";
            spreadsheetCommandGalleryItem343.CommandName = "ChartPrimaryHorizontalGridlinesNone";
            spreadsheetCommandGalleryItem343.Description = "Do not display Horizontal Gridlines";
            spreadsheetCommandGalleryItem343.Hint = "Do not display Horizontal Gridlines";
            spreadsheetCommandGalleryItem344.Caption = "Major Gridlines";
            spreadsheetCommandGalleryItem344.CommandName = "ChartPrimaryHorizontalGridlinesMajor";
            spreadsheetCommandGalleryItem344.Description = "Display Horizontal Gridlines for Major units";
            spreadsheetCommandGalleryItem344.Hint = "Display Horizontal Gridlines for Major units";
            spreadsheetCommandGalleryItem345.Caption = "Minor Gridlines";
            spreadsheetCommandGalleryItem345.CommandName = "ChartPrimaryHorizontalGridlinesMinor";
            spreadsheetCommandGalleryItem345.Description = "Display Horizontal Gridlines for Minor units";
            spreadsheetCommandGalleryItem345.Hint = "Display Horizontal Gridlines for Minor units";
            spreadsheetCommandGalleryItem346.Caption = "Major & Minor Gridlines";
            spreadsheetCommandGalleryItem346.CommandName = "ChartPrimaryHorizontalGridlinesMajorAndMinor";
            spreadsheetCommandGalleryItem346.Description = "Display Horizontal Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItem346.Hint = "Display Horizontal Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItemGroup76.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem343,
            spreadsheetCommandGalleryItem344,
            spreadsheetCommandGalleryItem345,
            spreadsheetCommandGalleryItem346});
            this.commandBarGalleryDropDown20.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup76});
            this.commandBarGalleryDropDown20.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown20.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown20.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown20.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown20.Manager = null;
            this.commandBarGalleryDropDown20.Name = "commandBarGalleryDropDown20";
            // 
            // commandBarGalleryDropDown21
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown21.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown21.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup77.Caption = "Primary Vertical Gridlines";
            spreadsheetCommandGalleryItemGroup77.CommandName = "ChartPrimaryVerticalGridlinesCommandGroup";
            spreadsheetCommandGalleryItem347.Caption = "None";
            spreadsheetCommandGalleryItem347.CommandName = "ChartPrimaryVerticalGridlinesNone";
            spreadsheetCommandGalleryItem347.Description = "Do not display Vertical Gridlines";
            spreadsheetCommandGalleryItem347.Hint = "Do not display Vertical Gridlines";
            spreadsheetCommandGalleryItem348.Caption = "Major Gridlines";
            spreadsheetCommandGalleryItem348.CommandName = "ChartPrimaryVerticalGridlinesMajor";
            spreadsheetCommandGalleryItem348.Description = "Display Vertical Gridlines for Major units";
            spreadsheetCommandGalleryItem348.Hint = "Display Vertical Gridlines for Major units";
            spreadsheetCommandGalleryItem349.Caption = "Minor Gridlines";
            spreadsheetCommandGalleryItem349.CommandName = "ChartPrimaryVerticalGridlinesMinor";
            spreadsheetCommandGalleryItem349.Description = "Display Vertical Gridlines for Minor units";
            spreadsheetCommandGalleryItem349.Hint = "Display Vertical Gridlines for Minor units";
            spreadsheetCommandGalleryItem350.Caption = "Major & Minor Gridlines";
            spreadsheetCommandGalleryItem350.CommandName = "ChartPrimaryVerticalGridlinesMajorAndMinor";
            spreadsheetCommandGalleryItem350.Description = "Display Vertical Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItem350.Hint = "Display Vertical Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItemGroup77.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem347,
            spreadsheetCommandGalleryItem348,
            spreadsheetCommandGalleryItem349,
            spreadsheetCommandGalleryItem350});
            this.commandBarGalleryDropDown21.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup77});
            this.commandBarGalleryDropDown21.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown21.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown21.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown21.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown21.Manager = null;
            this.commandBarGalleryDropDown21.Name = "commandBarGalleryDropDown21";
            // 
            // commandBarGalleryDropDown22
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown22.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown22.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup78.Caption = "Lines";
            spreadsheetCommandGalleryItemGroup78.CommandName = "ChartLinesCommandGroup";
            spreadsheetCommandGalleryItem351.Caption = "None";
            spreadsheetCommandGalleryItem351.CommandName = "ChartLinesNone";
            spreadsheetCommandGalleryItem351.Description = "Do not show Drop Lines, High-Low Lines or Series Lines";
            spreadsheetCommandGalleryItem351.Hint = "Do not show Drop Lines, High-Low Lines or Series Lines";
            spreadsheetCommandGalleryItem352.Caption = "Drop Lines";
            spreadsheetCommandGalleryItem352.CommandName = "ChartShowDropLines";
            spreadsheetCommandGalleryItem352.Description = "Show Drop Lines on an Area or Line Chart";
            spreadsheetCommandGalleryItem352.Hint = "Show Drop Lines on an Area or Line Chart";
            spreadsheetCommandGalleryItem353.Caption = "High-Low Lines";
            spreadsheetCommandGalleryItem353.CommandName = "ChartShowHighLowLines";
            spreadsheetCommandGalleryItem353.Description = "Show High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem353.Hint = "Show High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem354.Caption = "Drop and High-Low Lines";
            spreadsheetCommandGalleryItem354.CommandName = "ChartShowDropLinesAndHighLowLines";
            spreadsheetCommandGalleryItem354.Description = "Show Drop Lines and High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem354.Hint = "Show Drop Lines and High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem355.Caption = "Series Lines";
            spreadsheetCommandGalleryItem355.CommandName = "ChartShowSeriesLines";
            spreadsheetCommandGalleryItem355.Description = "Show Series Lines on a 2D stacked Bar/Column Pie or Pie or Bar of Pie Chart";
            spreadsheetCommandGalleryItem355.Hint = "Show Series Lines on a 2D stacked Bar/Column Pie or Pie or Bar of Pie Chart";
            spreadsheetCommandGalleryItemGroup78.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem351,
            spreadsheetCommandGalleryItem352,
            spreadsheetCommandGalleryItem353,
            spreadsheetCommandGalleryItem354,
            spreadsheetCommandGalleryItem355});
            this.commandBarGalleryDropDown22.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup78});
            this.commandBarGalleryDropDown22.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown22.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown22.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown22.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown22.Manager = null;
            this.commandBarGalleryDropDown22.Name = "commandBarGalleryDropDown22";
            // 
            // commandBarGalleryDropDown23
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown23.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown23.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup79.Caption = "Up/Down Bars";
            spreadsheetCommandGalleryItemGroup79.CommandName = "ChartUpDownBarsCommandGroup";
            spreadsheetCommandGalleryItem356.Caption = "None";
            spreadsheetCommandGalleryItem356.CommandName = "ChartHideUpDownBars";
            spreadsheetCommandGalleryItem356.Description = "Do not show Up/Down Bars";
            spreadsheetCommandGalleryItem356.Hint = "Do not show Up/Down Bars";
            spreadsheetCommandGalleryItem357.Caption = "Up/Down Bars";
            spreadsheetCommandGalleryItem357.CommandName = "ChartShowUpDownBars";
            spreadsheetCommandGalleryItem357.Description = "Show Up/Down Bars on a Line Chart";
            spreadsheetCommandGalleryItem357.Hint = "Show Up/Down Bars on a Line Chart";
            spreadsheetCommandGalleryItemGroup79.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem356,
            spreadsheetCommandGalleryItem357});
            this.commandBarGalleryDropDown23.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup79});
            this.commandBarGalleryDropDown23.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown23.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown23.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown23.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown23.Manager = null;
            this.commandBarGalleryDropDown23.Name = "commandBarGalleryDropDown23";
            // 
            // commandBarGalleryDropDown24
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown24.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown24.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup80.Caption = "Error Bars";
            spreadsheetCommandGalleryItemGroup80.CommandName = "ChartErrorBarsCommandGroup";
            spreadsheetCommandGalleryItem358.Caption = "None";
            spreadsheetCommandGalleryItem358.CommandName = "ChartErrorBarsNone";
            spreadsheetCommandGalleryItem358.Description = "Removes the Error Bars for the selected series or all Error Bars if none are sele" +
    "cted";
            spreadsheetCommandGalleryItem358.Hint = "Removes the Error Bars for the selected series or all Error Bars if none are sele" +
    "cted";
            spreadsheetCommandGalleryItem359.Caption = "Error Bars with Standard Error";
            spreadsheetCommandGalleryItem359.CommandName = "ChartErrorBarsStandardError";
            spreadsheetCommandGalleryItem359.Description = "Displays Error Bars for the selected chart series using Standard Error";
            spreadsheetCommandGalleryItem359.Hint = "Displays Error Bars for the selected chart series using Standard Error";
            spreadsheetCommandGalleryItem360.Caption = "Error Bars with Percentage";
            spreadsheetCommandGalleryItem360.CommandName = "ChartErrorBarsPercentage";
            spreadsheetCommandGalleryItem360.Description = "Displays Error Bars for the selected chart series with 5% value";
            spreadsheetCommandGalleryItem360.Hint = "Displays Error Bars for the selected chart series with 5% value";
            spreadsheetCommandGalleryItem361.Caption = "Error Bars with Standard Deviation";
            spreadsheetCommandGalleryItem361.CommandName = "ChartErrorBarsStandardDeviation";
            spreadsheetCommandGalleryItem361.Description = "Displays Error Bars for the selected chart series with 1 standard deviation";
            spreadsheetCommandGalleryItem361.Hint = "Displays Error Bars for the selected chart series with 1 standard deviation";
            spreadsheetCommandGalleryItemGroup80.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem358,
            spreadsheetCommandGalleryItem359,
            spreadsheetCommandGalleryItem360,
            spreadsheetCommandGalleryItem361});
            this.commandBarGalleryDropDown24.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup80});
            this.commandBarGalleryDropDown24.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown24.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown24.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown24.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown24.Manager = null;
            this.commandBarGalleryDropDown24.Name = "commandBarGalleryDropDown24";
            // 
            // changesRibbonPageGroup1
            // 
            this.changesRibbonPageGroup1.Name = "changesRibbonPageGroup1";
            this.changesRibbonPageGroup1.Text = "";
            // 
            // spreadsheetFormulaBarControl1
            // 
            this.spreadsheetFormulaBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.spreadsheetFormulaBarControl1.Location = new System.Drawing.Point(0, 0);
            this.spreadsheetFormulaBarControl1.MinimumSize = new System.Drawing.Size(0, 20);
            this.spreadsheetFormulaBarControl1.Name = "spreadsheetFormulaBarControl1";
            this.spreadsheetFormulaBarControl1.Size = new System.Drawing.Size(744, 20);
            this.spreadsheetFormulaBarControl1.SpreadsheetControl = this.spreadControl;
            this.spreadsheetFormulaBarControl1.TabIndex = 0;
            // 
            // spreadsheetNameBoxControl1
            // 
            this.spreadsheetNameBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.spreadsheetNameBoxControl1.EditValue = "A1";
            this.spreadsheetNameBoxControl1.Location = new System.Drawing.Point(0, 0);
            this.spreadsheetNameBoxControl1.Name = "spreadsheetNameBoxControl1";
            this.spreadsheetNameBoxControl1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.spreadsheetNameBoxControl1.Size = new System.Drawing.Size(145, 20);
            this.spreadsheetNameBoxControl1.SpreadsheetControl = this.spreadControl;
            this.spreadsheetNameBoxControl1.TabIndex = 0;
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 142);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.spreadsheetNameBoxControl1);
            this.splitContainerControl1.Panel2.Controls.Add(this.spreadsheetFormulaBarControl1);
            this.splitContainerControl1.Size = new System.Drawing.Size(894, 20);
            this.splitContainerControl1.SplitterPosition = 145;
            this.splitContainerControl1.TabIndex = 2;
            // 
            // splitterControl1
            // 
            this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitterControl1.Location = new System.Drawing.Point(0, 162);
            this.splitterControl1.MinSize = 20;
            this.splitterControl1.Name = "splitterControl1";
            this.splitterControl1.Size = new System.Drawing.Size(894, 5);
            this.splitterControl1.TabIndex = 1;
            this.splitterControl1.TabStop = false;
            // 
            // spreadsheetBarController1
            // 
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem5);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem6);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem13);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontNameItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem22);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem23);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem24);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem25);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem26);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem27);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem28);
            this.spreadsheetBarController1.BarItems.Add(this.changeBorderLineColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeBorderLineStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeCellFillColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem5);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem6);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem29);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem30);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem31);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem32);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem33);
            this.spreadsheetBarController1.BarItems.Add(this.changeNumberFormatItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem34);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem35);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem36);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem37);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem38);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem39);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem40);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem41);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem42);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem5);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem43);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem44);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem45);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem46);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem47);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem48);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem49);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem6);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem50);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem51);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem52);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem53);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem54);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem55);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem56);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem57);
            this.spreadsheetBarController1.BarItems.Add(this.galleryFormatAsTableItem1);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem58);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem59);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem60);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem61);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem62);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem63);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem64);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem65);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem66);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem67);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem68);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem69);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem70);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem71);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem72);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem73);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem74);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem75);
            this.spreadsheetBarController1.BarItems.Add(this.changeSheetTabColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem76);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem77);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem78);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem79);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem80);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem81);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem82);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem83);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem84);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem85);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem86);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem87);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem88);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem89);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem90);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem91);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem92);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem93);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem94);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem95);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem96);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem97);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem98);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem99);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem100);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem101);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem102);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem103);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem5);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem6);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem104);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem105);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem18);
            this.spreadsheetBarController1.BarItems.Add(this.pageSetupPaperKindItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem106);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem107);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem108);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem22);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem109);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem110);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem111);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem112);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem22);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem113);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem114);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem115);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem116);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem117);
            this.spreadsheetBarController1.BarItems.Add(this.functionsFinancialItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsLogicalItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsTextItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsDateAndTimeItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsLookupAndReferenceItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsMathAndTrigonometryItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem23);
            this.spreadsheetBarController1.BarItems.Add(this.functionsStatisticalItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsEngineeringItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsInformationItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsCompatibilityItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsWebItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem118);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem119);
            this.spreadsheetBarController1.BarItems.Add(this.definedNameListItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem120);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem23);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem24);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem24);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem25);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem121);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem122);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem123);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem124);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem125);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem126);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem127);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem128);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem129);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem25);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem130);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem131);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem132);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem133);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem134);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem135);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem136);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChartLayoutItem1);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChartStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem26);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem27);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem28);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem22);
            this.spreadsheetBarController1.BarItems.Add(this.barStaticItem1);
            this.spreadsheetBarController1.BarItems.Add(this.renameTableItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem26);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem27);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem28);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem29);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem30);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem31);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem32);
            this.spreadsheetBarController1.BarItems.Add(this.galleryTableStylesItem1);
            this.spreadsheetBarController1.Control = this.spreadControl;
            // 
            // spreadsheetCommandBarButtonItem113
            // 
            this.spreadsheetCommandBarButtonItem113.CommandName = "FunctionsInsertSum";
            this.spreadsheetCommandBarButtonItem113.Id = -1;
            this.spreadsheetCommandBarButtonItem113.Name = "spreadsheetCommandBarButtonItem113";
            // 
            // spreadsheetCommandBarButtonItem114
            // 
            this.spreadsheetCommandBarButtonItem114.CommandName = "FunctionsInsertAverage";
            this.spreadsheetCommandBarButtonItem114.Id = -1;
            this.spreadsheetCommandBarButtonItem114.Name = "spreadsheetCommandBarButtonItem114";
            // 
            // spreadsheetCommandBarButtonItem115
            // 
            this.spreadsheetCommandBarButtonItem115.CommandName = "FunctionsInsertCountNumbers";
            this.spreadsheetCommandBarButtonItem115.Id = -1;
            this.spreadsheetCommandBarButtonItem115.Name = "spreadsheetCommandBarButtonItem115";
            // 
            // spreadsheetCommandBarButtonItem116
            // 
            this.spreadsheetCommandBarButtonItem116.CommandName = "FunctionsInsertMax";
            this.spreadsheetCommandBarButtonItem116.Id = -1;
            this.spreadsheetCommandBarButtonItem116.Name = "spreadsheetCommandBarButtonItem116";
            // 
            // spreadsheetCommandBarButtonItem117
            // 
            this.spreadsheetCommandBarButtonItem117.CommandName = "FunctionsInsertMin";
            this.spreadsheetCommandBarButtonItem117.Id = -1;
            this.spreadsheetCommandBarButtonItem117.Name = "spreadsheetCommandBarButtonItem117";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 253;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.btnConfigMapCollumn);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "Configuration";
            // 
            // btnConfigMapCollumn
            // 
            this.btnConfigMapCollumn.Caption = "Config Map Collumn";
            this.btnConfigMapCollumn.Glyph = ((System.Drawing.Image)(resources.GetObject("btnConfigMapCollumn.Glyph")));
            this.btnConfigMapCollumn.Id = 254;
            this.btnConfigMapCollumn.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnConfigMapCollumn.LargeGlyph")));
            this.btnConfigMapCollumn.Name = "btnConfigMapCollumn";
            this.btnConfigMapCollumn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnConfigMapCollumn_ItemClick);
            // 
            // Salaries
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(894, 485);
            this.Controls.Add(this.spreadControl);
            this.Controls.Add(this.splitterControl1);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "Salaries";
            this.Text = "Salaries";
            this.Load += new System.EventHandler(this.Salaries_Load);
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown26)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown27)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown28)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown29)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown30)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown31)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown32)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown33)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown34)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown35)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown36)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown37)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown38)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown39)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown40)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown41)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown42)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown43)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown44)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown45)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown46)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown47)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown48)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown17)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown19)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown20)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown23)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown24)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spreadsheetNameBoxControl1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.spreadsheetBarController1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem14 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem15 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem16 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem17 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem18 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem19 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem20 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem21 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem22 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem23 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem24 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem25 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem26 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem27 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem28 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem29 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem30 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem31 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem32 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem33 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem34 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem35 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem36 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem37 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem38 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem39 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem40 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem41 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem42 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem43 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem44 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem45 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem46 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem47 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup4 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem48 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem49 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup5 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup6 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup7 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup8 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup9 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem1 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem2 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem3 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup10 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem4 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem5 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem6 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem7 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem8 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem9 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup11 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem10 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem11 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem12 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem13 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem14 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem15 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem16 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup12 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem17 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem18 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup13 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem19 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup14 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem20 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem21 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem22 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup15 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup16 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup17 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener1 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener2 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener3 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener4 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener5 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener6 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener7 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
            this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController();
            this.xrDesignDockManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignDockManager();
            this.fieldListDockPanel1 = new DevExpress.XtraReports.UserDesigner.FieldListDockPanel();
            this.fieldListDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
            this.reportExplorerDockPanel1 = new DevExpress.XtraReports.UserDesigner.ReportExplorerDockPanel();
            this.reportExplorerDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
            this.propertyGridDockPanel1 = new DevExpress.XtraReports.UserDesigner.PropertyGridDockPanel();
            this.propertyGridDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
            this.toolBoxDockPanel1 = new DevExpress.XtraReports.UserDesigner.ToolBoxDockPanel();
            this.toolBoxDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
            this.errorListDockPanel1 = new DevExpress.XtraReports.UserDesigner.ErrorListDockPanel();
            this.errorListDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
            this.groupAndSortDockPanel1 = new DevExpress.XtraReports.UserDesigner.GroupAndSortDockPanel();
            this.groupAndSortDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.fileNewBarItem1 = new DevExpress.DashboardWin.Bars.FileNewBarItem();
            this.fileOpenBarItem1 = new DevExpress.DashboardWin.Bars.FileOpenBarItem();
            this.fileSaveBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveBarItem();
            this.fileSaveAsBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveAsBarItem();
            this.undoBarItem1 = new DevExpress.DashboardWin.Bars.UndoBarItem();
            this.redoBarItem1 = new DevExpress.DashboardWin.Bars.RedoBarItem();
            this.newDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.NewDataSourceBarItem();
            this.editSqlConnectionBarItem1 = new DevExpress.DashboardWin.Bars.EditSqlConnectionBarItem();
            this.editOlapConnectionBarItem1 = new DevExpress.DashboardWin.Bars.EditOlapConnectionBarItem();
            this.editObjectDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.EditObjectDataSourceBarItem();
            this.editEFDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.EditEFDataSourceBarItem();
            this.renameDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.RenameDataSourceBarItem();
            this.deleteDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.DeleteDataSourceBarItem();
            this.serverModeBarItem1 = new DevExpress.DashboardWin.Bars.ServerModeBarItem();
            this.addCalculatedFieldBarItem1 = new DevExpress.DashboardWin.Bars.AddCalculatedFieldBarItem();
            this.editQueriesBarItem1 = new DevExpress.DashboardWin.Bars.EditQueriesBarItem();
            this.editDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceFilterBarItem();
            this.clearDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearDataSourceFilterBarItem();
            this.insertPivotBarItem1 = new DevExpress.DashboardWin.Bars.InsertPivotBarItem();
            this.insertGridBarItem1 = new DevExpress.DashboardWin.Bars.InsertGridBarItem();
            this.insertChartBarItem1 = new DevExpress.DashboardWin.Bars.InsertChartBarItem();
            this.insertPiesBarItem1 = new DevExpress.DashboardWin.Bars.InsertPiesBarItem();
            this.insertGaugesBarItem1 = new DevExpress.DashboardWin.Bars.InsertGaugesBarItem();
            this.insertCardsBarItem1 = new DevExpress.DashboardWin.Bars.InsertCardsBarItem();
            this.insertChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertChoroplethMapBarItem();
            this.insertGeoPointMapBarSubItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarSubItem();
            this.insertGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarItem();
            this.insertBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertBubbleMapBarItem();
            this.insertPieMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertPieMapBarItem();
            this.insertRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.InsertRangeFilterBarItem();
            this.insertFilterElementSubItem1 = new DevExpress.DashboardWin.Bars.InsertFilterElementSubItem();
            this.insertComboBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertComboBoxBarItem();
            this.insertListBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertListBoxBarItem();
            this.insertTreeViewBarItem1 = new DevExpress.DashboardWin.Bars.InsertTreeViewBarItem();
            this.insertImageBarItem1 = new DevExpress.DashboardWin.Bars.InsertImageBarItem();
            this.insertTextBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertTextBoxBarItem();
            this.insertGroupBarItem1 = new DevExpress.DashboardWin.Bars.InsertGroupBarItem();
            this.duplicateItemBarItem1 = new DevExpress.DashboardWin.Bars.DuplicateItemBarItem();
            this.deleteItemBarItem1 = new DevExpress.DashboardWin.Bars.DeleteItemBarItem();
            this.convertDashboardItemTypeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertDashboardItemTypeBarItem();
            this.convertToPivotBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPivotBarItem();
            this.convertToGridBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGridBarItem();
            this.convertToChartBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChartBarItem();
            this.convertToPieBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieBarItem();
            this.convertToGaugeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGaugeBarItem();
            this.convertToCardBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToCardBarItem();
            this.convertToChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChoroplethMapBarItem();
            this.convertGeoPointMapBaseBarItem1 = new DevExpress.DashboardWin.Bars.ConvertGeoPointMapBaseBarItem();
            this.convertToGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGeoPointMapBarItem();
            this.convertToBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToBubbleMapBarItem();
            this.convertToPieMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieMapBarItem();
            this.convertToRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToRangeFilterBarItem();
            this.convertToComboBoxBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToComboBoxBarItem();
            this.convertToListBoxBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToListBoxBarItem();
            this.convertToTreeViewBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToTreeViewBarItem();
            this.removeDataItemsBarItem1 = new DevExpress.DashboardWin.Bars.RemoveDataItemsBarItem();
            this.transposeItemBarItem1 = new DevExpress.DashboardWin.Bars.TransposeItemBarItem();
            this.editRulesBarItem1 = new DevExpress.DashboardWin.Bars.EditRulesBarItem();
            this.deleteGroupBarItem1 = new DevExpress.DashboardWin.Bars.DeleteGroupBarItem();
            this.dashboardTitleBarItem1 = new DevExpress.DashboardWin.Bars.DashboardTitleBarItem();
            this.setCurrencyCultureBarItem1 = new DevExpress.DashboardWin.Bars.SetCurrencyCultureBarItem();
            this.dashboardColorSchemeBarItem1 = new DevExpress.DashboardWin.Bars.DashboardColorSchemeBarItem();
            this.dashboardParametersBarItem1 = new DevExpress.DashboardWin.Bars.DashboardParametersBarItem();
            this.dashboardSkinsBarItem1 = new DevExpress.DashboardWin.Bars.DashboardSkinsBarItem();
            this.editFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditFilterBarItem();
            this.clearFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearFilterBarItem();
            this.masterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MasterFilterBarItem();
            this.multipleValuesMasterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MultipleValuesMasterFilterBarItem();
            this.drillDownBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownBarItem();
            this.groupMasterFilterBarItem1 = new DevExpress.DashboardWin.Bars.GroupMasterFilterBarItem();
            this.groupIgnoreMasterFilterBarItem1 = new DevExpress.DashboardWin.Bars.GroupIgnoreMasterFilterBarItem();
            this.ignoreMasterFiltersBarItem1 = new DevExpress.DashboardWin.Bars.IgnoreMasterFiltersBarItem();
            this.crossDataSourceFilteringBarItem1 = new DevExpress.DashboardWin.Bars.CrossDataSourceFilteringBarItem();
            this.chartTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsArgumentsBarItem();
            this.chartTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsSeriesBarItem();
            this.pieTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsArgumentsBarItem();
            this.pieTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsSeriesBarItem();
            this.geoPointMapClusterizationBarItem1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationBarItem();
            this.showItemCaptionBarItem1 = new DevExpress.DashboardWin.Bars.ShowItemCaptionBarItem();
            this.editItemNamesBarItem1 = new DevExpress.DashboardWin.Bars.EditItemNamesBarItem();
            this.contentAutoArrangeBarItem1 = new DevExpress.DashboardWin.Bars.ContentAutoArrangeBarItem();
            this.contentArrangeInColumnsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInColumnsBarItem();
            this.contentArrangeInRowsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInRowsBarItem();
            this.contentArrangementCountBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangementCountBarItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridHorizontalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridHorizontalLinesBarItem();
            this.gridVerticalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridVerticalLinesBarItem();
            this.gridBandedRowsBarItem1 = new DevExpress.DashboardWin.Bars.GridBandedRowsBarItem();
            this.gridMergeCellsBarItem1 = new DevExpress.DashboardWin.Bars.GridMergeCellsBarItem();
            this.gridColumnHeadersBarItem1 = new DevExpress.DashboardWin.Bars.GridColumnHeadersBarItem();
            this.gridWordWrapBarItem1 = new DevExpress.DashboardWin.Bars.GridWordWrapBarItem();
            this.gridAutoFitToContentsColumnWidthModeBarItem1 = new DevExpress.DashboardWin.Bars.GridAutoFitToContentsColumnWidthModeBarItem();
            this.gridAutoFitToGridColumnWidthModeBarItem1 = new DevExpress.DashboardWin.Bars.GridAutoFitToGridColumnWidthModeBarItem();
            this.manualGridColumnWidthModeBarItem1 = new DevExpress.DashboardWin.Bars.ManualGridColumnWidthModeBarItem();
            this.chartRotateBarItem1 = new DevExpress.DashboardWin.Bars.ChartRotateBarItem();
            this.chartXAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartXAxisSettingsBarItem();
            this.chartYAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartYAxisSettingsBarItem();
            this.chartShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.ChartShowLegendBarItem();
            this.galleryChartLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryChartLegendPositionItem();
            this.galleryChartSeriesTypeItem1 = new DevExpress.DashboardWin.Bars.GalleryChartSeriesTypeItem();
            this.pieLabelsDataLabelsBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsBarItem();
            this.pieLabelsDataLabelsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsNoneBarItem();
            this.pieLabelsDataLabelArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelArgumentBarItem();
            this.pieLabelsDataLabelsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueBarItem();
            this.pieLabelsDataLabelsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndValueBarItem();
            this.pieLabelsDataLabelsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsPercentBarItem();
            this.pieLabelsDataLabelsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentValueAndPercentBarItem();
            this.pieTooltipsBarItem1 = new DevExpress.DashboardWin.Bars.PieTooltipsBarItem();
            this.pieLabelsTooltipsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsNoneBarItem();
            this.pieLabelsTooltipsArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentBarItem();
            this.pieLabelsTooltipsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueBarItem();
            this.pieLabelsTooltipsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndValueBarItem();
            this.pieLabelsTooltipsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsPercentBarItem();
            this.pieLabelsTooltipsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueAndPercentBarItem();
            this.pieLabelsTooltipsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndPercentBarItem();
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentValueAndPercentBarItem();
            this.pieStylePieBarItem1 = new DevExpress.DashboardWin.Bars.PieStylePieBarItem();
            this.pieStyleDonutBarItem1 = new DevExpress.DashboardWin.Bars.PieStyleDonutBarItem();
            this.pieShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.PieShowCaptionsBarItem();
            this.gaugeStyleFullCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleFullCircularBarItem();
            this.gaugeStyleHalfCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleHalfCircularBarItem();
            this.gaugeStyleLeftQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLeftQuarterCircularBarItem();
            this.gaugeStyleRightQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleRightQuarterCircularBarItem();
            this.gaugeStyleThreeForthCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleThreeForthCircularBarItem();
            this.gaugeStyleLinearHorizontalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearHorizontalBarItem();
            this.gaugeStyleLinearVerticalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearVerticalBarItem();
            this.gaugeShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.GaugeShowCaptionsBarItem();
            this.imageLoadBarItem1 = new DevExpress.DashboardWin.Bars.ImageLoadBarItem();
            this.imageImportBarItem1 = new DevExpress.DashboardWin.Bars.ImageImportBarItem();
            this.imageSizeModeClipBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeClipBarItem();
            this.imageSizeModeStretchBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeStretchBarItem();
            this.imageSizeModeSqueezeBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeSqueezeBarItem();
            this.imageSizeModeZoomBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeZoomBarItem();
            this.imageAlignmentTopLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopLeftBarItem();
            this.imageAlignmentCenterLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterLeftBarItem();
            this.imageAlignmentBottomLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomLeftBarItem();
            this.imageAlignmentTopCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopCenterBarItem();
            this.imageAlignmentCenterCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterCenterBarItem();
            this.imageAlignmentBottomCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomCenterBarItem();
            this.imageAlignmentTopRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopRightBarItem();
            this.imageAlignmentCenterRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterRightBarItem();
            this.imageAlignmentBottomRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomRightBarItem();
            this.textBoxEditTextBarItem1 = new DevExpress.DashboardWin.Bars.TextBoxEditTextBarItem();
            this.rangeFilterLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterLineSeriesTypeBarItem();
            this.rangeFilterStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedLineSeriesTypeBarItem();
            this.rangeFilterFullStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedLineSeriesTypeBarItem();
            this.rangeFilterAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterAreaSeriesTypeBarItem();
            this.rangeFilterStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedAreaSeriesTypeBarItem();
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedAreaSeriesTypeBarItem();
            this.pivotInitialStateBarItem1 = new DevExpress.DashboardWin.Bars.PivotInitialStateBarItem();
            this.pivotAutoExpandColumnBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandColumnBarItem();
            this.pivotAutoExpandRowBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandRowBarItem();
            this.comboBoxStandardTypeBarItem1 = new DevExpress.DashboardWin.Bars.ComboBoxStandardTypeBarItem();
            this.comboBoxCheckedTypeBarItem1 = new DevExpress.DashboardWin.Bars.ComboBoxCheckedTypeBarItem();
            this.listBoxCheckedTypeBarItem1 = new DevExpress.DashboardWin.Bars.ListBoxCheckedTypeBarItem();
            this.listBoxRadioTypeBarItem1 = new DevExpress.DashboardWin.Bars.ListBoxRadioTypeBarItem();
            this.treeViewAutoExpandBarItem1 = new DevExpress.DashboardWin.Bars.TreeViewAutoExpandBarItem();
            this.filterElementShowAllValueBarItem1 = new DevExpress.DashboardWin.Bars.FilterElementShowAllValueBarItem();
            this.mapLoadBarItem1 = new DevExpress.DashboardWin.Bars.MapLoadBarItem();
            this.mapImportBarItem1 = new DevExpress.DashboardWin.Bars.MapImportBarItem();
            this.mapDefaultShapefileBarItem1 = new DevExpress.DashboardWin.Bars.MapDefaultShapefileBarItem();
            this.mapWorldCountriesBarItem1 = new DevExpress.DashboardWin.Bars.MapWorldCountriesBarItem();
            this.mapEuropeBarItem1 = new DevExpress.DashboardWin.Bars.MapEuropeBarItem();
            this.mapAsiaBarItem1 = new DevExpress.DashboardWin.Bars.MapAsiaBarItem();
            this.mapNorthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapNorthAmericaBarItem();
            this.mapSouthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapSouthAmericaBarItem();
            this.mapAfricaBarItem1 = new DevExpress.DashboardWin.Bars.MapAfricaBarItem();
            this.mapUSABarItem1 = new DevExpress.DashboardWin.Bars.MapUSABarItem();
            this.mapCanadaBarItem1 = new DevExpress.DashboardWin.Bars.MapCanadaBarItem();
            this.mapLockNavigationBarItem1 = new DevExpress.DashboardWin.Bars.MapLockNavigationBarItem();
            this.mapFullExtentBarItem1 = new DevExpress.DashboardWin.Bars.MapFullExtentBarItem();
            this.choroplethMapShapeLabelsAttributeBarItem1 = new DevExpress.DashboardWin.Bars.ChoroplethMapShapeLabelsAttributeBarItem();
            this.mapShapeTitleAttributeBarItem1 = new DevExpress.DashboardWin.Bars.MapShapeTitleAttributeBarItem();
            this.mapShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.MapShowLegendBarItem();
            this.galleryMapLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryMapLegendPositionItem();
            this.changeWeightedLegendTypeBarItem1 = new DevExpress.DashboardWin.Bars.ChangeWeightedLegendTypeBarItem();
            this.weightedLegendNoneBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNoneBarItem();
            this.weightedLegendLinearBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendLinearBarItem();
            this.weightedLegendNestedBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNestedBarItem();
            this.galleryWeightedLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryWeightedLegendPositionItem();
            this.pieMapIsWeightedBarItem1 = new DevExpress.DashboardWin.Bars.PieMapIsWeightedBarItem();
            this.useGlobalColorsBarItem1 = new DevExpress.DashboardWin.Bars.UseGlobalColorsBarItem();
            this.useLocalColorsBarItem1 = new DevExpress.DashboardWin.Bars.UseLocalColorsBarItem();
            this.editActualColorsBarItem1 = new DevExpress.DashboardWin.Bars.EditActualColorsBarItem();
            this.quickAccessUndoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessUndoBarItem();
            this.quickAccessRedoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessRedoBarItem();
            this.pivotToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PivotToolsRibbonPageCategory();
            this.dashboardDesigner1 = new DevExpress.DashboardWin.DashboardDesigner();
            this.dashboardPopupMenu1 = new DevExpress.DashboardWin.DashboardPopupMenu();
            this.dataRibbonPage1 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.pivotLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PivotLayoutRibbonPageGroup();
            this.dashboardItemDesignRibbonPage9 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GridToolsRibbonPageCategory();
            this.dataRibbonPage2 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage1 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridStyleRibbonPageGroup();
            this.gridLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridLayoutRibbonPageGroup();
            this.gridColumnWidthModeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridColumnWidthModeRibbonPageGroup();
            this.chartToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChartToolsRibbonPageCategory();
            this.dataRibbonPage3 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage2 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.chartLayoutPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLayoutPageGroup();
            this.chartLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLegendPositionPageGroup();
            this.chartStylePageGroup1 = new DevExpress.DashboardWin.Bars.ChartStylePageGroup();
            this.coloringOptionsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ColoringOptionsRibbonPageGroup();
            this.piesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PiesToolsRibbonPageCategory();
            this.dataRibbonPage4 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage3 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.pieLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieLabelsRibbonPageGroup();
            this.pieStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieStyleRibbonPageGroup();
            this.coloringOptionsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.ColoringOptionsRibbonPageGroup();
            this.gaugesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GaugesToolsRibbonPageCategory();
            this.dataRibbonPage5 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage4 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.gaugeStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugeStyleRibbonPageGroup();
            this.gaugesLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugesLabelsRibbonPageGroup();
            this.cardsToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.CardsToolsRibbonPageCategory();
            this.dataRibbonPage6 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage5 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.rangeFilterToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.RangeFilterToolsRibbonPageCategory();
            this.dataRibbonPage7 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage8 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.rangeFilterSeriesTypeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.RangeFilterSeriesTypeRibbonPageGroup();
            this.choroplethMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChoroplethMapToolsRibbonPageCategory();
            this.dataRibbonPage8 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage10 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup1 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapShapeLabelsAttributePageGroup1 = new DevExpress.DashboardWin.Bars.MapShapeLabelsAttributePageGroup();
            this.mapLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.geoPointMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GeoPointMapToolsRibbonPageCategory();
            this.dataRibbonPage9 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage11 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup2 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapShapeLabelsAttributePageGroup2 = new DevExpress.DashboardWin.Bars.MapShapeLabelsAttributePageGroup();
            this.bubbleMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.BubbleMapToolsRibbonPageCategory();
            this.dataRibbonPage10 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage12 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup12 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup3 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapShapeLabelsAttributePageGroup3 = new DevExpress.DashboardWin.Bars.MapShapeLabelsAttributePageGroup();
            this.mapLegendPositionPageGroup2 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup1 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PieMapToolsRibbonPageCategory();
            this.dataRibbonPage11 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage13 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup13 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup4 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapShapeLabelsAttributePageGroup4 = new DevExpress.DashboardWin.Bars.MapShapeLabelsAttributePageGroup();
            this.mapLegendPositionPageGroup3 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup2 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapOptionsPageGroup1 = new DevExpress.DashboardWin.Bars.PieMapOptionsPageGroup();
            this.filterElementToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.FilterElementToolsRibbonPageCategory();
            this.dataRibbonPage12 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup12 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup12 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage15 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup15 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.filterElementTypeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilterElementTypeRibbonPageGroup();
            this.treeViewLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TreeViewLayoutRibbonPageGroup();
            this.filterElementItemOptionsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilterElementItemOptionsRibbonPageGroup();
            this.groupToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GroupToolsRibbonPageCategory();
            this.dataRibbonPage13 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.masterFilterRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.dashboardItemDesignRibbonPage14 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup14 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.imageToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ImageToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage6 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.imageOpenRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageOpenRibbonPageGroup();
            this.imageSizeModeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageSizeModeRibbonPageGroup();
            this.imageAlignmentRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageAlignmentRibbonPageGroup();
            this.textBoxToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.TextBoxToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage7 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.textBoxSettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TextBoxSettingsRibbonPageGroup();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.DashboardWin.Bars.HomeRibbonPage();
            this.fileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FileRibbonPageGroup();
            this.historyRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.HistoryRibbonPageGroup();
            this.insertRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InsertRibbonPageGroup();
            this.itemOperationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ItemOperationRibbonPageGroup();
            this.groupOperationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GroupOperationRibbonPageGroup();
            this.dashboardDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DashboardDesignRibbonPageGroup();
            this.quickAccessHistoryRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.QuickAccessHistoryRibbonPageGroup();
            this.dataSourceRibbonPage1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPage();
            this.dataSourceRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPageGroup();
            this.sqlDataSourceQueriesRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.SqlDataSourceQueriesRibbonPageGroup();
            this.dataSourceFilteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceFilteringRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.DashboardWin.Bars.ViewRibbonPage();
            this.skinsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.SkinsRibbonPageGroup();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.navigationPane1 = new DevExpress.XtraBars.Navigation.NavigationPane();
            this.navigationPage1 = new DevExpress.XtraBars.Navigation.NavigationPage();
            this.navigationPage2 = new DevExpress.XtraBars.Navigation.NavigationPage();
            this.dashboardBarController1 = new DevExpress.DashboardWin.Bars.DashboardBarController();
            this.reportDesigner1 = new DevExpress.XtraReports.UserDesigner.XRDesignMdiController();
            this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu();
            this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).BeginInit();
            this.fieldListDockPanel1.SuspendLayout();
            this.reportExplorerDockPanel1.SuspendLayout();
            this.propertyGridDockPanel1.SuspendLayout();
            this.toolBoxDockPanel1.SuspendLayout();
            this.errorListDockPanel1.SuspendLayout();
            this.groupAndSortDockPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardPopupMenu1)).BeginInit();
            this.navigationPane1.SuspendLayout();
            this.navigationPage1.SuspendLayout();
            this.navigationPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
            this.SuspendLayout();
            // 
            // barAndDockingController1
            // 
            this.barAndDockingController1.PropertiesBar.DefaultGlyphSize = new System.Drawing.Size(16, 16);
            this.barAndDockingController1.PropertiesBar.DefaultLargeGlyphSize = new System.Drawing.Size(32, 32);
            // 
            // xrDesignDockManager1
            // 
            this.xrDesignDockManager1.Form = this;
            this.xrDesignDockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.toolBoxDockPanel1,
            this.fieldListDockPanel1,
            this.reportExplorerDockPanel1,
            this.propertyGridDockPanel1,
            this.errorListDockPanel1,
            this.groupAndSortDockPanel1});
            this.xrDesignDockManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignDockManager1.ImageStream")));
            this.xrDesignDockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "System.Windows.Forms.MenuStrip",
            "System.Windows.Forms.StatusStrip",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl",
            "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
            "DevExpress.XtraBars.Navigation.TileNavPane"});
            // 
            // fieldListDockPanel1
            // 
            this.fieldListDockPanel1.Controls.Add(this.fieldListDockPanel1_Container);
            this.fieldListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.fieldListDockPanel1.ID = new System.Guid("faf69838-a93f-4114-83e8-d0d09cc5ce95");
            this.fieldListDockPanel1.ImageIndex = 0;
            this.fieldListDockPanel1.Location = new System.Drawing.Point(4, 23);
            this.fieldListDockPanel1.Name = "fieldListDockPanel1";
            this.fieldListDockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
            this.fieldListDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.fieldListDockPanel1.SavedIndex = 1;
            this.fieldListDockPanel1.SavedParent = this.reportExplorerDockPanel1;
            this.fieldListDockPanel1.SavedTabbed = true;
            this.fieldListDockPanel1.Size = new System.Drawing.Size(242, 77);
            this.fieldListDockPanel1.Text = "Field List";
            this.fieldListDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.fieldListDockPanel1.XRDesignPanel = null;
            // 
            // fieldListDockPanel1_Container
            // 
            this.fieldListDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
            this.fieldListDockPanel1_Container.Name = "fieldListDockPanel1_Container";
            this.fieldListDockPanel1_Container.Size = new System.Drawing.Size(242, 77);
            this.fieldListDockPanel1_Container.TabIndex = 0;
            // 
            // reportExplorerDockPanel1
            // 
            this.reportExplorerDockPanel1.Controls.Add(this.reportExplorerDockPanel1_Container);
            this.reportExplorerDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.reportExplorerDockPanel1.ID = new System.Guid("fb3ec6cc-3b9b-4b9c-91cf-cff78c1edbf1");
            this.reportExplorerDockPanel1.ImageIndex = 3;
            this.reportExplorerDockPanel1.Location = new System.Drawing.Point(0, 0);
            this.reportExplorerDockPanel1.Name = "reportExplorerDockPanel1";
            this.reportExplorerDockPanel1.OriginalSize = new System.Drawing.Size(250, 132);
            this.reportExplorerDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.reportExplorerDockPanel1.SavedIndex = 0;
            this.reportExplorerDockPanel1.SavedParent = this.propertyGridDockPanel1;
            this.reportExplorerDockPanel1.Size = new System.Drawing.Size(250, 132);
            this.reportExplorerDockPanel1.Text = "Report Explorer";
            this.reportExplorerDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.reportExplorerDockPanel1.XRDesignPanel = null;
            // 
            // reportExplorerDockPanel1_Container
            // 
            this.reportExplorerDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
            this.reportExplorerDockPanel1_Container.Name = "reportExplorerDockPanel1_Container";
            this.reportExplorerDockPanel1_Container.Size = new System.Drawing.Size(242, 105);
            this.reportExplorerDockPanel1_Container.TabIndex = 0;
            // 
            // propertyGridDockPanel1
            // 
            this.propertyGridDockPanel1.Controls.Add(this.propertyGridDockPanel1_Container);
            this.propertyGridDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.propertyGridDockPanel1.ID = new System.Guid("b38d12c3-cd06-4dec-b93d-63a0088e495a");
            this.propertyGridDockPanel1.ImageIndex = 2;
            this.propertyGridDockPanel1.Location = new System.Drawing.Point(521, 141);
            this.propertyGridDockPanel1.Name = "propertyGridDockPanel1";
            this.propertyGridDockPanel1.OriginalSize = new System.Drawing.Size(250, 200);
            this.propertyGridDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.propertyGridDockPanel1.SavedIndex = 0;
            this.propertyGridDockPanel1.Size = new System.Drawing.Size(250, 263);
            this.propertyGridDockPanel1.Text = "Property Grid";
            this.propertyGridDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.propertyGridDockPanel1.XRDesignPanel = null;
            // 
            // propertyGridDockPanel1_Container
            // 
            this.propertyGridDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
            this.propertyGridDockPanel1_Container.Name = "propertyGridDockPanel1_Container";
            this.propertyGridDockPanel1_Container.Size = new System.Drawing.Size(242, 236);
            this.propertyGridDockPanel1_Container.TabIndex = 0;
            // 
            // toolBoxDockPanel1
            // 
            this.toolBoxDockPanel1.Controls.Add(this.toolBoxDockPanel1_Container);
            this.toolBoxDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.toolBoxDockPanel1.ID = new System.Guid("161a5a1a-d9b9-4f06-9ac4-d0c3e507c54f");
            this.toolBoxDockPanel1.ImageIndex = 4;
            this.toolBoxDockPanel1.Location = new System.Drawing.Point(0, 141);
            this.toolBoxDockPanel1.Name = "toolBoxDockPanel1";
            this.toolBoxDockPanel1.OriginalSize = new System.Drawing.Size(121, 200);
            this.toolBoxDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.toolBoxDockPanel1.SavedIndex = 1;
            this.toolBoxDockPanel1.Size = new System.Drawing.Size(121, 263);
            this.toolBoxDockPanel1.Text = "Tool Box";
            this.toolBoxDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.toolBoxDockPanel1.XRDesignPanel = null;
            // 
            // toolBoxDockPanel1_Container
            // 
            this.toolBoxDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
            this.toolBoxDockPanel1_Container.Name = "toolBoxDockPanel1_Container";
            this.toolBoxDockPanel1_Container.Size = new System.Drawing.Size(113, 236);
            this.toolBoxDockPanel1_Container.TabIndex = 0;
            // 
            // errorListDockPanel1
            // 
            this.errorListDockPanel1.Controls.Add(this.errorListDockPanel1_Container);
            this.errorListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.errorListDockPanel1.ID = new System.Guid("5a9a01fd-6e95-4e81-a8c4-ac63153d7488");
            this.errorListDockPanel1.ImageIndex = 5;
            this.errorListDockPanel1.Location = new System.Drawing.Point(4, 23);
            this.errorListDockPanel1.Name = "errorListDockPanel1";
            this.errorListDockPanel1.OriginalSize = new System.Drawing.Size(392, 145);
            this.errorListDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.errorListDockPanel1.SavedIndex = 1;
            this.errorListDockPanel1.SavedParent = this.groupAndSortDockPanel1;
            this.errorListDockPanel1.SavedTabbed = true;
            this.errorListDockPanel1.Size = new System.Drawing.Size(763, 145);
            this.errorListDockPanel1.Text = "Scripts Errors";
            this.errorListDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.errorListDockPanel1.XRDesignPanel = null;
            // 
            // errorListDockPanel1_Container
            // 
            this.errorListDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
            this.errorListDockPanel1_Container.Name = "errorListDockPanel1_Container";
            this.errorListDockPanel1_Container.Size = new System.Drawing.Size(763, 145);
            this.errorListDockPanel1_Container.TabIndex = 0;
            // 
            // groupAndSortDockPanel1
            // 
            this.groupAndSortDockPanel1.Controls.Add(this.groupAndSortDockPanel1_Container);
            this.groupAndSortDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
            this.groupAndSortDockPanel1.ID = new System.Guid("4bab159e-c495-4d67-87dc-f4e895da443e");
            this.groupAndSortDockPanel1.ImageIndex = 1;
            this.groupAndSortDockPanel1.Location = new System.Drawing.Point(0, 204);
            this.groupAndSortDockPanel1.Name = "groupAndSortDockPanel1";
            this.groupAndSortDockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
            this.groupAndSortDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
            this.groupAndSortDockPanel1.SavedIndex = 0;
            this.groupAndSortDockPanel1.Size = new System.Drawing.Size(771, 200);
            this.groupAndSortDockPanel1.Text = "Group and Sort";
            this.groupAndSortDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.groupAndSortDockPanel1.XRDesignPanel = null;
            // 
            // groupAndSortDockPanel1_Container
            // 
            this.groupAndSortDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
            this.groupAndSortDockPanel1_Container.Name = "groupAndSortDockPanel1_Container";
            this.groupAndSortDockPanel1_Container.Size = new System.Drawing.Size(763, 173);
            this.groupAndSortDockPanel1_Container.TabIndex = 0;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.AutoHideEmptyItems = true;
            this.ribbonControl1.Controller = this.barAndDockingController1;
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.fileNewBarItem1,
            this.fileOpenBarItem1,
            this.fileSaveBarItem1,
            this.fileSaveAsBarItem1,
            this.undoBarItem1,
            this.redoBarItem1,
            this.newDataSourceBarItem1,
            this.editSqlConnectionBarItem1,
            this.editOlapConnectionBarItem1,
            this.editObjectDataSourceBarItem1,
            this.editEFDataSourceBarItem1,
            this.renameDataSourceBarItem1,
            this.deleteDataSourceBarItem1,
            this.serverModeBarItem1,
            this.addCalculatedFieldBarItem1,
            this.editQueriesBarItem1,
            this.editDataSourceFilterBarItem1,
            this.clearDataSourceFilterBarItem1,
            this.insertPivotBarItem1,
            this.insertGridBarItem1,
            this.insertChartBarItem1,
            this.insertPiesBarItem1,
            this.insertGaugesBarItem1,
            this.insertCardsBarItem1,
            this.insertChoroplethMapBarItem1,
            this.insertGeoPointMapBarSubItem1,
            this.insertGeoPointMapBarItem1,
            this.insertBubbleMapBarItem1,
            this.insertPieMapBarItem1,
            this.insertRangeFilterBarItem1,
            this.insertFilterElementSubItem1,
            this.insertComboBoxBarItem1,
            this.insertListBoxBarItem1,
            this.insertTreeViewBarItem1,
            this.insertImageBarItem1,
            this.insertTextBoxBarItem1,
            this.insertGroupBarItem1,
            this.duplicateItemBarItem1,
            this.deleteItemBarItem1,
            this.convertDashboardItemTypeBarItem1,
            this.convertToPivotBarItem1,
            this.convertToGridBarItem1,
            this.convertToChartBarItem1,
            this.convertToPieBarItem1,
            this.convertToGaugeBarItem1,
            this.convertToCardBarItem1,
            this.convertToChoroplethMapBarItem1,
            this.convertToGeoPointMapBarItem1,
            this.convertToBubbleMapBarItem1,
            this.convertToPieMapBarItem1,
            this.convertGeoPointMapBaseBarItem1,
            this.convertToRangeFilterBarItem1,
            this.convertToComboBoxBarItem1,
            this.convertToListBoxBarItem1,
            this.convertToTreeViewBarItem1,
            this.removeDataItemsBarItem1,
            this.transposeItemBarItem1,
            this.editRulesBarItem1,
            this.deleteGroupBarItem1,
            this.dashboardTitleBarItem1,
            this.setCurrencyCultureBarItem1,
            this.dashboardColorSchemeBarItem1,
            this.dashboardParametersBarItem1,
            this.dashboardSkinsBarItem1,
            this.editFilterBarItem1,
            this.clearFilterBarItem1,
            this.masterFilterBarItem1,
            this.multipleValuesMasterFilterBarItem1,
            this.drillDownBarItem1,
            this.groupMasterFilterBarItem1,
            this.groupIgnoreMasterFilterBarItem1,
            this.ignoreMasterFiltersBarItem1,
            this.crossDataSourceFilteringBarItem1,
            this.chartTargetDimensionsArgumentsBarItem1,
            this.chartTargetDimensionsSeriesBarItem1,
            this.pieTargetDimensionsArgumentsBarItem1,
            this.pieTargetDimensionsSeriesBarItem1,
            this.geoPointMapClusterizationBarItem1,
            this.showItemCaptionBarItem1,
            this.editItemNamesBarItem1,
            this.contentAutoArrangeBarItem1,
            this.contentArrangeInColumnsBarItem1,
            this.contentArrangeInRowsBarItem1,
            this.contentArrangementCountBarItem1,
            this.gridHorizontalLinesBarItem1,
            this.gridVerticalLinesBarItem1,
            this.gridBandedRowsBarItem1,
            this.gridMergeCellsBarItem1,
            this.gridColumnHeadersBarItem1,
            this.gridWordWrapBarItem1,
            this.gridAutoFitToContentsColumnWidthModeBarItem1,
            this.gridAutoFitToGridColumnWidthModeBarItem1,
            this.manualGridColumnWidthModeBarItem1,
            this.chartRotateBarItem1,
            this.chartXAxisSettingsBarItem1,
            this.chartYAxisSettingsBarItem1,
            this.chartShowLegendBarItem1,
            this.galleryChartLegendPositionItem1,
            this.galleryChartSeriesTypeItem1,
            this.pieLabelsDataLabelsBarItem1,
            this.pieLabelsDataLabelsNoneBarItem1,
            this.pieLabelsDataLabelArgumentBarItem1,
            this.pieLabelsDataLabelsValueBarItem1,
            this.pieLabelsDataLabelsArgumentAndValueBarItem1,
            this.pieLabelsDataLabelsPercentBarItem1,
            this.pieLabelsDataLabelsValueAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1,
            this.pieTooltipsBarItem1,
            this.pieLabelsTooltipsNoneBarItem1,
            this.pieLabelsTooltipsArgumentBarItem1,
            this.pieLabelsTooltipsValueBarItem1,
            this.pieLabelsTooltipsArgumentAndValueBarItem1,
            this.pieLabelsTooltipsPercentBarItem1,
            this.pieLabelsTooltipsValueAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1,
            this.pieStylePieBarItem1,
            this.pieStyleDonutBarItem1,
            this.pieShowCaptionsBarItem1,
            this.gaugeStyleFullCircularBarItem1,
            this.gaugeStyleHalfCircularBarItem1,
            this.gaugeStyleLeftQuarterCircularBarItem1,
            this.gaugeStyleRightQuarterCircularBarItem1,
            this.gaugeStyleThreeForthCircularBarItem1,
            this.gaugeStyleLinearHorizontalBarItem1,
            this.gaugeStyleLinearVerticalBarItem1,
            this.gaugeShowCaptionsBarItem1,
            this.imageLoadBarItem1,
            this.imageImportBarItem1,
            this.imageSizeModeClipBarItem1,
            this.imageSizeModeStretchBarItem1,
            this.imageSizeModeSqueezeBarItem1,
            this.imageSizeModeZoomBarItem1,
            this.imageAlignmentTopLeftBarItem1,
            this.imageAlignmentCenterLeftBarItem1,
            this.imageAlignmentBottomLeftBarItem1,
            this.imageAlignmentTopCenterBarItem1,
            this.imageAlignmentCenterCenterBarItem1,
            this.imageAlignmentBottomCenterBarItem1,
            this.imageAlignmentTopRightBarItem1,
            this.imageAlignmentCenterRightBarItem1,
            this.imageAlignmentBottomRightBarItem1,
            this.textBoxEditTextBarItem1,
            this.rangeFilterLineSeriesTypeBarItem1,
            this.rangeFilterStackedLineSeriesTypeBarItem1,
            this.rangeFilterFullStackedLineSeriesTypeBarItem1,
            this.rangeFilterAreaSeriesTypeBarItem1,
            this.rangeFilterStackedAreaSeriesTypeBarItem1,
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1,
            this.pivotInitialStateBarItem1,
            this.pivotAutoExpandColumnBarItem1,
            this.pivotAutoExpandRowBarItem1,
            this.comboBoxStandardTypeBarItem1,
            this.comboBoxCheckedTypeBarItem1,
            this.listBoxCheckedTypeBarItem1,
            this.listBoxRadioTypeBarItem1,
            this.treeViewAutoExpandBarItem1,
            this.filterElementShowAllValueBarItem1,
            this.mapLoadBarItem1,
            this.mapImportBarItem1,
            this.mapDefaultShapefileBarItem1,
            this.mapWorldCountriesBarItem1,
            this.mapEuropeBarItem1,
            this.mapAsiaBarItem1,
            this.mapNorthAmericaBarItem1,
            this.mapSouthAmericaBarItem1,
            this.mapAfricaBarItem1,
            this.mapUSABarItem1,
            this.mapCanadaBarItem1,
            this.mapLockNavigationBarItem1,
            this.mapFullExtentBarItem1,
            this.choroplethMapShapeLabelsAttributeBarItem1,
            this.mapShapeTitleAttributeBarItem1,
            this.mapShowLegendBarItem1,
            this.galleryMapLegendPositionItem1,
            this.changeWeightedLegendTypeBarItem1,
            this.weightedLegendNoneBarItem1,
            this.weightedLegendLinearBarItem1,
            this.weightedLegendNestedBarItem1,
            this.galleryWeightedLegendPositionItem1,
            this.pieMapIsWeightedBarItem1,
            this.useGlobalColorsBarItem1,
            this.useLocalColorsBarItem1,
            this.editActualColorsBarItem1,
            this.quickAccessUndoBarItem1,
            this.quickAccessRedoBarItem1});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 188;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.pivotToolsRibbonPageCategory1,
            this.gridToolsRibbonPageCategory1,
            this.chartToolsRibbonPageCategory1,
            this.piesToolsRibbonPageCategory1,
            this.gaugesToolsRibbonPageCategory1,
            this.cardsToolsRibbonPageCategory1,
            this.rangeFilterToolsRibbonPageCategory1,
            this.choroplethMapToolsRibbonPageCategory1,
            this.geoPointMapToolsRibbonPageCategory1,
            this.bubbleMapToolsRibbonPageCategory1,
            this.pieMapToolsRibbonPageCategory1,
            this.filterElementToolsRibbonPageCategory1,
            this.groupToolsRibbonPageCategory1,
            this.imageToolsRibbonPageCategory1,
            this.textBoxToolsRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.homeRibbonPage1,
            this.dataSourceRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1});
            this.ribbonControl1.Size = new System.Drawing.Size(771, 141);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.fileSaveBarItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.ribbonControl1.TransparentEditors = true;
            this.ribbonControl1.Click += new System.EventHandler(this.ribbonControl1_Click);
            // 
            // fileNewBarItem1
            // 
            this.fileNewBarItem1.Id = 1;
            this.fileNewBarItem1.Name = "fileNewBarItem1";
            // 
            // fileOpenBarItem1
            // 
            this.fileOpenBarItem1.Id = 2;
            this.fileOpenBarItem1.Name = "fileOpenBarItem1";
            // 
            // fileSaveBarItem1
            // 
            this.fileSaveBarItem1.Id = 3;
            this.fileSaveBarItem1.Name = "fileSaveBarItem1";
            // 
            // fileSaveAsBarItem1
            // 
            this.fileSaveAsBarItem1.Id = 4;
            this.fileSaveAsBarItem1.Name = "fileSaveAsBarItem1";
            // 
            // undoBarItem1
            // 
            this.undoBarItem1.Id = 5;
            this.undoBarItem1.Name = "undoBarItem1";
            // 
            // redoBarItem1
            // 
            this.redoBarItem1.Id = 6;
            this.redoBarItem1.Name = "redoBarItem1";
            // 
            // newDataSourceBarItem1
            // 
            this.newDataSourceBarItem1.Id = 7;
            this.newDataSourceBarItem1.Name = "newDataSourceBarItem1";
            // 
            // editSqlConnectionBarItem1
            // 
            this.editSqlConnectionBarItem1.Id = 8;
            this.editSqlConnectionBarItem1.Name = "editSqlConnectionBarItem1";
            // 
            // editOlapConnectionBarItem1
            // 
            this.editOlapConnectionBarItem1.Id = 9;
            this.editOlapConnectionBarItem1.Name = "editOlapConnectionBarItem1";
            // 
            // editObjectDataSourceBarItem1
            // 
            this.editObjectDataSourceBarItem1.Id = 10;
            this.editObjectDataSourceBarItem1.Name = "editObjectDataSourceBarItem1";
            // 
            // editEFDataSourceBarItem1
            // 
            this.editEFDataSourceBarItem1.Id = 11;
            this.editEFDataSourceBarItem1.Name = "editEFDataSourceBarItem1";
            // 
            // renameDataSourceBarItem1
            // 
            this.renameDataSourceBarItem1.Id = 12;
            this.renameDataSourceBarItem1.Name = "renameDataSourceBarItem1";
            // 
            // deleteDataSourceBarItem1
            // 
            this.deleteDataSourceBarItem1.Id = 13;
            this.deleteDataSourceBarItem1.Name = "deleteDataSourceBarItem1";
            // 
            // serverModeBarItem1
            // 
            this.serverModeBarItem1.Id = 14;
            this.serverModeBarItem1.Name = "serverModeBarItem1";
            // 
            // addCalculatedFieldBarItem1
            // 
            this.addCalculatedFieldBarItem1.Id = 15;
            this.addCalculatedFieldBarItem1.Name = "addCalculatedFieldBarItem1";
            // 
            // editQueriesBarItem1
            // 
            this.editQueriesBarItem1.Id = 16;
            this.editQueriesBarItem1.Name = "editQueriesBarItem1";
            // 
            // editDataSourceFilterBarItem1
            // 
            this.editDataSourceFilterBarItem1.Id = 17;
            this.editDataSourceFilterBarItem1.Name = "editDataSourceFilterBarItem1";
            // 
            // clearDataSourceFilterBarItem1
            // 
            this.clearDataSourceFilterBarItem1.Id = 18;
            this.clearDataSourceFilterBarItem1.Name = "clearDataSourceFilterBarItem1";
            // 
            // insertPivotBarItem1
            // 
            this.insertPivotBarItem1.Id = 19;
            this.insertPivotBarItem1.Name = "insertPivotBarItem1";
            // 
            // insertGridBarItem1
            // 
            this.insertGridBarItem1.Id = 20;
            this.insertGridBarItem1.Name = "insertGridBarItem1";
            // 
            // insertChartBarItem1
            // 
            this.insertChartBarItem1.Id = 21;
            this.insertChartBarItem1.Name = "insertChartBarItem1";
            // 
            // insertPiesBarItem1
            // 
            this.insertPiesBarItem1.Id = 22;
            this.insertPiesBarItem1.Name = "insertPiesBarItem1";
            // 
            // insertGaugesBarItem1
            // 
            this.insertGaugesBarItem1.Id = 23;
            this.insertGaugesBarItem1.Name = "insertGaugesBarItem1";
            // 
            // insertCardsBarItem1
            // 
            this.insertCardsBarItem1.Id = 24;
            this.insertCardsBarItem1.Name = "insertCardsBarItem1";
            // 
            // insertChoroplethMapBarItem1
            // 
            this.insertChoroplethMapBarItem1.Id = 25;
            this.insertChoroplethMapBarItem1.Name = "insertChoroplethMapBarItem1";
            // 
            // insertGeoPointMapBarSubItem1
            // 
            this.insertGeoPointMapBarSubItem1.Id = 26;
            this.insertGeoPointMapBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPieMapBarItem1)});
            this.insertGeoPointMapBarSubItem1.Name = "insertGeoPointMapBarSubItem1";
            this.insertGeoPointMapBarSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // insertGeoPointMapBarItem1
            // 
            this.insertGeoPointMapBarItem1.Id = 27;
            this.insertGeoPointMapBarItem1.Name = "insertGeoPointMapBarItem1";
            // 
            // insertBubbleMapBarItem1
            // 
            this.insertBubbleMapBarItem1.Id = 28;
            this.insertBubbleMapBarItem1.Name = "insertBubbleMapBarItem1";
            // 
            // insertPieMapBarItem1
            // 
            this.insertPieMapBarItem1.Id = 29;
            this.insertPieMapBarItem1.Name = "insertPieMapBarItem1";
            // 
            // insertRangeFilterBarItem1
            // 
            this.insertRangeFilterBarItem1.Id = 30;
            this.insertRangeFilterBarItem1.Name = "insertRangeFilterBarItem1";
            // 
            // insertFilterElementSubItem1
            // 
            this.insertFilterElementSubItem1.Id = 31;
            this.insertFilterElementSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertComboBoxBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertListBoxBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTreeViewBarItem1)});
            this.insertFilterElementSubItem1.Name = "insertFilterElementSubItem1";
            this.insertFilterElementSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // insertComboBoxBarItem1
            // 
            this.insertComboBoxBarItem1.Id = 32;
            this.insertComboBoxBarItem1.Name = "insertComboBoxBarItem1";
            // 
            // insertListBoxBarItem1
            // 
            this.insertListBoxBarItem1.Id = 33;
            this.insertListBoxBarItem1.Name = "insertListBoxBarItem1";
            // 
            // insertTreeViewBarItem1
            // 
            this.insertTreeViewBarItem1.Id = 34;
            this.insertTreeViewBarItem1.Name = "insertTreeViewBarItem1";
            // 
            // insertImageBarItem1
            // 
            this.insertImageBarItem1.Id = 35;
            this.insertImageBarItem1.Name = "insertImageBarItem1";
            // 
            // insertTextBoxBarItem1
            // 
            this.insertTextBoxBarItem1.Id = 36;
            this.insertTextBoxBarItem1.Name = "insertTextBoxBarItem1";
            // 
            // insertGroupBarItem1
            // 
            this.insertGroupBarItem1.Id = 37;
            this.insertGroupBarItem1.Name = "insertGroupBarItem1";
            // 
            // duplicateItemBarItem1
            // 
            this.duplicateItemBarItem1.Id = 38;
            this.duplicateItemBarItem1.Name = "duplicateItemBarItem1";
            // 
            // deleteItemBarItem1
            // 
            this.deleteItemBarItem1.Id = 39;
            this.deleteItemBarItem1.Name = "deleteItemBarItem1";
            // 
            // convertDashboardItemTypeBarItem1
            // 
            this.convertDashboardItemTypeBarItem1.Id = 40;
            this.convertDashboardItemTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPivotBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGridBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChartBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGaugeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToCardBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChoroplethMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertGeoPointMapBaseBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToRangeFilterBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToComboBoxBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToListBoxBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToTreeViewBarItem1)});
            this.convertDashboardItemTypeBarItem1.Name = "convertDashboardItemTypeBarItem1";
            // 
            // convertToPivotBarItem1
            // 
            this.convertToPivotBarItem1.Id = 41;
            this.convertToPivotBarItem1.Name = "convertToPivotBarItem1";
            // 
            // convertToGridBarItem1
            // 
            this.convertToGridBarItem1.Id = 42;
            this.convertToGridBarItem1.Name = "convertToGridBarItem1";
            // 
            // convertToChartBarItem1
            // 
            this.convertToChartBarItem1.Id = 43;
            this.convertToChartBarItem1.Name = "convertToChartBarItem1";
            // 
            // convertToPieBarItem1
            // 
            this.convertToPieBarItem1.Id = 44;
            this.convertToPieBarItem1.Name = "convertToPieBarItem1";
            // 
            // convertToGaugeBarItem1
            // 
            this.convertToGaugeBarItem1.Id = 45;
            this.convertToGaugeBarItem1.Name = "convertToGaugeBarItem1";
            // 
            // convertToCardBarItem1
            // 
            this.convertToCardBarItem1.Id = 46;
            this.convertToCardBarItem1.Name = "convertToCardBarItem1";
            // 
            // convertToChoroplethMapBarItem1
            // 
            this.convertToChoroplethMapBarItem1.Id = 47;
            this.convertToChoroplethMapBarItem1.Name = "convertToChoroplethMapBarItem1";
            // 
            // convertGeoPointMapBaseBarItem1
            // 
            this.convertGeoPointMapBaseBarItem1.Id = 51;
            this.convertGeoPointMapBaseBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieMapBarItem1)});
            this.convertGeoPointMapBaseBarItem1.Name = "convertGeoPointMapBaseBarItem1";
            // 
            // convertToGeoPointMapBarItem1
            // 
            this.convertToGeoPointMapBarItem1.Id = 48;
            this.convertToGeoPointMapBarItem1.Name = "convertToGeoPointMapBarItem1";
            // 
            // convertToBubbleMapBarItem1
            // 
            this.convertToBubbleMapBarItem1.Id = 49;
            this.convertToBubbleMapBarItem1.Name = "convertToBubbleMapBarItem1";
            // 
            // convertToPieMapBarItem1
            // 
            this.convertToPieMapBarItem1.Id = 50;
            this.convertToPieMapBarItem1.Name = "convertToPieMapBarItem1";
            // 
            // convertToRangeFilterBarItem1
            // 
            this.convertToRangeFilterBarItem1.Id = 52;
            this.convertToRangeFilterBarItem1.Name = "convertToRangeFilterBarItem1";
            // 
            // convertToComboBoxBarItem1
            // 
            this.convertToComboBoxBarItem1.Id = 53;
            this.convertToComboBoxBarItem1.Name = "convertToComboBoxBarItem1";
            // 
            // convertToListBoxBarItem1
            // 
            this.convertToListBoxBarItem1.Id = 54;
            this.convertToListBoxBarItem1.Name = "convertToListBoxBarItem1";
            // 
            // convertToTreeViewBarItem1
            // 
            this.convertToTreeViewBarItem1.Id = 55;
            this.convertToTreeViewBarItem1.Name = "convertToTreeViewBarItem1";
            // 
            // removeDataItemsBarItem1
            // 
            this.removeDataItemsBarItem1.Id = 56;
            this.removeDataItemsBarItem1.Name = "removeDataItemsBarItem1";
            // 
            // transposeItemBarItem1
            // 
            this.transposeItemBarItem1.Id = 57;
            this.transposeItemBarItem1.Name = "transposeItemBarItem1";
            // 
            // editRulesBarItem1
            // 
            this.editRulesBarItem1.Id = 58;
            this.editRulesBarItem1.Name = "editRulesBarItem1";
            // 
            // deleteGroupBarItem1
            // 
            this.deleteGroupBarItem1.Id = 59;
            this.deleteGroupBarItem1.Name = "deleteGroupBarItem1";
            // 
            // dashboardTitleBarItem1
            // 
            this.dashboardTitleBarItem1.Id = 60;
            this.dashboardTitleBarItem1.Name = "dashboardTitleBarItem1";
            // 
            // setCurrencyCultureBarItem1
            // 
            this.setCurrencyCultureBarItem1.Id = 61;
            this.setCurrencyCultureBarItem1.Name = "setCurrencyCultureBarItem1";
            // 
            // dashboardColorSchemeBarItem1
            // 
            this.dashboardColorSchemeBarItem1.Id = 62;
            this.dashboardColorSchemeBarItem1.Name = "dashboardColorSchemeBarItem1";
            // 
            // dashboardParametersBarItem1
            // 
            this.dashboardParametersBarItem1.Id = 63;
            this.dashboardParametersBarItem1.Name = "dashboardParametersBarItem1";
            // 
            // dashboardSkinsBarItem1
            // 
            // 
            // 
            // 
            this.dashboardSkinsBarItem1.Gallery.AllowHoverImages = true;
            this.dashboardSkinsBarItem1.Gallery.ColumnCount = 4;
            this.dashboardSkinsBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Standard Skins";
            galleryItem1.Caption = "DevExpress Style";
            galleryItem1.Checked = true;
            galleryItem1.Hint = "DevExpress Style";
            galleryItem1.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem1.HoverImage")));
            galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
            galleryItem1.Tag = "DevExpress Style";
            galleryItem2.Caption = "DevExpress Dark Style";
            galleryItem2.Hint = "DevExpress Dark Style";
            galleryItem2.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem2.HoverImage")));
            galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
            galleryItem2.Tag = "DevExpress Dark Style";
            galleryItem3.Caption = "Office 2013 White";
            galleryItem3.Hint = "Office 2013 White";
            galleryItem3.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem3.HoverImage")));
            galleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
            galleryItem3.Tag = "Office 2013";
            galleryItem4.Caption = "Office 2013 Dark Gray";
            galleryItem4.Hint = "Office 2013 Dark Gray";
            galleryItem4.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem4.HoverImage")));
            galleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
            galleryItem4.Tag = "Office 2013 Dark Gray";
            galleryItem5.Caption = "Office 2013 Light Gray";
            galleryItem5.Hint = "Office 2013 Light Gray";
            galleryItem5.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem5.HoverImage")));
            galleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
            galleryItem5.Tag = "Office 2013 Light Gray";
            galleryItem6.Caption = "Office 2010 Blue";
            galleryItem6.Hint = "Office 2010 Blue";
            galleryItem6.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem6.HoverImage")));
            galleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
            galleryItem6.Tag = "Office 2010 Blue";
            galleryItem7.Caption = "Office 2010 Black";
            galleryItem7.Hint = "Office 2010 Black";
            galleryItem7.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem7.HoverImage")));
            galleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem7.Image")));
            galleryItem7.Tag = "Office 2010 Black";
            galleryItem8.Caption = "Office 2010 Silver";
            galleryItem8.Hint = "Office 2010 Silver";
            galleryItem8.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem8.HoverImage")));
            galleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem8.Image")));
            galleryItem8.Tag = "Office 2010 Silver";
            galleryItem9.Caption = "Visual Studio 2013 Blue";
            galleryItem9.Hint = "Visual Studio 2013 Blue";
            galleryItem9.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem9.HoverImage")));
            galleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem9.Image")));
            galleryItem9.Tag = "Visual Studio 2013 Blue";
            galleryItem10.Caption = "Visual Studio 2013 Dark";
            galleryItem10.Hint = "Visual Studio 2013 Dark";
            galleryItem10.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem10.HoverImage")));
            galleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem10.Image")));
            galleryItem10.Tag = "Visual Studio 2013 Dark";
            galleryItem11.Caption = "Visual Studio 2013 Light";
            galleryItem11.Hint = "Visual Studio 2013 Light";
            galleryItem11.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem11.HoverImage")));
            galleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem11.Image")));
            galleryItem11.Tag = "Visual Studio 2013 Light";
            galleryItem12.Caption = "Seven Classic";
            galleryItem12.Hint = "Seven Classic";
            galleryItem12.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem12.HoverImage")));
            galleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem12.Image")));
            galleryItem12.Tag = "Seven Classic";
            galleryItem13.Caption = "Visual Studio 2010";
            galleryItem13.Hint = "Visual Studio 2010";
            galleryItem13.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem13.HoverImage")));
            galleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem13.Image")));
            galleryItem13.Tag = "VS2010";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9,
            galleryItem10,
            galleryItem11,
            galleryItem12,
            galleryItem13});
            galleryItemGroup2.Caption = "Bonus Skins";
            galleryItem14.Caption = "Black";
            galleryItem14.Hint = "Black";
            galleryItem14.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem14.HoverImage")));
            galleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem14.Image")));
            galleryItem14.Tag = "Black";
            galleryItem15.Caption = "Blue";
            galleryItem15.Hint = "Blue";
            galleryItem15.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem15.HoverImage")));
            galleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem15.Image")));
            galleryItem15.Tag = "Blue";
            galleryItem16.Caption = "Caramel";
            galleryItem16.Hint = "Caramel";
            galleryItem16.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem16.HoverImage")));
            galleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem16.Image")));
            galleryItem16.Tag = "Caramel";
            galleryItem17.Caption = "Coffee";
            galleryItem17.Hint = "Coffee";
            galleryItem17.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem17.HoverImage")));
            galleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem17.Image")));
            galleryItem17.Tag = "Coffee";
            galleryItem18.Caption = "Dark Side";
            galleryItem18.Hint = "Dark Side";
            galleryItem18.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem18.HoverImage")));
            galleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem18.Image")));
            galleryItem18.Tag = "Dark Side";
            galleryItem19.Caption = "Darkroom";
            galleryItem19.Hint = "Darkroom";
            galleryItem19.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem19.HoverImage")));
            galleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem19.Image")));
            galleryItem19.Tag = "Darkroom";
            galleryItem20.Caption = "Foggy";
            galleryItem20.Hint = "Foggy";
            galleryItem20.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem20.HoverImage")));
            galleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem20.Image")));
            galleryItem20.Tag = "Foggy";
            galleryItem21.Caption = "Glass Oceans";
            galleryItem21.Hint = "Glass Oceans";
            galleryItem21.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem21.HoverImage")));
            galleryItem21.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem21.Image")));
            galleryItem21.Tag = "Glass Oceans";
            galleryItem22.Caption = "High Contrast";
            galleryItem22.Hint = "High Contrast";
            galleryItem22.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem22.HoverImage")));
            galleryItem22.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem22.Image")));
            galleryItem22.Tag = "High Contrast";
            galleryItem23.Caption = "iMaginary";
            galleryItem23.Hint = "iMaginary";
            galleryItem23.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem23.HoverImage")));
            galleryItem23.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem23.Image")));
            galleryItem23.Tag = "iMaginary";
            galleryItem24.Caption = "Lilian";
            galleryItem24.Hint = "Lilian";
            galleryItem24.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem24.HoverImage")));
            galleryItem24.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem24.Image")));
            galleryItem24.Tag = "Lilian";
            galleryItem25.Caption = "Liquid Sky";
            galleryItem25.Hint = "Liquid Sky";
            galleryItem25.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem25.HoverImage")));
            galleryItem25.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem25.Image")));
            galleryItem25.Tag = "Liquid Sky";
            galleryItem26.Caption = "London Liquid Sky";
            galleryItem26.Hint = "London Liquid Sky";
            galleryItem26.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem26.HoverImage")));
            galleryItem26.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem26.Image")));
            galleryItem26.Tag = "London Liquid Sky";
            galleryItem27.Caption = "Metropolis";
            galleryItem27.Hint = "Metropolis";
            galleryItem27.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem27.HoverImage")));
            galleryItem27.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem27.Image")));
            galleryItem27.Tag = "Metropolis";
            galleryItem28.Caption = "Metropolis Dark";
            galleryItem28.Hint = "Metropolis Dark";
            galleryItem28.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem28.HoverImage")));
            galleryItem28.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem28.Image")));
            galleryItem28.Tag = "Metropolis Dark";
            galleryItem29.Caption = "Money Twins";
            galleryItem29.Hint = "Money Twins";
            galleryItem29.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem29.HoverImage")));
            galleryItem29.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem29.Image")));
            galleryItem29.Tag = "Money Twins";
            galleryItem30.Caption = "Office 2007 Black";
            galleryItem30.Hint = "Office 2007 Black";
            galleryItem30.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem30.HoverImage")));
            galleryItem30.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem30.Image")));
            galleryItem30.Tag = "Office 2007 Black";
            galleryItem31.Caption = "Office 2007 Blue";
            galleryItem31.Hint = "Office 2007 Blue";
            galleryItem31.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem31.HoverImage")));
            galleryItem31.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem31.Image")));
            galleryItem31.Tag = "Office 2007 Blue";
            galleryItem32.Caption = "Office 2007 Green";
            galleryItem32.Hint = "Office 2007 Green";
            galleryItem32.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem32.HoverImage")));
            galleryItem32.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem32.Image")));
            galleryItem32.Tag = "Office 2007 Green";
            galleryItem33.Caption = "Office 2007 Pink";
            galleryItem33.Hint = "Office 2007 Pink";
            galleryItem33.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem33.HoverImage")));
            galleryItem33.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem33.Image")));
            galleryItem33.Tag = "Office 2007 Pink";
            galleryItem34.Caption = "Office 2007 Silver";
            galleryItem34.Hint = "Office 2007 Silver";
            galleryItem34.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem34.HoverImage")));
            galleryItem34.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem34.Image")));
            galleryItem34.Tag = "Office 2007 Silver";
            galleryItem35.Caption = "Seven";
            galleryItem35.Hint = "Seven";
            galleryItem35.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem35.HoverImage")));
            galleryItem35.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem35.Image")));
            galleryItem35.Tag = "Seven";
            galleryItem36.Caption = "Sharp";
            galleryItem36.Hint = "Sharp";
            galleryItem36.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem36.HoverImage")));
            galleryItem36.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem36.Image")));
            galleryItem36.Tag = "Sharp";
            galleryItem37.Caption = "Sharp Plus";
            galleryItem37.Hint = "Sharp Plus";
            galleryItem37.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem37.HoverImage")));
            galleryItem37.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem37.Image")));
            galleryItem37.Tag = "Sharp Plus";
            galleryItem38.Caption = "Stardust";
            galleryItem38.Hint = "Stardust";
            galleryItem38.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem38.HoverImage")));
            galleryItem38.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem38.Image")));
            galleryItem38.Tag = "Stardust";
            galleryItem39.Caption = "The Asphalt World";
            galleryItem39.Hint = "The Asphalt World";
            galleryItem39.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem39.HoverImage")));
            galleryItem39.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem39.Image")));
            galleryItem39.Tag = "The Asphalt World";
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem14,
            galleryItem15,
            galleryItem16,
            galleryItem17,
            galleryItem18,
            galleryItem19,
            galleryItem20,
            galleryItem21,
            galleryItem22,
            galleryItem23,
            galleryItem24,
            galleryItem25,
            galleryItem26,
            galleryItem27,
            galleryItem28,
            galleryItem29,
            galleryItem30,
            galleryItem31,
            galleryItem32,
            galleryItem33,
            galleryItem34,
            galleryItem35,
            galleryItem36,
            galleryItem37,
            galleryItem38,
            galleryItem39});
            galleryItemGroup3.Caption = "Theme Skins";
            galleryItem40.Caption = "Pumpkin";
            galleryItem40.Hint = "Pumpkin";
            galleryItem40.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem40.HoverImage")));
            galleryItem40.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem40.Image")));
            galleryItem40.Tag = "Pumpkin";
            galleryItem41.Caption = "Springtime";
            galleryItem41.Hint = "Springtime";
            galleryItem41.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem41.HoverImage")));
            galleryItem41.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem41.Image")));
            galleryItem41.Tag = "Springtime";
            galleryItem42.Caption = "Summer";
            galleryItem42.Hint = "Summer";
            galleryItem42.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem42.HoverImage")));
            galleryItem42.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem42.Image")));
            galleryItem42.Tag = "Summer 2008";
            galleryItem43.Caption = "Valentine";
            galleryItem43.Hint = "Valentine";
            galleryItem43.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem43.HoverImage")));
            galleryItem43.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem43.Image")));
            galleryItem43.Tag = "Valentine";
            galleryItem44.Caption = "Xmas (Blue)";
            galleryItem44.Hint = "Xmas (Blue)";
            galleryItem44.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem44.HoverImage")));
            galleryItem44.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem44.Image")));
            galleryItem44.Tag = "Xmas 2008 Blue";
            galleryItem45.Caption = "McSkin";
            galleryItem45.Hint = "McSkin";
            galleryItem45.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem45.HoverImage")));
            galleryItem45.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem45.Image")));
            galleryItem45.Tag = "McSkin";
            galleryItem46.Caption = "Blueprint";
            galleryItem46.Hint = "Blueprint";
            galleryItem46.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem46.HoverImage")));
            galleryItem46.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem46.Image")));
            galleryItem46.Tag = "Blueprint";
            galleryItem47.Caption = "Whiteprint";
            galleryItem47.Hint = "Whiteprint";
            galleryItem47.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem47.HoverImage")));
            galleryItem47.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem47.Image")));
            galleryItem47.Tag = "Whiteprint";
            galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem40,
            galleryItem41,
            galleryItem42,
            galleryItem43,
            galleryItem44,
            galleryItem45,
            galleryItem46,
            galleryItem47});
            galleryItemGroup4.Caption = "Custom Skins";
            galleryItem48.Caption = "DevExpress Design";
            galleryItem48.Hint = "DevExpress Design";
            galleryItem48.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem48.HoverImage")));
            galleryItem48.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem48.Image")));
            galleryItem48.Tag = "DevExpress Design";
            galleryItem49.Caption = "installation";
            galleryItem49.Hint = "installation";
            galleryItem49.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem49.HoverImage")));
            galleryItem49.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem49.Image")));
            galleryItem49.Tag = "installation";
            galleryItemGroup4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem48,
            galleryItem49});
            this.dashboardSkinsBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3,
            galleryItemGroup4});
            this.dashboardSkinsBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 16);
            this.dashboardSkinsBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.dashboardSkinsBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.dashboardSkinsBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardSkinsBarItem1.Glyph")));
            this.dashboardSkinsBarItem1.Id = 64;
            this.dashboardSkinsBarItem1.Name = "dashboardSkinsBarItem1";
            // 
            // editFilterBarItem1
            // 
            this.editFilterBarItem1.Id = 65;
            this.editFilterBarItem1.Name = "editFilterBarItem1";
            // 
            // clearFilterBarItem1
            // 
            this.clearFilterBarItem1.Id = 66;
            this.clearFilterBarItem1.Name = "clearFilterBarItem1";
            // 
            // masterFilterBarItem1
            // 
            this.masterFilterBarItem1.Id = 67;
            this.masterFilterBarItem1.Name = "masterFilterBarItem1";
            // 
            // multipleValuesMasterFilterBarItem1
            // 
            this.multipleValuesMasterFilterBarItem1.Id = 68;
            this.multipleValuesMasterFilterBarItem1.Name = "multipleValuesMasterFilterBarItem1";
            // 
            // drillDownBarItem1
            // 
            this.drillDownBarItem1.Id = 69;
            this.drillDownBarItem1.Name = "drillDownBarItem1";
            // 
            // groupMasterFilterBarItem1
            // 
            this.groupMasterFilterBarItem1.Id = 70;
            this.groupMasterFilterBarItem1.Name = "groupMasterFilterBarItem1";
            // 
            // groupIgnoreMasterFilterBarItem1
            // 
            this.groupIgnoreMasterFilterBarItem1.Id = 71;
            this.groupIgnoreMasterFilterBarItem1.Name = "groupIgnoreMasterFilterBarItem1";
            // 
            // ignoreMasterFiltersBarItem1
            // 
            this.ignoreMasterFiltersBarItem1.Id = 72;
            this.ignoreMasterFiltersBarItem1.Name = "ignoreMasterFiltersBarItem1";
            // 
            // crossDataSourceFilteringBarItem1
            // 
            this.crossDataSourceFilteringBarItem1.Id = 73;
            this.crossDataSourceFilteringBarItem1.Name = "crossDataSourceFilteringBarItem1";
            // 
            // chartTargetDimensionsArgumentsBarItem1
            // 
            this.chartTargetDimensionsArgumentsBarItem1.Id = 74;
            this.chartTargetDimensionsArgumentsBarItem1.Name = "chartTargetDimensionsArgumentsBarItem1";
            // 
            // chartTargetDimensionsSeriesBarItem1
            // 
            this.chartTargetDimensionsSeriesBarItem1.Id = 75;
            this.chartTargetDimensionsSeriesBarItem1.Name = "chartTargetDimensionsSeriesBarItem1";
            // 
            // pieTargetDimensionsArgumentsBarItem1
            // 
            this.pieTargetDimensionsArgumentsBarItem1.Id = 76;
            this.pieTargetDimensionsArgumentsBarItem1.Name = "pieTargetDimensionsArgumentsBarItem1";
            // 
            // pieTargetDimensionsSeriesBarItem1
            // 
            this.pieTargetDimensionsSeriesBarItem1.Id = 77;
            this.pieTargetDimensionsSeriesBarItem1.Name = "pieTargetDimensionsSeriesBarItem1";
            // 
            // geoPointMapClusterizationBarItem1
            // 
            this.geoPointMapClusterizationBarItem1.Id = 78;
            this.geoPointMapClusterizationBarItem1.Name = "geoPointMapClusterizationBarItem1";
            // 
            // showItemCaptionBarItem1
            // 
            this.showItemCaptionBarItem1.Id = 79;
            this.showItemCaptionBarItem1.Name = "showItemCaptionBarItem1";
            // 
            // editItemNamesBarItem1
            // 
            this.editItemNamesBarItem1.Id = 80;
            this.editItemNamesBarItem1.Name = "editItemNamesBarItem1";
            // 
            // contentAutoArrangeBarItem1
            // 
            this.contentAutoArrangeBarItem1.Id = 81;
            this.contentAutoArrangeBarItem1.Name = "contentAutoArrangeBarItem1";
            // 
            // contentArrangeInColumnsBarItem1
            // 
            this.contentArrangeInColumnsBarItem1.Id = 82;
            this.contentArrangeInColumnsBarItem1.Name = "contentArrangeInColumnsBarItem1";
            // 
            // contentArrangeInRowsBarItem1
            // 
            this.contentArrangeInRowsBarItem1.Id = 83;
            this.contentArrangeInRowsBarItem1.Name = "contentArrangeInRowsBarItem1";
            // 
            // contentArrangementCountBarItem1
            // 
            this.contentArrangementCountBarItem1.Edit = this.repositoryItemSpinEdit1;
            this.contentArrangementCountBarItem1.Id = 84;
            this.contentArrangementCountBarItem1.Name = "contentArrangementCountBarItem1";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // gridHorizontalLinesBarItem1
            // 
            this.gridHorizontalLinesBarItem1.Id = 85;
            this.gridHorizontalLinesBarItem1.Name = "gridHorizontalLinesBarItem1";
            // 
            // gridVerticalLinesBarItem1
            // 
            this.gridVerticalLinesBarItem1.Id = 86;
            this.gridVerticalLinesBarItem1.Name = "gridVerticalLinesBarItem1";
            // 
            // gridBandedRowsBarItem1
            // 
            this.gridBandedRowsBarItem1.Id = 87;
            this.gridBandedRowsBarItem1.Name = "gridBandedRowsBarItem1";
            // 
            // gridMergeCellsBarItem1
            // 
            this.gridMergeCellsBarItem1.Id = 88;
            this.gridMergeCellsBarItem1.Name = "gridMergeCellsBarItem1";
            // 
            // gridColumnHeadersBarItem1
            // 
            this.gridColumnHeadersBarItem1.Id = 89;
            this.gridColumnHeadersBarItem1.Name = "gridColumnHeadersBarItem1";
            // 
            // gridWordWrapBarItem1
            // 
            this.gridWordWrapBarItem1.Id = 90;
            this.gridWordWrapBarItem1.Name = "gridWordWrapBarItem1";
            // 
            // gridAutoFitToContentsColumnWidthModeBarItem1
            // 
            this.gridAutoFitToContentsColumnWidthModeBarItem1.Id = 91;
            this.gridAutoFitToContentsColumnWidthModeBarItem1.Name = "gridAutoFitToContentsColumnWidthModeBarItem1";
            // 
            // gridAutoFitToGridColumnWidthModeBarItem1
            // 
            this.gridAutoFitToGridColumnWidthModeBarItem1.Id = 92;
            this.gridAutoFitToGridColumnWidthModeBarItem1.Name = "gridAutoFitToGridColumnWidthModeBarItem1";
            // 
            // manualGridColumnWidthModeBarItem1
            // 
            this.manualGridColumnWidthModeBarItem1.Id = 93;
            this.manualGridColumnWidthModeBarItem1.Name = "manualGridColumnWidthModeBarItem1";
            // 
            // chartRotateBarItem1
            // 
            this.chartRotateBarItem1.Id = 94;
            this.chartRotateBarItem1.Name = "chartRotateBarItem1";
            // 
            // chartXAxisSettingsBarItem1
            // 
            this.chartXAxisSettingsBarItem1.Id = 95;
            this.chartXAxisSettingsBarItem1.Name = "chartXAxisSettingsBarItem1";
            // 
            // chartYAxisSettingsBarItem1
            // 
            this.chartYAxisSettingsBarItem1.Id = 96;
            this.chartYAxisSettingsBarItem1.Name = "chartYAxisSettingsBarItem1";
            // 
            // chartShowLegendBarItem1
            // 
            this.chartShowLegendBarItem1.Id = 97;
            this.chartShowLegendBarItem1.Name = "chartShowLegendBarItem1";
            // 
            // galleryChartLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryChartLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup5.Caption = "Inside Horizontal";
            galleryItemGroup6.Caption = "Inside Vertical";
            galleryItemGroup7.Caption = "Outside Horizontal";
            galleryItemGroup8.Caption = "Outside Vertical";
            this.galleryChartLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup5,
            galleryItemGroup6,
            galleryItemGroup7,
            galleryItemGroup8});
            this.galleryChartLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartLegendPositionItem1.Gallery.RowCount = 8;
            this.galleryChartLegendPositionItem1.Id = 98;
            this.galleryChartLegendPositionItem1.Name = "galleryChartLegendPositionItem1";
            // 
            // galleryChartSeriesTypeItem1
            // 
            // 
            // 
            // 
            galleryItemGroup9.Caption = "Bar";
            chartSeriesTypeGalleryItem1.Hint = "Bar";
            chartSeriesTypeGalleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem1.Image")));
            chartSeriesTypeGalleryItem1.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem2.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem2.Image")));
            chartSeriesTypeGalleryItem2.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem3.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem3.Image")));
            chartSeriesTypeGalleryItem3.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup9.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem1,
            chartSeriesTypeGalleryItem2,
            chartSeriesTypeGalleryItem3});
            galleryItemGroup10.Caption = "Point / Line";
            chartSeriesTypeGalleryItem4.Hint = "Point";
            chartSeriesTypeGalleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem4.Image")));
            chartSeriesTypeGalleryItem4.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem5.Hint = "Line";
            chartSeriesTypeGalleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem5.Image")));
            chartSeriesTypeGalleryItem5.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem6.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem6.Image")));
            chartSeriesTypeGalleryItem6.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem7.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem7.Image")));
            chartSeriesTypeGalleryItem7.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem8.Hint = "Step Line";
            chartSeriesTypeGalleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem8.Image")));
            chartSeriesTypeGalleryItem8.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem9.Hint = "Spline";
            chartSeriesTypeGalleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem9.Image")));
            chartSeriesTypeGalleryItem9.SeriesTypeCaption = "Spline";
            galleryItemGroup10.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem4,
            chartSeriesTypeGalleryItem5,
            chartSeriesTypeGalleryItem6,
            chartSeriesTypeGalleryItem7,
            chartSeriesTypeGalleryItem8,
            chartSeriesTypeGalleryItem9});
            galleryItemGroup11.Caption = "Area";
            chartSeriesTypeGalleryItem10.Hint = "Area";
            chartSeriesTypeGalleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem10.Image")));
            chartSeriesTypeGalleryItem10.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem11.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem11.Image")));
            chartSeriesTypeGalleryItem11.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem12.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem12.Image")));
            chartSeriesTypeGalleryItem12.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem13.Hint = "Step Area";
            chartSeriesTypeGalleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem13.Image")));
            chartSeriesTypeGalleryItem13.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem14.Hint = "Spline Area";
            chartSeriesTypeGalleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem14.Image")));
            chartSeriesTypeGalleryItem14.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem15.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem15.Image")));
            chartSeriesTypeGalleryItem15.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem16.Image")));
            chartSeriesTypeGalleryItem16.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup11.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem10,
            chartSeriesTypeGalleryItem11,
            chartSeriesTypeGalleryItem12,
            chartSeriesTypeGalleryItem13,
            chartSeriesTypeGalleryItem14,
            chartSeriesTypeGalleryItem15,
            chartSeriesTypeGalleryItem16});
            galleryItemGroup12.Caption = "Range";
            chartSeriesTypeGalleryItem17.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem17.Image")));
            chartSeriesTypeGalleryItem17.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem18.Hint = "Range Area";
            chartSeriesTypeGalleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem18.Image")));
            chartSeriesTypeGalleryItem18.SeriesTypeCaption = "Range Area";
            galleryItemGroup12.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem17,
            chartSeriesTypeGalleryItem18});
            galleryItemGroup13.Caption = "Bubble";
            chartSeriesTypeGalleryItem19.Hint = "Bubble";
            chartSeriesTypeGalleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem19.Image")));
            chartSeriesTypeGalleryItem19.SeriesTypeCaption = "Bubble";
            galleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem19});
            galleryItemGroup14.Caption = "Financial";
            chartSeriesTypeGalleryItem20.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem20.Image")));
            chartSeriesTypeGalleryItem20.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem21.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem21.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem21.Image")));
            chartSeriesTypeGalleryItem21.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem22.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem22.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem22.Image")));
            chartSeriesTypeGalleryItem22.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem20,
            chartSeriesTypeGalleryItem21,
            chartSeriesTypeGalleryItem22});
            this.galleryChartSeriesTypeItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup9,
            galleryItemGroup10,
            galleryItemGroup11,
            galleryItemGroup12,
            galleryItemGroup13,
            galleryItemGroup14});
            this.galleryChartSeriesTypeItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartSeriesTypeItem1.Gallery.RowCount = 8;
            this.galleryChartSeriesTypeItem1.Id = 99;
            this.galleryChartSeriesTypeItem1.Name = "galleryChartSeriesTypeItem1";
            // 
            // pieLabelsDataLabelsBarItem1
            // 
            this.pieLabelsDataLabelsBarItem1.Id = 100;
            this.pieLabelsDataLabelsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1)});
            this.pieLabelsDataLabelsBarItem1.Name = "pieLabelsDataLabelsBarItem1";
            this.pieLabelsDataLabelsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsDataLabelsNoneBarItem1
            // 
            this.pieLabelsDataLabelsNoneBarItem1.Id = 101;
            this.pieLabelsDataLabelsNoneBarItem1.Name = "pieLabelsDataLabelsNoneBarItem1";
            // 
            // pieLabelsDataLabelArgumentBarItem1
            // 
            this.pieLabelsDataLabelArgumentBarItem1.Id = 102;
            this.pieLabelsDataLabelArgumentBarItem1.Name = "pieLabelsDataLabelArgumentBarItem1";
            // 
            // pieLabelsDataLabelsValueBarItem1
            // 
            this.pieLabelsDataLabelsValueBarItem1.Id = 103;
            this.pieLabelsDataLabelsValueBarItem1.Name = "pieLabelsDataLabelsValueBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndValueBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Id = 104;
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Name = "pieLabelsDataLabelsArgumentAndValueBarItem1";
            // 
            // pieLabelsDataLabelsPercentBarItem1
            // 
            this.pieLabelsDataLabelsPercentBarItem1.Id = 105;
            this.pieLabelsDataLabelsPercentBarItem1.Name = "pieLabelsDataLabelsPercentBarItem1";
            // 
            // pieLabelsDataLabelsValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Id = 106;
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Name = "pieLabelsDataLabelsValueAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Id = 107;
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Id = 108;
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentValueAndPercentBarItem1";
            // 
            // pieTooltipsBarItem1
            // 
            this.pieTooltipsBarItem1.Id = 109;
            this.pieTooltipsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1)});
            this.pieTooltipsBarItem1.Name = "pieTooltipsBarItem1";
            this.pieTooltipsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsTooltipsNoneBarItem1
            // 
            this.pieLabelsTooltipsNoneBarItem1.Id = 110;
            this.pieLabelsTooltipsNoneBarItem1.Name = "pieLabelsTooltipsNoneBarItem1";
            // 
            // pieLabelsTooltipsArgumentBarItem1
            // 
            this.pieLabelsTooltipsArgumentBarItem1.Id = 111;
            this.pieLabelsTooltipsArgumentBarItem1.Name = "pieLabelsTooltipsArgumentBarItem1";
            // 
            // pieLabelsTooltipsValueBarItem1
            // 
            this.pieLabelsTooltipsValueBarItem1.Id = 112;
            this.pieLabelsTooltipsValueBarItem1.Name = "pieLabelsTooltipsValueBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndValueBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Id = 113;
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Name = "pieLabelsTooltipsArgumentAndValueBarItem1";
            // 
            // pieLabelsTooltipsPercentBarItem1
            // 
            this.pieLabelsTooltipsPercentBarItem1.Id = 114;
            this.pieLabelsTooltipsPercentBarItem1.Name = "pieLabelsTooltipsPercentBarItem1";
            // 
            // pieLabelsTooltipsValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsValueAndPercentBarItem1.Id = 115;
            this.pieLabelsTooltipsValueAndPercentBarItem1.Name = "pieLabelsTooltipsValueAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Id = 116;
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Id = 117;
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentValueAndPercentBarItem1";
            // 
            // pieStylePieBarItem1
            // 
            this.pieStylePieBarItem1.Id = 118;
            this.pieStylePieBarItem1.Name = "pieStylePieBarItem1";
            // 
            // pieStyleDonutBarItem1
            // 
            this.pieStyleDonutBarItem1.Id = 119;
            this.pieStyleDonutBarItem1.Name = "pieStyleDonutBarItem1";
            // 
            // pieShowCaptionsBarItem1
            // 
            this.pieShowCaptionsBarItem1.Id = 120;
            this.pieShowCaptionsBarItem1.Name = "pieShowCaptionsBarItem1";
            // 
            // gaugeStyleFullCircularBarItem1
            // 
            this.gaugeStyleFullCircularBarItem1.Id = 121;
            this.gaugeStyleFullCircularBarItem1.Name = "gaugeStyleFullCircularBarItem1";
            // 
            // gaugeStyleHalfCircularBarItem1
            // 
            this.gaugeStyleHalfCircularBarItem1.Id = 122;
            this.gaugeStyleHalfCircularBarItem1.Name = "gaugeStyleHalfCircularBarItem1";
            // 
            // gaugeStyleLeftQuarterCircularBarItem1
            // 
            this.gaugeStyleLeftQuarterCircularBarItem1.Id = 123;
            this.gaugeStyleLeftQuarterCircularBarItem1.Name = "gaugeStyleLeftQuarterCircularBarItem1";
            // 
            // gaugeStyleRightQuarterCircularBarItem1
            // 
            this.gaugeStyleRightQuarterCircularBarItem1.Id = 124;
            this.gaugeStyleRightQuarterCircularBarItem1.Name = "gaugeStyleRightQuarterCircularBarItem1";
            // 
            // gaugeStyleThreeForthCircularBarItem1
            // 
            this.gaugeStyleThreeForthCircularBarItem1.Id = 125;
            this.gaugeStyleThreeForthCircularBarItem1.Name = "gaugeStyleThreeForthCircularBarItem1";
            // 
            // gaugeStyleLinearHorizontalBarItem1
            // 
            this.gaugeStyleLinearHorizontalBarItem1.Id = 126;
            this.gaugeStyleLinearHorizontalBarItem1.Name = "gaugeStyleLinearHorizontalBarItem1";
            // 
            // gaugeStyleLinearVerticalBarItem1
            // 
            this.gaugeStyleLinearVerticalBarItem1.Id = 127;
            this.gaugeStyleLinearVerticalBarItem1.Name = "gaugeStyleLinearVerticalBarItem1";
            // 
            // gaugeShowCaptionsBarItem1
            // 
            this.gaugeShowCaptionsBarItem1.Id = 128;
            this.gaugeShowCaptionsBarItem1.Name = "gaugeShowCaptionsBarItem1";
            // 
            // imageLoadBarItem1
            // 
            this.imageLoadBarItem1.Id = 129;
            this.imageLoadBarItem1.Name = "imageLoadBarItem1";
            // 
            // imageImportBarItem1
            // 
            this.imageImportBarItem1.Id = 130;
            this.imageImportBarItem1.Name = "imageImportBarItem1";
            // 
            // imageSizeModeClipBarItem1
            // 
            this.imageSizeModeClipBarItem1.Id = 131;
            this.imageSizeModeClipBarItem1.Name = "imageSizeModeClipBarItem1";
            // 
            // imageSizeModeStretchBarItem1
            // 
            this.imageSizeModeStretchBarItem1.Id = 132;
            this.imageSizeModeStretchBarItem1.Name = "imageSizeModeStretchBarItem1";
            // 
            // imageSizeModeSqueezeBarItem1
            // 
            this.imageSizeModeSqueezeBarItem1.Id = 133;
            this.imageSizeModeSqueezeBarItem1.Name = "imageSizeModeSqueezeBarItem1";
            // 
            // imageSizeModeZoomBarItem1
            // 
            this.imageSizeModeZoomBarItem1.Id = 134;
            this.imageSizeModeZoomBarItem1.Name = "imageSizeModeZoomBarItem1";
            // 
            // imageAlignmentTopLeftBarItem1
            // 
            this.imageAlignmentTopLeftBarItem1.Id = 135;
            this.imageAlignmentTopLeftBarItem1.Name = "imageAlignmentTopLeftBarItem1";
            this.imageAlignmentTopLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterLeftBarItem1
            // 
            this.imageAlignmentCenterLeftBarItem1.Id = 136;
            this.imageAlignmentCenterLeftBarItem1.Name = "imageAlignmentCenterLeftBarItem1";
            this.imageAlignmentCenterLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomLeftBarItem1
            // 
            this.imageAlignmentBottomLeftBarItem1.Id = 137;
            this.imageAlignmentBottomLeftBarItem1.Name = "imageAlignmentBottomLeftBarItem1";
            this.imageAlignmentBottomLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopCenterBarItem1
            // 
            this.imageAlignmentTopCenterBarItem1.Id = 138;
            this.imageAlignmentTopCenterBarItem1.Name = "imageAlignmentTopCenterBarItem1";
            this.imageAlignmentTopCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterCenterBarItem1
            // 
            this.imageAlignmentCenterCenterBarItem1.Id = 139;
            this.imageAlignmentCenterCenterBarItem1.Name = "imageAlignmentCenterCenterBarItem1";
            this.imageAlignmentCenterCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomCenterBarItem1
            // 
            this.imageAlignmentBottomCenterBarItem1.Id = 140;
            this.imageAlignmentBottomCenterBarItem1.Name = "imageAlignmentBottomCenterBarItem1";
            this.imageAlignmentBottomCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopRightBarItem1
            // 
            this.imageAlignmentTopRightBarItem1.Id = 141;
            this.imageAlignmentTopRightBarItem1.Name = "imageAlignmentTopRightBarItem1";
            this.imageAlignmentTopRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterRightBarItem1
            // 
            this.imageAlignmentCenterRightBarItem1.Id = 142;
            this.imageAlignmentCenterRightBarItem1.Name = "imageAlignmentCenterRightBarItem1";
            this.imageAlignmentCenterRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomRightBarItem1
            // 
            this.imageAlignmentBottomRightBarItem1.Id = 143;
            this.imageAlignmentBottomRightBarItem1.Name = "imageAlignmentBottomRightBarItem1";
            this.imageAlignmentBottomRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // textBoxEditTextBarItem1
            // 
            this.textBoxEditTextBarItem1.Id = 144;
            this.textBoxEditTextBarItem1.Name = "textBoxEditTextBarItem1";
            // 
            // rangeFilterLineSeriesTypeBarItem1
            // 
            this.rangeFilterLineSeriesTypeBarItem1.Id = 145;
            this.rangeFilterLineSeriesTypeBarItem1.Name = "rangeFilterLineSeriesTypeBarItem1";
            // 
            // rangeFilterStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterStackedLineSeriesTypeBarItem1.Id = 146;
            this.rangeFilterStackedLineSeriesTypeBarItem1.Name = "rangeFilterStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Id = 147;
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Name = "rangeFilterFullStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterAreaSeriesTypeBarItem1
            // 
            this.rangeFilterAreaSeriesTypeBarItem1.Id = 148;
            this.rangeFilterAreaSeriesTypeBarItem1.Name = "rangeFilterAreaSeriesTypeBarItem1";
            // 
            // rangeFilterStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Id = 149;
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Name = "rangeFilterStackedAreaSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Id = 150;
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Name = "rangeFilterFullStackedAreaSeriesTypeBarItem1";
            // 
            // pivotInitialStateBarItem1
            // 
            this.pivotInitialStateBarItem1.Id = 151;
            this.pivotInitialStateBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandColumnBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandRowBarItem1)});
            this.pivotInitialStateBarItem1.Name = "pivotInitialStateBarItem1";
            this.pivotInitialStateBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pivotAutoExpandColumnBarItem1
            // 
            this.pivotAutoExpandColumnBarItem1.Id = 152;
            this.pivotAutoExpandColumnBarItem1.Name = "pivotAutoExpandColumnBarItem1";
            // 
            // pivotAutoExpandRowBarItem1
            // 
            this.pivotAutoExpandRowBarItem1.Id = 153;
            this.pivotAutoExpandRowBarItem1.Name = "pivotAutoExpandRowBarItem1";
            // 
            // comboBoxStandardTypeBarItem1
            // 
            this.comboBoxStandardTypeBarItem1.Id = 154;
            this.comboBoxStandardTypeBarItem1.Name = "comboBoxStandardTypeBarItem1";
            // 
            // comboBoxCheckedTypeBarItem1
            // 
            this.comboBoxCheckedTypeBarItem1.Id = 155;
            this.comboBoxCheckedTypeBarItem1.Name = "comboBoxCheckedTypeBarItem1";
            // 
            // listBoxCheckedTypeBarItem1
            // 
            this.listBoxCheckedTypeBarItem1.Id = 156;
            this.listBoxCheckedTypeBarItem1.Name = "listBoxCheckedTypeBarItem1";
            // 
            // listBoxRadioTypeBarItem1
            // 
            this.listBoxRadioTypeBarItem1.Id = 157;
            this.listBoxRadioTypeBarItem1.Name = "listBoxRadioTypeBarItem1";
            // 
            // treeViewAutoExpandBarItem1
            // 
            this.treeViewAutoExpandBarItem1.Id = 158;
            this.treeViewAutoExpandBarItem1.Name = "treeViewAutoExpandBarItem1";
            // 
            // filterElementShowAllValueBarItem1
            // 
            this.filterElementShowAllValueBarItem1.Id = 159;
            this.filterElementShowAllValueBarItem1.Name = "filterElementShowAllValueBarItem1";
            // 
            // mapLoadBarItem1
            // 
            this.mapLoadBarItem1.Id = 160;
            this.mapLoadBarItem1.Name = "mapLoadBarItem1";
            // 
            // mapImportBarItem1
            // 
            this.mapImportBarItem1.Id = 161;
            this.mapImportBarItem1.Name = "mapImportBarItem1";
            // 
            // mapDefaultShapefileBarItem1
            // 
            this.mapDefaultShapefileBarItem1.Id = 162;
            this.mapDefaultShapefileBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.mapWorldCountriesBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapEuropeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAsiaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapNorthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapSouthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAfricaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapUSABarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapCanadaBarItem1)});
            this.mapDefaultShapefileBarItem1.Name = "mapDefaultShapefileBarItem1";
            this.mapDefaultShapefileBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // mapWorldCountriesBarItem1
            // 
            this.mapWorldCountriesBarItem1.Id = 163;
            this.mapWorldCountriesBarItem1.Name = "mapWorldCountriesBarItem1";
            // 
            // mapEuropeBarItem1
            // 
            this.mapEuropeBarItem1.Id = 164;
            this.mapEuropeBarItem1.Name = "mapEuropeBarItem1";
            // 
            // mapAsiaBarItem1
            // 
            this.mapAsiaBarItem1.Id = 165;
            this.mapAsiaBarItem1.Name = "mapAsiaBarItem1";
            // 
            // mapNorthAmericaBarItem1
            // 
            this.mapNorthAmericaBarItem1.Id = 166;
            this.mapNorthAmericaBarItem1.Name = "mapNorthAmericaBarItem1";
            // 
            // mapSouthAmericaBarItem1
            // 
            this.mapSouthAmericaBarItem1.Id = 167;
            this.mapSouthAmericaBarItem1.Name = "mapSouthAmericaBarItem1";
            // 
            // mapAfricaBarItem1
            // 
            this.mapAfricaBarItem1.Id = 168;
            this.mapAfricaBarItem1.Name = "mapAfricaBarItem1";
            // 
            // mapUSABarItem1
            // 
            this.mapUSABarItem1.Id = 169;
            this.mapUSABarItem1.Name = "mapUSABarItem1";
            // 
            // mapCanadaBarItem1
            // 
            this.mapCanadaBarItem1.Id = 170;
            this.mapCanadaBarItem1.Name = "mapCanadaBarItem1";
            // 
            // mapLockNavigationBarItem1
            // 
            this.mapLockNavigationBarItem1.Id = 171;
            this.mapLockNavigationBarItem1.Name = "mapLockNavigationBarItem1";
            // 
            // mapFullExtentBarItem1
            // 
            this.mapFullExtentBarItem1.Id = 172;
            this.mapFullExtentBarItem1.Name = "mapFullExtentBarItem1";
            // 
            // choroplethMapShapeLabelsAttributeBarItem1
            // 
            this.choroplethMapShapeLabelsAttributeBarItem1.Id = 173;
            this.choroplethMapShapeLabelsAttributeBarItem1.Name = "choroplethMapShapeLabelsAttributeBarItem1";
            // 
            // mapShapeTitleAttributeBarItem1
            // 
            this.mapShapeTitleAttributeBarItem1.Id = 174;
            this.mapShapeTitleAttributeBarItem1.Name = "mapShapeTitleAttributeBarItem1";
            // 
            // mapShowLegendBarItem1
            // 
            this.mapShowLegendBarItem1.Id = 175;
            this.mapShowLegendBarItem1.Name = "mapShowLegendBarItem1";
            // 
            // galleryMapLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryMapLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup15.Caption = "Vertical";
            galleryItemGroup16.Caption = "Horizontal";
            this.galleryMapLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup15,
            galleryItemGroup16});
            this.galleryMapLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryMapLegendPositionItem1.Gallery.RowCount = 4;
            this.galleryMapLegendPositionItem1.Id = 176;
            this.galleryMapLegendPositionItem1.Name = "galleryMapLegendPositionItem1";
            // 
            // changeWeightedLegendTypeBarItem1
            // 
            this.changeWeightedLegendTypeBarItem1.Id = 177;
            this.changeWeightedLegendTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendLinearBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNestedBarItem1)});
            this.changeWeightedLegendTypeBarItem1.Name = "changeWeightedLegendTypeBarItem1";
            this.changeWeightedLegendTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // weightedLegendNoneBarItem1
            // 
            this.weightedLegendNoneBarItem1.Id = 178;
            this.weightedLegendNoneBarItem1.Name = "weightedLegendNoneBarItem1";
            // 
            // weightedLegendLinearBarItem1
            // 
            this.weightedLegendLinearBarItem1.Id = 179;
            this.weightedLegendLinearBarItem1.Name = "weightedLegendLinearBarItem1";
            // 
            // weightedLegendNestedBarItem1
            // 
            this.weightedLegendNestedBarItem1.Id = 180;
            this.weightedLegendNestedBarItem1.Name = "weightedLegendNestedBarItem1";
            // 
            // galleryWeightedLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryWeightedLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup17.Caption = "Position";
            this.galleryWeightedLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup17});
            this.galleryWeightedLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryWeightedLegendPositionItem1.Gallery.RowCount = 2;
            this.galleryWeightedLegendPositionItem1.Id = 181;
            this.galleryWeightedLegendPositionItem1.Name = "galleryWeightedLegendPositionItem1";
            // 
            // pieMapIsWeightedBarItem1
            // 
            this.pieMapIsWeightedBarItem1.Id = 182;
            this.pieMapIsWeightedBarItem1.Name = "pieMapIsWeightedBarItem1";
            // 
            // useGlobalColorsBarItem1
            // 
            this.useGlobalColorsBarItem1.Id = 183;
            this.useGlobalColorsBarItem1.Name = "useGlobalColorsBarItem1";
            // 
            // useLocalColorsBarItem1
            // 
            this.useLocalColorsBarItem1.Id = 184;
            this.useLocalColorsBarItem1.Name = "useLocalColorsBarItem1";
            // 
            // editActualColorsBarItem1
            // 
            this.editActualColorsBarItem1.Id = 185;
            this.editActualColorsBarItem1.Name = "editActualColorsBarItem1";
            // 
            // quickAccessUndoBarItem1
            // 
            this.quickAccessUndoBarItem1.Id = 186;
            this.quickAccessUndoBarItem1.Name = "quickAccessUndoBarItem1";
            // 
            // quickAccessRedoBarItem1
            // 
            this.quickAccessRedoBarItem1.Id = 187;
            this.quickAccessRedoBarItem1.Name = "quickAccessRedoBarItem1";
            // 
            // pivotToolsRibbonPageCategory1
            // 
            this.pivotToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.pivotToolsRibbonPageCategory1.Name = "pivotToolsRibbonPageCategory1";
            this.pivotToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage1,
            this.dashboardItemDesignRibbonPage9});
            this.pivotToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardDesigner1
            // 
            this.dashboardDesigner1.CustomDBSchemaProvider = null;
            this.dashboardDesigner1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardDesigner1.Location = new System.Drawing.Point(0, 0);
            this.dashboardDesigner1.MenuManager = this.ribbonControl1;
            this.dashboardDesigner1.Name = "dashboardDesigner1";
            this.dashboardDesigner1.PopupMenu = this.dashboardPopupMenu1;
            this.dashboardDesigner1.PrintingOptions.DocumentContentOptions.FilterState = DevExpress.DashboardWin.DashboardPrintingFilterState.SeparatePage;
            this.dashboardDesigner1.PrintingOptions.FontInfo.GdiCharSet = ((byte)(0));
            this.dashboardDesigner1.PrintingOptions.FontInfo.Name = null;
            this.dashboardDesigner1.Size = new System.Drawing.Size(657, 203);
            this.dashboardDesigner1.TabIndex = 0;
            // 
            // dashboardPopupMenu1
            // 
            this.dashboardPopupMenu1.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.duplicateItemBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.deleteItemBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.convertDashboardItemTypeBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.removeDataItemsBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.transposeItemBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.editRulesBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.editItemNamesBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.deleteGroupBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.editFilterBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.clearFilterBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.mapLoadBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.mapImportBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.mapFullExtentBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.imageLoadBarItem1, true);
            this.dashboardPopupMenu1.ItemLinks.Add(this.imageImportBarItem1);
            this.dashboardPopupMenu1.ItemLinks.Add(this.textBoxEditTextBarItem1, true);
            this.dashboardPopupMenu1.Name = "dashboardPopupMenu1";
            this.dashboardPopupMenu1.Ribbon = this.ribbonControl1;
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup1,
            this.pivotLayoutRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            this.dataRibbonPage1.Visible = false;
            // 
            // filteringRibbonPageGroup1
            // 
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup1.Name = "filteringRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup1
            // 
            this.interactivitySettingsRibbonPageGroup1.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup1.Name = "interactivitySettingsRibbonPageGroup1";
            // 
            // pivotLayoutRibbonPageGroup1
            // 
            this.pivotLayoutRibbonPageGroup1.ItemLinks.Add(this.pivotInitialStateBarItem1);
            this.pivotLayoutRibbonPageGroup1.Name = "pivotLayoutRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage9
            // 
            this.dashboardItemDesignRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup9});
            this.dashboardItemDesignRibbonPage9.Name = "dashboardItemDesignRibbonPage9";
            this.dashboardItemDesignRibbonPage9.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup9
            // 
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup9.Name = "commonItemDesignRibbonPageGroup9";
            // 
            // gridToolsRibbonPageCategory1
            // 
            this.gridToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.gridToolsRibbonPageCategory1.Name = "gridToolsRibbonPageCategory1";
            this.gridToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage2,
            this.dashboardItemDesignRibbonPage1});
            this.gridToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage2
            // 
            this.dataRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup2,
            this.masterFilterRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup2});
            this.dataRibbonPage2.Name = "dataRibbonPage2";
            this.dataRibbonPage2.Visible = false;
            // 
            // filteringRibbonPageGroup2
            // 
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup2.Name = "filteringRibbonPageGroup2";
            // 
            // masterFilterRibbonPageGroup1
            // 
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup1.Name = "masterFilterRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup2
            // 
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup2.Name = "interactivitySettingsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage1
            // 
            this.dashboardItemDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup1,
            this.gridStyleRibbonPageGroup1,
            this.gridLayoutRibbonPageGroup1,
            this.gridColumnWidthModeRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage1.Name = "dashboardItemDesignRibbonPage1";
            this.dashboardItemDesignRibbonPage1.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup1
            // 
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup1.Name = "commonItemDesignRibbonPageGroup1";
            // 
            // gridStyleRibbonPageGroup1
            // 
            this.gridStyleRibbonPageGroup1.ItemLinks.Add(this.gridHorizontalLinesBarItem1);
            this.gridStyleRibbonPageGroup1.ItemLinks.Add(this.gridVerticalLinesBarItem1);
            this.gridStyleRibbonPageGroup1.ItemLinks.Add(this.gridBandedRowsBarItem1);
            this.gridStyleRibbonPageGroup1.Name = "gridStyleRibbonPageGroup1";
            // 
            // gridLayoutRibbonPageGroup1
            // 
            this.gridLayoutRibbonPageGroup1.ItemLinks.Add(this.gridMergeCellsBarItem1);
            this.gridLayoutRibbonPageGroup1.ItemLinks.Add(this.gridColumnHeadersBarItem1);
            this.gridLayoutRibbonPageGroup1.ItemLinks.Add(this.gridWordWrapBarItem1);
            this.gridLayoutRibbonPageGroup1.Name = "gridLayoutRibbonPageGroup1";
            // 
            // gridColumnWidthModeRibbonPageGroup1
            // 
            this.gridColumnWidthModeRibbonPageGroup1.ItemLinks.Add(this.gridAutoFitToContentsColumnWidthModeBarItem1);
            this.gridColumnWidthModeRibbonPageGroup1.ItemLinks.Add(this.gridAutoFitToGridColumnWidthModeBarItem1);
            this.gridColumnWidthModeRibbonPageGroup1.ItemLinks.Add(this.manualGridColumnWidthModeBarItem1);
            this.gridColumnWidthModeRibbonPageGroup1.Name = "gridColumnWidthModeRibbonPageGroup1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage3,
            this.dashboardItemDesignRibbonPage2});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage3
            // 
            this.dataRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup3,
            this.masterFilterRibbonPageGroup2,
            this.interactivitySettingsRibbonPageGroup3,
            this.targetDimensionsRibbonPageGroup1});
            this.dataRibbonPage3.Name = "dataRibbonPage3";
            this.dataRibbonPage3.Visible = false;
            // 
            // filteringRibbonPageGroup3
            // 
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup3.Name = "filteringRibbonPageGroup3";
            // 
            // masterFilterRibbonPageGroup2
            // 
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup2.Name = "masterFilterRibbonPageGroup2";
            // 
            // interactivitySettingsRibbonPageGroup3
            // 
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup3.Name = "interactivitySettingsRibbonPageGroup3";
            // 
            // targetDimensionsRibbonPageGroup1
            // 
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup1.Name = "targetDimensionsRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage2
            // 
            this.dashboardItemDesignRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup2,
            this.chartLayoutPageGroup1,
            this.chartLegendPositionPageGroup1,
            this.chartStylePageGroup1,
            this.coloringOptionsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage2.Name = "dashboardItemDesignRibbonPage2";
            this.dashboardItemDesignRibbonPage2.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup2
            // 
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup2.Name = "commonItemDesignRibbonPageGroup2";
            // 
            // chartLayoutPageGroup1
            // 
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartRotateBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartXAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartYAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.Name = "chartLayoutPageGroup1";
            // 
            // chartLegendPositionPageGroup1
            // 
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.chartShowLegendBarItem1);
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.galleryChartLegendPositionItem1);
            this.chartLegendPositionPageGroup1.Name = "chartLegendPositionPageGroup1";
            // 
            // chartStylePageGroup1
            // 
            this.chartStylePageGroup1.ItemLinks.Add(this.galleryChartSeriesTypeItem1);
            this.chartStylePageGroup1.Name = "chartStylePageGroup1";
            // 
            // coloringOptionsRibbonPageGroup1
            // 
            this.coloringOptionsRibbonPageGroup1.ItemLinks.Add(this.useGlobalColorsBarItem1);
            this.coloringOptionsRibbonPageGroup1.ItemLinks.Add(this.useLocalColorsBarItem1);
            this.coloringOptionsRibbonPageGroup1.ItemLinks.Add(this.editActualColorsBarItem1);
            this.coloringOptionsRibbonPageGroup1.Name = "coloringOptionsRibbonPageGroup1";
            // 
            // piesToolsRibbonPageCategory1
            // 
            this.piesToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.piesToolsRibbonPageCategory1.Name = "piesToolsRibbonPageCategory1";
            this.piesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage4,
            this.dashboardItemDesignRibbonPage3});
            this.piesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage4
            // 
            this.dataRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup4,
            this.masterFilterRibbonPageGroup3,
            this.interactivitySettingsRibbonPageGroup4,
            this.targetDimensionsRibbonPageGroup2});
            this.dataRibbonPage4.Name = "dataRibbonPage4";
            this.dataRibbonPage4.Visible = false;
            // 
            // filteringRibbonPageGroup4
            // 
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup4.Name = "filteringRibbonPageGroup4";
            // 
            // masterFilterRibbonPageGroup3
            // 
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup3.Name = "masterFilterRibbonPageGroup3";
            // 
            // interactivitySettingsRibbonPageGroup4
            // 
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup4.Name = "interactivitySettingsRibbonPageGroup4";
            // 
            // targetDimensionsRibbonPageGroup2
            // 
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup2.Name = "targetDimensionsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage3
            // 
            this.dashboardItemDesignRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup3,
            this.contentArrangementRibbonPageGroup1,
            this.pieLabelsRibbonPageGroup1,
            this.pieStyleRibbonPageGroup1,
            this.coloringOptionsRibbonPageGroup2});
            this.dashboardItemDesignRibbonPage3.Name = "dashboardItemDesignRibbonPage3";
            this.dashboardItemDesignRibbonPage3.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup3
            // 
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup3.Name = "commonItemDesignRibbonPageGroup3";
            // 
            // contentArrangementRibbonPageGroup1
            // 
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup1.Name = "contentArrangementRibbonPageGroup1";
            // 
            // pieLabelsRibbonPageGroup1
            // 
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieLabelsDataLabelsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieTooltipsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieShowCaptionsBarItem1);
            this.pieLabelsRibbonPageGroup1.Name = "pieLabelsRibbonPageGroup1";
            // 
            // pieStyleRibbonPageGroup1
            // 
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStylePieBarItem1);
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStyleDonutBarItem1);
            this.pieStyleRibbonPageGroup1.Name = "pieStyleRibbonPageGroup1";
            // 
            // coloringOptionsRibbonPageGroup2
            // 
            this.coloringOptionsRibbonPageGroup2.ItemLinks.Add(this.useGlobalColorsBarItem1);
            this.coloringOptionsRibbonPageGroup2.ItemLinks.Add(this.useLocalColorsBarItem1);
            this.coloringOptionsRibbonPageGroup2.ItemLinks.Add(this.editActualColorsBarItem1);
            this.coloringOptionsRibbonPageGroup2.Name = "coloringOptionsRibbonPageGroup2";
            // 
            // gaugesToolsRibbonPageCategory1
            // 
            this.gaugesToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.gaugesToolsRibbonPageCategory1.Name = "gaugesToolsRibbonPageCategory1";
            this.gaugesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage5,
            this.dashboardItemDesignRibbonPage4});
            this.gaugesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage5
            // 
            this.dataRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup5,
            this.masterFilterRibbonPageGroup4,
            this.interactivitySettingsRibbonPageGroup5});
            this.dataRibbonPage5.Name = "dataRibbonPage5";
            this.dataRibbonPage5.Visible = false;
            // 
            // filteringRibbonPageGroup5
            // 
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup5.Name = "filteringRibbonPageGroup5";
            // 
            // masterFilterRibbonPageGroup4
            // 
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup4.Name = "masterFilterRibbonPageGroup4";
            // 
            // interactivitySettingsRibbonPageGroup5
            // 
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup5.Name = "interactivitySettingsRibbonPageGroup5";
            // 
            // dashboardItemDesignRibbonPage4
            // 
            this.dashboardItemDesignRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup4,
            this.contentArrangementRibbonPageGroup2,
            this.gaugeStyleRibbonPageGroup1,
            this.gaugesLabelsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage4.Name = "dashboardItemDesignRibbonPage4";
            this.dashboardItemDesignRibbonPage4.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup4
            // 
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup4.Name = "commonItemDesignRibbonPageGroup4";
            // 
            // contentArrangementRibbonPageGroup2
            // 
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup2.Name = "contentArrangementRibbonPageGroup2";
            // 
            // gaugeStyleRibbonPageGroup1
            // 
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleFullCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleHalfCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.gaugeStyleRibbonPageGroup1.Name = "gaugeStyleRibbonPageGroup1";
            // 
            // gaugesLabelsRibbonPageGroup1
            // 
            this.gaugesLabelsRibbonPageGroup1.ItemLinks.Add(this.gaugeShowCaptionsBarItem1);
            this.gaugesLabelsRibbonPageGroup1.Name = "gaugesLabelsRibbonPageGroup1";
            // 
            // cardsToolsRibbonPageCategory1
            // 
            this.cardsToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.cardsToolsRibbonPageCategory1.Name = "cardsToolsRibbonPageCategory1";
            this.cardsToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage6,
            this.dashboardItemDesignRibbonPage5});
            this.cardsToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage6
            // 
            this.dataRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup6,
            this.masterFilterRibbonPageGroup5,
            this.interactivitySettingsRibbonPageGroup6});
            this.dataRibbonPage6.Name = "dataRibbonPage6";
            this.dataRibbonPage6.Visible = false;
            // 
            // filteringRibbonPageGroup6
            // 
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup6.Name = "filteringRibbonPageGroup6";
            // 
            // masterFilterRibbonPageGroup5
            // 
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup5.Name = "masterFilterRibbonPageGroup5";
            // 
            // interactivitySettingsRibbonPageGroup6
            // 
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup6.Name = "interactivitySettingsRibbonPageGroup6";
            // 
            // dashboardItemDesignRibbonPage5
            // 
            this.dashboardItemDesignRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup5,
            this.contentArrangementRibbonPageGroup3});
            this.dashboardItemDesignRibbonPage5.Name = "dashboardItemDesignRibbonPage5";
            this.dashboardItemDesignRibbonPage5.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup5
            // 
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup5.Name = "commonItemDesignRibbonPageGroup5";
            // 
            // contentArrangementRibbonPageGroup3
            // 
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup3.Name = "contentArrangementRibbonPageGroup3";
            // 
            // rangeFilterToolsRibbonPageCategory1
            // 
            this.rangeFilterToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.rangeFilterToolsRibbonPageCategory1.Name = "rangeFilterToolsRibbonPageCategory1";
            this.rangeFilterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage7,
            this.dashboardItemDesignRibbonPage8});
            this.rangeFilterToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage7
            // 
            this.dataRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup7});
            this.dataRibbonPage7.Name = "dataRibbonPage7";
            this.dataRibbonPage7.Visible = false;
            // 
            // filteringRibbonPageGroup7
            // 
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup7.Name = "filteringRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup7
            // 
            this.interactivitySettingsRibbonPageGroup7.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup7.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup7.Name = "interactivitySettingsRibbonPageGroup7";
            // 
            // dashboardItemDesignRibbonPage8
            // 
            this.dashboardItemDesignRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup8,
            this.rangeFilterSeriesTypeRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage8.Name = "dashboardItemDesignRibbonPage8";
            this.dashboardItemDesignRibbonPage8.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup8
            // 
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup8.Name = "commonItemDesignRibbonPageGroup8";
            // 
            // rangeFilterSeriesTypeRibbonPageGroup1
            // 
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.Name = "rangeFilterSeriesTypeRibbonPageGroup1";
            // 
            // choroplethMapToolsRibbonPageCategory1
            // 
            this.choroplethMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.choroplethMapToolsRibbonPageCategory1.Name = "choroplethMapToolsRibbonPageCategory1";
            this.choroplethMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage8,
            this.dashboardItemDesignRibbonPage10});
            this.choroplethMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage8
            // 
            this.dataRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup8,
            this.masterFilterRibbonPageGroup6,
            this.interactivitySettingsRibbonPageGroup8});
            this.dataRibbonPage8.Name = "dataRibbonPage8";
            this.dataRibbonPage8.Visible = false;
            // 
            // filteringRibbonPageGroup8
            // 
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup8.Name = "filteringRibbonPageGroup8";
            // 
            // masterFilterRibbonPageGroup6
            // 
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.Name = "masterFilterRibbonPageGroup6";
            // 
            // interactivitySettingsRibbonPageGroup8
            // 
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup8.Name = "interactivitySettingsRibbonPageGroup8";
            // 
            // dashboardItemDesignRibbonPage10
            // 
            this.dashboardItemDesignRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup10,
            this.mapShapefileRibbonPageGroup1,
            this.mapNavigationPageGroup1,
            this.mapShapeLabelsAttributePageGroup1,
            this.mapLegendPositionPageGroup1});
            this.dashboardItemDesignRibbonPage10.Name = "dashboardItemDesignRibbonPage10";
            this.dashboardItemDesignRibbonPage10.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup10
            // 
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup10.Name = "commonItemDesignRibbonPageGroup10";
            // 
            // mapShapefileRibbonPageGroup1
            // 
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup1.Name = "mapShapefileRibbonPageGroup1";
            // 
            // mapNavigationPageGroup1
            // 
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup1.Name = "mapNavigationPageGroup1";
            // 
            // mapShapeLabelsAttributePageGroup1
            // 
            this.mapShapeLabelsAttributePageGroup1.ItemLinks.Add(this.choroplethMapShapeLabelsAttributeBarItem1);
            this.mapShapeLabelsAttributePageGroup1.Name = "mapShapeLabelsAttributePageGroup1";
            // 
            // mapLegendPositionPageGroup1
            // 
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup1.Name = "mapLegendPositionPageGroup1";
            // 
            // geoPointMapToolsRibbonPageCategory1
            // 
            this.geoPointMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.geoPointMapToolsRibbonPageCategory1.Name = "geoPointMapToolsRibbonPageCategory1";
            this.geoPointMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage9,
            this.dashboardItemDesignRibbonPage11});
            this.geoPointMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage9
            // 
            this.dataRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup9,
            this.masterFilterRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup9,
            this.geoPointMapClusterizationRibbonPageGroup1});
            this.dataRibbonPage9.Name = "dataRibbonPage9";
            this.dataRibbonPage9.Visible = false;
            // 
            // filteringRibbonPageGroup9
            // 
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup9.Name = "filteringRibbonPageGroup9";
            // 
            // masterFilterRibbonPageGroup7
            // 
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.Name = "masterFilterRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup9
            // 
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup9.Name = "interactivitySettingsRibbonPageGroup9";
            // 
            // geoPointMapClusterizationRibbonPageGroup1
            // 
            this.geoPointMapClusterizationRibbonPageGroup1.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup1.Name = "geoPointMapClusterizationRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage11
            // 
            this.dashboardItemDesignRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup11,
            this.mapShapefileRibbonPageGroup2,
            this.mapNavigationPageGroup2,
            this.mapShapeLabelsAttributePageGroup2});
            this.dashboardItemDesignRibbonPage11.Name = "dashboardItemDesignRibbonPage11";
            this.dashboardItemDesignRibbonPage11.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup11
            // 
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup11.Name = "commonItemDesignRibbonPageGroup11";
            // 
            // mapShapefileRibbonPageGroup2
            // 
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup2.Name = "mapShapefileRibbonPageGroup2";
            // 
            // mapNavigationPageGroup2
            // 
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup2.Name = "mapNavigationPageGroup2";
            // 
            // mapShapeLabelsAttributePageGroup2
            // 
            this.mapShapeLabelsAttributePageGroup2.ItemLinks.Add(this.mapShapeTitleAttributeBarItem1);
            this.mapShapeLabelsAttributePageGroup2.Name = "mapShapeLabelsAttributePageGroup2";
            // 
            // bubbleMapToolsRibbonPageCategory1
            // 
            this.bubbleMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.bubbleMapToolsRibbonPageCategory1.Name = "bubbleMapToolsRibbonPageCategory1";
            this.bubbleMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage10,
            this.dashboardItemDesignRibbonPage12});
            this.bubbleMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage10
            // 
            this.dataRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup10,
            this.masterFilterRibbonPageGroup8,
            this.interactivitySettingsRibbonPageGroup10,
            this.geoPointMapClusterizationRibbonPageGroup2});
            this.dataRibbonPage10.Name = "dataRibbonPage10";
            this.dataRibbonPage10.Visible = false;
            // 
            // filteringRibbonPageGroup10
            // 
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup10.Name = "filteringRibbonPageGroup10";
            // 
            // masterFilterRibbonPageGroup8
            // 
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.Name = "masterFilterRibbonPageGroup8";
            // 
            // interactivitySettingsRibbonPageGroup10
            // 
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup10.Name = "interactivitySettingsRibbonPageGroup10";
            // 
            // geoPointMapClusterizationRibbonPageGroup2
            // 
            this.geoPointMapClusterizationRibbonPageGroup2.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup2.Name = "geoPointMapClusterizationRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage12
            // 
            this.dashboardItemDesignRibbonPage12.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup12,
            this.mapShapefileRibbonPageGroup3,
            this.mapNavigationPageGroup3,
            this.mapShapeLabelsAttributePageGroup3,
            this.mapLegendPositionPageGroup2,
            this.weightedLegendPageGroup1});
            this.dashboardItemDesignRibbonPage12.Name = "dashboardItemDesignRibbonPage12";
            this.dashboardItemDesignRibbonPage12.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup12
            // 
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup12.Name = "commonItemDesignRibbonPageGroup12";
            // 
            // mapShapefileRibbonPageGroup3
            // 
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup3.Name = "mapShapefileRibbonPageGroup3";
            // 
            // mapNavigationPageGroup3
            // 
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup3.Name = "mapNavigationPageGroup3";
            // 
            // mapShapeLabelsAttributePageGroup3
            // 
            this.mapShapeLabelsAttributePageGroup3.ItemLinks.Add(this.mapShapeTitleAttributeBarItem1);
            this.mapShapeLabelsAttributePageGroup3.Name = "mapShapeLabelsAttributePageGroup3";
            // 
            // mapLegendPositionPageGroup2
            // 
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup2.Name = "mapLegendPositionPageGroup2";
            // 
            // weightedLegendPageGroup1
            // 
            this.weightedLegendPageGroup1.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup1.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup1.Name = "weightedLegendPageGroup1";
            // 
            // pieMapToolsRibbonPageCategory1
            // 
            this.pieMapToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.pieMapToolsRibbonPageCategory1.Name = "pieMapToolsRibbonPageCategory1";
            this.pieMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage11,
            this.dashboardItemDesignRibbonPage13});
            this.pieMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage11
            // 
            this.dataRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup11,
            this.masterFilterRibbonPageGroup9,
            this.interactivitySettingsRibbonPageGroup11,
            this.geoPointMapClusterizationRibbonPageGroup3});
            this.dataRibbonPage11.Name = "dataRibbonPage11";
            this.dataRibbonPage11.Visible = false;
            // 
            // filteringRibbonPageGroup11
            // 
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup11.Name = "filteringRibbonPageGroup11";
            // 
            // masterFilterRibbonPageGroup9
            // 
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.Name = "masterFilterRibbonPageGroup9";
            // 
            // interactivitySettingsRibbonPageGroup11
            // 
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup11.Name = "interactivitySettingsRibbonPageGroup11";
            // 
            // geoPointMapClusterizationRibbonPageGroup3
            // 
            this.geoPointMapClusterizationRibbonPageGroup3.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup3.Name = "geoPointMapClusterizationRibbonPageGroup3";
            // 
            // dashboardItemDesignRibbonPage13
            // 
            this.dashboardItemDesignRibbonPage13.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup13,
            this.mapShapefileRibbonPageGroup4,
            this.mapNavigationPageGroup4,
            this.mapShapeLabelsAttributePageGroup4,
            this.mapLegendPositionPageGroup3,
            this.weightedLegendPageGroup2,
            this.pieMapOptionsPageGroup1});
            this.dashboardItemDesignRibbonPage13.Name = "dashboardItemDesignRibbonPage13";
            this.dashboardItemDesignRibbonPage13.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup13
            // 
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup13.Name = "commonItemDesignRibbonPageGroup13";
            // 
            // mapShapefileRibbonPageGroup4
            // 
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup4.Name = "mapShapefileRibbonPageGroup4";
            // 
            // mapNavigationPageGroup4
            // 
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup4.Name = "mapNavigationPageGroup4";
            // 
            // mapShapeLabelsAttributePageGroup4
            // 
            this.mapShapeLabelsAttributePageGroup4.ItemLinks.Add(this.mapShapeTitleAttributeBarItem1);
            this.mapShapeLabelsAttributePageGroup4.Name = "mapShapeLabelsAttributePageGroup4";
            // 
            // mapLegendPositionPageGroup3
            // 
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup3.Name = "mapLegendPositionPageGroup3";
            // 
            // weightedLegendPageGroup2
            // 
            this.weightedLegendPageGroup2.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup2.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup2.Name = "weightedLegendPageGroup2";
            // 
            // pieMapOptionsPageGroup1
            // 
            this.pieMapOptionsPageGroup1.ItemLinks.Add(this.pieMapIsWeightedBarItem1);
            this.pieMapOptionsPageGroup1.Name = "pieMapOptionsPageGroup1";
            // 
            // filterElementToolsRibbonPageCategory1
            // 
            this.filterElementToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.filterElementToolsRibbonPageCategory1.Name = "filterElementToolsRibbonPageCategory1";
            this.filterElementToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage12,
            this.dashboardItemDesignRibbonPage15});
            this.filterElementToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage12
            // 
            this.dataRibbonPage12.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup12,
            this.interactivitySettingsRibbonPageGroup12});
            this.dataRibbonPage12.Name = "dataRibbonPage12";
            this.dataRibbonPage12.Visible = false;
            // 
            // filteringRibbonPageGroup12
            // 
            this.filteringRibbonPageGroup12.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup12.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup12.Name = "filteringRibbonPageGroup12";
            // 
            // interactivitySettingsRibbonPageGroup12
            // 
            this.interactivitySettingsRibbonPageGroup12.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup12.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup12.Name = "interactivitySettingsRibbonPageGroup12";
            // 
            // dashboardItemDesignRibbonPage15
            // 
            this.dashboardItemDesignRibbonPage15.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup15,
            this.filterElementTypeRibbonPageGroup1,
            this.treeViewLayoutRibbonPageGroup1,
            this.filterElementItemOptionsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage15.Name = "dashboardItemDesignRibbonPage15";
            this.dashboardItemDesignRibbonPage15.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup15
            // 
            this.commonItemDesignRibbonPageGroup15.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup15.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup15.Name = "commonItemDesignRibbonPageGroup15";
            // 
            // filterElementTypeRibbonPageGroup1
            // 
            this.filterElementTypeRibbonPageGroup1.ItemLinks.Add(this.comboBoxStandardTypeBarItem1);
            this.filterElementTypeRibbonPageGroup1.ItemLinks.Add(this.comboBoxCheckedTypeBarItem1);
            this.filterElementTypeRibbonPageGroup1.ItemLinks.Add(this.listBoxCheckedTypeBarItem1);
            this.filterElementTypeRibbonPageGroup1.ItemLinks.Add(this.listBoxRadioTypeBarItem1);
            this.filterElementTypeRibbonPageGroup1.Name = "filterElementTypeRibbonPageGroup1";
            this.filterElementTypeRibbonPageGroup1.Visible = false;
            // 
            // treeViewLayoutRibbonPageGroup1
            // 
            this.treeViewLayoutRibbonPageGroup1.ItemLinks.Add(this.treeViewAutoExpandBarItem1);
            this.treeViewLayoutRibbonPageGroup1.Name = "treeViewLayoutRibbonPageGroup1";
            this.treeViewLayoutRibbonPageGroup1.Visible = false;
            // 
            // filterElementItemOptionsRibbonPageGroup1
            // 
            this.filterElementItemOptionsRibbonPageGroup1.ItemLinks.Add(this.filterElementShowAllValueBarItem1);
            this.filterElementItemOptionsRibbonPageGroup1.Name = "filterElementItemOptionsRibbonPageGroup1";
            this.filterElementItemOptionsRibbonPageGroup1.Visible = false;
            // 
            // groupToolsRibbonPageCategory1
            // 
            this.groupToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.groupToolsRibbonPageCategory1.Name = "groupToolsRibbonPageCategory1";
            this.groupToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage13,
            this.dashboardItemDesignRibbonPage14});
            this.groupToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage13
            // 
            this.dataRibbonPage13.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.masterFilterRibbonPageGroup10});
            this.dataRibbonPage13.Name = "dataRibbonPage13";
            this.dataRibbonPage13.Visible = false;
            // 
            // masterFilterRibbonPageGroup10
            // 
            this.masterFilterRibbonPageGroup10.ItemLinks.Add(this.groupMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup10.ItemLinks.Add(this.groupIgnoreMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup10.Name = "masterFilterRibbonPageGroup10";
            // 
            // dashboardItemDesignRibbonPage14
            // 
            this.dashboardItemDesignRibbonPage14.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup14});
            this.dashboardItemDesignRibbonPage14.Name = "dashboardItemDesignRibbonPage14";
            this.dashboardItemDesignRibbonPage14.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup14
            // 
            this.commonItemDesignRibbonPageGroup14.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup14.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup14.Name = "commonItemDesignRibbonPageGroup14";
            // 
            // imageToolsRibbonPageCategory1
            // 
            this.imageToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.imageToolsRibbonPageCategory1.Name = "imageToolsRibbonPageCategory1";
            this.imageToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage6});
            this.imageToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage6
            // 
            this.dashboardItemDesignRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup6,
            this.imageOpenRibbonPageGroup1,
            this.imageSizeModeRibbonPageGroup1,
            this.imageAlignmentRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage6.Name = "dashboardItemDesignRibbonPage6";
            this.dashboardItemDesignRibbonPage6.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup6
            // 
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup6.Name = "commonItemDesignRibbonPageGroup6";
            // 
            // imageOpenRibbonPageGroup1
            // 
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageLoadBarItem1);
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageImportBarItem1);
            this.imageOpenRibbonPageGroup1.Name = "imageOpenRibbonPageGroup1";
            // 
            // imageSizeModeRibbonPageGroup1
            // 
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeClipBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeStretchBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeSqueezeBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeZoomBarItem1);
            this.imageSizeModeRibbonPageGroup1.Name = "imageSizeModeRibbonPageGroup1";
            // 
            // imageAlignmentRibbonPageGroup1
            // 
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.Name = "imageAlignmentRibbonPageGroup1";
            // 
            // textBoxToolsRibbonPageCategory1
            // 
            this.textBoxToolsRibbonPageCategory1.Control = this.dashboardDesigner1;
            this.textBoxToolsRibbonPageCategory1.Name = "textBoxToolsRibbonPageCategory1";
            this.textBoxToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage7});
            this.textBoxToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage7
            // 
            this.dashboardItemDesignRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup7,
            this.textBoxSettingsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage7.Name = "dashboardItemDesignRibbonPage7";
            this.dashboardItemDesignRibbonPage7.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup7
            // 
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup7.Name = "commonItemDesignRibbonPageGroup7";
            // 
            // textBoxSettingsRibbonPageGroup1
            // 
            this.textBoxSettingsRibbonPageGroup1.ItemLinks.Add(this.textBoxEditTextBarItem1);
            this.textBoxSettingsRibbonPageGroup1.Name = "textBoxSettingsRibbonPageGroup1";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "ribbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.fileRibbonPageGroup1,
            this.historyRibbonPageGroup1,
            this.insertRibbonPageGroup1,
            this.itemOperationRibbonPageGroup1,
            this.groupOperationRibbonPageGroup1,
            this.dashboardDesignRibbonPageGroup1,
            this.quickAccessHistoryRibbonPageGroup1});
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            // 
            // fileRibbonPageGroup1
            // 
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileNewBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileOpenBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveBarItem1);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsBarItem1);
            this.fileRibbonPageGroup1.Name = "fileRibbonPageGroup1";
            // 
            // historyRibbonPageGroup1
            // 
            this.historyRibbonPageGroup1.ItemLinks.Add(this.undoBarItem1);
            this.historyRibbonPageGroup1.ItemLinks.Add(this.redoBarItem1);
            this.historyRibbonPageGroup1.Name = "historyRibbonPageGroup1";
            // 
            // insertRibbonPageGroup1
            // 
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPivotBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGridBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChartBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPiesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGaugesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertCardsBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChoroplethMapBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGeoPointMapBarSubItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertRangeFilterBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertFilterElementSubItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertImageBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGroupBarItem1);
            this.insertRibbonPageGroup1.Name = "insertRibbonPageGroup1";
            // 
            // itemOperationRibbonPageGroup1
            // 
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.duplicateItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.deleteItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.convertDashboardItemTypeBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.removeDataItemsBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.transposeItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.editRulesBarItem1);
            this.itemOperationRibbonPageGroup1.Name = "itemOperationRibbonPageGroup1";
            this.itemOperationRibbonPageGroup1.Visible = false;
            // 
            // groupOperationRibbonPageGroup1
            // 
            this.groupOperationRibbonPageGroup1.ItemLinks.Add(this.deleteGroupBarItem1);
            this.groupOperationRibbonPageGroup1.Name = "groupOperationRibbonPageGroup1";
            this.groupOperationRibbonPageGroup1.Visible = false;
            // 
            // dashboardDesignRibbonPageGroup1
            // 
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.dashboardTitleBarItem1);
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.setCurrencyCultureBarItem1);
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.dashboardColorSchemeBarItem1);
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.dashboardParametersBarItem1);
            this.dashboardDesignRibbonPageGroup1.Name = "dashboardDesignRibbonPageGroup1";
            // 
            // quickAccessHistoryRibbonPageGroup1
            // 
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.Name = "quickAccessHistoryRibbonPageGroup1";
            this.quickAccessHistoryRibbonPageGroup1.Visible = false;
            // 
            // dataSourceRibbonPage1
            // 
            this.dataSourceRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.dataSourceRibbonPageGroup1,
            this.sqlDataSourceQueriesRibbonPageGroup1,
            this.dataSourceFilteringRibbonPageGroup1});
            this.dataSourceRibbonPage1.Name = "dataSourceRibbonPage1";
            // 
            // dataSourceRibbonPageGroup1
            // 
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.newDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editSqlConnectionBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editOlapConnectionBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editObjectDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editEFDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.renameDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.deleteDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.serverModeBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.addCalculatedFieldBarItem1);
            this.dataSourceRibbonPageGroup1.Name = "dataSourceRibbonPageGroup1";
            // 
            // sqlDataSourceQueriesRibbonPageGroup1
            // 
            this.sqlDataSourceQueriesRibbonPageGroup1.ItemLinks.Add(this.editQueriesBarItem1);
            this.sqlDataSourceQueriesRibbonPageGroup1.Name = "sqlDataSourceQueriesRibbonPageGroup1";
            this.sqlDataSourceQueriesRibbonPageGroup1.Visible = false;
            // 
            // dataSourceFilteringRibbonPageGroup1
            // 
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.editDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.clearDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.Name = "dataSourceFilteringRibbonPageGroup1";
            this.dataSourceFilteringRibbonPageGroup1.Visible = false;
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.skinsRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // skinsRibbonPageGroup1
            // 
            this.skinsRibbonPageGroup1.ItemLinks.Add(this.dashboardSkinsBarItem1);
            this.skinsRibbonPageGroup1.Name = "skinsRibbonPageGroup1";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 404);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(771, 27);
            // 
            // navigationPane1
            // 
            this.navigationPane1.Controls.Add(this.navigationPage1);
            this.navigationPane1.Controls.Add(this.navigationPage2);
            this.navigationPane1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navigationPane1.Location = new System.Drawing.Point(0, 141);
            this.navigationPane1.Name = "navigationPane1";
            this.navigationPane1.PageProperties.AllowHtmlDraw = false;
            this.navigationPane1.Pages.AddRange(new DevExpress.XtraBars.Navigation.NavigationPage[] {
            this.navigationPage1,
            this.navigationPage2});
            this.navigationPane1.RegularSize = new System.Drawing.Size(771, 263);
            this.navigationPane1.SelectedPage = this.navigationPage1;
            this.navigationPane1.SelectedPageIndex = 0;
            this.navigationPane1.Size = new System.Drawing.Size(771, 263);
            this.navigationPane1.TabIndex = 1;
            this.navigationPane1.Text = "navigationPane1";
            this.navigationPane1.Click += new System.EventHandler(this.navigationPane1_Click);
            // 
            // navigationPage1
            // 
            this.navigationPage1.Caption = "navigationPage1";
            this.navigationPage1.Controls.Add(this.reportViewer1);
            this.navigationPage1.Name = "navigationPage1";
            this.navigationPage1.Size = new System.Drawing.Size(657, 203);
            // 
            // navigationPage2
            // 
            this.navigationPage2.Caption = "navigationPage2";
            this.navigationPage2.Controls.Add(this.dashboardDesigner1);
            this.navigationPage2.Name = "navigationPage2";
            this.navigationPage2.Size = new System.Drawing.Size(657, 203);
            // 
            // dashboardBarController1
            // 
            this.dashboardBarController1.BarItems.Add(this.fileNewBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileOpenBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileSaveBarItem1);
            this.dashboardBarController1.BarItems.Add(this.fileSaveAsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.undoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.redoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.newDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editSqlConnectionBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editOlapConnectionBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editObjectDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editEFDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.renameDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteDataSourceBarItem1);
            this.dashboardBarController1.BarItems.Add(this.serverModeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.addCalculatedFieldBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editQueriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editDataSourceFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.clearDataSourceFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPivotBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGridBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertChartBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPiesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGaugesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertCardsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertChoroplethMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGeoPointMapBarSubItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGeoPointMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertBubbleMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPieMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertRangeFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertFilterElementSubItem1);
            this.dashboardBarController1.BarItems.Add(this.insertComboBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertListBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertTreeViewBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertImageBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertTextBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGroupBarItem1);
            this.dashboardBarController1.BarItems.Add(this.duplicateItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertDashboardItemTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToPivotBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToGridBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToChartBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToPieBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToGaugeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToCardBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToChoroplethMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertGeoPointMapBaseBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToGeoPointMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToBubbleMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToPieMapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToRangeFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToComboBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToListBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.convertToTreeViewBarItem1);
            this.dashboardBarController1.BarItems.Add(this.removeDataItemsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.transposeItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editRulesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteGroupBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardTitleBarItem1);
            this.dashboardBarController1.BarItems.Add(this.setCurrencyCultureBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardColorSchemeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardParametersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardSkinsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.clearFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.masterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.multipleValuesMasterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownBarItem1);
            this.dashboardBarController1.BarItems.Add(this.groupMasterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.groupIgnoreMasterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.ignoreMasterFiltersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.crossDataSourceFilteringBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.geoPointMapClusterizationBarItem1);
            this.dashboardBarController1.BarItems.Add(this.showItemCaptionBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editItemNamesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentAutoArrangeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInColumnsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangementCountBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridHorizontalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridVerticalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridBandedRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridMergeCellsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridColumnHeadersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridWordWrapBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridAutoFitToContentsColumnWidthModeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridAutoFitToGridColumnWidthModeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.manualGridColumnWidthModeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartRotateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartXAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartYAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartShowLegendBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartSeriesTypeItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTooltipsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStylePieBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStyleDonutBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieShowCaptionsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleFullCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleHalfCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeShowCaptionsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageLoadBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageImportBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeClipBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeStretchBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeSqueezeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeZoomBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.textBoxEditTextBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotInitialStateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotAutoExpandColumnBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pivotAutoExpandRowBarItem1);
            this.dashboardBarController1.BarItems.Add(this.comboBoxStandardTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.comboBoxCheckedTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.listBoxCheckedTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.listBoxRadioTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.treeViewAutoExpandBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterElementShowAllValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapLoadBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapImportBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapDefaultShapefileBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapWorldCountriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapEuropeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapAsiaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapNorthAmericaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapSouthAmericaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapAfricaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapUSABarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapCanadaBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapLockNavigationBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapFullExtentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.choroplethMapShapeLabelsAttributeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapShapeTitleAttributeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.mapShowLegendBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryMapLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.changeWeightedLegendTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.weightedLegendNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.weightedLegendLinearBarItem1);
            this.dashboardBarController1.BarItems.Add(this.weightedLegendNestedBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryWeightedLegendPositionItem1);
            this.dashboardBarController1.BarItems.Add(this.pieMapIsWeightedBarItem1);
            this.dashboardBarController1.BarItems.Add(this.useGlobalColorsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.useLocalColorsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editActualColorsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessUndoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessRedoBarItem1);
            this.dashboardBarController1.Control = this.dashboardDesigner1;
            // 
            // reportDesigner1
            // 
            this.reportDesigner1.ContainerControl = null;
            xrDesignPanelListener1.DesignControl = this.xrDesignDockManager1;
            xrDesignPanelListener2.DesignControl = this.fieldListDockPanel1;
            xrDesignPanelListener3.DesignControl = this.propertyGridDockPanel1;
            xrDesignPanelListener4.DesignControl = this.reportExplorerDockPanel1;
            xrDesignPanelListener5.DesignControl = this.toolBoxDockPanel1;
            xrDesignPanelListener6.DesignControl = this.groupAndSortDockPanel1;
            xrDesignPanelListener7.DesignControl = this.errorListDockPanel1;
            this.reportDesigner1.DesignPanelListeners.AddRange(new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener[] {
            xrDesignPanelListener1,
            xrDesignPanelListener2,
            xrDesignPanelListener3,
            xrDesignPanelListener4,
            xrDesignPanelListener5,
            xrDesignPanelListener6,
            xrDesignPanelListener7});
            this.reportDesigner1.Form = this;
            // 
            // applicationMenu1
            // 
            this.applicationMenu1.Name = "applicationMenu1";
            this.applicationMenu1.Ribbon = this.ribbonControl1;
            this.applicationMenu1.ShowRightPane = true;
            // 
            // reportViewer1
            // 
            this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.reportViewer1.Location = new System.Drawing.Point(0, 0);
            this.reportViewer1.Name = "reportViewer1";
            this.reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote;
            this.reportViewer1.Size = new System.Drawing.Size(657, 203);
            this.reportViewer1.TabIndex = 0;
            this.reportViewer1.Load += new System.EventHandler(this.reportViewer1_Load);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(771, 431);
            this.Controls.Add(this.navigationPane1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "App";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).EndInit();
            this.fieldListDockPanel1.ResumeLayout(false);
            this.reportExplorerDockPanel1.ResumeLayout(false);
            this.propertyGridDockPanel1.ResumeLayout(false);
            this.toolBoxDockPanel1.ResumeLayout(false);
            this.errorListDockPanel1.ResumeLayout(false);
            this.groupAndSortDockPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardPopupMenu1)).EndInit();
            this.navigationPane1.ResumeLayout(false);
            this.navigationPage1.ResumeLayout(false);
            this.navigationPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            this.SuspendLayout();
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "91Wallpaper_280148.jpg");
            this.imageList1.Images.SetKeyName(1, "91Wallpaper_280671.jpg");
            this.imageList1.Images.SetKeyName(2, "91Wallpaper_280793.jpg");
            this.imageList1.Images.SetKeyName(3, "91Wallpaper_280849.jpg");
            this.imageList1.Images.SetKeyName(4, "91Wallpaper_280854.jpg");
            this.imageList1.Images.SetKeyName(5, "91Wallpaper_282818.jpg");
            this.imageList1.Images.SetKeyName(6, "91Wallpaper_282983.jpg");
            this.imageList1.Images.SetKeyName(7, "91Wallpaper_283283.jpg");
            this.imageList1.Images.SetKeyName(8, "91Wallpaper_283446.jpg");
            this.imageList1.Images.SetKeyName(9, "91Wallpaper_283979.jpg");
            this.imageList1.Images.SetKeyName(10, "91Wallpaper_283986.jpg");
            this.imageList1.Images.SetKeyName(11, "91Wallpaper_283989.jpg");
            this.imageList1.Images.SetKeyName(12, "91Wallpaper_283992.jpg");
            // 
            // galleryControl1
            // 
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            // 
            // galleryControlGallery1
            // 
            this.galleryControl1.Gallery.AllowHoverImages = true;
            this.galleryControl1.Gallery.ColumnCount = 3;
            this.galleryControl1.Gallery.DistanceBetweenItems = 100;
            galleryItemGroup1.Caption = "我的素颜";
            galleryItem1.Caption = "Item2";
            galleryItem1.Checked = true;
            galleryItem1.Description = "Description";
            galleryItem1.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem1.HoverImage")));
            galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
            galleryItem1.ImageIndex = 0;
            galleryItem2.Caption = "Item3";
            galleryItem2.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem2.HoverImage")));
            galleryItem2.HoverImageIndex = 1;
            galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
            galleryItem2.ImageIndex = 1;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2});
            galleryItemGroup2.Caption = "其他";
            galleryItem3.Caption = "Item1";
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem3});
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2});
            this.galleryControl1.Gallery.HoverImages = this.imageList1;
            this.galleryControl1.Gallery.HoverImageSize = new System.Drawing.Size(180, 180);
            this.galleryControl1.Gallery.Images = this.imageList1;
            this.galleryControl1.Gallery.ImageSize = new System.Drawing.Size(125, 125);
            this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Right;
            this.galleryControl1.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl1_Gallery_ItemClick);
            this.galleryControl1.Location = new System.Drawing.Point(0, 0);
            this.galleryControl1.Name = "galleryControl1";
            this.galleryControl1.Size = new System.Drawing.Size(730, 377);
            this.galleryControl1.TabIndex = 0;
            this.galleryControl1.Text = "galleryControl1";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            this.galleryControlClient1.Location = new System.Drawing.Point(2, 24);
            this.galleryControlClient1.Size = new System.Drawing.Size(709, 351);
            // 
            // Form2
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(730, 377);
            this.Controls.Add(this.galleryControl1);
            this.Name = "Form2";
            this.Text = "Form2";
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Esempio n. 22
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges2 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.colAvailable = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biNewProduct = new DevExpress.XtraBars.BarButtonItem();
            this.biNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biDelete = new DevExpress.XtraBars.BarButtonItem();
            this.biShowList = new DevExpress.XtraBars.BarCheckItem();
            this.biShowCard = new DevExpress.XtraBars.BarCheckItem();
            this.biMap = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.bmiNewProduct = new DevExpress.XtraBars.BarButtonItem();
            this.bmiNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biEdit = new DevExpress.XtraBars.BarButtonItem();
            this.biPrintSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiPrintOrderDetail = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSalesSummary = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSpecificationSummary = new DevExpress.XtraBars.BarButtonItem();
            this.biSalesAnalysis = new DevExpress.XtraBars.BarButtonItem();
            this.galleryQuickReports = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.biChangeViewSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiShowList = new DevExpress.XtraBars.BarCheckItem();
            this.bmiShowCard = new DevExpress.XtraBars.BarCheckItem();
            this.bmiShowCarousel = new DevExpress.XtraBars.BarCheckItem();
            this.biViewSettings = new DevExpress.XtraBars.BarButtonItem();
            this.biResetView = new DevExpress.XtraBars.BarButtonItem();
            this.biDataPaneSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiHorizontalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiVerticalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiHideDetail = new DevExpress.XtraBars.BarCheckItem();
            this.biReverseSort = new DevExpress.XtraBars.BarButtonItem();
            this.biAddColumns = new DevExpress.XtraBars.BarCheckItem();
            this.biExpandCollapse = new DevExpress.XtraBars.BarButtonItem();
            this.hiItemsCount = new DevExpress.XtraBars.BarHeaderItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.biShowCarousel = new DevExpress.XtraBars.BarCheckItem();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.biNewCustomFilter = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.gridControl = new DevExpress.XtraGrid.GridControl();
            this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colCategory = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSalePrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colRetailPrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCurrentInventory = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBackorder = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDescription1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
            this.colConsumerRating = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colProductImage = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.layoutView = new DevExpress.XtraGrid.Views.Layout.LayoutView();
            this.colName1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colName1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colImage = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colImage = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colCost1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colCost1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colSalePrice1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colSalePrice1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colDescription = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colDescription = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
            this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
            this.pnlView = new DevExpress.XtraEditors.PanelControl();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.detailItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem = new DevExpress.XtraLayout.SplitterItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colName1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colImage)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colCost1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colSalePrice1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colDescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
            this.layoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).BeginInit();
            this.SuspendLayout();
            // 
            // colAvailable
            // 
            this.colAvailable.Caption = "AVAILABLE";
            this.colAvailable.FieldName = "Available";
            this.colAvailable.Name = "colAvailable";
            this.colAvailable.OptionsColumn.AllowFocus = false;
            this.colAvailable.Visible = true;
            this.colAvailable.VisibleIndex = 7;
            this.colAvailable.Width = 102;
            // 
            // ribbonControl
            // 
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biNewProduct,
            this.biNewGroup,
            this.biDelete,
            this.biShowList,
            this.biShowCard,
            this.biMap,
            this.barSubItem1,
            this.bmiNewProduct,
            this.bmiNewGroup,
            this.biEdit,
            this.biPrintSubItem,
            this.bmiPrintOrderDetail,
            this.bmiPrintSalesSummary,
            this.bmiPrintSpecificationSummary,
            this.biSalesAnalysis,
            this.galleryQuickReports,
            this.biChangeViewSubItem,
            this.bmiShowList,
            this.bmiShowCard,
            this.bmiShowCarousel,
            this.biViewSettings,
            this.biResetView,
            this.biDataPaneSubItem,
            this.bmiHorizontalLayout,
            this.bmiVerticalLayout,
            this.bmiHideDetail,
            this.biReverseSort,
            this.biAddColumns,
            this.biExpandCollapse,
            this.hiItemsCount});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 35;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2});
            this.ribbonControl.Size = new System.Drawing.Size(1376, 142);
            this.ribbonControl.StatusBar = this.ribbonStatusBar;
            // 
            // biNewProduct
            // 
            this.biNewProduct.Caption = "New Product";
            this.biNewProduct.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_products_16;
            this.biNewProduct.Id = 1;
            this.biNewProduct.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_products_32;
            this.biNewProduct.Name = "biNewProduct";
            // 
            // biNewGroup
            // 
            this.biNewGroup.Caption = "New Group";
            this.biNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.biNewGroup.Id = 2;
            this.biNewGroup.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_32;
            this.biNewGroup.Name = "biNewGroup";
            // 
            // biDelete
            // 
            this.biDelete.Caption = "Delete";
            this.biDelete.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_16;
            this.biDelete.Id = 3;
            this.biDelete.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_32;
            this.biDelete.Name = "biDelete";
            // 
            // biShowList
            // 
            this.biShowList.Caption = "List";
            this.biShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_16;
            this.biShowList.GroupIndex = 1;
            this.biShowList.Id = 4;
            this.biShowList.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.biShowList.Name = "biShowList";
            // 
            // biShowCard
            // 
            this.biShowCard.Caption = "Card";
            this.biShowCard.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_16;
            this.biShowCard.GroupIndex = 1;
            this.biShowCard.Id = 5;
            this.biShowCard.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_32;
            this.biShowCard.Name = "biShowCard";
            // 
            // biMap
            // 
            this.biMap.Caption = "Sales Map";
            this.biMap.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_16;
            this.biMap.Id = 8;
            this.biMap.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_32;
            this.biMap.Name = "biMap";
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "New Items";
            this.barSubItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_item_16;
            this.barSubItem1.Id = 10;
            this.barSubItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_item_32;
            this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewProduct),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewGroup)});
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiNewProduct
            // 
            this.bmiNewProduct.Caption = "New Product";
            this.bmiNewProduct.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_products_16;
            this.bmiNewProduct.Id = 11;
            this.bmiNewProduct.Name = "bmiNewProduct";
            // 
            // bmiNewGroup
            // 
            this.bmiNewGroup.Caption = "New Group";
            this.bmiNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.bmiNewGroup.Id = 12;
            this.bmiNewGroup.Name = "bmiNewGroup";
            // 
            // biEdit
            // 
            this.biEdit.Caption = "Edit";
            this.biEdit.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_16;
            this.biEdit.Id = 13;
            this.biEdit.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_32;
            this.biEdit.Name = "biEdit";
            // 
            // biPrintSubItem
            // 
            this.biPrintSubItem.Caption = "Print";
            this.biPrintSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_16;
            this.biPrintSubItem.Id = 15;
            this.biPrintSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.biPrintSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintOrderDetail),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSalesSummary),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSpecificationSummary)});
            this.biPrintSubItem.Name = "biPrintSubItem";
            this.biPrintSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiPrintOrderDetail
            // 
            this.bmiPrintOrderDetail.Caption = "Order Detail";
            this.bmiPrintOrderDetail.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_order_detail_16;
            this.bmiPrintOrderDetail.Id = 16;
            this.bmiPrintOrderDetail.Name = "bmiPrintOrderDetail";
            // 
            // bmiPrintSalesSummary
            // 
            this.bmiPrintSalesSummary.Caption = "Sales Summary";
            this.bmiPrintSalesSummary.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_sales_summary_16;
            this.bmiPrintSalesSummary.Id = 17;
            this.bmiPrintSalesSummary.Name = "bmiPrintSalesSummary";
            // 
            // bmiPrintSpecificationSummary
            // 
            this.bmiPrintSpecificationSummary.Caption = "Specification Summary";
            this.bmiPrintSpecificationSummary.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_specification_summary_16;
            this.bmiPrintSpecificationSummary.Id = 18;
            this.bmiPrintSpecificationSummary.Name = "bmiPrintSpecificationSummary";
            // 
            // biSalesAnalysis
            // 
            this.biSalesAnalysis.Caption = "Sales Analysis";
            this.biSalesAnalysis.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_cost_analysis_16;
            this.biSalesAnalysis.Id = 19;
            this.biSalesAnalysis.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_cost_analysis_32;
            this.biSalesAnalysis.Name = "biSalesAnalysis";
            // 
            // galleryQuickReports
            // 
            this.galleryQuickReports.Caption = "ribbonGalleryBarItem1";
            // 
            // 
            // 
            this.galleryQuickReports.Gallery.ColumnCount = 2;
            this.galleryQuickReports.Gallery.DrawImageBackground = false;
            galleryItemGroup1.Caption = "Group1";
            galleryItem1.Caption = "Sales Report";
            galleryItem1.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_quick_sales_report_16;
            galleryItem2.Caption = "Shipments";
            galleryItem2.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_quick_shippments_16;
            galleryItem3.Caption = "Comparisons";
            galleryItem3.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_quick_comparisons_16;
            galleryItem4.Caption = "Top Salesperson";
            galleryItem4.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_product_quick_top_salesperson_16;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4});
            this.galleryQuickReports.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryQuickReports.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.galleryQuickReports.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -1;
            skinPaddingEdges2.Top = -1;
            this.galleryQuickReports.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.galleryQuickReports.Gallery.ShowItemText = true;
            this.galleryQuickReports.Id = 20;
            this.galleryQuickReports.Name = "galleryQuickReports";
            // 
            // biChangeViewSubItem
            // 
            this.biChangeViewSubItem.Caption = "Change View";
            this.biChangeViewSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_16;
            this.biChangeViewSubItem.Id = 21;
            this.biChangeViewSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_32;
            this.biChangeViewSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowList),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowCard),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowCarousel)});
            this.biChangeViewSubItem.Name = "biChangeViewSubItem";
            this.biChangeViewSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiShowList
            // 
            this.bmiShowList.Caption = "List";
            this.bmiShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.bmiShowList.Id = 22;
            this.bmiShowList.Name = "bmiShowList";
            // 
            // bmiShowCard
            // 
            this.bmiShowCard.Caption = "Card";
            this.bmiShowCard.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_32;
            this.bmiShowCard.Id = 23;
            this.bmiShowCard.Name = "bmiShowCard";
            // 
            // bmiShowCarousel
            // 
            this.bmiShowCarousel.Caption = "Carousel";
            this.bmiShowCarousel.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_carousel_32;
            this.bmiShowCarousel.Id = 24;
            this.bmiShowCarousel.Name = "bmiShowCarousel";
            // 
            // biViewSettings
            // 
            this.biViewSettings.Caption = "View Settings";
            this.biViewSettings.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_16;
            this.biViewSettings.Id = 25;
            this.biViewSettings.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_32;
            this.biViewSettings.Name = "biViewSettings";
            // 
            // biResetView
            // 
            this.biResetView.Caption = "Reset View";
            this.biResetView.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_16;
            this.biResetView.Id = 26;
            this.biResetView.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_32;
            this.biResetView.Name = "biResetView";
            // 
            // biDataPaneSubItem
            // 
            this.biDataPaneSubItem.Caption = "Data Pane";
            this.biDataPaneSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_16;
            this.biDataPaneSubItem.Id = 27;
            this.biDataPaneSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_32;
            this.biDataPaneSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHorizontalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiVerticalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHideDetail)});
            this.biDataPaneSubItem.Name = "biDataPaneSubItem";
            this.biDataPaneSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiHorizontalLayout
            // 
            this.bmiHorizontalLayout.Caption = "Right";
            this.bmiHorizontalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_right_16;
            this.bmiHorizontalLayout.Id = 28;
            this.bmiHorizontalLayout.Name = "bmiHorizontalLayout";
            // 
            // bmiVerticalLayout
            // 
            this.bmiVerticalLayout.Caption = "Bottom";
            this.bmiVerticalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_bottom_16;
            this.bmiVerticalLayout.Id = 29;
            this.bmiVerticalLayout.Name = "bmiVerticalLayout";
            // 
            // bmiHideDetail
            // 
            this.bmiHideDetail.Caption = "Off";
            this.bmiHideDetail.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_off_16;
            this.bmiHideDetail.Id = 30;
            this.bmiHideDetail.Name = "bmiHideDetail";
            // 
            // biReverseSort
            // 
            this.biReverseSort.Caption = "Reverse Sort";
            this.biReverseSort.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_revers_sort_16;
            this.biReverseSort.Id = 31;
            this.biReverseSort.Name = "biReverseSort";
            this.biReverseSort.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biReverseSort_ItemClick);
            // 
            // biAddColumns
            // 
            this.biAddColumns.Caption = "Add Columns";
            this.biAddColumns.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_add_column_16;
            this.biAddColumns.Id = 32;
            this.biAddColumns.Name = "biAddColumns";
            this.biAddColumns.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.biAddColumns_ItemCheckedChanged);
            // 
            // biExpandCollapse
            // 
            this.biExpandCollapse.Caption = "Expand/Collapse";
            this.biExpandCollapse.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_expand_collapse_16;
            this.biExpandCollapse.Id = 33;
            this.biExpandCollapse.Name = "biExpandCollapse";
            this.biExpandCollapse.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biExpandCollapse_ItemClick);
            // 
            // hiItemsCount
            // 
            this.hiItemsCount.Caption = "RECORDS: 0";
            this.hiItemsCount.Id = 34;
            this.hiItemsCount.Name = "hiItemsCount";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup7,
            this.ribbonPageGroup4,
            this.ribbonPageGroup6});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "HOME";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewProduct);
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewGroup);
            this.ribbonPageGroup1.ItemLinks.Add(this.barSubItem1);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "New";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.biDelete);
            this.ribbonPageGroup2.MergeOrder = 0;
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Delete";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.AllowTextClipping = false;
            this.ribbonPageGroup3.ItemLinks.Add(this.biEdit);
            this.ribbonPageGroup3.ItemLinks.Add(this.biPrintSubItem);
            this.ribbonPageGroup3.ItemLinks.Add(this.biSalesAnalysis);
            this.ribbonPageGroup3.MergeOrder = 0;
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Actions";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.AllowTextClipping = false;
            this.ribbonPageGroup7.ItemLinks.Add(this.galleryQuickReports);
            this.ribbonPageGroup7.MergeOrder = 0;
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.ShowCaptionButton = false;
            this.ribbonPageGroup7.Text = "Quick Reports";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.AllowTextClipping = false;
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowList);
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowCard);
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowCarousel);
            this.ribbonPageGroup4.ItemLinks.Add(this.biMap);
            this.ribbonPageGroup4.MergeOrder = 0;
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "View";
            // 
            // biShowCarousel
            // 
            this.biShowCarousel.Caption = "Carousel";
            this.biShowCarousel.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_carousel_16;
            this.biShowCarousel.GroupIndex = 1;
            this.biShowCarousel.Id = 5;
            this.biShowCarousel.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_carousel_32;
            this.biShowCarousel.Name = "biShowCarousel";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.AllowTextClipping = false;
            this.ribbonPageGroup6.ItemLinks.Add(this.biNewCustomFilter);
            this.ribbonPageGroup6.MergeOrder = 0;
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Find";
            // 
            // biNewCustomFilter
            // 
            this.biNewCustomFilter.Caption = "Custom Filter";
            this.biNewCustomFilter.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_16;
            this.biNewCustomFilter.Id = 9;
            this.biNewCustomFilter.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_32;
            this.biNewCustomFilter.Name = "biNewCustomFilter";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup8,
            this.ribbonPageGroup5,
            this.ribbonPageGroup9});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "VIEW";
            // 
            // ribbonPageGroup8
            // 
            this.ribbonPageGroup8.AllowTextClipping = false;
            this.ribbonPageGroup8.ItemLinks.Add(this.biChangeViewSubItem);
            this.ribbonPageGroup8.ItemLinks.Add(this.biViewSettings);
            this.ribbonPageGroup8.ItemLinks.Add(this.biResetView);
            this.ribbonPageGroup8.MergeOrder = 1;
            this.ribbonPageGroup8.Name = "ribbonPageGroup8";
            this.ribbonPageGroup8.ShowCaptionButton = false;
            this.ribbonPageGroup8.Text = "Current View";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.AllowTextClipping = false;
            this.ribbonPageGroup5.ItemLinks.Add(this.biDataPaneSubItem);
            this.ribbonPageGroup5.MergeOrder = 0;
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Layout";
            // 
            // ribbonPageGroup9
            // 
            this.ribbonPageGroup9.AllowTextClipping = false;
            this.ribbonPageGroup9.ItemLinks.Add(this.biReverseSort);
            this.ribbonPageGroup9.ItemLinks.Add(this.biAddColumns);
            this.ribbonPageGroup9.ItemLinks.Add(this.biExpandCollapse);
            this.ribbonPageGroup9.MergeOrder = 1;
            this.ribbonPageGroup9.Name = "ribbonPageGroup9";
            this.ribbonPageGroup9.ShowCaptionButton = false;
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.hiItemsCount);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 773);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbonControl;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1376, 27);
            // 
            // gridControl
            // 
            this.gridControl.DataSource = this.bindingSource;
            this.gridControl.Location = new System.Drawing.Point(14, 14);
            this.gridControl.MainView = this.gridView;
            this.gridControl.Margin = new System.Windows.Forms.Padding(12);
            this.gridControl.MenuManager = this.ribbonControl;
            this.gridControl.Name = "gridControl";
            this.gridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemImageComboBox1,
            this.repositoryItemImageComboBox2,
            this.repositoryItemMemoEdit1,
            this.repositoryItemMemoExEdit1,
            this.repositoryItemPictureEdit1});
            this.gridControl.ShowOnlyPredefinedDetails = true;
            this.gridControl.Size = new System.Drawing.Size(806, 603);
            this.gridControl.TabIndex = 1;
            this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView,
            this.layoutView});
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Product);
            // 
            // gridView
            // 
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colCategory,
            this.colName,
            this.colCost,
            this.colSalePrice,
            this.colRetailPrice,
            this.colCurrentInventory,
            this.colBackorder,
            this.colDescription1,
            this.colConsumerRating,
            this.colAvailable,
            this.colProductImage});
            this.gridView.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFullFocus;
            styleFormatCondition1.Appearance.FontStyleDelta = System.Drawing.FontStyle.Strikeout;
            styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Gray;
            styleFormatCondition1.Appearance.Options.UseFont = true;
            styleFormatCondition1.Appearance.Options.UseForeColor = true;
            styleFormatCondition1.ApplyToRow = true;
            styleFormatCondition1.Column = this.colAvailable;
            styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
            styleFormatCondition1.Value1 = false;
            this.gridView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
            styleFormatCondition1});
            this.gridView.GridControl = this.gridControl;
            this.gridView.GroupCount = 1;
            this.gridView.GroupFormat = "[#image]{1} {2}";
            this.gridView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, "Id", null, "")});
            this.gridView.Name = "gridView";
            this.gridView.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridView.OptionsBehavior.Editable = false;
            this.gridView.OptionsBehavior.ReadOnly = true;
            this.gridView.OptionsFind.AlwaysVisible = true;
            this.gridView.OptionsFind.FindNullPrompt = "Search Products (Ctrl + F)";
            this.gridView.OptionsFind.ShowClearButton = false;
            this.gridView.OptionsFind.ShowFindButton = false;
            this.gridView.OptionsSelection.MultiSelect = true;
            this.gridView.OptionsSelection.ShowCheckBoxSelectorInColumnHeader = DevExpress.Utils.DefaultBoolean.True;
            this.gridView.OptionsSelection.ShowCheckBoxSelectorInGroupRow = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.OptionsView.ShowFooter = true;
            this.gridView.OptionsView.ShowIndicator = false;
            this.gridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colCategory, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridView_RowStyle);
            // 
            // colCategory
            // 
            this.colCategory.Caption = "CATEGORY";
            this.colCategory.FieldName = "Category";
            this.colCategory.Name = "colCategory";
            this.colCategory.OptionsColumn.AllowFocus = false;
            this.colCategory.Visible = true;
            this.colCategory.VisibleIndex = 7;
            // 
            // colName
            // 
            this.colName.Caption = "PRODUCT NAME";
            this.colName.FieldName = "Name";
            this.colName.Name = "colName";
            this.colName.OptionsColumn.AllowFocus = false;
            this.colName.Visible = true;
            this.colName.VisibleIndex = 1;
            this.colName.Width = 218;
            // 
            // colCost
            // 
            this.colCost.Caption = "COST";
            this.colCost.DisplayFormat.FormatString = "c";
            this.colCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colCost.FieldName = "Cost";
            this.colCost.Name = "colCost";
            this.colCost.OptionsColumn.AllowFocus = false;
            this.colCost.Visible = true;
            this.colCost.VisibleIndex = 2;
            this.colCost.Width = 141;
            // 
            // colSalePrice
            // 
            this.colSalePrice.Caption = "SALES PRICE";
            this.colSalePrice.DisplayFormat.FormatString = "c";
            this.colSalePrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colSalePrice.FieldName = "SalePrice";
            this.colSalePrice.Name = "colSalePrice";
            this.colSalePrice.OptionsColumn.AllowFocus = false;
            this.colSalePrice.Visible = true;
            this.colSalePrice.VisibleIndex = 3;
            this.colSalePrice.Width = 141;
            // 
            // colRetailPrice
            // 
            this.colRetailPrice.Caption = "RETAIL PRICE";
            this.colRetailPrice.DisplayFormat.FormatString = "c";
            this.colRetailPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colRetailPrice.FieldName = "RetailPrice";
            this.colRetailPrice.Name = "colRetailPrice";
            this.colRetailPrice.OptionsColumn.AllowFocus = false;
            this.colRetailPrice.Visible = true;
            this.colRetailPrice.VisibleIndex = 4;
            this.colRetailPrice.Width = 141;
            // 
            // colCurrentInventory
            // 
            this.colCurrentInventory.Caption = "INVENTORY";
            this.colCurrentInventory.DisplayFormat.FormatString = "n0";
            this.colCurrentInventory.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colCurrentInventory.FieldName = "CurrentInventory";
            this.colCurrentInventory.Name = "colCurrentInventory";
            this.colCurrentInventory.OptionsColumn.AllowFocus = false;
            this.colCurrentInventory.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CurrentInventory", "SUM={0:n0}")});
            this.colCurrentInventory.Visible = true;
            this.colCurrentInventory.VisibleIndex = 5;
            this.colCurrentInventory.Width = 141;
            // 
            // colBackorder
            // 
            this.colBackorder.Caption = "BACKORDER";
            this.colBackorder.DisplayFormat.FormatString = "n0";
            this.colBackorder.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colBackorder.FieldName = "Backorder";
            this.colBackorder.Name = "colBackorder";
            this.colBackorder.OptionsColumn.AllowFocus = false;
            this.colBackorder.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Backorder", "SUM={0:n0}")});
            this.colBackorder.Visible = true;
            this.colBackorder.VisibleIndex = 6;
            this.colBackorder.Width = 152;
            // 
            // colDescription1
            // 
            this.colDescription1.Caption = "DESCRIPTION";
            this.colDescription1.ColumnEdit = this.repositoryItemMemoExEdit1;
            this.colDescription1.FieldName = "Description";
            this.colDescription1.Name = "colDescription1";
            this.colDescription1.OptionsColumn.AllowFocus = false;
            // 
            // repositoryItemMemoExEdit1
            // 
            this.repositoryItemMemoExEdit1.AutoHeight = false;
            this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
            // 
            // colConsumerRating
            // 
            this.colConsumerRating.Caption = "CONSUMER RATING";
            this.colConsumerRating.FieldName = "ConsumerRating";
            this.colConsumerRating.Name = "colConsumerRating";
            this.colConsumerRating.OptionsColumn.AllowFocus = false;
            // 
            // colProductImage
            // 
            this.colProductImage.Caption = "PRODUCT IMAGE";
            this.colProductImage.ColumnEdit = this.repositoryItemPictureEdit1;
            this.colProductImage.FieldName = "ProductImage";
            this.colProductImage.ImageAlignment = System.Drawing.StringAlignment.Center;
            this.colProductImage.Name = "colProductImage";
            this.colProductImage.OptionsColumn.AllowFocus = false;
            this.colProductImage.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.colProductImage.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colProductImage.OptionsColumn.ShowCaption = false;
            this.colProductImage.OptionsFilter.AllowFilter = false;
            this.colProductImage.Visible = true;
            this.colProductImage.VisibleIndex = 0;
            this.colProductImage.Width = 54;
            // 
            // repositoryItemPictureEdit1
            // 
            this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
            this.repositoryItemPictureEdit1.NullText = " ";
            this.repositoryItemPictureEdit1.PictureInterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
            this.repositoryItemPictureEdit1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            // 
            // repositoryItemImageComboBox2
            // 
            this.repositoryItemImageComboBox2.AutoHeight = false;
            this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
            // 
            // repositoryItemMemoEdit1
            // 
            this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
            // 
            // layoutView
            // 
            this.layoutView.CardCaptionFormat = "{2}";
            this.layoutView.CardMinSize = new System.Drawing.Size(293, 199);
            this.layoutView.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
            this.colName1,
            this.colImage,
            this.colCost1,
            this.colSalePrice1,
            this.colDescription});
            this.layoutView.GridControl = this.gridControl;
            this.layoutView.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colName1});
            this.layoutView.Name = "layoutView";
            this.layoutView.OptionsBehavior.AllowExpandCollapse = false;
            this.layoutView.OptionsBehavior.AllowRuntimeCustomization = false;
            this.layoutView.OptionsBehavior.Editable = false;
            this.layoutView.OptionsBehavior.ReadOnly = true;
            this.layoutView.OptionsCarouselMode.BottomCardAlphaLevel = 0.35F;
            this.layoutView.OptionsCarouselMode.BottomCardScale = 0.5F;
            this.layoutView.OptionsCarouselMode.CenterOffset = new System.Drawing.Point(0, -50);
            this.layoutView.OptionsCarouselMode.PitchAngle = 1.25F;
            this.layoutView.OptionsFind.AlwaysVisible = true;
            this.layoutView.OptionsFind.FindNullPrompt = "Search Products (Ctrl + F)";
            this.layoutView.OptionsFind.ShowClearButton = false;
            this.layoutView.OptionsFind.ShowCloseButton = false;
            this.layoutView.OptionsFind.ShowFindButton = false;
            this.layoutView.OptionsMultiRecordMode.MultiRowScrollBarOrientation = DevExpress.XtraGrid.Views.Layout.ScrollBarOrientation.Vertical;
            this.layoutView.OptionsSelection.MultiSelect = true;
            this.layoutView.OptionsView.AllowHotTrackFields = false;
            this.layoutView.OptionsView.FocusRectStyle = DevExpress.XtraGrid.Views.Layout.FocusRectStyle.None;
            this.layoutView.OptionsView.ShowHeaderPanel = false;
            this.layoutView.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.Carousel;
            this.layoutView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colName1, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.layoutView.TemplateCard = this.layoutViewCard1;
            // 
            // colName1
            // 
            this.colName1.Caption = "NAME";
            this.colName1.FieldName = "Name";
            this.colName1.LayoutViewField = this.layoutViewField_colName1;
            this.colName1.Name = "colName1";
            // 
            // layoutViewField_colName1
            // 
            this.layoutViewField_colName1.EditorPreferredWidth = 20;
            this.layoutViewField_colName1.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colName1.Name = "layoutViewField_colName1";
            this.layoutViewField_colName1.Size = new System.Drawing.Size(273, 113);
            this.layoutViewField_colName1.TextSize = new System.Drawing.Size(57, 13);
            this.layoutViewField_colName1.TextToControlDistance = 5;
            // 
            // colImage
            // 
            this.colImage.FieldName = "ProductImage";
            this.colImage.LayoutViewField = this.layoutViewField_colImage;
            this.colImage.Name = "colImage";
            // 
            // layoutViewField_colImage
            // 
            this.layoutViewField_colImage.EditorPreferredWidth = 84;
            this.layoutViewField_colImage.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colImage.MaxSize = new System.Drawing.Size(96, 84);
            this.layoutViewField_colImage.MinSize = new System.Drawing.Size(96, 84);
            this.layoutViewField_colImage.Name = "layoutViewField_colImage";
            this.layoutViewField_colImage.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 12, 0, 0);
            this.layoutViewField_colImage.Size = new System.Drawing.Size(96, 84);
            this.layoutViewField_colImage.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutViewField_colImage.TextSize = new System.Drawing.Size(0, 0);
            this.layoutViewField_colImage.TextToControlDistance = 0;
            this.layoutViewField_colImage.TextVisible = false;
            // 
            // colCost1
            // 
            this.colCost1.AppearanceCell.Options.UseTextOptions = true;
            this.colCost1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.colCost1.Caption = "COST";
            this.colCost1.DisplayFormat.FormatString = "c";
            this.colCost1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colCost1.FieldName = "Cost";
            this.colCost1.LayoutViewField = this.layoutViewField_colCost1;
            this.colCost1.Name = "colCost1";
            // 
            // layoutViewField_colCost1
            // 
            this.layoutViewField_colCost1.EditorPreferredWidth = 173;
            this.layoutViewField_colCost1.Location = new System.Drawing.Point(96, 0);
            this.layoutViewField_colCost1.Name = "layoutViewField_colCost1";
            this.layoutViewField_colCost1.Size = new System.Drawing.Size(177, 42);
            this.layoutViewField_colCost1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colCost1.TextSize = new System.Drawing.Size(67, 13);
            this.layoutViewField_colCost1.TextToControlDistance = 5;
            // 
            // colSalePrice1
            // 
            this.colSalePrice1.AppearanceCell.Options.UseTextOptions = true;
            this.colSalePrice1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.colSalePrice1.Caption = "SALES PRICE";
            this.colSalePrice1.DisplayFormat.FormatString = "c";
            this.colSalePrice1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colSalePrice1.FieldName = "SalePrice";
            this.colSalePrice1.LayoutViewField = this.layoutViewField_colSalePrice1;
            this.colSalePrice1.Name = "colSalePrice1";
            // 
            // layoutViewField_colSalePrice1
            // 
            this.layoutViewField_colSalePrice1.EditorPreferredWidth = 173;
            this.layoutViewField_colSalePrice1.Location = new System.Drawing.Point(96, 42);
            this.layoutViewField_colSalePrice1.Name = "layoutViewField_colSalePrice1";
            this.layoutViewField_colSalePrice1.Size = new System.Drawing.Size(177, 42);
            this.layoutViewField_colSalePrice1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colSalePrice1.TextSize = new System.Drawing.Size(67, 13);
            this.layoutViewField_colSalePrice1.TextToControlDistance = 5;
            // 
            // colDescription
            // 
            this.colDescription.AppearanceCell.Options.UseTextOptions = true;
            this.colDescription.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
            this.colDescription.ColumnEdit = this.repositoryItemMemoEdit1;
            this.colDescription.FieldName = "Description";
            this.colDescription.LayoutViewField = this.layoutViewField_colDescription;
            this.colDescription.Name = "colDescription";
            // 
            // layoutViewField_colDescription
            // 
            this.layoutViewField_colDescription.EditorPreferredWidth = 273;
            this.layoutViewField_colDescription.Location = new System.Drawing.Point(0, 84);
            this.layoutViewField_colDescription.MaxSize = new System.Drawing.Size(273, 67);
            this.layoutViewField_colDescription.MinSize = new System.Drawing.Size(273, 67);
            this.layoutViewField_colDescription.Name = "layoutViewField_colDescription";
            this.layoutViewField_colDescription.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 12, 0);
            this.layoutViewField_colDescription.Size = new System.Drawing.Size(273, 67);
            this.layoutViewField_colDescription.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutViewField_colDescription.TextSize = new System.Drawing.Size(0, 0);
            this.layoutViewField_colDescription.TextToControlDistance = 0;
            this.layoutViewField_colDescription.TextVisible = false;
            // 
            // layoutViewCard1
            // 
            this.layoutViewCard1.CustomizationFormText = "TemplateCard";
            this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
            this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colCost1,
            this.layoutViewField_colSalePrice1,
            this.layoutViewField_colImage,
            this.layoutViewField_colDescription});
            this.layoutViewCard1.Name = "layoutViewTemplateCard";
            this.layoutViewCard1.OptionsItemText.TextToControlDistance = 5;
            this.layoutViewCard1.Text = "TemplateCard";
            // 
            // layoutControl1
            // 
            this.layoutControl1.AllowCustomizationMenu = false;
            this.layoutControl1.Controls.Add(this.pnlView);
            this.layoutControl1.Controls.Add(this.gridControl);
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.layoutControl1.Location = new System.Drawing.Point(0, 142);
            this.layoutControl1.Name = "layoutControl1";
            this.layoutControl1.Root = this.layoutControlGroup1;
            this.layoutControl1.Size = new System.Drawing.Size(1376, 631);
            this.layoutControl1.TabIndex = 5;
            this.layoutControl1.Text = "layoutControl1";
            // 
            // pnlView
            // 
            this.pnlView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pnlView.Location = new System.Drawing.Point(829, 14);
            this.pnlView.Name = "pnlView";
            this.pnlView.Size = new System.Drawing.Size(533, 603);
            this.pnlView.TabIndex = 4;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem1,
            this.detailItem,
            this.splitterItem});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(12, 12, 12, 12);
            this.layoutControlGroup1.Size = new System.Drawing.Size(1376, 631);
            this.layoutControlGroup1.Text = "Root";
            this.layoutControlGroup1.TextVisible = false;
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Control = this.gridControl;
            this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.Size = new System.Drawing.Size(810, 607);
            this.layoutControlItem1.Text = "layoutControlItem1";
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem1.TextToControlDistance = 0;
            this.layoutControlItem1.TextVisible = false;
            // 
            // detailItem
            // 
            this.detailItem.Control = this.pnlView;
            this.detailItem.CustomizationFormText = "detailItem";
            this.detailItem.Location = new System.Drawing.Point(815, 0);
            this.detailItem.Name = "detailItem";
            this.detailItem.Size = new System.Drawing.Size(537, 607);
            this.detailItem.Text = "detailItem";
            this.detailItem.TextSize = new System.Drawing.Size(0, 0);
            this.detailItem.TextToControlDistance = 0;
            this.detailItem.TextVisible = false;
            // 
            // splitterItem
            // 
            this.splitterItem.AllowHotTrack = true;
            this.splitterItem.CustomizationFormText = "splitterItem";
            this.splitterItem.Location = new System.Drawing.Point(810, 0);
            this.splitterItem.Name = "splitterItem";
            this.splitterItem.Size = new System.Drawing.Size(5, 607);
            // 
            // Products
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.layoutControl1);
            this.Controls.Add(this.ribbonControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Margin = new System.Windows.Forms.Padding(6);
            this.Name = "Products";
            this.Size = new System.Drawing.Size(1376, 800);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colName1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colImage)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colCost1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colSalePrice1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colDescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
            this.layoutControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 23
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HelpControl));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.galleryControl2 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient2 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.lblSetTool = new SAF.Framework.Controls.BackstageViewLabel();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.backstageViewLabel1 = new SAF.Framework.Controls.BackstageViewLabel();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.lblProductId = new DevExpress.XtraEditors.LabelControl();
            this.lblAboutBox = new DevExpress.XtraEditors.LabelControl();
            this.lblInfo = new DevExpress.XtraEditors.LabelControl();
            this.lblAbout = new SAF.Framework.Controls.BackstageViewLabel();
            this.lblProductKey = new DevExpress.XtraEditors.LabelControl();
            this.lblProductInclude = new SAF.Framework.Controls.AutoSizeLabelControl();
            this.lblProductName = new DevExpress.XtraEditors.LabelControl();
            this.backstageViewLabel3 = new SAF.Framework.Controls.BackstageViewLabel();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.picLogo = new System.Windows.Forms.PictureBox();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.galleryControlClient3 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).BeginInit();
            this.galleryControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.splitContainer1, "splitContainer1");
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.galleryControl2);
            this.splitContainer1.Panel1.Controls.Add(this.lblSetTool);
            this.splitContainer1.Panel1.Controls.Add(this.galleryControl1);
            this.splitContainer1.Panel1.Controls.Add(this.backstageViewLabel1);
            resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.panelControl2);
            this.splitContainer1.Panel2.Controls.Add(this.labelControl4);
            // 
            // galleryControl2
            // 
            this.galleryControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.galleryControl2.Controls.Add(this.galleryControlClient2);
            this.galleryControl2.DesignGalleryGroupIndex = 0;
            this.galleryControl2.DesignGalleryItemIndex = 0;
            resources.ApplyResources(this.galleryControl2, "galleryControl2");
            // 
            // 
            // 
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Disabled.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Disabled.Font")));
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Disabled.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font")));
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Normal.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Normal.Font")));
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font")));
            this.galleryControl2.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Disabled.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Disabled.Font")));
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Disabled.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Font")));
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Normal.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Normal.Font")));
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseFont = true;
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Font")));
            this.galleryControl2.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseFont = true;
            this.galleryControl2.Gallery.AutoFitColumns = false;
            this.galleryControl2.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
            this.galleryControl2.Gallery.BackColor = System.Drawing.Color.Transparent;
            this.galleryControl2.Gallery.ColumnCount = 1;
            this.galleryControl2.Gallery.DistanceItemImageToText = 20;
            this.galleryControl2.Gallery.DrawImageBackground = false;
            this.galleryControl2.Gallery.FixedImageSize = false;
            resources.ApplyResources(galleryItem1, "galleryItem1");
            galleryItem1.Image = global::SAF.Framework.Component.Properties.Resources.Action_Upgrade_32x32;
            galleryItem1.Tag = "LinkUpgrade";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1});
            this.galleryControl2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControl2.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.galleryControl2.Gallery.RowCount = 1;
            this.galleryControl2.Gallery.ShowGroupCaption = false;
            this.galleryControl2.Gallery.ShowItemText = true;
            this.galleryControl2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
            this.galleryControl2.Gallery.StretchItems = true;
            this.galleryControl2.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick_1);
            this.galleryControl2.Name = "galleryControl2";
            // 
            // galleryControlClient2
            // 
            this.galleryControlClient2.GalleryControl = this.galleryControl2;
            resources.ApplyResources(this.galleryControlClient2, "galleryControlClient2");
            // 
            // lblSetTool
            // 
            this.lblSetTool.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblSetTool.Appearance.Font")));
            resources.ApplyResources(this.lblSetTool, "lblSetTool");
            this.lblSetTool.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.lblSetTool.LineVisible = true;
            this.lblSetTool.Name = "lblSetTool";
            this.lblSetTool.ShowLineShadow = false;
            // 
            // galleryControl1
            // 
            this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            resources.ApplyResources(this.galleryControl1, "galleryControl1");
            // 
            // 
            // 
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Disabled.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Disabled.Font")));
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Disabled.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font")));
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Font")));
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font")));
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Disabled.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Disabled.Font")));
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Disabled.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Font")));
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Font")));
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseFont = true;
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Font = ((System.Drawing.Font)(resources.GetObject("galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Font")));
            this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseFont = true;
            this.galleryControl1.Gallery.AutoFitColumns = false;
            this.galleryControl1.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
            this.galleryControl1.Gallery.BackColor = System.Drawing.Color.Transparent;
            this.galleryControl1.Gallery.ColumnCount = 1;
            this.galleryControl1.Gallery.DistanceItemImageToText = 20;
            this.galleryControl1.Gallery.DrawImageBackground = false;
            this.galleryControl1.Gallery.FixedImageSize = false;
            resources.ApplyResources(galleryItem2, "galleryItem2");
            galleryItem2.Image = global::SAF.Framework.Component.Properties.Resources.Action_Help_32x32;
            galleryItem2.Tag = "LinkHelp";
            resources.ApplyResources(galleryItem3, "galleryItem3");
            galleryItem3.Image = global::SAF.Framework.Component.Properties.Resources.Contact_Us;
            galleryItem3.Tag = "LinkGetSupport";
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem2,
            galleryItem3});
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.galleryControl1.Gallery.RowCount = 2;
            this.galleryControl1.Gallery.ShowGroupCaption = false;
            this.galleryControl1.Gallery.ShowItemText = true;
            this.galleryControl1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
            this.galleryControl1.Gallery.StretchItems = true;
            this.galleryControl1.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.galleryControl1.Name = "galleryControl1";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
            // 
            // backstageViewLabel1
            // 
            this.backstageViewLabel1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("backstageViewLabel1.Appearance.Font")));
            resources.ApplyResources(this.backstageViewLabel1, "backstageViewLabel1");
            this.backstageViewLabel1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.backstageViewLabel1.LineVisible = true;
            this.backstageViewLabel1.Name = "backstageViewLabel1";
            this.backstageViewLabel1.ShowLineShadow = false;
            // 
            // panelControl2
            // 
            this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl2.Controls.Add(this.lblProductId);
            this.panelControl2.Controls.Add(this.lblAboutBox);
            this.panelControl2.Controls.Add(this.lblInfo);
            this.panelControl2.Controls.Add(this.lblAbout);
            this.panelControl2.Controls.Add(this.lblProductKey);
            this.panelControl2.Controls.Add(this.lblProductInclude);
            this.panelControl2.Controls.Add(this.lblProductName);
            this.panelControl2.Controls.Add(this.backstageViewLabel3);
            this.panelControl2.Controls.Add(this.panelControl1);
            resources.ApplyResources(this.panelControl2, "panelControl2");
            this.panelControl2.Name = "panelControl2";
            // 
            // lblProductId
            // 
            this.lblProductId.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblProductId.Appearance.Font")));
            resources.ApplyResources(this.lblProductId, "lblProductId");
            this.lblProductId.Name = "lblProductId";
            // 
            // lblAboutBox
            // 
            this.lblAboutBox.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblAboutBox.Appearance.Font")));
            this.lblAboutBox.Cursor = System.Windows.Forms.Cursors.Hand;
            resources.ApplyResources(this.lblAboutBox, "lblAboutBox");
            this.lblAboutBox.Name = "lblAboutBox";
            this.lblAboutBox.Click += new System.EventHandler(this.lblAboutBox_Click);
            // 
            // lblInfo
            // 
            this.lblInfo.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblInfo.Appearance.Font")));
            resources.ApplyResources(this.lblInfo, "lblInfo");
            this.lblInfo.Name = "lblInfo";
            // 
            // lblAbout
            // 
            this.lblAbout.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblAbout.Appearance.Font")));
            resources.ApplyResources(this.lblAbout, "lblAbout");
            this.lblAbout.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.lblAbout.LineVisible = true;
            this.lblAbout.Name = "lblAbout";
            this.lblAbout.ShowLineShadow = false;
            // 
            // lblProductKey
            // 
            this.lblProductKey.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblProductKey.Appearance.Font")));
            this.lblProductKey.Cursor = System.Windows.Forms.Cursors.Hand;
            resources.ApplyResources(this.lblProductKey, "lblProductKey");
            this.lblProductKey.Name = "lblProductKey";
            this.lblProductKey.Click += new System.EventHandler(this.lblProductKey_Click);
            // 
            // lblProductInclude
            // 
            resources.ApplyResources(this.lblProductInclude, "lblProductInclude");
            this.lblProductInclude.Name = "lblProductInclude";
            // 
            // lblProductName
            // 
            this.lblProductName.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblProductName.Appearance.Font")));
            resources.ApplyResources(this.lblProductName, "lblProductName");
            this.lblProductName.Name = "lblProductName";
            // 
            // backstageViewLabel3
            // 
            this.backstageViewLabel3.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("backstageViewLabel3.Appearance.Font")));
            resources.ApplyResources(this.backstageViewLabel3, "backstageViewLabel3");
            this.backstageViewLabel3.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.backstageViewLabel3.LineVisible = true;
            this.backstageViewLabel3.Name = "backstageViewLabel3";
            this.backstageViewLabel3.ShowLineShadow = false;
            // 
            // panelControl1
            // 
            this.panelControl1.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl1.Appearance.BackColor")));
            this.panelControl1.Appearance.Options.UseBackColor = true;
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Controls.Add(this.picLogo);
            resources.ApplyResources(this.panelControl1, "panelControl1");
            this.panelControl1.Name = "panelControl1";
            // 
            // picLogo
            // 
            this.picLogo.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.picLogo, "picLogo");
            this.picLogo.Name = "picLogo";
            this.picLogo.TabStop = false;
            // 
            // labelControl4
            // 
            resources.ApplyResources(this.labelControl4, "labelControl4");
            this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
            this.labelControl4.LineVisible = true;
            this.labelControl4.Name = "labelControl4";
            // 
            // galleryControlClient3
            // 
            this.galleryControlClient3.GalleryControl = null;
            resources.ApplyResources(this.galleryControlClient3, "galleryControlClient3");
            // 
            // HelpControl
            // 
            this.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("HelpControl.Appearance.ForeColor")));
            this.Appearance.Options.UseForeColor = true;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Name = "HelpControl";
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel1.PerformLayout();
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).EndInit();
            this.galleryControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.panelControl2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
            this.ResumeLayout(false);

        }
Esempio n. 24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(GraphDrawingRefresh));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.pcMain                = new DevExpress.XtraEditors.PanelControl();
     this.mx                    = new Axmetamap2dLib.AxMetaMapX2D();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.panelControl1         = new DevExpress.XtraEditors.PanelControl();
     this.rpSearch              = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbgClose              = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpgFilterColumns      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpgFind               = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.pictureBox1           = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pcMain)).BeginInit();
     this.pcMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mx)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pcMain
     //
     this.pcMain.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.pcMain.Controls.Add(this.mx);
     this.pcMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pcMain.Location = new System.Drawing.Point(0, 0);
     this.pcMain.Margin   = new System.Windows.Forms.Padding(0);
     this.pcMain.Name     = "pcMain";
     this.pcMain.Size     = new System.Drawing.Size(990, 449);
     this.pcMain.TabIndex = 7;
     //
     // mx
     //
     this.mx.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.mx.Enabled               = true;
     this.mx.Location              = new System.Drawing.Point(2, 2);
     this.mx.Name                  = "mx";
     this.mx.OcxState              = ((System.Windows.Forms.AxHost.State)(resources.GetObject("mx.OcxState")));
     this.mx.Size                  = new System.Drawing.Size(986, 445);
     this.mx.TabIndex              = 0;
     this.mx.OnViewCallOutCommand += new Axmetamap2dLib.IMetaMapX2DEvents_OnViewCallOutCommandEventHandler(this.mx_OnViewCallOutCommand);
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // galleryControlGallery1
     //
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions  = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment  = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.VAlignment  = DevExpress.Utils.VertAlignment.Center;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.galleryControl1.Gallery.AutoFitColumns = false;
     this.galleryControl1.Gallery.AutoSize       = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
     this.galleryControl1.Gallery.BackColor      = System.Drawing.Color.Transparent;
     this.galleryControl1.Gallery.ColumnCount    = 1;
     this.galleryControl1.Gallery.FixedImageSize = false;
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Open Calendar";
     galleryItem1.Description  = "Open a calendar file (.ics)";
     galleryItem1.Tag          = "OpenCalendar";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.galleryControl1.Gallery.ShowGroupCaption  = false;
     this.galleryControl1.Gallery.ShowItemText      = true;
     this.galleryControl1.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
     this.galleryControl1.Location = new System.Drawing.Point(23, 22);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(1005, 300);
     this.galleryControl1.TabIndex = 0;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(1, 1);
     this.galleryControlClient1.Size           = new System.Drawing.Size(1003, 298);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location    = new System.Drawing.Point(0, 0);
     this.panelControl1.Name        = "panelControl1";
     this.panelControl1.Size        = new System.Drawing.Size(990, 449);
     this.panelControl1.TabIndex    = 0;
     //
     // rpSearch
     //
     this.rpSearch.Name    = "rpSearch";
     this.rpSearch.Text    = "SAERCH";
     this.rpSearch.Visible = false;
     //
     // rbgClose
     //
     this.rbgClose.AllowTextClipping = false;
     this.rbgClose.Name = "rbgClose";
     this.rbgClose.ShowCaptionButton = false;
     this.rbgClose.Text = "Close";
     //
     // rpgFilterColumns
     //
     this.rpgFilterColumns.Name = "rpgFilterColumns";
     this.rpgFilterColumns.ShowCaptionButton = false;
     this.rpgFilterColumns.Text = "Filter Columns";
     //
     // rpgFind
     //
     this.rpgFind.Name = "rpgFind";
     this.rpgFind.ShowCaptionButton = false;
     this.rpgFind.Text = "Filter Actions";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor   = System.Drawing.Color.LightGray;
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Location    = new System.Drawing.Point(788, 0);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(60, 60);
     this.pictureBox1.TabIndex    = 100;
     this.pictureBox1.TabStop     = false;
     this.pictureBox1.Visible     = false;
     this.pictureBox1.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
     this.pictureBox1.MouseUp    += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
     //
     // GraphDrawingRefresh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(990, 449);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.pcMain);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "GraphDrawingRefresh";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "GIS图形展示平台";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.GISPlatformCenter_FormClosing);
     this.FormClosed     += new System.Windows.Forms.FormClosedEventHandler(this.GISPlatformCenter_FormClosed);
     this.Load           += new System.EventHandler(this.GISPlatformCenter_Load);
     this.Shown          += new System.EventHandler(this.GraphDrawingRefresh_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.pcMain)).EndInit();
     this.pcMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mx)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomDrawModule));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem14 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryChangeStyleItem();
            this.spreadsheetControl1 = new DevExpress.XtraSpreadsheet.SpreadsheetControl();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.spreadsheetCommandBarButtonItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeFontSizeItem();
            this.repositoryItemSpreadsheetFontSizeEdit1 = new DevExpress.XtraSpreadsheet.Design.RepositoryItemSpreadsheetFontSizeEdit();
            this.spreadsheetCommandBarButtonItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarCheckItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarSubItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.changeBorderLineColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeBorderLineColorItem();
            this.changeBorderLineStyleItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeBorderLineStyleItem();
            this.galleryDropDown1 = new DevExpress.XtraBars.Ribbon.GalleryDropDown();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeCellFillColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeCellFillColorItem();
            this.changeFontColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeFontColorItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarCheckItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarCheckItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarButtonItem29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup8 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarSubItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem39 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem40 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup9 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarButtonItem41 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem42 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem43 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem44 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem45 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem46 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem47 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem48 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem49 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem50 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem51 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem52 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem53 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem54 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem55 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem56 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem57 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem58 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem59 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem60 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem61 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem62 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem63 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem64 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem65 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem66 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem67 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem68 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem69 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem70 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem71 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem72 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem73 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem74 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.pageSetupPaperKindItem1 = new DevExpress.XtraSpreadsheet.UI.PageSetupPaperKindItem();
            this.spreadsheetCommandBarSubItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.functionsFinancialItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsFinancialItem();
            this.functionsLogicalItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsLogicalItem();
            this.functionsTextItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsTextItem();
            this.functionsDateAndTimeItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsDateAndTimeItem();
            this.functionsLookupAndReferenceItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsLookupAndReferenceItem();
            this.functionsMathAndTrigonometryItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsMathAndTrigonometryItem();
            this.spreadsheetCommandBarSubItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.functionsStatisticalItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsStatisticalItem();
            this.functionsEngineeringItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsEngineeringItem();
            this.functionsCubeItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsCubeItem();
            this.functionsInformationItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsInformationItem();
            this.functionsCompatibilityItem1 = new DevExpress.XtraSpreadsheet.UI.FunctionsCompatibilityItem();
            this.spreadsheetCommandBarCheckItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem80 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem81 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem82 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem83 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem84 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem85 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem86 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.fileRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.CommonRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ClipboardRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FontRibbonPageGroup();
            this.alignmentRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.AlignmentRibbonPageGroup();
            this.numberRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.NumberRibbonPageGroup();
            this.cellsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.CellsRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.EditingRibbonPageGroup();
            this.insertRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.InsertRibbonPage();
            this.illustrationsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.IllustrationsRibbonPageGroup();
            this.linksRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.LinksRibbonPageGroup();
            this.pageLayoutRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.PageLayoutRibbonPage();
            this.pageSetupRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PageSetupRibbonPageGroup();
            this.formulasRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.FormulasRibbonPage();
            this.functionLibraryRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.FunctionLibraryRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ViewRibbonPage();
            this.showRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ShowRibbonPageGroup();
            this.zoomRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.ZoomRibbonPageGroup();
            this.windowRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.WindowRibbonPageGroup();
            this.spreadsheetBarController1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetBarController();
            this.spreadsheetCommandBarButtonItem75 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem76 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem77 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem78 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem79 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem90 = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spreadsheetBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.DrawImageBackground = false;
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.galleryChangeStyleItem1.Gallery.ItemSize = new System.Drawing.Size(106, 28);
            this.galleryChangeStyleItem1.Gallery.RowCount = 9;
            this.galleryChangeStyleItem1.Gallery.ShowItemText = true;
            this.galleryChangeStyleItem1.Id = 73;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // spreadsheetControl1
            // 
            resources.ApplyResources(this.spreadsheetControl1, "spreadsheetControl1");
            this.spreadsheetControl1.MenuManager = this.ribbonControl1;
            this.spreadsheetControl1.Name = "spreadsheetControl1";
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.spreadsheetCommandBarButtonItem1,
            this.spreadsheetCommandBarButtonItem2,
            this.spreadsheetCommandBarButtonItem3,
            this.spreadsheetCommandBarButtonItem8,
            this.spreadsheetCommandBarButtonItem9,
            this.spreadsheetCommandBarButtonItem10,
            this.spreadsheetCommandBarButtonItem11,
            this.spreadsheetCommandBarButtonItem12,
            this.spreadsheetCommandBarButtonItem13,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.spreadsheetCommandBarButtonItem14,
            this.spreadsheetCommandBarButtonItem15,
            this.barButtonGroup2,
            this.spreadsheetCommandBarCheckItem1,
            this.spreadsheetCommandBarCheckItem2,
            this.spreadsheetCommandBarCheckItem3,
            this.spreadsheetCommandBarCheckItem4,
            this.barButtonGroup3,
            this.spreadsheetCommandBarSubItem1,
            this.spreadsheetCommandBarButtonItem16,
            this.spreadsheetCommandBarButtonItem17,
            this.spreadsheetCommandBarButtonItem18,
            this.spreadsheetCommandBarButtonItem19,
            this.spreadsheetCommandBarButtonItem20,
            this.spreadsheetCommandBarButtonItem21,
            this.spreadsheetCommandBarButtonItem22,
            this.spreadsheetCommandBarButtonItem23,
            this.spreadsheetCommandBarButtonItem24,
            this.spreadsheetCommandBarButtonItem25,
            this.spreadsheetCommandBarButtonItem26,
            this.spreadsheetCommandBarButtonItem27,
            this.spreadsheetCommandBarButtonItem28,
            this.changeBorderLineColorItem1,
            this.changeBorderLineStyleItem1,
            this.barButtonGroup4,
            this.changeCellFillColorItem1,
            this.changeFontColorItem1,
            this.barButtonGroup5,
            this.spreadsheetCommandBarCheckItem5,
            this.spreadsheetCommandBarCheckItem6,
            this.spreadsheetCommandBarCheckItem7,
            this.barButtonGroup6,
            this.spreadsheetCommandBarCheckItem8,
            this.spreadsheetCommandBarCheckItem9,
            this.spreadsheetCommandBarCheckItem10,
            this.barButtonGroup7,
            this.spreadsheetCommandBarButtonItem29,
            this.spreadsheetCommandBarButtonItem30,
            this.spreadsheetCommandBarCheckItem11,
            this.spreadsheetCommandBarSubItem2,
            this.spreadsheetCommandBarCheckItem12,
            this.spreadsheetCommandBarButtonItem31,
            this.spreadsheetCommandBarButtonItem32,
            this.spreadsheetCommandBarButtonItem33,
            this.barButtonGroup8,
            this.spreadsheetCommandBarSubItem3,
            this.spreadsheetCommandBarButtonItem34,
            this.spreadsheetCommandBarButtonItem35,
            this.spreadsheetCommandBarButtonItem36,
            this.spreadsheetCommandBarButtonItem37,
            this.spreadsheetCommandBarButtonItem38,
            this.spreadsheetCommandBarButtonItem39,
            this.spreadsheetCommandBarButtonItem40,
            this.barButtonGroup9,
            this.spreadsheetCommandBarButtonItem41,
            this.spreadsheetCommandBarButtonItem42,
            this.galleryChangeStyleItem1,
            this.spreadsheetCommandBarSubItem4,
            this.spreadsheetCommandBarButtonItem43,
            this.spreadsheetCommandBarButtonItem44,
            this.spreadsheetCommandBarButtonItem45,
            this.spreadsheetCommandBarSubItem5,
            this.spreadsheetCommandBarButtonItem46,
            this.spreadsheetCommandBarButtonItem47,
            this.spreadsheetCommandBarButtonItem48,
            this.spreadsheetCommandBarSubItem6,
            this.spreadsheetCommandBarButtonItem49,
            this.spreadsheetCommandBarButtonItem50,
            this.spreadsheetCommandBarButtonItem51,
            this.spreadsheetCommandBarButtonItem52,
            this.spreadsheetCommandBarButtonItem53,
            this.spreadsheetCommandBarButtonItem54,
            this.spreadsheetCommandBarButtonItem55,
            this.spreadsheetCommandBarButtonItem56,
            this.spreadsheetCommandBarSubItem7,
            this.spreadsheetCommandBarButtonItem57,
            this.spreadsheetCommandBarSubItem8,
            this.spreadsheetCommandBarButtonItem58,
            this.spreadsheetCommandBarButtonItem59,
            this.spreadsheetCommandBarButtonItem60,
            this.spreadsheetCommandBarButtonItem61,
            this.spreadsheetCommandBarButtonItem62,
            this.spreadsheetCommandBarSubItem9,
            this.spreadsheetCommandBarButtonItem63,
            this.spreadsheetCommandBarButtonItem64,
            this.spreadsheetCommandBarButtonItem65,
            this.spreadsheetCommandBarButtonItem66,
            this.spreadsheetCommandBarSubItem10,
            this.spreadsheetCommandBarButtonItem67,
            this.spreadsheetCommandBarButtonItem68,
            this.spreadsheetCommandBarButtonItem69,
            this.spreadsheetCommandBarButtonItem70,
            this.spreadsheetCommandBarButtonItem71,
            this.spreadsheetCommandBarButtonItem72,
            this.spreadsheetCommandBarButtonItem73,
            this.spreadsheetCommandBarButtonItem74,
            this.spreadsheetCommandBarSubItem11,
            this.spreadsheetCommandBarCheckItem13,
            this.spreadsheetCommandBarCheckItem14,
            this.spreadsheetCommandBarCheckItem15,
            this.spreadsheetCommandBarSubItem12,
            this.spreadsheetCommandBarCheckItem16,
            this.spreadsheetCommandBarCheckItem17,
            this.pageSetupPaperKindItem1,
            this.spreadsheetCommandBarSubItem13,
            this.functionsFinancialItem1,
            this.functionsLogicalItem1,
            this.functionsTextItem1,
            this.functionsDateAndTimeItem1,
            this.functionsLookupAndReferenceItem1,
            this.functionsMathAndTrigonometryItem1,
            this.spreadsheetCommandBarSubItem14,
            this.functionsStatisticalItem1,
            this.functionsEngineeringItem1,
            this.functionsCubeItem1,
            this.functionsInformationItem1,
            this.functionsCompatibilityItem1,
            this.spreadsheetCommandBarCheckItem18,
            this.spreadsheetCommandBarCheckItem19,
            this.spreadsheetCommandBarButtonItem80,
            this.spreadsheetCommandBarButtonItem81,
            this.spreadsheetCommandBarButtonItem82,
            this.spreadsheetCommandBarSubItem15,
            this.spreadsheetCommandBarButtonItem83,
            this.spreadsheetCommandBarButtonItem84,
            this.spreadsheetCommandBarButtonItem85,
            this.spreadsheetCommandBarButtonItem86,
            this.spreadsheetCommandBarButtonItem90});
            resources.ApplyResources(this.ribbonControl1, "ribbonControl1");
            this.ribbonControl1.MaxItemId = 2;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.insertRibbonPage1,
            this.pageLayoutRibbonPage1,
            this.formulasRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFontEdit1,
            this.repositoryItemSpreadsheetFontSizeEdit1});
            this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
            // 
            // spreadsheetCommandBarButtonItem1
            // 
            this.spreadsheetCommandBarButtonItem1.CommandName = "FileNew";
            this.spreadsheetCommandBarButtonItem1.Id = 10;
            this.spreadsheetCommandBarButtonItem1.Name = "spreadsheetCommandBarButtonItem1";
            // 
            // spreadsheetCommandBarButtonItem2
            // 
            this.spreadsheetCommandBarButtonItem2.CommandName = "FileOpen";
            this.spreadsheetCommandBarButtonItem2.Id = 11;
            this.spreadsheetCommandBarButtonItem2.Name = "spreadsheetCommandBarButtonItem2";
            
            // 
            // spreadsheetCommandBarButtonItem3
            // 
            this.spreadsheetCommandBarButtonItem3.CloseSubMenuOnClick = false;
            this.spreadsheetCommandBarButtonItem3.CommandName = "FileSave";
            this.spreadsheetCommandBarButtonItem3.Id = 12;
            this.spreadsheetCommandBarButtonItem3.Name = "spreadsheetCommandBarButtonItem3";
            // 
            // spreadsheetCommandBarButtonItem8
            // 
            this.spreadsheetCommandBarButtonItem8.CommandName = "FileUndo";
            this.spreadsheetCommandBarButtonItem8.Id = 17;
            this.spreadsheetCommandBarButtonItem8.Name = "spreadsheetCommandBarButtonItem8";
            // 
            // spreadsheetCommandBarButtonItem9
            // 
            this.spreadsheetCommandBarButtonItem9.CommandName = "FileRedo";
            this.spreadsheetCommandBarButtonItem9.Id = 18;
            this.spreadsheetCommandBarButtonItem9.Name = "spreadsheetCommandBarButtonItem9";
            
            // 
            // spreadsheetCommandBarButtonItem10
            // 
            this.spreadsheetCommandBarButtonItem10.CommandName = "PasteSelection";
            this.spreadsheetCommandBarButtonItem10.Id = 19;
            this.spreadsheetCommandBarButtonItem10.Name = "spreadsheetCommandBarButtonItem10";
            this.spreadsheetCommandBarButtonItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem11
            // 
            this.spreadsheetCommandBarButtonItem11.CommandName = "CutSelection";
            this.spreadsheetCommandBarButtonItem11.Id = 20;
            this.spreadsheetCommandBarButtonItem11.Name = "spreadsheetCommandBarButtonItem11";
            this.spreadsheetCommandBarButtonItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem12
            // 
            this.spreadsheetCommandBarButtonItem12.CommandName = "CopySelection";
            this.spreadsheetCommandBarButtonItem12.Id = 21;
            this.spreadsheetCommandBarButtonItem12.Name = "spreadsheetCommandBarButtonItem12";
            this.spreadsheetCommandBarButtonItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem13
            // 
            this.spreadsheetCommandBarButtonItem13.CommandName = "ShowPasteSpecialForm";
            this.spreadsheetCommandBarButtonItem13.Id = 22;
            this.spreadsheetCommandBarButtonItem13.Name = "spreadsheetCommandBarButtonItem13";
            this.spreadsheetCommandBarButtonItem13.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 1;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem14);
            this.barButtonGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem15);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 23;
            this.changeFontNameItem1.Name = "changeFontNameItem1";
            // 
            // repositoryItemFontEdit1
            // 
            resources.ApplyResources(this.repositoryItemFontEdit1, "repositoryItemFontEdit1");
            this.repositoryItemFontEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemFontEdit1.Buttons"))))});
            this.repositoryItemFontEdit1.Name = "repositoryItemFontEdit1";
            // 
            // changeFontSizeItem1
            // 
            this.changeFontSizeItem1.Edit = this.repositoryItemSpreadsheetFontSizeEdit1;
            this.changeFontSizeItem1.Id = 24;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemSpreadsheetFontSizeEdit1
            // 
            resources.ApplyResources(this.repositoryItemSpreadsheetFontSizeEdit1, "repositoryItemSpreadsheetFontSizeEdit1");
            this.repositoryItemSpreadsheetFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemSpreadsheetFontSizeEdit1.Buttons"))))});
            this.repositoryItemSpreadsheetFontSizeEdit1.Control = this.spreadsheetControl1;
            this.repositoryItemSpreadsheetFontSizeEdit1.Name = "repositoryItemSpreadsheetFontSizeEdit1";
            // 
            // spreadsheetCommandBarButtonItem14
            // 
            this.spreadsheetCommandBarButtonItem14.ButtonGroupTag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            this.spreadsheetCommandBarButtonItem14.CommandName = "FormatIncreaseFontSize";
            this.spreadsheetCommandBarButtonItem14.Id = 25;
            this.spreadsheetCommandBarButtonItem14.Name = "spreadsheetCommandBarButtonItem14";
            this.spreadsheetCommandBarButtonItem14.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem15
            // 
            this.spreadsheetCommandBarButtonItem15.ButtonGroupTag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            this.spreadsheetCommandBarButtonItem15.CommandName = "FormatDecreaseFontSize";
            this.spreadsheetCommandBarButtonItem15.Id = 26;
            this.spreadsheetCommandBarButtonItem15.Name = "spreadsheetCommandBarButtonItem15";
            this.spreadsheetCommandBarButtonItem15.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 2;
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem1);
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem2);
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem3);
            this.barButtonGroup2.ItemLinks.Add(this.spreadsheetCommandBarCheckItem4);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            // 
            // spreadsheetCommandBarCheckItem1
            // 
            this.spreadsheetCommandBarCheckItem1.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem1.CommandName = "FormatFontBold";
            this.spreadsheetCommandBarCheckItem1.Id = 27;
            this.spreadsheetCommandBarCheckItem1.Name = "spreadsheetCommandBarCheckItem1";
            this.spreadsheetCommandBarCheckItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem2
            // 
            this.spreadsheetCommandBarCheckItem2.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem2.CommandName = "FormatFontItalic";
            this.spreadsheetCommandBarCheckItem2.Id = 28;
            this.spreadsheetCommandBarCheckItem2.Name = "spreadsheetCommandBarCheckItem2";
            this.spreadsheetCommandBarCheckItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem3
            // 
            this.spreadsheetCommandBarCheckItem3.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem3.CommandName = "FormatFontUnderline";
            this.spreadsheetCommandBarCheckItem3.Id = 29;
            this.spreadsheetCommandBarCheckItem3.Name = "spreadsheetCommandBarCheckItem3";
            this.spreadsheetCommandBarCheckItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem4
            // 
            this.spreadsheetCommandBarCheckItem4.ButtonGroupTag = "{56C139FB-52E5-405B-A03F-FA7DCABD1D17}";
            this.spreadsheetCommandBarCheckItem4.CommandName = "FormatFontStrikeout";
            this.spreadsheetCommandBarCheckItem4.Id = 30;
            this.spreadsheetCommandBarCheckItem4.Name = "spreadsheetCommandBarCheckItem4";
            this.spreadsheetCommandBarCheckItem4.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 3;
            this.barButtonGroup3.ItemLinks.Add(this.spreadsheetCommandBarSubItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DDB05A32-9207-4556-85CB-FE3403A197C7}";
            // 
            // spreadsheetCommandBarSubItem1
            // 
            this.spreadsheetCommandBarSubItem1.ButtonGroupTag = "{DDB05A32-9207-4556-85CB-FE3403A197C7}";
            this.spreadsheetCommandBarSubItem1.CommandName = "FormatBordersCommandGroup";
            this.spreadsheetCommandBarSubItem1.Id = 31;
            this.spreadsheetCommandBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem17),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem18),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem19),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem20),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem21),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem22),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem23),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem24),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem25),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem26),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem27),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem28),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeBorderLineColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeBorderLineStyleItem1)});
            this.spreadsheetCommandBarSubItem1.Name = "spreadsheetCommandBarSubItem1";
            this.spreadsheetCommandBarSubItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem16
            // 
            this.spreadsheetCommandBarButtonItem16.CommandName = "FormatBottomBorder";
            this.spreadsheetCommandBarButtonItem16.Id = 32;
            this.spreadsheetCommandBarButtonItem16.Name = "spreadsheetCommandBarButtonItem16";
            // 
            // spreadsheetCommandBarButtonItem17
            // 
            this.spreadsheetCommandBarButtonItem17.CommandName = "FormatTopBorder";
            this.spreadsheetCommandBarButtonItem17.Id = 33;
            this.spreadsheetCommandBarButtonItem17.Name = "spreadsheetCommandBarButtonItem17";
            // 
            // spreadsheetCommandBarButtonItem18
            // 
            this.spreadsheetCommandBarButtonItem18.CommandName = "FormatLeftBorder";
            this.spreadsheetCommandBarButtonItem18.Id = 34;
            this.spreadsheetCommandBarButtonItem18.Name = "spreadsheetCommandBarButtonItem18";
            // 
            // spreadsheetCommandBarButtonItem19
            // 
            this.spreadsheetCommandBarButtonItem19.CommandName = "FormatRightBorder";
            this.spreadsheetCommandBarButtonItem19.Id = 35;
            this.spreadsheetCommandBarButtonItem19.Name = "spreadsheetCommandBarButtonItem19";
            // 
            // spreadsheetCommandBarButtonItem20
            // 
            this.spreadsheetCommandBarButtonItem20.CommandName = "FormatNoBorders";
            this.spreadsheetCommandBarButtonItem20.Id = 36;
            this.spreadsheetCommandBarButtonItem20.Name = "spreadsheetCommandBarButtonItem20";
            // 
            // spreadsheetCommandBarButtonItem21
            // 
            this.spreadsheetCommandBarButtonItem21.CommandName = "FormatAllBorders";
            this.spreadsheetCommandBarButtonItem21.Id = 37;
            this.spreadsheetCommandBarButtonItem21.Name = "spreadsheetCommandBarButtonItem21";
            // 
            // spreadsheetCommandBarButtonItem22
            // 
            this.spreadsheetCommandBarButtonItem22.CommandName = "FormatOutsideBorders";
            this.spreadsheetCommandBarButtonItem22.Id = 38;
            this.spreadsheetCommandBarButtonItem22.Name = "spreadsheetCommandBarButtonItem22";
            // 
            // spreadsheetCommandBarButtonItem23
            // 
            this.spreadsheetCommandBarButtonItem23.CommandName = "FormatThickBorder";
            this.spreadsheetCommandBarButtonItem23.Id = 39;
            this.spreadsheetCommandBarButtonItem23.Name = "spreadsheetCommandBarButtonItem23";
            // 
            // spreadsheetCommandBarButtonItem24
            // 
            this.spreadsheetCommandBarButtonItem24.CommandName = "FormatBottomDoubleBorder";
            this.spreadsheetCommandBarButtonItem24.Id = 40;
            this.spreadsheetCommandBarButtonItem24.Name = "spreadsheetCommandBarButtonItem24";
            // 
            // spreadsheetCommandBarButtonItem25
            // 
            this.spreadsheetCommandBarButtonItem25.CommandName = "FormatBottomThickBorder";
            this.spreadsheetCommandBarButtonItem25.Id = 41;
            this.spreadsheetCommandBarButtonItem25.Name = "spreadsheetCommandBarButtonItem25";
            // 
            // spreadsheetCommandBarButtonItem26
            // 
            this.spreadsheetCommandBarButtonItem26.CommandName = "FormatTopAndBottomBorder";
            this.spreadsheetCommandBarButtonItem26.Id = 42;
            this.spreadsheetCommandBarButtonItem26.Name = "spreadsheetCommandBarButtonItem26";
            // 
            // spreadsheetCommandBarButtonItem27
            // 
            this.spreadsheetCommandBarButtonItem27.CommandName = "FormatTopAndThickBottomBorder";
            this.spreadsheetCommandBarButtonItem27.Id = 43;
            this.spreadsheetCommandBarButtonItem27.Name = "spreadsheetCommandBarButtonItem27";
            // 
            // spreadsheetCommandBarButtonItem28
            // 
            this.spreadsheetCommandBarButtonItem28.CommandName = "FormatTopAndDoubleBottomBorder";
            this.spreadsheetCommandBarButtonItem28.Id = 44;
            this.spreadsheetCommandBarButtonItem28.Name = "spreadsheetCommandBarButtonItem28";
            // 
            // changeBorderLineColorItem1
            // 
            this.changeBorderLineColorItem1.ActAsDropDown = true;
            this.changeBorderLineColorItem1.Id = 45;
            this.changeBorderLineColorItem1.Name = "changeBorderLineColorItem1";
            // 
            // changeBorderLineStyleItem1
            // 
            this.changeBorderLineStyleItem1.DropDownControl = this.galleryDropDown1;
            this.changeBorderLineStyleItem1.Id = 46;
            this.changeBorderLineStyleItem1.Name = "changeBorderLineStyleItem1";
            // 
            // galleryDropDown1
            // 
            // 
            // 
            // 
            this.galleryDropDown1.Gallery.AllowFilter = false;
            this.galleryDropDown1.Gallery.ColumnCount = 1;
            this.galleryDropDown1.Gallery.DrawImageBackground = false;
            galleryItem1.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.None;
            galleryItem2.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Thin;
            galleryItem3.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Hair;
            galleryItem4.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Dotted;
            galleryItem5.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Dashed;
            galleryItem6.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.DashDot;
            galleryItem7.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.DashDotDot;
            galleryItem8.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Double;
            galleryItem9.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Medium;
            galleryItem10.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.MediumDashed;
            galleryItem11.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.MediumDashDot;
            galleryItem12.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.MediumDashDotDot;
            galleryItem13.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.SlantDashDot;
            galleryItem14.Tag = DevExpress.XtraSpreadsheet.Model.ModelBorderLineStyle.Thick;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9,
            galleryItem10,
            galleryItem11,
            galleryItem12,
            galleryItem13,
            galleryItem14});
            this.galleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryDropDown1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryDropDown1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.galleryDropDown1.Gallery.ItemSize = new System.Drawing.Size(136, 26);
            this.galleryDropDown1.Gallery.RowCount = 14;
            this.galleryDropDown1.Gallery.ShowGroupCaption = false;
            this.galleryDropDown1.Gallery.ShowItemText = true;
            this.galleryDropDown1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown1.Manager = null;
            this.galleryDropDown1.Name = "galleryDropDown1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 4;
            this.barButtonGroup4.ItemLinks.Add(this.changeCellFillColorItem1);
            this.barButtonGroup4.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{C2275623-04A3-41E8-8D6A-EB5C7F8541D1}";
            // 
            // changeCellFillColorItem1
            // 
            this.changeCellFillColorItem1.Id = 47;
            this.changeCellFillColorItem1.Name = "changeCellFillColorItem1";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 48;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 5;
            this.barButtonGroup5.ItemLinks.Add(this.spreadsheetCommandBarCheckItem5);
            this.barButtonGroup5.ItemLinks.Add(this.spreadsheetCommandBarCheckItem6);
            this.barButtonGroup5.ItemLinks.Add(this.spreadsheetCommandBarCheckItem7);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            // 
            // spreadsheetCommandBarCheckItem5
            // 
            this.spreadsheetCommandBarCheckItem5.ButtonGroupTag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            this.spreadsheetCommandBarCheckItem5.CommandName = "FormatAlignmentTop";
            this.spreadsheetCommandBarCheckItem5.Id = 49;
            this.spreadsheetCommandBarCheckItem5.Name = "spreadsheetCommandBarCheckItem5";
            this.spreadsheetCommandBarCheckItem5.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem6
            // 
            this.spreadsheetCommandBarCheckItem6.ButtonGroupTag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            this.spreadsheetCommandBarCheckItem6.CommandName = "FormatAlignmentMiddle";
            this.spreadsheetCommandBarCheckItem6.Id = 50;
            this.spreadsheetCommandBarCheckItem6.Name = "spreadsheetCommandBarCheckItem6";
            this.spreadsheetCommandBarCheckItem6.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem7
            // 
            this.spreadsheetCommandBarCheckItem7.ButtonGroupTag = "{03A0322B-12A2-4434-A487-8B5AAF64CCFC}";
            this.spreadsheetCommandBarCheckItem7.CommandName = "FormatAlignmentBottom";
            this.spreadsheetCommandBarCheckItem7.Id = 51;
            this.spreadsheetCommandBarCheckItem7.Name = "spreadsheetCommandBarCheckItem7";
            this.spreadsheetCommandBarCheckItem7.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 6;
            this.barButtonGroup6.ItemLinks.Add(this.spreadsheetCommandBarCheckItem8);
            this.barButtonGroup6.ItemLinks.Add(this.spreadsheetCommandBarCheckItem9);
            this.barButtonGroup6.ItemLinks.Add(this.spreadsheetCommandBarCheckItem10);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            // 
            // spreadsheetCommandBarCheckItem8
            // 
            this.spreadsheetCommandBarCheckItem8.ButtonGroupTag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            this.spreadsheetCommandBarCheckItem8.CommandName = "FormatAlignmentLeft";
            this.spreadsheetCommandBarCheckItem8.Id = 52;
            this.spreadsheetCommandBarCheckItem8.Name = "spreadsheetCommandBarCheckItem8";
            this.spreadsheetCommandBarCheckItem8.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem9
            // 
            this.spreadsheetCommandBarCheckItem9.ButtonGroupTag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            this.spreadsheetCommandBarCheckItem9.CommandName = "FormatAlignmentCenter";
            this.spreadsheetCommandBarCheckItem9.Id = 53;
            this.spreadsheetCommandBarCheckItem9.Name = "spreadsheetCommandBarCheckItem9";
            this.spreadsheetCommandBarCheckItem9.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem10
            // 
            this.spreadsheetCommandBarCheckItem10.ButtonGroupTag = "{ECC693B7-EF59-4007-A0DB-A9550214A0F2}";
            this.spreadsheetCommandBarCheckItem10.CommandName = "FormatAlignmentRight";
            this.spreadsheetCommandBarCheckItem10.Id = 54;
            this.spreadsheetCommandBarCheckItem10.Name = "spreadsheetCommandBarCheckItem10";
            this.spreadsheetCommandBarCheckItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 7;
            this.barButtonGroup7.ItemLinks.Add(this.spreadsheetCommandBarButtonItem29);
            this.barButtonGroup7.ItemLinks.Add(this.spreadsheetCommandBarButtonItem30);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            // 
            // spreadsheetCommandBarButtonItem29
            // 
            this.spreadsheetCommandBarButtonItem29.ButtonGroupTag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            this.spreadsheetCommandBarButtonItem29.CommandName = "FormatDecreaseIndent";
            this.spreadsheetCommandBarButtonItem29.Id = 55;
            this.spreadsheetCommandBarButtonItem29.Name = "spreadsheetCommandBarButtonItem29";
            this.spreadsheetCommandBarButtonItem29.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem30
            // 
            this.spreadsheetCommandBarButtonItem30.ButtonGroupTag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            this.spreadsheetCommandBarButtonItem30.CommandName = "FormatIncreaseIndent";
            this.spreadsheetCommandBarButtonItem30.Id = 56;
            this.spreadsheetCommandBarButtonItem30.Name = "spreadsheetCommandBarButtonItem30";
            this.spreadsheetCommandBarButtonItem30.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem11
            // 
            this.spreadsheetCommandBarCheckItem11.CommandName = "FormatWrapText";
            this.spreadsheetCommandBarCheckItem11.Id = 57;
            this.spreadsheetCommandBarCheckItem11.Name = "spreadsheetCommandBarCheckItem11";
            this.spreadsheetCommandBarCheckItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarSubItem2
            // 
            this.spreadsheetCommandBarSubItem2.CommandName = "EditingMergeCellsCommandGroup";
            this.spreadsheetCommandBarSubItem2.Id = 58;
            this.spreadsheetCommandBarSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem12),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem31),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem32),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem33)});
            this.spreadsheetCommandBarSubItem2.Name = "spreadsheetCommandBarSubItem2";
            this.spreadsheetCommandBarSubItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem12
            // 
            this.spreadsheetCommandBarCheckItem12.CommandName = "EditingMergeAndCenterCells";
            this.spreadsheetCommandBarCheckItem12.Id = 59;
            this.spreadsheetCommandBarCheckItem12.Name = "spreadsheetCommandBarCheckItem12";
            // 
            // spreadsheetCommandBarButtonItem31
            // 
            this.spreadsheetCommandBarButtonItem31.CommandName = "EditingMergeCellsAcross";
            this.spreadsheetCommandBarButtonItem31.Id = 60;
            this.spreadsheetCommandBarButtonItem31.Name = "spreadsheetCommandBarButtonItem31";
            // 
            // spreadsheetCommandBarButtonItem32
            // 
            this.spreadsheetCommandBarButtonItem32.CommandName = "EditingMergeCells";
            this.spreadsheetCommandBarButtonItem32.Id = 61;
            this.spreadsheetCommandBarButtonItem32.Name = "spreadsheetCommandBarButtonItem32";
            // 
            // spreadsheetCommandBarButtonItem33
            // 
            this.spreadsheetCommandBarButtonItem33.CommandName = "EditingUnmergeCells";
            this.spreadsheetCommandBarButtonItem33.Id = 62;
            this.spreadsheetCommandBarButtonItem33.Name = "spreadsheetCommandBarButtonItem33";
            // 
            // barButtonGroup8
            // 
            this.barButtonGroup8.Id = 8;
            this.barButtonGroup8.ItemLinks.Add(this.spreadsheetCommandBarSubItem3);
            this.barButtonGroup8.ItemLinks.Add(this.spreadsheetCommandBarButtonItem39);
            this.barButtonGroup8.ItemLinks.Add(this.spreadsheetCommandBarButtonItem40);
            this.barButtonGroup8.Name = "barButtonGroup8";
            this.barButtonGroup8.Tag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            // 
            // spreadsheetCommandBarSubItem3
            // 
            this.spreadsheetCommandBarSubItem3.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarSubItem3.CommandName = "FormatNumberAccountingCommandGroup";
            this.spreadsheetCommandBarSubItem3.Id = 63;
            this.spreadsheetCommandBarSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem34),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem35),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem36),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem37),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem38)});
            this.spreadsheetCommandBarSubItem3.Name = "spreadsheetCommandBarSubItem3";
            this.spreadsheetCommandBarSubItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem34
            // 
            this.spreadsheetCommandBarButtonItem34.CommandName = "FormatNumberAccountingUS";
            this.spreadsheetCommandBarButtonItem34.Id = 64;
            this.spreadsheetCommandBarButtonItem34.Name = "spreadsheetCommandBarButtonItem34";
            // 
            // spreadsheetCommandBarButtonItem35
            // 
            this.spreadsheetCommandBarButtonItem35.CommandName = "FormatNumberAccountingUK";
            this.spreadsheetCommandBarButtonItem35.Id = 65;
            this.spreadsheetCommandBarButtonItem35.Name = "spreadsheetCommandBarButtonItem35";
            // 
            // spreadsheetCommandBarButtonItem36
            // 
            this.spreadsheetCommandBarButtonItem36.CommandName = "FormatNumberAccountingEuro";
            this.spreadsheetCommandBarButtonItem36.Id = 66;
            this.spreadsheetCommandBarButtonItem36.Name = "spreadsheetCommandBarButtonItem36";
            // 
            // spreadsheetCommandBarButtonItem37
            // 
            this.spreadsheetCommandBarButtonItem37.CommandName = "FormatNumberAccountingPRC";
            this.spreadsheetCommandBarButtonItem37.Id = 67;
            this.spreadsheetCommandBarButtonItem37.Name = "spreadsheetCommandBarButtonItem37";
            // 
            // spreadsheetCommandBarButtonItem38
            // 
            this.spreadsheetCommandBarButtonItem38.CommandName = "FormatNumberAccountingSwiss";
            this.spreadsheetCommandBarButtonItem38.Id = 68;
            this.spreadsheetCommandBarButtonItem38.Name = "spreadsheetCommandBarButtonItem38";
            // 
            // spreadsheetCommandBarButtonItem39
            // 
            this.spreadsheetCommandBarButtonItem39.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarButtonItem39.CommandName = "FormatNumberPercent";
            this.spreadsheetCommandBarButtonItem39.Id = 69;
            this.spreadsheetCommandBarButtonItem39.Name = "spreadsheetCommandBarButtonItem39";
            this.spreadsheetCommandBarButtonItem39.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem40
            // 
            this.spreadsheetCommandBarButtonItem40.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarButtonItem40.CommandName = "FormatNumberAccounting";
            this.spreadsheetCommandBarButtonItem40.Id = 70;
            this.spreadsheetCommandBarButtonItem40.Name = "spreadsheetCommandBarButtonItem40";
            this.spreadsheetCommandBarButtonItem40.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup9
            // 
            this.barButtonGroup9.Id = 9;
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarButtonItem41);
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarButtonItem42);
            this.barButtonGroup9.Name = "barButtonGroup9";
            this.barButtonGroup9.Tag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            // 
            // spreadsheetCommandBarButtonItem41
            // 
            this.spreadsheetCommandBarButtonItem41.ButtonGroupTag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            this.spreadsheetCommandBarButtonItem41.CommandName = "FormatNumberIncreaseDecimal";
            this.spreadsheetCommandBarButtonItem41.Id = 71;
            this.spreadsheetCommandBarButtonItem41.Name = "spreadsheetCommandBarButtonItem41";
            this.spreadsheetCommandBarButtonItem41.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem42
            // 
            this.spreadsheetCommandBarButtonItem42.ButtonGroupTag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            this.spreadsheetCommandBarButtonItem42.CommandName = "FormatNumberDecreaseDecimal";
            this.spreadsheetCommandBarButtonItem42.Id = 72;
            this.spreadsheetCommandBarButtonItem42.Name = "spreadsheetCommandBarButtonItem42";
            this.spreadsheetCommandBarButtonItem42.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarSubItem4
            // 
            this.spreadsheetCommandBarSubItem4.CommandName = "InsertCellsCommandGroup";
            this.spreadsheetCommandBarSubItem4.Id = 74;
            this.spreadsheetCommandBarSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem43),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem44),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem45)});
            this.spreadsheetCommandBarSubItem4.Name = "spreadsheetCommandBarSubItem4";
            // 
            // spreadsheetCommandBarButtonItem43
            // 
            this.spreadsheetCommandBarButtonItem43.CommandName = "InsertSheetRows";
            this.spreadsheetCommandBarButtonItem43.Id = 75;
            this.spreadsheetCommandBarButtonItem43.Name = "spreadsheetCommandBarButtonItem43";
            // 
            // spreadsheetCommandBarButtonItem44
            // 
            this.spreadsheetCommandBarButtonItem44.CommandName = "InsertSheetColumns";
            this.spreadsheetCommandBarButtonItem44.Id = 76;
            this.spreadsheetCommandBarButtonItem44.Name = "spreadsheetCommandBarButtonItem44";
            // 
            // spreadsheetCommandBarButtonItem45
            // 
            this.spreadsheetCommandBarButtonItem45.CommandName = "InsertSheet";
            this.spreadsheetCommandBarButtonItem45.Id = 77;
            this.spreadsheetCommandBarButtonItem45.Name = "spreadsheetCommandBarButtonItem45";
            // 
            // spreadsheetCommandBarSubItem5
            // 
            this.spreadsheetCommandBarSubItem5.CommandName = "RemoveCellsCommandGroup";
            this.spreadsheetCommandBarSubItem5.Id = 78;
            this.spreadsheetCommandBarSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem46),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem47),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem48)});
            this.spreadsheetCommandBarSubItem5.Name = "spreadsheetCommandBarSubItem5";
            // 
            // spreadsheetCommandBarButtonItem46
            // 
            this.spreadsheetCommandBarButtonItem46.CommandName = "RemoveSheetRows";
            this.spreadsheetCommandBarButtonItem46.Id = 79;
            this.spreadsheetCommandBarButtonItem46.Name = "spreadsheetCommandBarButtonItem46";
            // 
            // spreadsheetCommandBarButtonItem47
            // 
            this.spreadsheetCommandBarButtonItem47.CommandName = "RemoveSheetColumns";
            this.spreadsheetCommandBarButtonItem47.Id = 80;
            this.spreadsheetCommandBarButtonItem47.Name = "spreadsheetCommandBarButtonItem47";
            // 
            // spreadsheetCommandBarButtonItem48
            // 
            this.spreadsheetCommandBarButtonItem48.CommandName = "RemoveSheet";
            this.spreadsheetCommandBarButtonItem48.Id = 81;
            this.spreadsheetCommandBarButtonItem48.Name = "spreadsheetCommandBarButtonItem48";
            // 
            // spreadsheetCommandBarSubItem6
            // 
            this.spreadsheetCommandBarSubItem6.CommandName = "FormatCommandGroup";
            this.spreadsheetCommandBarSubItem6.Id = 82;
            this.spreadsheetCommandBarSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem49),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem50),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarSubItem7),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem57)});
            this.spreadsheetCommandBarSubItem6.Name = "spreadsheetCommandBarSubItem6";
            // 
            // spreadsheetCommandBarButtonItem49
            // 
            this.spreadsheetCommandBarButtonItem49.CommandName = "FormatAutoFitRowHeight";
            this.spreadsheetCommandBarButtonItem49.Id = 83;
            this.spreadsheetCommandBarButtonItem49.Name = "spreadsheetCommandBarButtonItem49";
            // 
            // spreadsheetCommandBarButtonItem50
            // 
            this.spreadsheetCommandBarButtonItem50.CommandName = "FormatAutoFitColumnWidth";
            this.spreadsheetCommandBarButtonItem50.Id = 84;
            this.spreadsheetCommandBarButtonItem50.Name = "spreadsheetCommandBarButtonItem50";
            // 
            // spreadsheetCommandBarSubItem7
            // 
            this.spreadsheetCommandBarSubItem7.CommandName = "HideAndUnhideCommandGroup";
            this.spreadsheetCommandBarSubItem7.Id = 85;
            this.spreadsheetCommandBarSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem51),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem52),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem53),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem54),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem55),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem56)});
            this.spreadsheetCommandBarSubItem7.Name = "spreadsheetCommandBarSubItem7";
            // 
            // spreadsheetCommandBarButtonItem51
            // 
            this.spreadsheetCommandBarButtonItem51.CommandName = "HideRows";
            this.spreadsheetCommandBarButtonItem51.Id = 86;
            this.spreadsheetCommandBarButtonItem51.Name = "spreadsheetCommandBarButtonItem51";
            // 
            // spreadsheetCommandBarButtonItem52
            // 
            this.spreadsheetCommandBarButtonItem52.CommandName = "HideColumns";
            this.spreadsheetCommandBarButtonItem52.Id = 87;
            this.spreadsheetCommandBarButtonItem52.Name = "spreadsheetCommandBarButtonItem52";
            // 
            // spreadsheetCommandBarButtonItem53
            // 
            this.spreadsheetCommandBarButtonItem53.CommandName = "HideSheet";
            this.spreadsheetCommandBarButtonItem53.Id = 88;
            this.spreadsheetCommandBarButtonItem53.Name = "spreadsheetCommandBarButtonItem53";
            // 
            // spreadsheetCommandBarButtonItem54
            // 
            this.spreadsheetCommandBarButtonItem54.CommandName = "UnhideRows";
            this.spreadsheetCommandBarButtonItem54.Id = 89;
            this.spreadsheetCommandBarButtonItem54.Name = "spreadsheetCommandBarButtonItem54";
            // 
            // spreadsheetCommandBarButtonItem55
            // 
            this.spreadsheetCommandBarButtonItem55.CommandName = "UnhideColumns";
            this.spreadsheetCommandBarButtonItem55.Id = 90;
            this.spreadsheetCommandBarButtonItem55.Name = "spreadsheetCommandBarButtonItem55";
            // 
            // spreadsheetCommandBarButtonItem56
            // 
            this.spreadsheetCommandBarButtonItem56.CommandName = "UnhideSheet";
            this.spreadsheetCommandBarButtonItem56.Id = 91;
            this.spreadsheetCommandBarButtonItem56.Name = "spreadsheetCommandBarButtonItem56";
            // 
            // spreadsheetCommandBarButtonItem57
            // 
            this.spreadsheetCommandBarButtonItem57.CommandName = "RenameSheet";
            this.spreadsheetCommandBarButtonItem57.Id = 92;
            this.spreadsheetCommandBarButtonItem57.Name = "spreadsheetCommandBarButtonItem57";
            // 
            // spreadsheetCommandBarSubItem8
            // 
            this.spreadsheetCommandBarSubItem8.CommandName = "EditingAutoSumCommandGroup";
            this.spreadsheetCommandBarSubItem8.Id = 93;
            this.spreadsheetCommandBarSubItem8.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem58),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem59),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem60),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem61),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem62)});
            this.spreadsheetCommandBarSubItem8.Name = "spreadsheetCommandBarSubItem8";
            this.spreadsheetCommandBarSubItem8.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem58
            // 
            this.spreadsheetCommandBarButtonItem58.CommandName = "FunctionsInsertSum";
            this.spreadsheetCommandBarButtonItem58.Id = 94;
            this.spreadsheetCommandBarButtonItem58.Name = "spreadsheetCommandBarButtonItem58";
            // 
            // spreadsheetCommandBarButtonItem59
            // 
            this.spreadsheetCommandBarButtonItem59.CommandName = "FunctionsInsertAverage";
            this.spreadsheetCommandBarButtonItem59.Id = 95;
            this.spreadsheetCommandBarButtonItem59.Name = "spreadsheetCommandBarButtonItem59";
            // 
            // spreadsheetCommandBarButtonItem60
            // 
            this.spreadsheetCommandBarButtonItem60.CommandName = "FunctionsInsertCountNumbers";
            this.spreadsheetCommandBarButtonItem60.Id = 96;
            this.spreadsheetCommandBarButtonItem60.Name = "spreadsheetCommandBarButtonItem60";
            // 
            // spreadsheetCommandBarButtonItem61
            // 
            this.spreadsheetCommandBarButtonItem61.CommandName = "FunctionsInsertMax";
            this.spreadsheetCommandBarButtonItem61.Id = 97;
            this.spreadsheetCommandBarButtonItem61.Name = "spreadsheetCommandBarButtonItem61";
            // 
            // spreadsheetCommandBarButtonItem62
            // 
            this.spreadsheetCommandBarButtonItem62.CommandName = "FunctionsInsertMin";
            this.spreadsheetCommandBarButtonItem62.Id = 98;
            this.spreadsheetCommandBarButtonItem62.Name = "spreadsheetCommandBarButtonItem62";
            // 
            // spreadsheetCommandBarSubItem9
            // 
            this.spreadsheetCommandBarSubItem9.CommandName = "EditingFillCommandGroup";
            this.spreadsheetCommandBarSubItem9.Id = 99;
            this.spreadsheetCommandBarSubItem9.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem63),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem64),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem65),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem66)});
            this.spreadsheetCommandBarSubItem9.Name = "spreadsheetCommandBarSubItem9";
            this.spreadsheetCommandBarSubItem9.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem63
            // 
            this.spreadsheetCommandBarButtonItem63.CommandName = "EditingFillDown";
            this.spreadsheetCommandBarButtonItem63.Id = 100;
            this.spreadsheetCommandBarButtonItem63.Name = "spreadsheetCommandBarButtonItem63";
            // 
            // spreadsheetCommandBarButtonItem64
            // 
            this.spreadsheetCommandBarButtonItem64.CommandName = "EditingFillRight";
            this.spreadsheetCommandBarButtonItem64.Id = 101;
            this.spreadsheetCommandBarButtonItem64.Name = "spreadsheetCommandBarButtonItem64";
            // 
            // spreadsheetCommandBarButtonItem65
            // 
            this.spreadsheetCommandBarButtonItem65.CommandName = "EditingFillUp";
            this.spreadsheetCommandBarButtonItem65.Id = 102;
            this.spreadsheetCommandBarButtonItem65.Name = "spreadsheetCommandBarButtonItem65";
            // 
            // spreadsheetCommandBarButtonItem66
            // 
            this.spreadsheetCommandBarButtonItem66.CommandName = "EditingFillLeft";
            this.spreadsheetCommandBarButtonItem66.Id = 103;
            this.spreadsheetCommandBarButtonItem66.Name = "spreadsheetCommandBarButtonItem66";
            // 
            // spreadsheetCommandBarSubItem10
            // 
            this.spreadsheetCommandBarSubItem10.CommandName = "FormatClearCommandGroup";
            this.spreadsheetCommandBarSubItem10.Id = 104;
            this.spreadsheetCommandBarSubItem10.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem67),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem68),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem69),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem70),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem71),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem72)});
            this.spreadsheetCommandBarSubItem10.Name = "spreadsheetCommandBarSubItem10";
            this.spreadsheetCommandBarSubItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem67
            // 
            this.spreadsheetCommandBarButtonItem67.CommandName = "FormatClearAll";
            this.spreadsheetCommandBarButtonItem67.Id = 105;
            this.spreadsheetCommandBarButtonItem67.Name = "spreadsheetCommandBarButtonItem67";
            // 
            // spreadsheetCommandBarButtonItem68
            // 
            this.spreadsheetCommandBarButtonItem68.CommandName = "FormatClearFormats";
            this.spreadsheetCommandBarButtonItem68.Id = 106;
            this.spreadsheetCommandBarButtonItem68.Name = "spreadsheetCommandBarButtonItem68";
            // 
            // spreadsheetCommandBarButtonItem69
            // 
            this.spreadsheetCommandBarButtonItem69.CommandName = "FormatClearContents";
            this.spreadsheetCommandBarButtonItem69.Id = 107;
            this.spreadsheetCommandBarButtonItem69.Name = "spreadsheetCommandBarButtonItem69";
            // 
            // spreadsheetCommandBarButtonItem70
            // 
            this.spreadsheetCommandBarButtonItem70.CommandName = "FormatClearComments";
            this.spreadsheetCommandBarButtonItem70.Id = 108;
            this.spreadsheetCommandBarButtonItem70.Name = "spreadsheetCommandBarButtonItem70";
            // 
            // spreadsheetCommandBarButtonItem71
            // 
            this.spreadsheetCommandBarButtonItem71.CommandName = "FormatClearHyperlinks";
            this.spreadsheetCommandBarButtonItem71.Id = 109;
            this.spreadsheetCommandBarButtonItem71.Name = "spreadsheetCommandBarButtonItem71";
            // 
            // spreadsheetCommandBarButtonItem72
            // 
            this.spreadsheetCommandBarButtonItem72.CommandName = "FormatRemoveHyperlinks";
            this.spreadsheetCommandBarButtonItem72.Id = 110;
            this.spreadsheetCommandBarButtonItem72.Name = "spreadsheetCommandBarButtonItem72";
            // 
            // spreadsheetCommandBarButtonItem73
            // 
            this.spreadsheetCommandBarButtonItem73.CommandName = "InsertPicture";
            this.spreadsheetCommandBarButtonItem73.Id = 111;
            this.spreadsheetCommandBarButtonItem73.Name = "spreadsheetCommandBarButtonItem73";
            // 
            // spreadsheetCommandBarButtonItem74
            // 
            this.spreadsheetCommandBarButtonItem74.CommandName = "InsertHyperlink";
            this.spreadsheetCommandBarButtonItem74.Id = 112;
            this.spreadsheetCommandBarButtonItem74.Name = "spreadsheetCommandBarButtonItem74";
            // 
            // spreadsheetCommandBarSubItem11
            // 
            this.spreadsheetCommandBarSubItem11.CommandName = "PageSetupMarginsCommandGroup";
            this.spreadsheetCommandBarSubItem11.Id = 113;
            this.spreadsheetCommandBarSubItem11.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem13),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem14),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem15)});
            this.spreadsheetCommandBarSubItem11.Name = "spreadsheetCommandBarSubItem11";
            // 
            // spreadsheetCommandBarCheckItem13
            // 
            this.spreadsheetCommandBarCheckItem13.CommandName = "PageSetupMarginsNormal";
            this.spreadsheetCommandBarCheckItem13.Id = 114;
            this.spreadsheetCommandBarCheckItem13.Name = "spreadsheetCommandBarCheckItem13";
            // 
            // spreadsheetCommandBarCheckItem14
            // 
            this.spreadsheetCommandBarCheckItem14.CommandName = "PageSetupMarginsWide";
            this.spreadsheetCommandBarCheckItem14.Id = 115;
            this.spreadsheetCommandBarCheckItem14.Name = "spreadsheetCommandBarCheckItem14";
            // 
            // spreadsheetCommandBarCheckItem15
            // 
            this.spreadsheetCommandBarCheckItem15.CommandName = "PageSetupMarginsNarrow";
            this.spreadsheetCommandBarCheckItem15.Id = 116;
            this.spreadsheetCommandBarCheckItem15.Name = "spreadsheetCommandBarCheckItem15";
            // 
            // spreadsheetCommandBarSubItem12
            // 
            this.spreadsheetCommandBarSubItem12.CommandName = "PageSetupOrientationCommandGroup";
            this.spreadsheetCommandBarSubItem12.Id = 117;
            this.spreadsheetCommandBarSubItem12.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem17)});
            this.spreadsheetCommandBarSubItem12.Name = "spreadsheetCommandBarSubItem12";
            // 
            // spreadsheetCommandBarCheckItem16
            // 
            this.spreadsheetCommandBarCheckItem16.CommandName = "PageSetupOrientationPortrait";
            this.spreadsheetCommandBarCheckItem16.Id = 118;
            this.spreadsheetCommandBarCheckItem16.Name = "spreadsheetCommandBarCheckItem16";
            // 
            // spreadsheetCommandBarCheckItem17
            // 
            this.spreadsheetCommandBarCheckItem17.CommandName = "PageSetupOrientationLandscape";
            this.spreadsheetCommandBarCheckItem17.Id = 119;
            this.spreadsheetCommandBarCheckItem17.Name = "spreadsheetCommandBarCheckItem17";
            // 
            // pageSetupPaperKindItem1
            // 
            this.pageSetupPaperKindItem1.Id = 120;
            this.pageSetupPaperKindItem1.Name = "pageSetupPaperKindItem1";
            // 
            // spreadsheetCommandBarSubItem13
            // 
            this.spreadsheetCommandBarSubItem13.CommandName = "FunctionsAutoSumCommandGroup";
            this.spreadsheetCommandBarSubItem13.Id = 121;
            this.spreadsheetCommandBarSubItem13.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem58),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem59),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem60),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem61),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem62)});
            this.spreadsheetCommandBarSubItem13.Name = "spreadsheetCommandBarSubItem13";
            // 
            // functionsFinancialItem1
            // 
            this.functionsFinancialItem1.Id = 122;
            this.functionsFinancialItem1.Name = "functionsFinancialItem1";
            // 
            // functionsLogicalItem1
            // 
            this.functionsLogicalItem1.Id = 123;
            this.functionsLogicalItem1.Name = "functionsLogicalItem1";
            // 
            // functionsTextItem1
            // 
            this.functionsTextItem1.Id = 124;
            this.functionsTextItem1.Name = "functionsTextItem1";
            // 
            // functionsDateAndTimeItem1
            // 
            this.functionsDateAndTimeItem1.Id = 125;
            this.functionsDateAndTimeItem1.Name = "functionsDateAndTimeItem1";
            // 
            // functionsLookupAndReferenceItem1
            // 
            this.functionsLookupAndReferenceItem1.Id = 126;
            this.functionsLookupAndReferenceItem1.Name = "functionsLookupAndReferenceItem1";
            // 
            // functionsMathAndTrigonometryItem1
            // 
            this.functionsMathAndTrigonometryItem1.Id = 127;
            this.functionsMathAndTrigonometryItem1.Name = "functionsMathAndTrigonometryItem1";
            // 
            // spreadsheetCommandBarSubItem14
            // 
            this.spreadsheetCommandBarSubItem14.CommandName = "FunctionsMoreCommandGroup";
            this.spreadsheetCommandBarSubItem14.Id = 128;
            this.spreadsheetCommandBarSubItem14.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsStatisticalItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsEngineeringItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsCubeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsInformationItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.functionsCompatibilityItem1)});
            this.spreadsheetCommandBarSubItem14.Name = "spreadsheetCommandBarSubItem14";
            // 
            // functionsStatisticalItem1
            // 
            this.functionsStatisticalItem1.Id = 129;
            this.functionsStatisticalItem1.Name = "functionsStatisticalItem1";
            // 
            // functionsEngineeringItem1
            // 
            this.functionsEngineeringItem1.Id = 130;
            this.functionsEngineeringItem1.Name = "functionsEngineeringItem1";
            // 
            // functionsCubeItem1
            // 
            this.functionsCubeItem1.Id = 131;
            this.functionsCubeItem1.Name = "functionsCubeItem1";
            // 
            // functionsInformationItem1
            // 
            this.functionsInformationItem1.Id = 132;
            this.functionsInformationItem1.Name = "functionsInformationItem1";
            // 
            // functionsCompatibilityItem1
            // 
            this.functionsCompatibilityItem1.Id = 133;
            this.functionsCompatibilityItem1.Name = "functionsCompatibilityItem1";
            // 
            // spreadsheetCommandBarCheckItem18
            // 
            this.spreadsheetCommandBarCheckItem18.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem18.CommandName = "ViewShowGridlines";
            this.spreadsheetCommandBarCheckItem18.Id = 134;
            this.spreadsheetCommandBarCheckItem18.Name = "spreadsheetCommandBarCheckItem18";
            // 
            // spreadsheetCommandBarCheckItem19
            // 
            this.spreadsheetCommandBarCheckItem19.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem19.CommandName = "ViewShowHeadings";
            this.spreadsheetCommandBarCheckItem19.Id = 135;
            this.spreadsheetCommandBarCheckItem19.Name = "spreadsheetCommandBarCheckItem19";
            // 
            // spreadsheetCommandBarButtonItem80
            // 
            this.spreadsheetCommandBarButtonItem80.CommandName = "ViewZoomOut";
            this.spreadsheetCommandBarButtonItem80.Id = 136;
            this.spreadsheetCommandBarButtonItem80.Name = "spreadsheetCommandBarButtonItem80";
            // 
            // spreadsheetCommandBarButtonItem81
            // 
            this.spreadsheetCommandBarButtonItem81.CommandName = "ViewZoomIn";
            this.spreadsheetCommandBarButtonItem81.Id = 137;
            this.spreadsheetCommandBarButtonItem81.Name = "spreadsheetCommandBarButtonItem81";
            // 
            // spreadsheetCommandBarButtonItem82
            // 
            this.spreadsheetCommandBarButtonItem82.CommandName = "ViewZoom100Percent";
            this.spreadsheetCommandBarButtonItem82.Id = 138;
            this.spreadsheetCommandBarButtonItem82.Name = "spreadsheetCommandBarButtonItem82";
            // 
            // spreadsheetCommandBarSubItem15
            // 
            this.spreadsheetCommandBarSubItem15.CommandName = "ViewFreezePanesCommandGroup";
            this.spreadsheetCommandBarSubItem15.Id = 139;
            this.spreadsheetCommandBarSubItem15.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem83),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem84),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem85),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem86)});
            this.spreadsheetCommandBarSubItem15.Name = "spreadsheetCommandBarSubItem15";
            // 
            // spreadsheetCommandBarButtonItem83
            // 
            this.spreadsheetCommandBarButtonItem83.CommandName = "ViewFreezePanes";
            this.spreadsheetCommandBarButtonItem83.Id = 140;
            this.spreadsheetCommandBarButtonItem83.Name = "spreadsheetCommandBarButtonItem83";
            // 
            // spreadsheetCommandBarButtonItem84
            // 
            this.spreadsheetCommandBarButtonItem84.CommandName = "ViewUnfreezePanes";
            this.spreadsheetCommandBarButtonItem84.Id = 141;
            this.spreadsheetCommandBarButtonItem84.Name = "spreadsheetCommandBarButtonItem84";
            // 
            // spreadsheetCommandBarButtonItem85
            // 
            this.spreadsheetCommandBarButtonItem85.CommandName = "ViewFreezeTopRow";
            this.spreadsheetCommandBarButtonItem85.Id = 142;
            this.spreadsheetCommandBarButtonItem85.Name = "spreadsheetCommandBarButtonItem85";
            // 
            // spreadsheetCommandBarButtonItem86
            // 
            this.spreadsheetCommandBarButtonItem86.CommandName = "ViewFreezeFirstColumn";
            this.spreadsheetCommandBarButtonItem86.Id = 143;
            this.spreadsheetCommandBarButtonItem86.Name = "spreadsheetCommandBarButtonItem86";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1});
            this.fileRibbonPage1.KeyTip = "FI";
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem2);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem3);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem8);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem9);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem90);
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.alignmentRibbonPageGroup1,
            this.numberRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.cellsRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            this.homeRibbonPage1.KeyTip = "H";
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            reduceOperation1.Behavior = DevExpress.XtraBars.Ribbon.ReduceOperationBehavior.UntilAvailable;
            reduceOperation1.Group = this.stylesRibbonPageGroup1;
            reduceOperation1.ItemLinkIndex = 0;
            reduceOperation1.ItemLinksCount = 0;
            reduceOperation1.Operation = DevExpress.XtraBars.Ribbon.ReduceOperationType.Gallery;
            this.homeRibbonPage1.ReduceOperations.Add(reduceOperation1);
            // 
            // clipboardRibbonPageGroup1
            // 
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem10);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem11);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem12);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem13);
            this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
            // 
            // fontRibbonPageGroup1
            // 
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup2);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup3);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // alignmentRibbonPageGroup1
            // 
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem11);
            this.alignmentRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem2);
            this.alignmentRibbonPageGroup1.Name = "alignmentRibbonPageGroup1";
            // 
            // numberRibbonPageGroup1
            // 
            this.numberRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup8);
            this.numberRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup9);
            this.numberRibbonPageGroup1.Name = "numberRibbonPageGroup1";
            // 
            // cellsRibbonPageGroup1
            // 
            this.cellsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem4);
            this.cellsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem5);
            this.cellsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem6);
            this.cellsRibbonPageGroup1.Name = "cellsRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem8);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem9);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem10);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // insertRibbonPage1
            // 
            this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.illustrationsRibbonPageGroup1,
            this.linksRibbonPageGroup1});
            this.insertRibbonPage1.KeyTip = "I";
            this.insertRibbonPage1.Name = "insertRibbonPage1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem73);
            this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
            // 
            // linksRibbonPageGroup1
            // 
            this.linksRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem74);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // pageLayoutRibbonPage1
            // 
            this.pageLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pageSetupRibbonPageGroup1});
            this.pageLayoutRibbonPage1.KeyTip = "P";
            this.pageLayoutRibbonPage1.Name = "pageLayoutRibbonPage1";
            // 
            // pageSetupRibbonPageGroup1
            // 
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem11);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem12);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.pageSetupPaperKindItem1);
            this.pageSetupRibbonPageGroup1.Name = "pageSetupRibbonPageGroup1";
            // 
            // formulasRibbonPage1
            // 
            this.formulasRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.functionLibraryRibbonPageGroup1});
            this.formulasRibbonPage1.KeyTip = "FO";
            this.formulasRibbonPage1.Name = "formulasRibbonPage1";
            // 
            // functionLibraryRibbonPageGroup1
            // 
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem13);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsFinancialItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsLogicalItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsTextItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsDateAndTimeItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsLookupAndReferenceItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.functionsMathAndTrigonometryItem1);
            this.functionLibraryRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem14);
            this.functionLibraryRibbonPageGroup1.Name = "functionLibraryRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.showRibbonPageGroup1,
            this.zoomRibbonPageGroup1,
            this.windowRibbonPageGroup1});
            this.viewRibbonPage1.KeyTip = "V";
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // showRibbonPageGroup1
            // 
            this.showRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem18);
            this.showRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem19);
            this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
            // 
            // zoomRibbonPageGroup1
            // 
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem80);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem81);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem82);
            this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
            // 
            // windowRibbonPageGroup1
            // 
            this.windowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem15);
            this.windowRibbonPageGroup1.Name = "windowRibbonPageGroup1";
            // 
            // spreadsheetBarController1
            // 
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem13);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontNameItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem22);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem23);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem24);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem25);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem26);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem27);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem28);
            this.spreadsheetBarController1.BarItems.Add(this.changeBorderLineColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeBorderLineStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeCellFillColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem5);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem6);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem29);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem30);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem31);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem32);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem33);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem34);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem35);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem36);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem37);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem38);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem39);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem40);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem41);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem42);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem43);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem44);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem45);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem5);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem46);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem47);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem48);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem6);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem49);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem50);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem51);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem52);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem53);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem54);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem55);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem56);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem57);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem58);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem59);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem60);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem61);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem62);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem63);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem64);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem65);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem66);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem10);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem67);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem68);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem69);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem70);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem71);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem72);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem73);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem74);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem17);
            this.spreadsheetBarController1.BarItems.Add(this.pageSetupPaperKindItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem75);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem76);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem77);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem78);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem79);
            this.spreadsheetBarController1.BarItems.Add(this.functionsFinancialItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsLogicalItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsTextItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsDateAndTimeItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsLookupAndReferenceItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsMathAndTrigonometryItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem14);
            this.spreadsheetBarController1.BarItems.Add(this.functionsStatisticalItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsEngineeringItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsCubeItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsInformationItem1);
            this.spreadsheetBarController1.BarItems.Add(this.functionsCompatibilityItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem80);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem81);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem82);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem83);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem84);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem85);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem86);
            this.spreadsheetBarController1.Control = this.spreadsheetControl1;
            // 
            // spreadsheetCommandBarButtonItem75
            // 
            this.spreadsheetCommandBarButtonItem75.CommandName = "FunctionsInsertSum";
            this.spreadsheetCommandBarButtonItem75.Id = -1;
            this.spreadsheetCommandBarButtonItem75.Name = "spreadsheetCommandBarButtonItem75";
            // 
            // spreadsheetCommandBarButtonItem76
            // 
            this.spreadsheetCommandBarButtonItem76.CommandName = "FunctionsInsertAverage";
            this.spreadsheetCommandBarButtonItem76.Id = -1;
            this.spreadsheetCommandBarButtonItem76.Name = "spreadsheetCommandBarButtonItem76";
            // 
            // spreadsheetCommandBarButtonItem77
            // 
            this.spreadsheetCommandBarButtonItem77.CommandName = "FunctionsInsertCountNumbers";
            this.spreadsheetCommandBarButtonItem77.Id = -1;
            this.spreadsheetCommandBarButtonItem77.Name = "spreadsheetCommandBarButtonItem77";
            // 
            // spreadsheetCommandBarButtonItem78
            // 
            this.spreadsheetCommandBarButtonItem78.CommandName = "FunctionsInsertMax";
            this.spreadsheetCommandBarButtonItem78.Id = -1;
            this.spreadsheetCommandBarButtonItem78.Name = "spreadsheetCommandBarButtonItem78";
            // 
            // spreadsheetCommandBarButtonItem79
            // 
            this.spreadsheetCommandBarButtonItem79.CommandName = "FunctionsInsertMin";
            this.spreadsheetCommandBarButtonItem79.Id = -1;
            this.spreadsheetCommandBarButtonItem79.Name = "spreadsheetCommandBarButtonItem79";
            // 
            // spreadsheetCommandBarButtonItem90
            // 
            resources.ApplyResources(this.spreadsheetCommandBarButtonItem90, "spreadsheetCommandBarButtonItem90");
            this.spreadsheetCommandBarButtonItem90.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.spreadsheetCommandBarButtonItem90.Glyph = ((System.Drawing.Image)(resources.GetObject("spreadsheetCommandBarButtonItem90.Glyph")));
            this.spreadsheetCommandBarButtonItem90.Id = 1;
            this.spreadsheetCommandBarButtonItem90.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("spreadsheetCommandBarButtonItem90.LargeGlyph")));
            this.spreadsheetCommandBarButtonItem90.Name = "spreadsheetCommandBarButtonItem90";
            this.spreadsheetCommandBarButtonItem90.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.spreadsheetCommandBarButtonItem90.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.spreadsheetCommandBarButtonItem90_ItemClick);
            // 
            // CustomDrawModule
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.spreadsheetControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "CustomDrawModule";
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spreadsheetBarController1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges2 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
            this.errorProvider = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
            this.moduleDataLayout = new DevExpress.XtraDataLayout.DataLayoutControl();
            this.FullNameTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biSave = new DevExpress.XtraBars.BarButtonItem();
            this.biClose = new DevExpress.XtraBars.BarButtonItem();
            this.biSaveAndClose = new DevExpress.XtraBars.BarButtonItem();
            this.biDelete = new DevExpress.XtraBars.BarButtonItem();
            this.biMailMerge = new DevExpress.XtraBars.BarButtonItem();
            this.biMeeting = new DevExpress.XtraBars.BarButtonItem();
            this.biPrintSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiPrintProfile = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSummary = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintDirectory = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintTaskList = new DevExpress.XtraBars.BarButtonItem();
            this.biTask = new DevExpress.XtraBars.BarButtonItem();
            this.galleryQuickLetters = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.biShowMap = new DevExpress.XtraBars.BarButtonItem();
            this.biRefresh = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ZipCodeTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.StateImageComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
            this.CityTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.AddressTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.gridControlTasks = new DevExpress.XtraGrid.GridControl();
            this.bindingSourceTasks = new System.Windows.Forms.BindingSource(this.components);
            this.gvTasks = new DevExpress.OutlookInspiredApp.Win.TaskPreviewGridView();
            this.colPriority = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDueDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSubject1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCompletion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
            this.gridControlEvaluations = new DevExpress.XtraGrid.GridControl();
            this.bindingSourceEvaluations = new System.Windows.Forms.BindingSource(this.components);
            this.gvEvaluations = new DevExpress.OutlookInspiredApp.Win.TaskPreviewGridView();
            this.colCreatedOn = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSubject = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCreatedBy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.DepartmentImageComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
            this.TitleTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.StatusImageComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
            this.HireDateDateEdit = new DevExpress.XtraEditors.DateEdit();
            this.FirstNameTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.LastNameTextEdit = new DevExpress.XtraEditors.TextEdit();
            this.PrefixImageComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
            this.BirthDateDateEdit = new DevExpress.XtraEditors.DateEdit();
            this.PhotoPictureEdit = new DevExpress.XtraEditors.PictureEdit();
            this.HomePhoneTextEdit = new DevExpress.XtraEditors.ButtonEdit();
            this.MobilePhoneTextEdit = new DevExpress.XtraEditors.ButtonEdit();
            this.EmailTextEdit = new DevExpress.XtraEditors.ButtonEdit();
            this.SkypeTextEdit = new DevExpress.XtraEditors.ButtonEdit();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.ItemForFirstName = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForLastName = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForPrefix = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForDepartment = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForStatus = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForEvaluations = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForHomePhone = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForMobilePhone = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForEmail = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForSkype = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForPhoto = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.ItemForAddress = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForCity = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForState = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForZipCode = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.ItemForFullName = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForHireDate = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForBirthDate = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.ItemForTitle = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForTasks = new DevExpress.XtraLayout.LayoutControlItem();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.moduleDataLayout)).BeginInit();
            this.moduleDataLayout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.FullNameTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ZipCodeTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.StateImageComboBoxEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CityTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.AddressTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlTasks)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceTasks)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvTasks)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlEvaluations)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceEvaluations)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvEvaluations)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DepartmentImageComboBoxEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TitleTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.StatusImageComboBoxEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.HireDateDateEdit.Properties.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.HireDateDateEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.FirstNameTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LastNameTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PrefixImageComboBoxEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BirthDateDateEdit.Properties.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BirthDateDateEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PhotoPictureEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.HomePhoneTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MobilePhoneTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.EmailTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SkypeTextEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForFirstName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForLastName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForPrefix)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForDepartment)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForStatus)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForEvaluations)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForHomePhone)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForMobilePhone)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForEmail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSkype)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForPhoto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForAddress)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForCity)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForState)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForZipCode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForFullName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForHireDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForBirthDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTitle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTasks)).BeginInit();
            this.SuspendLayout();
            // 
            // errorProvider
            // 
            this.errorProvider.ContainerControl = this.moduleDataLayout;
            this.errorProvider.DataSource = this.bindingSource;
            // 
            // moduleDataLayout
            // 
            this.moduleDataLayout.AllowCustomizationMenu = false;
            this.moduleDataLayout.Controls.Add(this.FullNameTextEdit);
            this.moduleDataLayout.Controls.Add(this.ZipCodeTextEdit);
            this.moduleDataLayout.Controls.Add(this.StateImageComboBoxEdit);
            this.moduleDataLayout.Controls.Add(this.CityTextEdit);
            this.moduleDataLayout.Controls.Add(this.AddressTextEdit);
            this.moduleDataLayout.Controls.Add(this.gridControlTasks);
            this.moduleDataLayout.Controls.Add(this.gridControlEvaluations);
            this.moduleDataLayout.Controls.Add(this.DepartmentImageComboBoxEdit);
            this.moduleDataLayout.Controls.Add(this.TitleTextEdit);
            this.moduleDataLayout.Controls.Add(this.StatusImageComboBoxEdit);
            this.moduleDataLayout.Controls.Add(this.HireDateDateEdit);
            this.moduleDataLayout.Controls.Add(this.FirstNameTextEdit);
            this.moduleDataLayout.Controls.Add(this.LastNameTextEdit);
            this.moduleDataLayout.Controls.Add(this.PrefixImageComboBoxEdit);
            this.moduleDataLayout.Controls.Add(this.BirthDateDateEdit);
            this.moduleDataLayout.Controls.Add(this.PhotoPictureEdit);
            this.moduleDataLayout.Controls.Add(this.HomePhoneTextEdit);
            this.moduleDataLayout.Controls.Add(this.MobilePhoneTextEdit);
            this.moduleDataLayout.Controls.Add(this.EmailTextEdit);
            this.moduleDataLayout.Controls.Add(this.SkypeTextEdit);
            this.moduleDataLayout.DataSource = this.bindingSource;
            this.moduleDataLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.moduleDataLayout.Location = new System.Drawing.Point(0, 142);
            this.moduleDataLayout.MenuManager = this.ribbonControl;
            this.moduleDataLayout.Name = "moduleDataLayout";
            this.moduleDataLayout.Root = this.layoutControlGroup1;
            this.moduleDataLayout.Size = new System.Drawing.Size(1209, 643);
            this.moduleDataLayout.TabIndex = 1;
            this.moduleDataLayout.Text = "moduleDataLayout";
            // 
            // FullNameTextEdit
            // 
            this.FullNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "FullNameBindable", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.FullNameTextEdit.Location = new System.Drawing.Point(100, 60);
            this.FullNameTextEdit.MenuManager = this.ribbonControl;
            this.FullNameTextEdit.Name = "FullNameTextEdit";
            this.FullNameTextEdit.Size = new System.Drawing.Size(313, 20);
            this.FullNameTextEdit.StyleController = this.moduleDataLayout;
            this.FullNameTextEdit.TabIndex = 23;
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Employee);
            // 
            // ribbonControl
            // 
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biSave,
            this.biClose,
            this.biSaveAndClose,
            this.biDelete,
            this.biMailMerge,
            this.biMeeting,
            this.biPrintSubItem,
            this.bmiPrintProfile,
            this.bmiPrintSummary,
            this.biTask,
            this.bmiPrintDirectory,
            this.bmiPrintTaskList,
            this.galleryQuickLetters,
            this.biShowMap,
            this.biRefresh});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 18;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
            this.ribbonControl.Size = new System.Drawing.Size(1209, 142);
            // 
            // biSave
            // 
            this.biSave.Caption = "Save";
            this.biSave.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_16;
            this.biSave.Id = 1;
            this.biSave.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_32;
            this.biSave.Name = "biSave";
            // 
            // biClose
            // 
            this.biClose.Caption = "Close";
            this.biClose.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_close_16;
            this.biClose.Id = 2;
            this.biClose.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.Escape);
            this.biClose.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_close_32;
            this.biClose.Name = "biClose";
            // 
            // biSaveAndClose
            // 
            this.biSaveAndClose.Caption = "Save && Close";
            this.biSaveAndClose.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_close_16;
            this.biSaveAndClose.Id = 3;
            this.biSaveAndClose.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_close_32;
            this.biSaveAndClose.Name = "biSaveAndClose";
            // 
            // biDelete
            // 
            this.biDelete.Caption = "Delete";
            this.biDelete.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_16;
            this.biDelete.Id = 4;
            this.biDelete.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_32;
            this.biDelete.Name = "biDelete";
            // 
            // biMailMerge
            // 
            this.biMailMerge.Caption = "Mail Merge";
            this.biMailMerge.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mail_merge_16;
            this.biMailMerge.Id = 5;
            this.biMailMerge.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mail_merge_32;
            this.biMailMerge.Name = "biMailMerge";
            // 
            // biMeeting
            // 
            this.biMeeting.Caption = "Meeting";
            this.biMeeting.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_meeting_16;
            this.biMeeting.Id = 6;
            this.biMeeting.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_meeting_32;
            this.biMeeting.Name = "biMeeting";
            // 
            // biPrintSubItem
            // 
            this.biPrintSubItem.Caption = "Print";
            this.biPrintSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_16;
            this.biPrintSubItem.Id = 8;
            this.biPrintSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.biPrintSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintProfile),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSummary),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintDirectory),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintTaskList)});
            this.biPrintSubItem.Name = "biPrintSubItem";
            this.biPrintSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiPrintProfile
            // 
            this.bmiPrintProfile.Caption = "Employee Profile";
            this.bmiPrintProfile.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_profile_16;
            this.bmiPrintProfile.Id = 9;
            this.bmiPrintProfile.Name = "bmiPrintProfile";
            // 
            // bmiPrintSummary
            // 
            this.bmiPrintSummary.Caption = "Summary Report";
            this.bmiPrintSummary.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_summary_16;
            this.bmiPrintSummary.Id = 10;
            this.bmiPrintSummary.Name = "bmiPrintSummary";
            // 
            // bmiPrintDirectory
            // 
            this.bmiPrintDirectory.Caption = "Directory";
            this.bmiPrintDirectory.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_directory_16;
            this.bmiPrintDirectory.Id = 12;
            this.bmiPrintDirectory.Name = "bmiPrintDirectory";
            // 
            // bmiPrintTaskList
            // 
            this.bmiPrintTaskList.Caption = "Task List";
            this.bmiPrintTaskList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_task_list_16;
            this.bmiPrintTaskList.Id = 13;
            this.bmiPrintTaskList.Name = "bmiPrintTaskList";
            // 
            // biTask
            // 
            this.biTask.Caption = "Task";
            this.biTask.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_task_16;
            this.biTask.Id = 11;
            this.biTask.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_task_32;
            this.biTask.Name = "biTask";
            // 
            // galleryQuickLetters
            // 
            this.galleryQuickLetters.Caption = "ribbonGalleryBarItem1";
            // 
            // 
            // 
            this.galleryQuickLetters.Gallery.ColumnCount = 2;
            this.galleryQuickLetters.Gallery.DrawImageBackground = false;
            galleryItemGroup1.Caption = "Group1";
            galleryItem1.Caption = "Thank You Note";
            galleryItem1.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_thank_16;
            galleryItem2.Caption = "Employee Award";
            galleryItem2.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_award_16;
            galleryItem3.Caption = "Service Excellence";
            galleryItem3.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_excellence_16;
            galleryItem4.Caption = "Probation Notice";
            galleryItem4.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_probation_notice_16;
            galleryItem5.Caption = "Welcome To DevAV";
            galleryItem5.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_employee_quick_welcome_16;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5});
            this.galleryQuickLetters.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryQuickLetters.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.galleryQuickLetters.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -1;
            skinPaddingEdges2.Top = -1;
            this.galleryQuickLetters.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.galleryQuickLetters.Gallery.ShowItemText = true;
            this.galleryQuickLetters.Id = 14;
            this.galleryQuickLetters.Name = "galleryQuickLetters";
            // 
            // biShowMap
            // 
            this.biShowMap.Caption = "Map It";
            this.biShowMap.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_16;
            this.biShowMap.Id = 15;
            this.biShowMap.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_32;
            this.biShowMap.Name = "biShowMap";
            // 
            // biRefresh
            // 
            this.biRefresh.Caption = "Reset Changes";
            this.biRefresh.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_reset_changes_16;
            this.biRefresh.Id = 17;
            this.biRefresh.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_reset_changes_32;
            this.biRefresh.Name = "biRefresh";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup7,
            this.ribbonPageGroup2,
            this.ribbonPageGroup4,
            this.ribbonPageGroup5,
            this.ribbonPageGroup6,
            this.ribbonPageGroup3});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "CONTACT";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.biSave);
            this.ribbonPageGroup1.ItemLinks.Add(this.biSaveAndClose);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "Save";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.AllowTextClipping = false;
            this.ribbonPageGroup7.ItemLinks.Add(this.biRefresh);
            this.ribbonPageGroup7.MergeOrder = 0;
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.ShowCaptionButton = false;
            this.ribbonPageGroup7.Text = "Edit";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.biDelete);
            this.ribbonPageGroup2.MergeOrder = 0;
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Delete";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.biPrintSubItem);
            this.ribbonPageGroup4.ItemLinks.Add(this.biMeeting);
            this.ribbonPageGroup4.ItemLinks.Add(this.biTask);
            this.ribbonPageGroup4.ItemLinks.Add(this.biMailMerge);
            this.ribbonPageGroup4.MergeOrder = 0;
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "Actions";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.galleryQuickLetters);
            this.ribbonPageGroup5.MergeOrder = 0;
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Quick Letters";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.AllowTextClipping = false;
            this.ribbonPageGroup6.ItemLinks.Add(this.biShowMap);
            this.ribbonPageGroup6.MergeOrder = 0;
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "View";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.AllowTextClipping = false;
            this.ribbonPageGroup3.ItemLinks.Add(this.biClose);
            this.ribbonPageGroup3.MergeOrder = 0;
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Close";
            // 
            // ZipCodeTextEdit
            // 
            this.ZipCodeTextEdit.EnterMoveNextControl = true;
            this.ZipCodeTextEdit.Location = new System.Drawing.Point(245, 200);
            this.ZipCodeTextEdit.MenuManager = this.ribbonControl;
            this.ZipCodeTextEdit.Name = "ZipCodeTextEdit";
            this.ZipCodeTextEdit.Size = new System.Drawing.Size(294, 20);
            this.ZipCodeTextEdit.StyleController = this.moduleDataLayout;
            this.ZipCodeTextEdit.TabIndex = 22;
            // 
            // StateImageComboBoxEdit
            // 
            this.StateImageComboBoxEdit.EnterMoveNextControl = true;
            this.StateImageComboBoxEdit.Location = new System.Drawing.Point(100, 200);
            this.StateImageComboBoxEdit.MenuManager = this.ribbonControl;
            this.StateImageComboBoxEdit.Name = "StateImageComboBoxEdit";
            this.StateImageComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.StateImageComboBoxEdit.Properties.DropDownRows = 14;
            this.StateImageComboBoxEdit.Properties.Sorted = true;
            this.StateImageComboBoxEdit.Size = new System.Drawing.Size(94, 20);
            this.StateImageComboBoxEdit.StyleController = this.moduleDataLayout;
            this.StateImageComboBoxEdit.TabIndex = 21;
            // 
            // CityTextEdit
            // 
            this.CityTextEdit.EnterMoveNextControl = true;
            this.CityTextEdit.Location = new System.Drawing.Point(100, 176);
            this.CityTextEdit.MenuManager = this.ribbonControl;
            this.CityTextEdit.Name = "CityTextEdit";
            this.CityTextEdit.Size = new System.Drawing.Size(439, 20);
            this.CityTextEdit.StyleController = this.moduleDataLayout;
            this.CityTextEdit.TabIndex = 20;
            // 
            // AddressTextEdit
            // 
            this.AddressTextEdit.EnterMoveNextControl = true;
            this.AddressTextEdit.Location = new System.Drawing.Point(100, 152);
            this.AddressTextEdit.MenuManager = this.ribbonControl;
            this.AddressTextEdit.Name = "AddressTextEdit";
            this.AddressTextEdit.Size = new System.Drawing.Size(439, 20);
            this.AddressTextEdit.StyleController = this.moduleDataLayout;
            this.AddressTextEdit.TabIndex = 19;
            // 
            // gridControlTasks
            // 
            this.gridControlTasks.DataBindings.Add(new System.Windows.Forms.Binding("DataSource", this.bindingSource, "AssignedTasks", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.gridControlTasks.DataSource = this.bindingSourceTasks;
            this.gridControlTasks.Location = new System.Drawing.Point(100, 368);
            this.gridControlTasks.MainView = this.gvTasks;
            this.gridControlTasks.Name = "gridControlTasks";
            this.gridControlTasks.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemProgressBar1});
            this.gridControlTasks.Size = new System.Drawing.Size(1097, 263);
            this.gridControlTasks.TabIndex = 18;
            this.gridControlTasks.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gvTasks});
            // 
            // bindingSourceTasks
            // 
            this.bindingSourceTasks.DataSource = typeof(DevExpress.DevAV.EmployeeTask);
            // 
            // gvTasks
            // 
            this.gvTasks.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Transparent;
            this.gvTasks.Appearance.HideSelectionRow.Options.UseBackColor = true;
            this.gvTasks.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colPriority,
            this.colDueDate,
            this.colSubject1,
            this.colDescription,
            this.colCompletion});
            this.gvTasks.GridControl = this.gridControlTasks;
            this.gvTasks.Name = "gvTasks";
            this.gvTasks.OptionsBehavior.FocusLeaveOnTab = true;
            this.gvTasks.PreviewFieldName = "Description";
            this.gvTasks.PreviewIndent = 0;
            // 
            // colPriority
            // 
            this.colPriority.Caption = "PRIORITY";
            this.colPriority.FieldName = "Priority";
            this.colPriority.Name = "colPriority";
            this.colPriority.OptionsColumn.AllowEdit = false;
            this.colPriority.OptionsColumn.AllowFocus = false;
            this.colPriority.Visible = true;
            this.colPriority.VisibleIndex = 0;
            this.colPriority.Width = 65;
            // 
            // colDueDate
            // 
            this.colDueDate.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.colDueDate.AppearanceCell.Options.UseFont = true;
            this.colDueDate.Caption = "DUE DATE";
            this.colDueDate.FieldName = "DueDate";
            this.colDueDate.Name = "colDueDate";
            this.colDueDate.OptionsColumn.AllowEdit = false;
            this.colDueDate.OptionsColumn.AllowFocus = false;
            this.colDueDate.Visible = true;
            this.colDueDate.VisibleIndex = 1;
            this.colDueDate.Width = 80;
            // 
            // colSubject1
            // 
            this.colSubject1.Caption = "SUBJECT";
            this.colSubject1.FieldName = "Subject";
            this.colSubject1.Name = "colSubject1";
            this.colSubject1.OptionsColumn.AllowEdit = false;
            this.colSubject1.OptionsColumn.AllowFocus = false;
            this.colSubject1.Visible = true;
            this.colSubject1.VisibleIndex = 2;
            this.colSubject1.Width = 288;
            // 
            // colDescription
            // 
            this.colDescription.Caption = "DESCRIPTION";
            this.colDescription.FieldName = "Description";
            this.colDescription.Name = "colDescription";
            this.colDescription.OptionsColumn.AllowEdit = false;
            this.colDescription.OptionsColumn.AllowFocus = false;
            this.colDescription.Visible = true;
            this.colDescription.VisibleIndex = 3;
            this.colDescription.Width = 524;
            // 
            // colCompletion
            // 
            this.colCompletion.Caption = "COMPLETION";
            this.colCompletion.ColumnEdit = this.repositoryItemProgressBar1;
            this.colCompletion.FieldName = "Completion";
            this.colCompletion.Name = "colCompletion";
            this.colCompletion.OptionsColumn.AllowEdit = false;
            this.colCompletion.OptionsColumn.AllowFocus = false;
            this.colCompletion.Visible = true;
            this.colCompletion.VisibleIndex = 4;
            this.colCompletion.Width = 122;
            // 
            // repositoryItemProgressBar1
            // 
            this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
            this.repositoryItemProgressBar1.ShowTitle = true;
            // 
            // gridControlEvaluations
            // 
            this.gridControlEvaluations.DataBindings.Add(new System.Windows.Forms.Binding("DataSource", this.bindingSource, "Evaluations", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.gridControlEvaluations.DataSource = this.bindingSourceEvaluations;
            this.gridControlEvaluations.Location = new System.Drawing.Point(563, 122);
            this.gridControlEvaluations.MainView = this.gvEvaluations;
            this.gridControlEvaluations.Name = "gridControlEvaluations";
            this.gridControlEvaluations.Size = new System.Drawing.Size(634, 222);
            this.gridControlEvaluations.TabIndex = 6;
            this.gridControlEvaluations.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gvEvaluations});
            // 
            // bindingSourceEvaluations
            // 
            this.bindingSourceEvaluations.DataSource = typeof(DevExpress.DevAV.Evaluation);
            // 
            // gvEvaluations
            // 
            this.gvEvaluations.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colCreatedOn,
            this.colSubject,
            this.colCreatedBy});
            this.gvEvaluations.GridControl = this.gridControlEvaluations;
            this.gvEvaluations.Name = "gvEvaluations";
            this.gvEvaluations.OptionsBehavior.FocusLeaveOnTab = true;
            this.gvEvaluations.OptionsSelection.EnableAppearanceHideSelection = false;
            this.gvEvaluations.PreviewFieldName = "Details";
            this.gvEvaluations.PreviewIndent = 0;
            this.gvEvaluations.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvEvaluations_RowCellStyle);
            // 
            // colCreatedOn
            // 
            this.colCreatedOn.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.colCreatedOn.AppearanceCell.Options.UseFont = true;
            this.colCreatedOn.Caption = "CREATED ON";
            this.colCreatedOn.FieldName = "CreatedOn";
            this.colCreatedOn.Name = "colCreatedOn";
            this.colCreatedOn.OptionsColumn.AllowEdit = false;
            this.colCreatedOn.OptionsColumn.AllowFocus = false;
            this.colCreatedOn.Visible = true;
            this.colCreatedOn.VisibleIndex = 0;
            this.colCreatedOn.Width = 88;
            // 
            // colSubject
            // 
            this.colSubject.Caption = "SUBJECT";
            this.colSubject.FieldName = "Subject";
            this.colSubject.Name = "colSubject";
            this.colSubject.OptionsColumn.AllowEdit = false;
            this.colSubject.OptionsColumn.AllowFocus = false;
            this.colSubject.Visible = true;
            this.colSubject.VisibleIndex = 1;
            this.colSubject.Width = 351;
            // 
            // colCreatedBy
            // 
            this.colCreatedBy.Caption = "MANAGER";
            this.colCreatedBy.FieldName = "CreatedBy";
            this.colCreatedBy.Name = "colCreatedBy";
            this.colCreatedBy.OptionsColumn.AllowEdit = false;
            this.colCreatedBy.OptionsColumn.AllowFocus = false;
            this.colCreatedBy.Visible = true;
            this.colCreatedBy.VisibleIndex = 2;
            this.colCreatedBy.Width = 189;
            // 
            // DepartmentImageComboBoxEdit
            // 
            this.DepartmentImageComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Department", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DepartmentImageComboBoxEdit.EnterMoveNextControl = true;
            this.DepartmentImageComboBoxEdit.Location = new System.Drawing.Point(651, 12);
            this.DepartmentImageComboBoxEdit.MenuManager = this.ribbonControl;
            this.DepartmentImageComboBoxEdit.Name = "DepartmentImageComboBoxEdit";
            this.DepartmentImageComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DepartmentImageComboBoxEdit.Size = new System.Drawing.Size(546, 20);
            this.DepartmentImageComboBoxEdit.StyleController = this.moduleDataLayout;
            this.DepartmentImageComboBoxEdit.TabIndex = 4;
            // 
            // TitleTextEdit
            // 
            this.TitleTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Title", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.TitleTextEdit.EnterMoveNextControl = true;
            this.TitleTextEdit.Location = new System.Drawing.Point(100, 108);
            this.TitleTextEdit.MenuManager = this.ribbonControl;
            this.TitleTextEdit.Name = "TitleTextEdit";
            this.TitleTextEdit.Properties.ValidateOnEnterKey = true;
            this.TitleTextEdit.Size = new System.Drawing.Size(200, 20);
            this.TitleTextEdit.StyleController = this.moduleDataLayout;
            this.TitleTextEdit.TabIndex = 5;
            // 
            // StatusImageComboBoxEdit
            // 
            this.StatusImageComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Status", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.StatusImageComboBoxEdit.EnterMoveNextControl = true;
            this.StatusImageComboBoxEdit.Location = new System.Drawing.Point(651, 36);
            this.StatusImageComboBoxEdit.MenuManager = this.ribbonControl;
            this.StatusImageComboBoxEdit.Name = "StatusImageComboBoxEdit";
            this.StatusImageComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.StatusImageComboBoxEdit.Size = new System.Drawing.Size(546, 20);
            this.StatusImageComboBoxEdit.StyleController = this.moduleDataLayout;
            this.StatusImageComboBoxEdit.TabIndex = 6;
            // 
            // HireDateDateEdit
            // 
            this.HireDateDateEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "HireDate", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.HireDateDateEdit.EditValue = null;
            this.HireDateDateEdit.EnterMoveNextControl = true;
            this.HireDateDateEdit.Location = new System.Drawing.Point(651, 60);
            this.HireDateDateEdit.MenuManager = this.ribbonControl;
            this.HireDateDateEdit.Name = "HireDateDateEdit";
            this.HireDateDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.HireDateDateEdit.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.HireDateDateEdit.Size = new System.Drawing.Size(546, 20);
            this.HireDateDateEdit.StyleController = this.moduleDataLayout;
            this.HireDateDateEdit.TabIndex = 7;
            // 
            // FirstNameTextEdit
            // 
            this.FirstNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "FirstName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.FirstNameTextEdit.EnterMoveNextControl = true;
            this.FirstNameTextEdit.Location = new System.Drawing.Point(100, 12);
            this.FirstNameTextEdit.MenuManager = this.ribbonControl;
            this.FirstNameTextEdit.Name = "FirstNameTextEdit";
            this.FirstNameTextEdit.Properties.ValidateOnEnterKey = true;
            this.FirstNameTextEdit.Size = new System.Drawing.Size(313, 20);
            this.FirstNameTextEdit.StyleController = this.moduleDataLayout;
            this.FirstNameTextEdit.TabIndex = 8;
            // 
            // LastNameTextEdit
            // 
            this.LastNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "LastName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.LastNameTextEdit.EnterMoveNextControl = true;
            this.LastNameTextEdit.Location = new System.Drawing.Point(100, 36);
            this.LastNameTextEdit.MenuManager = this.ribbonControl;
            this.LastNameTextEdit.Name = "LastNameTextEdit";
            this.LastNameTextEdit.Properties.ValidateOnEnterKey = true;
            this.LastNameTextEdit.Size = new System.Drawing.Size(313, 20);
            this.LastNameTextEdit.StyleController = this.moduleDataLayout;
            this.LastNameTextEdit.TabIndex = 9;
            // 
            // PrefixImageComboBoxEdit
            // 
            this.PrefixImageComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Prefix", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.PrefixImageComboBoxEdit.EnterMoveNextControl = true;
            this.PrefixImageComboBoxEdit.Location = new System.Drawing.Point(337, 108);
            this.PrefixImageComboBoxEdit.MenuManager = this.ribbonControl;
            this.PrefixImageComboBoxEdit.Name = "PrefixImageComboBoxEdit";
            this.PrefixImageComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PrefixImageComboBoxEdit.Size = new System.Drawing.Size(76, 20);
            this.PrefixImageComboBoxEdit.StyleController = this.moduleDataLayout;
            this.PrefixImageComboBoxEdit.TabIndex = 11;
            // 
            // BirthDateDateEdit
            // 
            this.BirthDateDateEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "BirthDate", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.BirthDateDateEdit.EditValue = null;
            this.BirthDateDateEdit.EnterMoveNextControl = true;
            this.BirthDateDateEdit.Location = new System.Drawing.Point(100, 84);
            this.BirthDateDateEdit.MenuManager = this.ribbonControl;
            this.BirthDateDateEdit.Name = "BirthDateDateEdit";
            this.BirthDateDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BirthDateDateEdit.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BirthDateDateEdit.Size = new System.Drawing.Size(313, 20);
            this.BirthDateDateEdit.StyleController = this.moduleDataLayout;
            this.BirthDateDateEdit.TabIndex = 16;
            // 
            // PhotoPictureEdit
            // 
            this.PhotoPictureEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Photo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.PhotoPictureEdit.Location = new System.Drawing.Point(435, 12);
            this.PhotoPictureEdit.MenuManager = this.ribbonControl;
            this.PhotoPictureEdit.Name = "PhotoPictureEdit";
            this.PhotoPictureEdit.Properties.PictureStoreMode = DevExpress.XtraEditors.Controls.PictureStoreMode.ByteArray;
            this.PhotoPictureEdit.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
            this.PhotoPictureEdit.Size = new System.Drawing.Size(104, 116);
            this.PhotoPictureEdit.StyleController = this.moduleDataLayout;
            this.PhotoPictureEdit.TabIndex = 17;
            // 
            // HomePhoneTextEdit
            // 
            this.HomePhoneTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "HomePhone", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.HomePhoneTextEdit.EnterMoveNextControl = true;
            this.HomePhoneTextEdit.Location = new System.Drawing.Point(100, 244);
            this.HomePhoneTextEdit.MenuManager = this.ribbonControl;
            this.HomePhoneTextEdit.Name = "HomePhoneTextEdit";
            this.HomePhoneTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_home_phone_16, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
            this.HomePhoneTextEdit.Properties.ValidateOnEnterKey = true;
            this.HomePhoneTextEdit.Size = new System.Drawing.Size(439, 22);
            this.HomePhoneTextEdit.StyleController = this.moduleDataLayout;
            this.HomePhoneTextEdit.TabIndex = 12;
            // 
            // MobilePhoneTextEdit
            // 
            this.MobilePhoneTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "MobilePhone", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.MobilePhoneTextEdit.EnterMoveNextControl = true;
            this.MobilePhoneTextEdit.Location = new System.Drawing.Point(100, 270);
            this.MobilePhoneTextEdit.MenuManager = this.ribbonControl;
            this.MobilePhoneTextEdit.Name = "MobilePhoneTextEdit";
            this.MobilePhoneTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mobile_phone_16, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
            this.MobilePhoneTextEdit.Properties.ValidateOnEnterKey = true;
            this.MobilePhoneTextEdit.Size = new System.Drawing.Size(439, 22);
            this.MobilePhoneTextEdit.StyleController = this.moduleDataLayout;
            this.MobilePhoneTextEdit.TabIndex = 13;
            // 
            // EmailTextEdit
            // 
            this.EmailTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Email", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.EmailTextEdit.EnterMoveNextControl = true;
            this.EmailTextEdit.Location = new System.Drawing.Point(100, 296);
            this.EmailTextEdit.MenuManager = this.ribbonControl;
            this.EmailTextEdit.Name = "EmailTextEdit";
            this.EmailTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_email_16, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
            this.EmailTextEdit.Properties.ValidateOnEnterKey = true;
            this.EmailTextEdit.Size = new System.Drawing.Size(439, 22);
            this.EmailTextEdit.StyleController = this.moduleDataLayout;
            this.EmailTextEdit.TabIndex = 14;
            // 
            // SkypeTextEdit
            // 
            this.SkypeTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Skype", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.SkypeTextEdit.EnterMoveNextControl = true;
            this.SkypeTextEdit.Location = new System.Drawing.Point(100, 322);
            this.SkypeTextEdit.MenuManager = this.ribbonControl;
            this.SkypeTextEdit.Name = "SkypeTextEdit";
            this.SkypeTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_skype_16, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
            this.SkypeTextEdit.Properties.ValidateOnEnterKey = true;
            this.SkypeTextEdit.Size = new System.Drawing.Size(439, 22);
            this.SkypeTextEdit.StyleController = this.moduleDataLayout;
            this.SkypeTextEdit.TabIndex = 15;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlGroup2,
            this.ItemForTasks});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.OptionsItemText.TextToControlDistance = 25;
            this.layoutControlGroup1.Size = new System.Drawing.Size(1209, 643);
            this.layoutControlGroup1.Text = "Root";
            this.layoutControlGroup1.TextVisible = false;
            // 
            // layoutControlGroup2
            // 
            this.layoutControlGroup2.AllowDrawBackground = false;
            this.layoutControlGroup2.CustomizationFormText = "autoGeneratedGroup0";
            this.layoutControlGroup2.GroupBordersVisible = false;
            this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.ItemForFirstName,
            this.ItemForLastName,
            this.ItemForPrefix,
            this.ItemForDepartment,
            this.ItemForStatus,
            this.ItemForEvaluations,
            this.ItemForHomePhone,
            this.ItemForMobilePhone,
            this.ItemForEmail,
            this.ItemForSkype,
            this.ItemForPhoto,
            this.emptySpaceItem1,
            this.ItemForAddress,
            this.ItemForCity,
            this.ItemForState,
            this.ItemForZipCode,
            this.emptySpaceItem2,
            this.ItemForFullName,
            this.ItemForHireDate,
            this.ItemForBirthDate,
            this.emptySpaceItem3,
            this.emptySpaceItem4,
            this.emptySpaceItem5,
            this.ItemForTitle});
            this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup2.Name = "autoGeneratedGroup0";
            this.layoutControlGroup2.Size = new System.Drawing.Size(1189, 356);
            this.layoutControlGroup2.Text = "autoGeneratedGroup0";
            // 
            // ItemForFirstName
            // 
            this.ItemForFirstName.Control = this.FirstNameTextEdit;
            this.ItemForFirstName.CustomizationFormText = "First Name";
            this.ItemForFirstName.Location = new System.Drawing.Point(0, 0);
            this.ItemForFirstName.Name = "ItemForFirstName";
            this.ItemForFirstName.Size = new System.Drawing.Size(405, 24);
            this.ItemForFirstName.Text = "First Name";
            this.ItemForFirstName.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForLastName
            // 
            this.ItemForLastName.Control = this.LastNameTextEdit;
            this.ItemForLastName.CustomizationFormText = "Last Name";
            this.ItemForLastName.Location = new System.Drawing.Point(0, 24);
            this.ItemForLastName.Name = "ItemForLastName";
            this.ItemForLastName.Size = new System.Drawing.Size(405, 24);
            this.ItemForLastName.Text = "Last Name";
            this.ItemForLastName.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForPrefix
            // 
            this.ItemForPrefix.Control = this.PrefixImageComboBoxEdit;
            this.ItemForPrefix.CustomizationFormText = "Prefix";
            this.ItemForPrefix.Location = new System.Drawing.Point(292, 96);
            this.ItemForPrefix.Name = "ItemForPrefix";
            this.ItemForPrefix.Size = new System.Drawing.Size(113, 24);
            this.ItemForPrefix.Text = "Prefix";
            this.ItemForPrefix.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.ItemForPrefix.TextSize = new System.Drawing.Size(28, 13);
            this.ItemForPrefix.TextToControlDistance = 5;
            // 
            // ItemForDepartment
            // 
            this.ItemForDepartment.Control = this.DepartmentImageComboBoxEdit;
            this.ItemForDepartment.CustomizationFormText = "Department";
            this.ItemForDepartment.Location = new System.Drawing.Point(551, 0);
            this.ItemForDepartment.Name = "ItemForDepartment";
            this.ItemForDepartment.Size = new System.Drawing.Size(638, 24);
            this.ItemForDepartment.Text = "Department";
            this.ItemForDepartment.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForStatus
            // 
            this.ItemForStatus.Control = this.StatusImageComboBoxEdit;
            this.ItemForStatus.CustomizationFormText = "Status";
            this.ItemForStatus.Location = new System.Drawing.Point(551, 24);
            this.ItemForStatus.Name = "ItemForStatus";
            this.ItemForStatus.Size = new System.Drawing.Size(638, 24);
            this.ItemForStatus.Text = "Status";
            this.ItemForStatus.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForEvaluations
            // 
            this.ItemForEvaluations.Control = this.gridControlEvaluations;
            this.ItemForEvaluations.CustomizationFormText = "Evaluations";
            this.ItemForEvaluations.Location = new System.Drawing.Point(551, 92);
            this.ItemForEvaluations.Name = "ItemForEvaluations";
            this.ItemForEvaluations.Size = new System.Drawing.Size(638, 244);
            this.ItemForEvaluations.Text = "Evaluations";
            this.ItemForEvaluations.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.ItemForEvaluations.TextLocation = DevExpress.Utils.Locations.Top;
            this.ItemForEvaluations.TextSize = new System.Drawing.Size(55, 13);
            this.ItemForEvaluations.TextToControlDistance = 5;
            // 
            // ItemForHomePhone
            // 
            this.ItemForHomePhone.Control = this.HomePhoneTextEdit;
            this.ItemForHomePhone.CustomizationFormText = "Home Phone";
            this.ItemForHomePhone.Location = new System.Drawing.Point(0, 232);
            this.ItemForHomePhone.Name = "ItemForHomePhone";
            this.ItemForHomePhone.Size = new System.Drawing.Size(531, 26);
            this.ItemForHomePhone.Text = "Home Phone";
            this.ItemForHomePhone.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForMobilePhone
            // 
            this.ItemForMobilePhone.Control = this.MobilePhoneTextEdit;
            this.ItemForMobilePhone.CustomizationFormText = "Mobile Phone";
            this.ItemForMobilePhone.Location = new System.Drawing.Point(0, 258);
            this.ItemForMobilePhone.Name = "ItemForMobilePhone";
            this.ItemForMobilePhone.Size = new System.Drawing.Size(531, 26);
            this.ItemForMobilePhone.Text = "Mobile Phone";
            this.ItemForMobilePhone.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForEmail
            // 
            this.ItemForEmail.Control = this.EmailTextEdit;
            this.ItemForEmail.CustomizationFormText = "Email";
            this.ItemForEmail.Location = new System.Drawing.Point(0, 284);
            this.ItemForEmail.Name = "ItemForEmail";
            this.ItemForEmail.Size = new System.Drawing.Size(531, 26);
            this.ItemForEmail.Text = "Email";
            this.ItemForEmail.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForSkype
            // 
            this.ItemForSkype.Control = this.SkypeTextEdit;
            this.ItemForSkype.CustomizationFormText = "Skype";
            this.ItemForSkype.Location = new System.Drawing.Point(0, 310);
            this.ItemForSkype.Name = "ItemForSkype";
            this.ItemForSkype.Size = new System.Drawing.Size(531, 26);
            this.ItemForSkype.Text = "Skype";
            this.ItemForSkype.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForPhoto
            // 
            this.ItemForPhoto.Control = this.PhotoPictureEdit;
            this.ItemForPhoto.CustomizationFormText = "Photo";
            this.ItemForPhoto.Location = new System.Drawing.Point(405, 0);
            this.ItemForPhoto.Name = "ItemForPhoto";
            this.ItemForPhoto.Padding = new DevExpress.XtraLayout.Utils.Padding(20, 2, 2, 2);
            this.ItemForPhoto.Size = new System.Drawing.Size(126, 120);
            this.ItemForPhoto.Text = "Photo:";
            this.ItemForPhoto.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForPhoto.TextToControlDistance = 0;
            this.ItemForPhoto.TextVisible = false;
            // 
            // emptySpaceItem1
            // 
            this.emptySpaceItem1.AllowHotTrack = false;
            this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
            this.emptySpaceItem1.Location = new System.Drawing.Point(0, 120);
            this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 20);
            this.emptySpaceItem1.MinSize = new System.Drawing.Size(10, 20);
            this.emptySpaceItem1.Name = "emptySpaceItem1";
            this.emptySpaceItem1.Size = new System.Drawing.Size(531, 20);
            this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.emptySpaceItem1.Text = "emptySpaceItem1";
            this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
            // 
            // ItemForAddress
            // 
            this.ItemForAddress.Control = this.AddressTextEdit;
            this.ItemForAddress.CustomizationFormText = "Address";
            this.ItemForAddress.Location = new System.Drawing.Point(0, 140);
            this.ItemForAddress.Name = "ItemForAddress";
            this.ItemForAddress.Size = new System.Drawing.Size(531, 24);
            this.ItemForAddress.Text = "Address";
            this.ItemForAddress.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForCity
            // 
            this.ItemForCity.Control = this.CityTextEdit;
            this.ItemForCity.CustomizationFormText = "City";
            this.ItemForCity.Location = new System.Drawing.Point(0, 164);
            this.ItemForCity.Name = "ItemForCity";
            this.ItemForCity.Size = new System.Drawing.Size(531, 24);
            this.ItemForCity.Text = "City";
            this.ItemForCity.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForState
            // 
            this.ItemForState.Control = this.StateImageComboBoxEdit;
            this.ItemForState.CustomizationFormText = "State";
            this.ItemForState.Location = new System.Drawing.Point(0, 188);
            this.ItemForState.Name = "ItemForState";
            this.ItemForState.Size = new System.Drawing.Size(186, 24);
            this.ItemForState.Text = "State";
            this.ItemForState.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForZipCode
            // 
            this.ItemForZipCode.Control = this.ZipCodeTextEdit;
            this.ItemForZipCode.CustomizationFormText = "ZipCode";
            this.ItemForZipCode.Location = new System.Drawing.Point(186, 188);
            this.ItemForZipCode.Name = "ItemForZipCode";
            this.ItemForZipCode.Size = new System.Drawing.Size(345, 24);
            this.ItemForZipCode.Text = "ZIP code";
            this.ItemForZipCode.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.ItemForZipCode.TextSize = new System.Drawing.Size(42, 13);
            this.ItemForZipCode.TextToControlDistance = 5;
            // 
            // emptySpaceItem2
            // 
            this.emptySpaceItem2.AllowHotTrack = false;
            this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
            this.emptySpaceItem2.Location = new System.Drawing.Point(0, 212);
            this.emptySpaceItem2.MaxSize = new System.Drawing.Size(0, 20);
            this.emptySpaceItem2.MinSize = new System.Drawing.Size(10, 20);
            this.emptySpaceItem2.Name = "emptySpaceItem2";
            this.emptySpaceItem2.Size = new System.Drawing.Size(531, 20);
            this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.emptySpaceItem2.Text = "emptySpaceItem2";
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
            // 
            // ItemForFullName
            // 
            this.ItemForFullName.Control = this.FullNameTextEdit;
            this.ItemForFullName.CustomizationFormText = "Full Name";
            this.ItemForFullName.Location = new System.Drawing.Point(0, 48);
            this.ItemForFullName.Name = "ItemForFullName";
            this.ItemForFullName.Size = new System.Drawing.Size(405, 24);
            this.ItemForFullName.Text = "Full Name";
            this.ItemForFullName.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForHireDate
            // 
            this.ItemForHireDate.Control = this.HireDateDateEdit;
            this.ItemForHireDate.CustomizationFormText = "Hire Date";
            this.ItemForHireDate.Location = new System.Drawing.Point(551, 48);
            this.ItemForHireDate.Name = "ItemForHireDate";
            this.ItemForHireDate.Size = new System.Drawing.Size(638, 24);
            this.ItemForHireDate.Text = "Hire Date";
            this.ItemForHireDate.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForBirthDate
            // 
            this.ItemForBirthDate.Control = this.BirthDateDateEdit;
            this.ItemForBirthDate.CustomizationFormText = "Birth Date";
            this.ItemForBirthDate.Location = new System.Drawing.Point(0, 72);
            this.ItemForBirthDate.Name = "ItemForBirthDate";
            this.ItemForBirthDate.Size = new System.Drawing.Size(405, 24);
            this.ItemForBirthDate.Text = "Birth Date";
            this.ItemForBirthDate.TextSize = new System.Drawing.Size(63, 13);
            // 
            // emptySpaceItem3
            // 
            this.emptySpaceItem3.AllowHotTrack = false;
            this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
            this.emptySpaceItem3.Location = new System.Drawing.Point(0, 336);
            this.emptySpaceItem3.MaxSize = new System.Drawing.Size(0, 20);
            this.emptySpaceItem3.MinSize = new System.Drawing.Size(10, 20);
            this.emptySpaceItem3.Name = "emptySpaceItem3";
            this.emptySpaceItem3.Size = new System.Drawing.Size(1189, 20);
            this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.emptySpaceItem3.Text = "emptySpaceItem3";
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
            // 
            // emptySpaceItem4
            // 
            this.emptySpaceItem4.AllowHotTrack = false;
            this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
            this.emptySpaceItem4.Location = new System.Drawing.Point(531, 0);
            this.emptySpaceItem4.MaxSize = new System.Drawing.Size(20, 0);
            this.emptySpaceItem4.MinSize = new System.Drawing.Size(20, 10);
            this.emptySpaceItem4.Name = "emptySpaceItem4";
            this.emptySpaceItem4.Size = new System.Drawing.Size(20, 336);
            this.emptySpaceItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.emptySpaceItem4.Text = "emptySpaceItem4";
            this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
            // 
            // emptySpaceItem5
            // 
            this.emptySpaceItem5.AllowHotTrack = false;
            this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
            this.emptySpaceItem5.Location = new System.Drawing.Point(551, 72);
            this.emptySpaceItem5.MaxSize = new System.Drawing.Size(0, 20);
            this.emptySpaceItem5.MinSize = new System.Drawing.Size(10, 20);
            this.emptySpaceItem5.Name = "emptySpaceItem5";
            this.emptySpaceItem5.Size = new System.Drawing.Size(638, 20);
            this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.emptySpaceItem5.Text = "emptySpaceItem5";
            this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
            // 
            // ItemForTitle
            // 
            this.ItemForTitle.Control = this.TitleTextEdit;
            this.ItemForTitle.CustomizationFormText = "Title";
            this.ItemForTitle.Location = new System.Drawing.Point(0, 96);
            this.ItemForTitle.Name = "ItemForTitle";
            this.ItemForTitle.Size = new System.Drawing.Size(292, 24);
            this.ItemForTitle.Text = "Title";
            this.ItemForTitle.TextSize = new System.Drawing.Size(63, 13);
            // 
            // ItemForTasks
            // 
            this.ItemForTasks.AppearanceItemCaption.Options.UseTextOptions = true;
            this.ItemForTasks.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
            this.ItemForTasks.Control = this.gridControlTasks;
            this.ItemForTasks.CustomizationFormText = "TASKS";
            this.ItemForTasks.Location = new System.Drawing.Point(0, 356);
            this.ItemForTasks.Name = "ItemForTasks";
            this.ItemForTasks.Size = new System.Drawing.Size(1189, 267);
            this.ItemForTasks.Text = "Tasks";
            this.ItemForTasks.TextSize = new System.Drawing.Size(63, 13);
            // 
            // EmployeeEditView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.moduleDataLayout);
            this.Controls.Add(this.ribbonControl);
            this.Name = "EmployeeEditView";
            this.Size = new System.Drawing.Size(1209, 785);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.moduleDataLayout)).EndInit();
            this.moduleDataLayout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.FullNameTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ZipCodeTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.StateImageComboBoxEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CityTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.AddressTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlTasks)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceTasks)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvTasks)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlEvaluations)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceEvaluations)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvEvaluations)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DepartmentImageComboBoxEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TitleTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.StatusImageComboBoxEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.HireDateDateEdit.Properties.CalendarTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.HireDateDateEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.FirstNameTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LastNameTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PrefixImageComboBoxEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BirthDateDateEdit.Properties.CalendarTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BirthDateDateEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PhotoPictureEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.HomePhoneTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MobilePhoneTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.EmailTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SkypeTextEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForFirstName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForLastName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForPrefix)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForDepartment)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForStatus)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForEvaluations)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForHomePhone)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForMobilePhone)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForEmail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSkype)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForPhoto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForAddress)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForCity)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForState)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForZipCode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForFullName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForHireDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForBirthDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTitle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTasks)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DashboardDesignerForm));
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup4 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup5 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem1 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem2 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem3 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup6 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem4 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem5 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem6 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem7 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem8 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem9 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup7 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem10 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem11 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem12 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem13 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem14 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem15 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem16 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup8 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem17 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem18 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup9 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem19 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup10 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem20 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem21 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem22 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup11 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem23 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem24 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem25 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup12 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem26 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem27 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem28 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem29 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem30 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem31 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup13 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem32 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem33 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem34 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem35 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem36 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem37 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem38 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup14 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem39 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem40 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup15 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem41 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup16 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem42 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem43 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem44 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup17 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem45 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem46 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem47 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup18 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem48 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem49 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem50 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem51 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem52 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem53 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup19 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem54 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem55 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem56 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem57 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem58 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem59 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem60 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup20 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem61 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem62 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup21 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem63 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup22 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem64 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem65 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem66 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup23 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem67 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem68 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem69 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup24 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem70 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem71 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem72 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem73 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem74 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem75 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup25 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem76 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem77 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem78 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem79 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem80 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem81 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem82 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup26 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem83 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem84 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup27 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem85 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup28 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem86 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem87 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem88 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup29 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem89 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem90 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem91 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup30 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem92 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem93 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem94 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem95 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem96 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem97 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup31 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem98 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem99 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem100 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem101 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem102 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem103 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem104 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup32 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem105 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem106 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup33 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem107 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup34 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem108 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem109 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem110 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup35 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem111 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem112 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem113 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup36 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem114 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem115 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem116 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem117 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem118 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem119 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup37 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem120 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem121 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem122 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem123 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem124 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem125 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem126 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup38 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem127 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem128 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup39 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem129 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup40 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem130 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem131 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem132 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup41 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem133 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem134 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem135 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup42 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem136 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem137 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem138 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem139 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem140 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem141 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup43 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem142 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem143 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem144 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem145 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem146 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem147 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem148 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup44 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem149 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem150 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup45 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem151 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup46 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem152 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem153 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem154 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup47 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem155 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem156 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem157 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup48 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem158 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem159 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem160 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem161 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem162 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem163 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup49 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem164 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem165 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem166 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem167 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem168 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem169 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem170 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup50 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem171 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem172 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup51 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem173 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup52 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem174 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem175 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem176 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup53 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem177 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem178 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem179 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup54 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem180 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem181 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem182 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem183 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem184 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem185 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup55 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem186 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem187 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem188 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem189 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem190 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem191 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem192 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup56 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem193 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem194 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup57 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem195 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup58 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem196 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem197 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem198 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup59 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem199 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem200 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem201 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup60 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem202 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem203 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem204 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem205 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem206 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem207 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup61 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem208 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem209 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem210 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem211 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem212 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem213 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem214 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup62 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem215 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem216 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup63 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem217 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup64 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem218 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem219 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem220 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup65 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem221 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem222 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem223 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup66 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem224 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem225 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem226 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem227 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem228 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem229 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup67 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem230 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem231 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem232 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem233 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem234 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem235 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem236 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup68 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem237 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem238 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup69 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem239 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup70 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem240 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem241 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem242 = new DevExpress.XtraDashboard.Bars.ChartSeriesTypeGalleryItem();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.fileSaveBarItem = new DevExpress.XtraBars.BarButtonItem();
            this.undoBarItem1 = new DevExpress.XtraDashboard.Bars.UndoBarItem();
            this.redoBarItem1 = new DevExpress.XtraDashboard.Bars.RedoBarItem();
            this.insertPivotBarItem1 = new DevExpress.XtraDashboard.Bars.InsertPivotBarItem();
            this.insertGridBarItem1 = new DevExpress.XtraDashboard.Bars.InsertGridBarItem();
            this.insertChartBarItem1 = new DevExpress.XtraDashboard.Bars.InsertChartBarItem();
            this.insertPiesBarItem1 = new DevExpress.XtraDashboard.Bars.InsertPiesBarItem();
            this.insertGaugesBarItem1 = new DevExpress.XtraDashboard.Bars.InsertGaugesBarItem();
            this.insertCardsBarItem1 = new DevExpress.XtraDashboard.Bars.InsertCardsBarItem();
            this.insertImageBarItem1 = new DevExpress.XtraDashboard.Bars.InsertImageBarItem();
            this.insertTextBoxBarItem1 = new DevExpress.XtraDashboard.Bars.InsertTextBoxBarItem();
            this.insertRangeFilterBarItem1 = new DevExpress.XtraDashboard.Bars.InsertRangeFilterBarItem();
            this.duplicateItemBarItem1 = new DevExpress.XtraDashboard.Bars.DuplicateItemBarItem();
            this.deleteItemBarItem1 = new DevExpress.XtraDashboard.Bars.DeleteItemBarItem();
            this.dashboardSkinsBarItem1 = new DevExpress.XtraDashboard.Bars.DashboardSkinsBarItem();
            this.editFilterBarItem1 = new DevExpress.XtraDashboard.Bars.EditFilterBarItem();
            this.clearFilterBarItem1 = new DevExpress.XtraDashboard.Bars.ClearFilterBarItem();
            this.ignoreMasterFiltersBarItem1 = new DevExpress.XtraDashboard.Bars.IgnoreMasterFiltersBarItem();
            this.masterFilterBarItem1 = new DevExpress.XtraDashboard.Bars.MasterFilterBarItem();
            this.crossDataSourceFilteringBarItem1 = new DevExpress.XtraDashboard.Bars.CrossDataSourceFilteringBarItem();
            this.filterByChartSeriesBarItem1 = new DevExpress.XtraDashboard.Bars.FilterByChartSeriesBarItem();
            this.filterByChartArgumentsBarItem1 = new DevExpress.XtraDashboard.Bars.FilterByChartArgumentsBarItem();
            this.filterByPieSeriesBarItem1 = new DevExpress.XtraDashboard.Bars.FilterByPieSeriesBarItem();
            this.filterByPieArgumentsBarItem1 = new DevExpress.XtraDashboard.Bars.FilterByPieArgumentsBarItem();
            this.drillDownBarItem1 = new DevExpress.XtraDashboard.Bars.DrillDownBarItem();
            this.drillDownOnChartSeriesBarItem1 = new DevExpress.XtraDashboard.Bars.DrillDownOnChartSeriesBarItem();
            this.drillDownOnChartArgumentsBarItem1 = new DevExpress.XtraDashboard.Bars.DrillDownOnChartArgumentsBarItem();
            this.drillDownOnPieSeriesBarItem1 = new DevExpress.XtraDashboard.Bars.DrillDownOnPieSeriesBarItem();
            this.drillDownOnPieArgumentsBarItem1 = new DevExpress.XtraDashboard.Bars.DrillDownOnPieArgumentsBarItem();
            this.contentAutoArrangeBarItem1 = new DevExpress.XtraDashboard.Bars.ContentAutoArrangeBarItem();
            this.contentArrangeInColumsBarItem1 = new DevExpress.XtraDashboard.Bars.ContentArrangeInColumnsBarItem();
            this.contentArrangeInRowsBarItem1 = new DevExpress.XtraDashboard.Bars.ContentArrangeInRowsBarItem();
            this.contentArrangementCountBarItem1 = new DevExpress.XtraDashboard.Bars.ContentArrangementCountBarItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridHorizontalLinesBarItem1 = new DevExpress.XtraDashboard.Bars.GridHorizontalLinesBarItem();
            this.gridVerticalLinesBarItem1 = new DevExpress.XtraDashboard.Bars.GridVerticalLinesBarItem();
            this.gridMergeCellsBarItem1 = new DevExpress.XtraDashboard.Bars.GridMergeCellsBarItem();
            this.gridBandedRowsBarItem1 = new DevExpress.XtraDashboard.Bars.GridBandedRowsBarItem();
            this.gridColumnHeadersBarItem1 = new DevExpress.XtraDashboard.Bars.GridColumnHeadersBarItem();
            this.chartRotateBarItem1 = new DevExpress.XtraDashboard.Bars.ChartRotateBarItem();
            this.chartShowLegendBarItem1 = new DevExpress.XtraDashboard.Bars.ChartShowLegendBarItem();
            this.chartYAxisSettingsBarItem1 = new DevExpress.XtraDashboard.Bars.ChartYAxisSettingsBarItem();
            this.galleryChartSeriesTypeItem1 = new DevExpress.XtraDashboard.Bars.GalleryChartSeriesTypeItem();
            this.pieLabelsDataLabelsBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsBarItem();
            this.pieLabelsDataLabelsNoneBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsNoneBarItem();
            this.pieLabelsDataLabelArgumentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelArgumentBarItem();
            this.pieLabelsDataLabelsValueBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsValueBarItem();
            this.pieLabelsDataLabelsArgumentAndValueBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsArgumentAndValueBarItem();
            this.pieLabelsDataLabelsPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsPercentBarItem();
            this.pieLabelsDataLabelsValueAndPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsValueAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsArgumentAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsDataLabelsArgumentValueAndPercentBarItem();
            this.pieTooltipsBarItem1 = new DevExpress.XtraDashboard.Bars.PieTooltipsBarItem();
            this.pieLabelsTooltipsNoneBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsNoneBarItem();
            this.pieLabelsTooltipsArgumentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsArgumentBarItem();
            this.pieLabelsTooltipsValueBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsValueBarItem();
            this.pieLabelsTooltipsArgumentAndValueBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsArgumentAndValueBarItem();
            this.pieLabelsTooltipsPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsPercentBarItem();
            this.pieLabelsTooltipsValueAndPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsValueAndPercentBarItem();
            this.pieLabelsTooltipsArgumentAndPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsArgumentAndPercentBarItem();
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1 = new DevExpress.XtraDashboard.Bars.PieLabelsTooltipsArgumentValueAndPercentBarItem();
            this.pieStylePieBarItem1 = new DevExpress.XtraDashboard.Bars.PieStylePieBarItem();
            this.pieStyleDonutBarItem1 = new DevExpress.XtraDashboard.Bars.PieStyleDonutBarItem();
            this.gaugeStyleFullCircularBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleFullCircularBarItem();
            this.gaugeStyleHalfCircularBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleHalfCircularBarItem();
            this.gaugeStyleLeftQuarterCircularBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleLeftQuarterCircularBarItem();
            this.gaugeStyleRightQuarterCircularBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleRightQuarterCircularBarItem();
            this.gaugeStyleThreeForthCircularBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleThreeForthCircularBarItem();
            this.gaugeStyleLinearHorizontalBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleLinearHorizontalBarItem();
            this.gaugeStyleLinearVerticalBarItem1 = new DevExpress.XtraDashboard.Bars.GaugeStyleLinearVerticalBarItem();
            this.imageLoadBarItem1 = new DevExpress.XtraDashboard.Bars.ImageLoadBarItem();
            this.imageImportBarItem1 = new DevExpress.XtraDashboard.Bars.ImageImportBarItem();
            this.imageSizeModeClipBarItem1 = new DevExpress.XtraDashboard.Bars.ImageSizeModeClipBarItem();
            this.imageSizeModeStretchBarItem1 = new DevExpress.XtraDashboard.Bars.ImageSizeModeStretchBarItem();
            this.imageSizeModeSqueezeBarItem1 = new DevExpress.XtraDashboard.Bars.ImageSizeModeSqueezeBarItem();
            this.imageSizeModeZoomBarItem1 = new DevExpress.XtraDashboard.Bars.ImageSizeModeZoomBarItem();
            this.imageAlignmentTopLeftBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentTopLeftBarItem();
            this.imageAlignmentCenterLeftBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentCenterLeftBarItem();
            this.imageAlignmentBottomLeftBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentBottomLeftBarItem();
            this.imageAlignmentTopCenterBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentTopCenterBarItem();
            this.imageAlignmentCenterCenterBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentCenterCenterBarItem();
            this.imageAlignmentBottomCenterBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentBottomCenterBarItem();
            this.imageAlignmentTopRightBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentTopRightBarItem();
            this.imageAlignmentCenterRightBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentCenterRightBarItem();
            this.imageAlignmentBottomRightBarItem1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentBottomRightBarItem();
            this.textBoxEditTextBarItem1 = new DevExpress.XtraDashboard.Bars.TextBoxEditTextBarItem();
            this.rangeFilterLineSeriesTypeBarItem1 = new DevExpress.XtraDashboard.Bars.RangeFilterLineSeriesTypeBarItem();
            this.rangeFilterStackedLineSeriesTypeBarItem1 = new DevExpress.XtraDashboard.Bars.RangeFilterStackedLineSeriesTypeBarItem();
            this.rangeFilterFullStackedLineSeriesTypeBarItem1 = new DevExpress.XtraDashboard.Bars.RangeFilterFullStackedLineSeriesTypeBarItem();
            this.rangeFilterAreaSeriesTypeBarItem1 = new DevExpress.XtraDashboard.Bars.RangeFilterAreaSeriesTypeBarItem();
            this.rangeFilterStackedAreaSeriesTypeBarItem1 = new DevExpress.XtraDashboard.Bars.RangeFilterStackedAreaSeriesTypeBarItem();
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1 = new DevExpress.XtraDashboard.Bars.RangeFilterFullStackedAreaSeriesTypeBarItem();
            this.quickAccessUndoBarItem1 = new DevExpress.XtraDashboard.Bars.QuickAccessUndoBarItem();
            this.quickAccessRedoBarItem1 = new DevExpress.XtraDashboard.Bars.QuickAccessRedoBarItem();
            this.fileSaveCloseBarItem = new DevExpress.XtraBars.BarButtonItem();
            this.closeBarItem = new DevExpress.XtraBars.BarButtonItem();
            this.pivotToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.PivotToolsRibbonPageCategory();
            this.dashboardDesigner = new DevExpress.XtraDashboard.DashboardDesigner();
            this.dataRibbonPage1 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.gridToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.GridToolsRibbonPageCategory();
            this.dataRibbonPage2 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup2 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup2 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.drillDownRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.DrillDownRibbonPageGroup();
            this.layoutAndStyleRibbonPage4 = new DevExpress.XtraDashboard.Bars.LayoutAndStyleRibbonPage();
            this.gridCellsRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.GridCellsRibbonPageGroup();
            this.chartToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.ChartToolsRibbonPageCategory();
            this.dataRibbonPage3 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup3 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup3 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.drillDownRibbonPageGroup2 = new DevExpress.XtraDashboard.Bars.DrillDownRibbonPageGroup();
            this.chartLayoutAndStyleRibbonPage1 = new DevExpress.XtraDashboard.Bars.ChartLayoutAndStyleRibbonPage();
            this.chartLayoutPageGroup1 = new DevExpress.XtraDashboard.Bars.ChartLayoutPageGroup();
            this.chartStylePageGroup1 = new DevExpress.XtraDashboard.Bars.ChartStylePageGroup();
            this.piesToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.PiesToolsRibbonPageCategory();
            this.dataRibbonPage4 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup4 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup4 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.drillDownRibbonPageGroup3 = new DevExpress.XtraDashboard.Bars.DrillDownRibbonPageGroup();
            this.layoutAndStyleRibbonPage1 = new DevExpress.XtraDashboard.Bars.LayoutAndStyleRibbonPage();
            this.contentArrangementRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.ContentArrangementRibbonPageGroup();
            this.pieLabelsRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.PieLabelsRibbonPageGroup();
            this.pieStyleRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.PieStyleRibbonPageGroup();
            this.gaugesToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.GaugesToolsRibbonPageCategory();
            this.dataRibbonPage5 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup5 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup5 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.drillDownRibbonPageGroup4 = new DevExpress.XtraDashboard.Bars.DrillDownRibbonPageGroup();
            this.layoutAndStyleRibbonPage2 = new DevExpress.XtraDashboard.Bars.LayoutAndStyleRibbonPage();
            this.contentArrangementRibbonPageGroup2 = new DevExpress.XtraDashboard.Bars.ContentArrangementRibbonPageGroup();
            this.gaugeStyleRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.GaugeStyleRibbonPageGroup();
            this.cardsToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.CardsToolsRibbonPageCategory();
            this.dataRibbonPage6 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup6 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup6 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.drillDownRibbonPageGroup5 = new DevExpress.XtraDashboard.Bars.DrillDownRibbonPageGroup();
            this.layoutAndStyleRibbonPage3 = new DevExpress.XtraDashboard.Bars.LayoutAndStyleRibbonPage();
            this.contentArrangementRibbonPageGroup3 = new DevExpress.XtraDashboard.Bars.ContentArrangementRibbonPageGroup();
            this.rangeFilterToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.RangeFilterToolsRibbonPageCategory();
            this.dataRibbonPage7 = new DevExpress.XtraDashboard.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup7 = new DevExpress.XtraDashboard.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup7 = new DevExpress.XtraDashboard.Bars.MasterFilterRibbonPageGroup();
            this.rangeFilterStyleRibbonPage1 = new DevExpress.XtraDashboard.Bars.RangeFilterStyleRibbonPage();
            this.rangeFilterSeriesTypeRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.RangeFilterSeriesTypeRibbonPageGroup();
            this.imageToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.ImageToolsRibbonPageCategory();
            this.imageOptionsRibbonPage1 = new DevExpress.XtraDashboard.Bars.ImageOptionsRibbonPage();
            this.imageOpenRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.ImageOpenRibbonPageGroup();
            this.imageSizeModeRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.ImageSizeModeRibbonPageGroup();
            this.imageAlignmentRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.ImageAlignmentRibbonPageGroup();
            this.textBoxToolsRibbonPageCategory1 = new DevExpress.XtraDashboard.Bars.TextBoxToolsRibbonPageCategory();
            this.textBoxFormatRibbonPage1 = new DevExpress.XtraDashboard.Bars.TextBoxFormatRibbonPage();
            this.textBoxSettingsRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.TextBoxSettingsRibbonPageGroup();
            this.dashboardRibbonPage1 = new DevExpress.XtraDashboard.Bars.DashboardRibbonPage();
            this.fileRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.FileRibbonPageGroup();
            this.historyRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.HistoryRibbonPageGroup();
            this.insertRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.InsertRibbonPageGroup();
            this.itemsRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.ItemsRibbonPageGroup();
            this.quickAccessHistoryRibbonPageGroup1 = new DevExpress.XtraDashboard.Bars.QuickAccessHistoryRibbonPageGroup();
            this.closeGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.dashboardBarController1 = new DevExpress.XtraDashboard.Bars.DashboardBarController();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbon
            // 
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.fileSaveBarItem,
            this.undoBarItem1,
            this.redoBarItem1,
            this.insertPivotBarItem1,
            this.insertGridBarItem1,
            this.insertChartBarItem1,
            this.insertPiesBarItem1,
            this.insertGaugesBarItem1,
            this.insertCardsBarItem1,
            this.insertImageBarItem1,
            this.insertTextBoxBarItem1,
            this.insertRangeFilterBarItem1,
            this.duplicateItemBarItem1,
            this.deleteItemBarItem1,
            this.dashboardSkinsBarItem1,
            this.editFilterBarItem1,
            this.clearFilterBarItem1,
            this.ignoreMasterFiltersBarItem1,
            this.masterFilterBarItem1,
            this.crossDataSourceFilteringBarItem1,
            this.filterByChartSeriesBarItem1,
            this.filterByChartArgumentsBarItem1,
            this.filterByPieSeriesBarItem1,
            this.filterByPieArgumentsBarItem1,
            this.drillDownBarItem1,
            this.drillDownOnChartSeriesBarItem1,
            this.drillDownOnChartArgumentsBarItem1,
            this.drillDownOnPieSeriesBarItem1,
            this.drillDownOnPieArgumentsBarItem1,
            this.contentAutoArrangeBarItem1,
            this.contentArrangeInColumsBarItem1,
            this.contentArrangeInRowsBarItem1,
            this.contentArrangementCountBarItem1,
            this.gridHorizontalLinesBarItem1,
            this.gridVerticalLinesBarItem1,
            this.gridMergeCellsBarItem1,
            this.gridBandedRowsBarItem1,
            this.gridColumnHeadersBarItem1,
            this.chartRotateBarItem1,
            this.chartShowLegendBarItem1,
            this.chartYAxisSettingsBarItem1,
            this.galleryChartSeriesTypeItem1,
            this.pieLabelsDataLabelsBarItem1,
            this.pieLabelsDataLabelsNoneBarItem1,
            this.pieLabelsDataLabelArgumentBarItem1,
            this.pieLabelsDataLabelsValueBarItem1,
            this.pieLabelsDataLabelsArgumentAndValueBarItem1,
            this.pieLabelsDataLabelsPercentBarItem1,
            this.pieLabelsDataLabelsValueAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1,
            this.pieTooltipsBarItem1,
            this.pieLabelsTooltipsNoneBarItem1,
            this.pieLabelsTooltipsArgumentBarItem1,
            this.pieLabelsTooltipsValueBarItem1,
            this.pieLabelsTooltipsArgumentAndValueBarItem1,
            this.pieLabelsTooltipsPercentBarItem1,
            this.pieLabelsTooltipsValueAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1,
            this.pieStylePieBarItem1,
            this.pieStyleDonutBarItem1,
            this.gaugeStyleFullCircularBarItem1,
            this.gaugeStyleHalfCircularBarItem1,
            this.gaugeStyleLeftQuarterCircularBarItem1,
            this.gaugeStyleRightQuarterCircularBarItem1,
            this.gaugeStyleThreeForthCircularBarItem1,
            this.gaugeStyleLinearHorizontalBarItem1,
            this.gaugeStyleLinearVerticalBarItem1,
            this.imageLoadBarItem1,
            this.imageImportBarItem1,
            this.imageSizeModeClipBarItem1,
            this.imageSizeModeStretchBarItem1,
            this.imageSizeModeSqueezeBarItem1,
            this.imageSizeModeZoomBarItem1,
            this.imageAlignmentTopLeftBarItem1,
            this.imageAlignmentCenterLeftBarItem1,
            this.imageAlignmentBottomLeftBarItem1,
            this.imageAlignmentTopCenterBarItem1,
            this.imageAlignmentCenterCenterBarItem1,
            this.imageAlignmentBottomCenterBarItem1,
            this.imageAlignmentTopRightBarItem1,
            this.imageAlignmentCenterRightBarItem1,
            this.imageAlignmentBottomRightBarItem1,
            this.textBoxEditTextBarItem1,
            this.rangeFilterLineSeriesTypeBarItem1,
            this.rangeFilterStackedLineSeriesTypeBarItem1,
            this.rangeFilterFullStackedLineSeriesTypeBarItem1,
            this.rangeFilterAreaSeriesTypeBarItem1,
            this.rangeFilterStackedAreaSeriesTypeBarItem1,
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1,
            this.quickAccessUndoBarItem1,
            this.quickAccessRedoBarItem1,
            this.fileSaveCloseBarItem,
            this.closeBarItem});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 101;
            this.ribbon.Name = "ribbon";
            this.ribbon.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.pivotToolsRibbonPageCategory1,
            this.gridToolsRibbonPageCategory1,
            this.chartToolsRibbonPageCategory1,
            this.piesToolsRibbonPageCategory1,
            this.gaugesToolsRibbonPageCategory1,
            this.cardsToolsRibbonPageCategory1,
            this.rangeFilterToolsRibbonPageCategory1,
            this.imageToolsRibbonPageCategory1,
            this.textBoxToolsRibbonPageCategory1});
            this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardRibbonPage1});
            this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1});
            this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbon.Size = new System.Drawing.Size(1040, 144);
            this.ribbon.StatusBar = this.ribbonStatusBar;
            this.ribbon.Toolbar.ItemLinks.Add(this.fileSaveBarItem);
            this.ribbon.Toolbar.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.ribbon.Toolbar.ItemLinks.Add(this.quickAccessRedoBarItem1);
            // 
            // fileSaveBarItem
            // 
            this.fileSaveBarItem.Caption = "Save";
            this.fileSaveBarItem.Enabled = false;
            this.fileSaveBarItem.Id = 3;
            this.fileSaveBarItem.LargeGlyph = global::Xpand.ExpressApp.Dashboard.Win.Properties.Resources.MenuBar_Save_32x32;
            this.fileSaveBarItem.Name = "fileSaveBarItem";
            this.fileSaveBarItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Save);
            // 
            // undoBarItem1
            // 
            this.undoBarItem1.Id = 5;
            this.undoBarItem1.Name = "undoBarItem1";
            // 
            // redoBarItem1
            // 
            this.redoBarItem1.Id = 6;
            this.redoBarItem1.Name = "redoBarItem1";
            // 
            // insertPivotBarItem1
            // 
            this.insertPivotBarItem1.Id = 9;
            this.insertPivotBarItem1.Name = "insertPivotBarItem1";
            // 
            // insertGridBarItem1
            // 
            this.insertGridBarItem1.Id = 10;
            this.insertGridBarItem1.Name = "insertGridBarItem1";
            // 
            // insertChartBarItem1
            // 
            this.insertChartBarItem1.Id = 11;
            this.insertChartBarItem1.Name = "insertChartBarItem1";
            // 
            // insertPiesBarItem1
            // 
            this.insertPiesBarItem1.Id = 12;
            this.insertPiesBarItem1.Name = "insertPiesBarItem1";
            // 
            // insertGaugesBarItem1
            // 
            this.insertGaugesBarItem1.Id = 13;
            this.insertGaugesBarItem1.Name = "insertGaugesBarItem1";
            // 
            // insertCardsBarItem1
            // 
            this.insertCardsBarItem1.Id = 14;
            this.insertCardsBarItem1.Name = "insertCardsBarItem1";
            // 
            // insertImageBarItem1
            // 
            this.insertImageBarItem1.Id = 15;
            this.insertImageBarItem1.Name = "insertImageBarItem1";
            // 
            // insertTextBoxBarItem1
            // 
            this.insertTextBoxBarItem1.Id = 16;
            this.insertTextBoxBarItem1.Name = "insertTextBoxBarItem1";
            // 
            // insertRangeFilterBarItem1
            // 
            this.insertRangeFilterBarItem1.Id = 17;
            this.insertRangeFilterBarItem1.Name = "insertRangeFilterBarItem1";
            // 
            // duplicateItemBarItem1
            // 
            this.duplicateItemBarItem1.Id = 18;
            this.duplicateItemBarItem1.Name = "duplicateItemBarItem1";
            // 
            // deleteItemBarItem1
            // 
            this.deleteItemBarItem1.Id = 19;
            this.deleteItemBarItem1.Name = "deleteItemBarItem1";
            // 
            // dashboardSkinsBarItem1
            // 
            // 
            // 
            // 
            this.dashboardSkinsBarItem1.Gallery.AllowHoverImages = true;
            this.dashboardSkinsBarItem1.Gallery.ColumnCount = 4;
            this.dashboardSkinsBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Standard Skins";
            galleryItem1.Caption = "DevExpress Style";
            galleryItem1.Checked = true;
            galleryItem1.Hint = "DevExpress Style";
            galleryItem1.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem1.HoverImage")));
            galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
            galleryItem1.Tag = "DevExpress Style";
            galleryItem2.Caption = "DevExpress Dark Style";
            galleryItem2.Hint = "DevExpress Dark Style";
            galleryItem2.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem2.HoverImage")));
            galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
            galleryItem2.Tag = "DevExpress Dark Style";
            galleryItem3.Caption = "Seven Classic";
            galleryItem3.Hint = "Seven Classic";
            galleryItem3.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem3.HoverImage")));
            galleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
            galleryItem3.Tag = "Seven Classic";
            galleryItem4.Caption = "Office 2010 Black";
            galleryItem4.Hint = "Office 2010 Black";
            galleryItem4.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem4.HoverImage")));
            galleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
            galleryItem4.Tag = "Office 2010 Black";
            galleryItem5.Caption = "Office 2010 Blue";
            galleryItem5.Hint = "Office 2010 Blue";
            galleryItem5.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem5.HoverImage")));
            galleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
            galleryItem5.Tag = "Office 2010 Blue";
            galleryItem6.Caption = "Office 2010 Silver";
            galleryItem6.Hint = "Office 2010 Silver";
            galleryItem6.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem6.HoverImage")));
            galleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
            galleryItem6.Tag = "Office 2010 Silver";
            galleryItem7.Caption = "Office 2013";
            galleryItem7.Hint = "Office 2013";
            galleryItem7.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem7.HoverImage")));
            galleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem7.Image")));
            galleryItem7.Tag = "Office 2013";
            galleryItem8.Caption = "VS2010";
            galleryItem8.Hint = "VS2010";
            galleryItem8.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem8.HoverImage")));
            galleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem8.Image")));
            galleryItem8.Tag = "VS2010";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8});
            galleryItemGroup2.Caption = "Bonus Skins";
            galleryItemGroup2.Visible = false;
            galleryItemGroup3.Caption = "Theme Skins";
            galleryItemGroup3.Visible = false;
            galleryItemGroup4.Caption = "Custom Skins";
            galleryItemGroup4.Visible = false;
            this.dashboardSkinsBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3,
            galleryItemGroup4});
            this.dashboardSkinsBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 16);
            this.dashboardSkinsBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.dashboardSkinsBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.dashboardSkinsBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardSkinsBarItem1.Glyph")));
            this.dashboardSkinsBarItem1.Id = 20;
            this.dashboardSkinsBarItem1.Name = "dashboardSkinsBarItem1";
            // 
            // editFilterBarItem1
            // 
            this.editFilterBarItem1.Id = 21;
            this.editFilterBarItem1.Name = "editFilterBarItem1";
            // 
            // clearFilterBarItem1
            // 
            this.clearFilterBarItem1.Id = 22;
            this.clearFilterBarItem1.Name = "clearFilterBarItem1";
            // 
            // ignoreMasterFiltersBarItem1
            // 
            this.ignoreMasterFiltersBarItem1.Id = 23;
            this.ignoreMasterFiltersBarItem1.Name = "ignoreMasterFiltersBarItem1";
            // 
            // masterFilterBarItem1
            // 
            this.masterFilterBarItem1.Id = 24;
            this.masterFilterBarItem1.Name = "masterFilterBarItem1";
            // 
            // crossDataSourceFilteringBarItem1
            // 
            this.crossDataSourceFilteringBarItem1.Id = 25;
            this.crossDataSourceFilteringBarItem1.Name = "crossDataSourceFilteringBarItem1";
            // 
            // filterByChartSeriesBarItem1
            // 
            this.filterByChartSeriesBarItem1.Id = 26;
            this.filterByChartSeriesBarItem1.Name = "filterByChartSeriesBarItem1";
            // 
            // filterByChartArgumentsBarItem1
            // 
            this.filterByChartArgumentsBarItem1.Id = 27;
            this.filterByChartArgumentsBarItem1.Name = "filterByChartArgumentsBarItem1";
            // 
            // filterByPieSeriesBarItem1
            // 
            this.filterByPieSeriesBarItem1.Id = 28;
            this.filterByPieSeriesBarItem1.Name = "filterByPieSeriesBarItem1";
            // 
            // filterByPieArgumentsBarItem1
            // 
            this.filterByPieArgumentsBarItem1.Id = 29;
            this.filterByPieArgumentsBarItem1.Name = "filterByPieArgumentsBarItem1";
            // 
            // drillDownBarItem1
            // 
            this.drillDownBarItem1.Id = 30;
            this.drillDownBarItem1.Name = "drillDownBarItem1";
            // 
            // drillDownOnChartSeriesBarItem1
            // 
            this.drillDownOnChartSeriesBarItem1.Id = 31;
            this.drillDownOnChartSeriesBarItem1.Name = "drillDownOnChartSeriesBarItem1";
            // 
            // drillDownOnChartArgumentsBarItem1
            // 
            this.drillDownOnChartArgumentsBarItem1.Id = 32;
            this.drillDownOnChartArgumentsBarItem1.Name = "drillDownOnChartArgumentsBarItem1";
            // 
            // drillDownOnPieSeriesBarItem1
            // 
            this.drillDownOnPieSeriesBarItem1.Id = 33;
            this.drillDownOnPieSeriesBarItem1.Name = "drillDownOnPieSeriesBarItem1";
            // 
            // drillDownOnPieArgumentsBarItem1
            // 
            this.drillDownOnPieArgumentsBarItem1.Id = 34;
            this.drillDownOnPieArgumentsBarItem1.Name = "drillDownOnPieArgumentsBarItem1";
            // 
            // contentAutoArrangeBarItem1
            // 
            this.contentAutoArrangeBarItem1.Id = 35;
            this.contentAutoArrangeBarItem1.Name = "contentAutoArrangeBarItem1";
            // 
            // contentArrangeInColumsBarItem1
            // 
            this.contentArrangeInColumsBarItem1.Id = 36;
            this.contentArrangeInColumsBarItem1.Name = "contentArrangeInColumsBarItem1";
            // 
            // contentArrangeInRowsBarItem1
            // 
            this.contentArrangeInRowsBarItem1.Id = 37;
            this.contentArrangeInRowsBarItem1.Name = "contentArrangeInRowsBarItem1";
            // 
            // contentArrangementCountBarItem1
            // 
            this.contentArrangementCountBarItem1.Edit = this.repositoryItemSpinEdit1;
            this.contentArrangementCountBarItem1.Id = 38;
            this.contentArrangementCountBarItem1.Name = "contentArrangementCountBarItem1";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // gridHorizontalLinesBarItem1
            // 
            this.gridHorizontalLinesBarItem1.Id = 39;
            this.gridHorizontalLinesBarItem1.Name = "gridHorizontalLinesBarItem1";
            // 
            // gridVerticalLinesBarItem1
            // 
            this.gridVerticalLinesBarItem1.Id = 40;
            this.gridVerticalLinesBarItem1.Name = "gridVerticalLinesBarItem1";
            // 
            // gridMergeCellsBarItem1
            // 
            this.gridMergeCellsBarItem1.Id = 41;
            this.gridMergeCellsBarItem1.Name = "gridMergeCellsBarItem1";
            // 
            // gridBandedRowsBarItem1
            // 
            this.gridBandedRowsBarItem1.Id = 42;
            this.gridBandedRowsBarItem1.Name = "gridBandedRowsBarItem1";
            // 
            // gridColumnHeadersBarItem1
            // 
            this.gridColumnHeadersBarItem1.Id = 43;
            this.gridColumnHeadersBarItem1.Name = "gridColumnHeadersBarItem1";
            // 
            // chartRotateBarItem1
            // 
            this.chartRotateBarItem1.Id = 44;
            this.chartRotateBarItem1.Name = "chartRotateBarItem1";
            // 
            // chartShowLegendBarItem1
            // 
            this.chartShowLegendBarItem1.Id = 45;
            this.chartShowLegendBarItem1.Name = "chartShowLegendBarItem1";
            // 
            // chartYAxisSettingsBarItem1
            // 
            this.chartYAxisSettingsBarItem1.Id = 46;
            this.chartYAxisSettingsBarItem1.Name = "chartYAxisSettingsBarItem1";
            // 
            // galleryChartSeriesTypeItem1
            // 
            // 
            // 
            // 
            galleryItemGroup5.Caption = "Bar";
            chartSeriesTypeGalleryItem1.Hint = "Bar";
            chartSeriesTypeGalleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem1.Image")));
            chartSeriesTypeGalleryItem1.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem2.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem2.Image")));
            chartSeriesTypeGalleryItem2.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem3.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem3.Image")));
            chartSeriesTypeGalleryItem3.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup5.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem1,
            chartSeriesTypeGalleryItem2,
            chartSeriesTypeGalleryItem3});
            galleryItemGroup6.Caption = "Point / Line";
            chartSeriesTypeGalleryItem4.Hint = "Point";
            chartSeriesTypeGalleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem4.Image")));
            chartSeriesTypeGalleryItem4.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem5.Hint = "Line";
            chartSeriesTypeGalleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem5.Image")));
            chartSeriesTypeGalleryItem5.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem6.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem6.Image")));
            chartSeriesTypeGalleryItem6.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem7.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem7.Image")));
            chartSeriesTypeGalleryItem7.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem8.Hint = "Step Line";
            chartSeriesTypeGalleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem8.Image")));
            chartSeriesTypeGalleryItem8.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem9.Hint = "Spline";
            chartSeriesTypeGalleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem9.Image")));
            chartSeriesTypeGalleryItem9.SeriesTypeCaption = "Spline";
            galleryItemGroup6.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem4,
            chartSeriesTypeGalleryItem5,
            chartSeriesTypeGalleryItem6,
            chartSeriesTypeGalleryItem7,
            chartSeriesTypeGalleryItem8,
            chartSeriesTypeGalleryItem9});
            galleryItemGroup7.Caption = "Area";
            chartSeriesTypeGalleryItem10.Hint = "Area";
            chartSeriesTypeGalleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem10.Image")));
            chartSeriesTypeGalleryItem10.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem11.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem11.Image")));
            chartSeriesTypeGalleryItem11.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem12.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem12.Image")));
            chartSeriesTypeGalleryItem12.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem13.Hint = "Step Area";
            chartSeriesTypeGalleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem13.Image")));
            chartSeriesTypeGalleryItem13.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem14.Hint = "Spline Area";
            chartSeriesTypeGalleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem14.Image")));
            chartSeriesTypeGalleryItem14.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem15.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem15.Image")));
            chartSeriesTypeGalleryItem15.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem16.Image")));
            chartSeriesTypeGalleryItem16.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup7.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem10,
            chartSeriesTypeGalleryItem11,
            chartSeriesTypeGalleryItem12,
            chartSeriesTypeGalleryItem13,
            chartSeriesTypeGalleryItem14,
            chartSeriesTypeGalleryItem15,
            chartSeriesTypeGalleryItem16});
            galleryItemGroup8.Caption = "Range";
            chartSeriesTypeGalleryItem17.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem17.Image")));
            chartSeriesTypeGalleryItem17.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem18.Hint = "Range Area";
            chartSeriesTypeGalleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem18.Image")));
            chartSeriesTypeGalleryItem18.SeriesTypeCaption = "Range Area";
            galleryItemGroup8.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem17,
            chartSeriesTypeGalleryItem18});
            galleryItemGroup9.Caption = "Bubble";
            chartSeriesTypeGalleryItem19.Hint = "Bubble";
            chartSeriesTypeGalleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem19.Image")));
            chartSeriesTypeGalleryItem19.SeriesTypeCaption = "Bubble";
            galleryItemGroup9.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem19});
            galleryItemGroup10.Caption = "Financial";
            chartSeriesTypeGalleryItem20.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem20.Image")));
            chartSeriesTypeGalleryItem20.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem21.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem21.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem21.Image")));
            chartSeriesTypeGalleryItem21.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem22.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem22.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem22.Image")));
            chartSeriesTypeGalleryItem22.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup10.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem20,
            chartSeriesTypeGalleryItem21,
            chartSeriesTypeGalleryItem22});
            galleryItemGroup11.Caption = "Bar";
            chartSeriesTypeGalleryItem23.Hint = "Bar";
            chartSeriesTypeGalleryItem23.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem23.Image")));
            chartSeriesTypeGalleryItem23.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem24.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem24.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem24.Image")));
            chartSeriesTypeGalleryItem24.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem25.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem25.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem25.Image")));
            chartSeriesTypeGalleryItem25.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup11.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem23,
            chartSeriesTypeGalleryItem24,
            chartSeriesTypeGalleryItem25});
            galleryItemGroup12.Caption = "Point / Line";
            chartSeriesTypeGalleryItem26.Hint = "Point";
            chartSeriesTypeGalleryItem26.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem26.Image")));
            chartSeriesTypeGalleryItem26.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem27.Hint = "Line";
            chartSeriesTypeGalleryItem27.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem27.Image")));
            chartSeriesTypeGalleryItem27.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem28.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem28.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem28.Image")));
            chartSeriesTypeGalleryItem28.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem29.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem29.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem29.Image")));
            chartSeriesTypeGalleryItem29.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem30.Hint = "Step Line";
            chartSeriesTypeGalleryItem30.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem30.Image")));
            chartSeriesTypeGalleryItem30.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem31.Hint = "Spline";
            chartSeriesTypeGalleryItem31.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem31.Image")));
            chartSeriesTypeGalleryItem31.SeriesTypeCaption = "Spline";
            galleryItemGroup12.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem26,
            chartSeriesTypeGalleryItem27,
            chartSeriesTypeGalleryItem28,
            chartSeriesTypeGalleryItem29,
            chartSeriesTypeGalleryItem30,
            chartSeriesTypeGalleryItem31});
            galleryItemGroup13.Caption = "Area";
            chartSeriesTypeGalleryItem32.Hint = "Area";
            chartSeriesTypeGalleryItem32.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem32.Image")));
            chartSeriesTypeGalleryItem32.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem33.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem33.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem33.Image")));
            chartSeriesTypeGalleryItem33.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem34.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem34.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem34.Image")));
            chartSeriesTypeGalleryItem34.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem35.Hint = "Step Area";
            chartSeriesTypeGalleryItem35.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem35.Image")));
            chartSeriesTypeGalleryItem35.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem36.Hint = "Spline Area";
            chartSeriesTypeGalleryItem36.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem36.Image")));
            chartSeriesTypeGalleryItem36.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem37.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem37.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem37.Image")));
            chartSeriesTypeGalleryItem37.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem38.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem38.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem38.Image")));
            chartSeriesTypeGalleryItem38.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem32,
            chartSeriesTypeGalleryItem33,
            chartSeriesTypeGalleryItem34,
            chartSeriesTypeGalleryItem35,
            chartSeriesTypeGalleryItem36,
            chartSeriesTypeGalleryItem37,
            chartSeriesTypeGalleryItem38});
            galleryItemGroup14.Caption = "Range";
            chartSeriesTypeGalleryItem39.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem39.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem39.Image")));
            chartSeriesTypeGalleryItem39.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem40.Hint = "Range Area";
            chartSeriesTypeGalleryItem40.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem40.Image")));
            chartSeriesTypeGalleryItem40.SeriesTypeCaption = "Range Area";
            galleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem39,
            chartSeriesTypeGalleryItem40});
            galleryItemGroup15.Caption = "Bubble";
            chartSeriesTypeGalleryItem41.Hint = "Bubble";
            chartSeriesTypeGalleryItem41.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem41.Image")));
            chartSeriesTypeGalleryItem41.SeriesTypeCaption = "Bubble";
            galleryItemGroup15.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem41});
            galleryItemGroup16.Caption = "Financial";
            chartSeriesTypeGalleryItem42.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem42.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem42.Image")));
            chartSeriesTypeGalleryItem42.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem43.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem43.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem43.Image")));
            chartSeriesTypeGalleryItem43.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem44.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem44.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem44.Image")));
            chartSeriesTypeGalleryItem44.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup16.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem42,
            chartSeriesTypeGalleryItem43,
            chartSeriesTypeGalleryItem44});
            galleryItemGroup17.Caption = "Bar";
            chartSeriesTypeGalleryItem45.Hint = "Bar";
            chartSeriesTypeGalleryItem45.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem45.Image")));
            chartSeriesTypeGalleryItem45.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem46.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem46.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem46.Image")));
            chartSeriesTypeGalleryItem46.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem47.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem47.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem47.Image")));
            chartSeriesTypeGalleryItem47.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup17.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem45,
            chartSeriesTypeGalleryItem46,
            chartSeriesTypeGalleryItem47});
            galleryItemGroup18.Caption = "Point / Line";
            chartSeriesTypeGalleryItem48.Hint = "Point";
            chartSeriesTypeGalleryItem48.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem48.Image")));
            chartSeriesTypeGalleryItem48.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem49.Hint = "Line";
            chartSeriesTypeGalleryItem49.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem49.Image")));
            chartSeriesTypeGalleryItem49.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem50.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem50.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem50.Image")));
            chartSeriesTypeGalleryItem50.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem51.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem51.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem51.Image")));
            chartSeriesTypeGalleryItem51.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem52.Hint = "Step Line";
            chartSeriesTypeGalleryItem52.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem52.Image")));
            chartSeriesTypeGalleryItem52.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem53.Hint = "Spline";
            chartSeriesTypeGalleryItem53.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem53.Image")));
            chartSeriesTypeGalleryItem53.SeriesTypeCaption = "Spline";
            galleryItemGroup18.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem48,
            chartSeriesTypeGalleryItem49,
            chartSeriesTypeGalleryItem50,
            chartSeriesTypeGalleryItem51,
            chartSeriesTypeGalleryItem52,
            chartSeriesTypeGalleryItem53});
            galleryItemGroup19.Caption = "Area";
            chartSeriesTypeGalleryItem54.Hint = "Area";
            chartSeriesTypeGalleryItem54.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem54.Image")));
            chartSeriesTypeGalleryItem54.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem55.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem55.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem55.Image")));
            chartSeriesTypeGalleryItem55.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem56.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem56.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem56.Image")));
            chartSeriesTypeGalleryItem56.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem57.Hint = "Step Area";
            chartSeriesTypeGalleryItem57.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem57.Image")));
            chartSeriesTypeGalleryItem57.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem58.Hint = "Spline Area";
            chartSeriesTypeGalleryItem58.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem58.Image")));
            chartSeriesTypeGalleryItem58.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem59.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem59.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem59.Image")));
            chartSeriesTypeGalleryItem59.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem60.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem60.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem60.Image")));
            chartSeriesTypeGalleryItem60.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup19.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem54,
            chartSeriesTypeGalleryItem55,
            chartSeriesTypeGalleryItem56,
            chartSeriesTypeGalleryItem57,
            chartSeriesTypeGalleryItem58,
            chartSeriesTypeGalleryItem59,
            chartSeriesTypeGalleryItem60});
            galleryItemGroup20.Caption = "Range";
            chartSeriesTypeGalleryItem61.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem61.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem61.Image")));
            chartSeriesTypeGalleryItem61.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem62.Hint = "Range Area";
            chartSeriesTypeGalleryItem62.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem62.Image")));
            chartSeriesTypeGalleryItem62.SeriesTypeCaption = "Range Area";
            galleryItemGroup20.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem61,
            chartSeriesTypeGalleryItem62});
            galleryItemGroup21.Caption = "Bubble";
            chartSeriesTypeGalleryItem63.Hint = "Bubble";
            chartSeriesTypeGalleryItem63.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem63.Image")));
            chartSeriesTypeGalleryItem63.SeriesTypeCaption = "Bubble";
            galleryItemGroup21.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem63});
            galleryItemGroup22.Caption = "Financial";
            chartSeriesTypeGalleryItem64.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem64.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem64.Image")));
            chartSeriesTypeGalleryItem64.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem65.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem65.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem65.Image")));
            chartSeriesTypeGalleryItem65.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem66.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem66.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem66.Image")));
            chartSeriesTypeGalleryItem66.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup22.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem64,
            chartSeriesTypeGalleryItem65,
            chartSeriesTypeGalleryItem66});
            galleryItemGroup23.Caption = "Bar";
            chartSeriesTypeGalleryItem67.Hint = "Bar";
            chartSeriesTypeGalleryItem67.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem67.Image")));
            chartSeriesTypeGalleryItem67.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem68.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem68.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem68.Image")));
            chartSeriesTypeGalleryItem68.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem69.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem69.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem69.Image")));
            chartSeriesTypeGalleryItem69.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup23.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem67,
            chartSeriesTypeGalleryItem68,
            chartSeriesTypeGalleryItem69});
            galleryItemGroup24.Caption = "Point / Line";
            chartSeriesTypeGalleryItem70.Hint = "Point";
            chartSeriesTypeGalleryItem70.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem70.Image")));
            chartSeriesTypeGalleryItem70.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem71.Hint = "Line";
            chartSeriesTypeGalleryItem71.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem71.Image")));
            chartSeriesTypeGalleryItem71.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem72.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem72.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem72.Image")));
            chartSeriesTypeGalleryItem72.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem73.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem73.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem73.Image")));
            chartSeriesTypeGalleryItem73.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem74.Hint = "Step Line";
            chartSeriesTypeGalleryItem74.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem74.Image")));
            chartSeriesTypeGalleryItem74.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem75.Hint = "Spline";
            chartSeriesTypeGalleryItem75.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem75.Image")));
            chartSeriesTypeGalleryItem75.SeriesTypeCaption = "Spline";
            galleryItemGroup24.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem70,
            chartSeriesTypeGalleryItem71,
            chartSeriesTypeGalleryItem72,
            chartSeriesTypeGalleryItem73,
            chartSeriesTypeGalleryItem74,
            chartSeriesTypeGalleryItem75});
            galleryItemGroup25.Caption = "Area";
            chartSeriesTypeGalleryItem76.Hint = "Area";
            chartSeriesTypeGalleryItem76.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem76.Image")));
            chartSeriesTypeGalleryItem76.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem77.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem77.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem77.Image")));
            chartSeriesTypeGalleryItem77.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem78.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem78.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem78.Image")));
            chartSeriesTypeGalleryItem78.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem79.Hint = "Step Area";
            chartSeriesTypeGalleryItem79.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem79.Image")));
            chartSeriesTypeGalleryItem79.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem80.Hint = "Spline Area";
            chartSeriesTypeGalleryItem80.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem80.Image")));
            chartSeriesTypeGalleryItem80.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem81.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem81.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem81.Image")));
            chartSeriesTypeGalleryItem81.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem82.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem82.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem82.Image")));
            chartSeriesTypeGalleryItem82.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup25.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem76,
            chartSeriesTypeGalleryItem77,
            chartSeriesTypeGalleryItem78,
            chartSeriesTypeGalleryItem79,
            chartSeriesTypeGalleryItem80,
            chartSeriesTypeGalleryItem81,
            chartSeriesTypeGalleryItem82});
            galleryItemGroup26.Caption = "Range";
            chartSeriesTypeGalleryItem83.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem83.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem83.Image")));
            chartSeriesTypeGalleryItem83.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem84.Hint = "Range Area";
            chartSeriesTypeGalleryItem84.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem84.Image")));
            chartSeriesTypeGalleryItem84.SeriesTypeCaption = "Range Area";
            galleryItemGroup26.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem83,
            chartSeriesTypeGalleryItem84});
            galleryItemGroup27.Caption = "Bubble";
            chartSeriesTypeGalleryItem85.Hint = "Bubble";
            chartSeriesTypeGalleryItem85.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem85.Image")));
            chartSeriesTypeGalleryItem85.SeriesTypeCaption = "Bubble";
            galleryItemGroup27.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem85});
            galleryItemGroup28.Caption = "Financial";
            chartSeriesTypeGalleryItem86.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem86.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem86.Image")));
            chartSeriesTypeGalleryItem86.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem87.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem87.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem87.Image")));
            chartSeriesTypeGalleryItem87.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem88.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem88.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem88.Image")));
            chartSeriesTypeGalleryItem88.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup28.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem86,
            chartSeriesTypeGalleryItem87,
            chartSeriesTypeGalleryItem88});
            galleryItemGroup29.Caption = "Bar";
            chartSeriesTypeGalleryItem89.Hint = "Bar";
            chartSeriesTypeGalleryItem89.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem89.Image")));
            chartSeriesTypeGalleryItem89.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem90.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem90.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem90.Image")));
            chartSeriesTypeGalleryItem90.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem91.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem91.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem91.Image")));
            chartSeriesTypeGalleryItem91.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup29.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem89,
            chartSeriesTypeGalleryItem90,
            chartSeriesTypeGalleryItem91});
            galleryItemGroup30.Caption = "Point / Line";
            chartSeriesTypeGalleryItem92.Hint = "Point";
            chartSeriesTypeGalleryItem92.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem92.Image")));
            chartSeriesTypeGalleryItem92.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem93.Hint = "Line";
            chartSeriesTypeGalleryItem93.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem93.Image")));
            chartSeriesTypeGalleryItem93.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem94.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem94.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem94.Image")));
            chartSeriesTypeGalleryItem94.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem95.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem95.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem95.Image")));
            chartSeriesTypeGalleryItem95.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem96.Hint = "Step Line";
            chartSeriesTypeGalleryItem96.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem96.Image")));
            chartSeriesTypeGalleryItem96.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem97.Hint = "Spline";
            chartSeriesTypeGalleryItem97.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem97.Image")));
            chartSeriesTypeGalleryItem97.SeriesTypeCaption = "Spline";
            galleryItemGroup30.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem92,
            chartSeriesTypeGalleryItem93,
            chartSeriesTypeGalleryItem94,
            chartSeriesTypeGalleryItem95,
            chartSeriesTypeGalleryItem96,
            chartSeriesTypeGalleryItem97});
            galleryItemGroup31.Caption = "Area";
            chartSeriesTypeGalleryItem98.Hint = "Area";
            chartSeriesTypeGalleryItem98.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem98.Image")));
            chartSeriesTypeGalleryItem98.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem99.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem99.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem99.Image")));
            chartSeriesTypeGalleryItem99.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem100.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem100.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem100.Image")));
            chartSeriesTypeGalleryItem100.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem101.Hint = "Step Area";
            chartSeriesTypeGalleryItem101.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem101.Image")));
            chartSeriesTypeGalleryItem101.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem102.Hint = "Spline Area";
            chartSeriesTypeGalleryItem102.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem102.Image")));
            chartSeriesTypeGalleryItem102.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem103.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem103.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem103.Image")));
            chartSeriesTypeGalleryItem103.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem104.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem104.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem104.Image")));
            chartSeriesTypeGalleryItem104.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup31.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem98,
            chartSeriesTypeGalleryItem99,
            chartSeriesTypeGalleryItem100,
            chartSeriesTypeGalleryItem101,
            chartSeriesTypeGalleryItem102,
            chartSeriesTypeGalleryItem103,
            chartSeriesTypeGalleryItem104});
            galleryItemGroup32.Caption = "Range";
            chartSeriesTypeGalleryItem105.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem105.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem105.Image")));
            chartSeriesTypeGalleryItem105.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem106.Hint = "Range Area";
            chartSeriesTypeGalleryItem106.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem106.Image")));
            chartSeriesTypeGalleryItem106.SeriesTypeCaption = "Range Area";
            galleryItemGroup32.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem105,
            chartSeriesTypeGalleryItem106});
            galleryItemGroup33.Caption = "Bubble";
            chartSeriesTypeGalleryItem107.Hint = "Bubble";
            chartSeriesTypeGalleryItem107.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem107.Image")));
            chartSeriesTypeGalleryItem107.SeriesTypeCaption = "Bubble";
            galleryItemGroup33.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem107});
            galleryItemGroup34.Caption = "Financial";
            chartSeriesTypeGalleryItem108.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem108.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem108.Image")));
            chartSeriesTypeGalleryItem108.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem109.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem109.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem109.Image")));
            chartSeriesTypeGalleryItem109.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem110.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem110.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem110.Image")));
            chartSeriesTypeGalleryItem110.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup34.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem108,
            chartSeriesTypeGalleryItem109,
            chartSeriesTypeGalleryItem110});
            galleryItemGroup35.Caption = "Bar";
            chartSeriesTypeGalleryItem111.Hint = "Bar";
            chartSeriesTypeGalleryItem111.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem111.Image")));
            chartSeriesTypeGalleryItem111.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem112.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem112.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem112.Image")));
            chartSeriesTypeGalleryItem112.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem113.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem113.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem113.Image")));
            chartSeriesTypeGalleryItem113.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup35.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem111,
            chartSeriesTypeGalleryItem112,
            chartSeriesTypeGalleryItem113});
            galleryItemGroup36.Caption = "Point / Line";
            chartSeriesTypeGalleryItem114.Hint = "Point";
            chartSeriesTypeGalleryItem114.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem114.Image")));
            chartSeriesTypeGalleryItem114.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem115.Hint = "Line";
            chartSeriesTypeGalleryItem115.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem115.Image")));
            chartSeriesTypeGalleryItem115.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem116.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem116.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem116.Image")));
            chartSeriesTypeGalleryItem116.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem117.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem117.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem117.Image")));
            chartSeriesTypeGalleryItem117.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem118.Hint = "Step Line";
            chartSeriesTypeGalleryItem118.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem118.Image")));
            chartSeriesTypeGalleryItem118.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem119.Hint = "Spline";
            chartSeriesTypeGalleryItem119.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem119.Image")));
            chartSeriesTypeGalleryItem119.SeriesTypeCaption = "Spline";
            galleryItemGroup36.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem114,
            chartSeriesTypeGalleryItem115,
            chartSeriesTypeGalleryItem116,
            chartSeriesTypeGalleryItem117,
            chartSeriesTypeGalleryItem118,
            chartSeriesTypeGalleryItem119});
            galleryItemGroup37.Caption = "Area";
            chartSeriesTypeGalleryItem120.Hint = "Area";
            chartSeriesTypeGalleryItem120.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem120.Image")));
            chartSeriesTypeGalleryItem120.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem121.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem121.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem121.Image")));
            chartSeriesTypeGalleryItem121.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem122.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem122.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem122.Image")));
            chartSeriesTypeGalleryItem122.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem123.Hint = "Step Area";
            chartSeriesTypeGalleryItem123.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem123.Image")));
            chartSeriesTypeGalleryItem123.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem124.Hint = "Spline Area";
            chartSeriesTypeGalleryItem124.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem124.Image")));
            chartSeriesTypeGalleryItem124.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem125.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem125.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem125.Image")));
            chartSeriesTypeGalleryItem125.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem126.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem126.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem126.Image")));
            chartSeriesTypeGalleryItem126.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup37.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem120,
            chartSeriesTypeGalleryItem121,
            chartSeriesTypeGalleryItem122,
            chartSeriesTypeGalleryItem123,
            chartSeriesTypeGalleryItem124,
            chartSeriesTypeGalleryItem125,
            chartSeriesTypeGalleryItem126});
            galleryItemGroup38.Caption = "Range";
            chartSeriesTypeGalleryItem127.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem127.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem127.Image")));
            chartSeriesTypeGalleryItem127.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem128.Hint = "Range Area";
            chartSeriesTypeGalleryItem128.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem128.Image")));
            chartSeriesTypeGalleryItem128.SeriesTypeCaption = "Range Area";
            galleryItemGroup38.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem127,
            chartSeriesTypeGalleryItem128});
            galleryItemGroup39.Caption = "Bubble";
            chartSeriesTypeGalleryItem129.Hint = "Bubble";
            chartSeriesTypeGalleryItem129.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem129.Image")));
            chartSeriesTypeGalleryItem129.SeriesTypeCaption = "Bubble";
            galleryItemGroup39.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem129});
            galleryItemGroup40.Caption = "Financial";
            chartSeriesTypeGalleryItem130.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem130.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem130.Image")));
            chartSeriesTypeGalleryItem130.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem131.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem131.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem131.Image")));
            chartSeriesTypeGalleryItem131.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem132.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem132.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem132.Image")));
            chartSeriesTypeGalleryItem132.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup40.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem130,
            chartSeriesTypeGalleryItem131,
            chartSeriesTypeGalleryItem132});
            galleryItemGroup41.Caption = "Bar";
            chartSeriesTypeGalleryItem133.Hint = "Bar";
            chartSeriesTypeGalleryItem133.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem133.Image")));
            chartSeriesTypeGalleryItem133.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem134.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem134.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem134.Image")));
            chartSeriesTypeGalleryItem134.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem135.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem135.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem135.Image")));
            chartSeriesTypeGalleryItem135.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup41.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem133,
            chartSeriesTypeGalleryItem134,
            chartSeriesTypeGalleryItem135});
            galleryItemGroup42.Caption = "Point / Line";
            chartSeriesTypeGalleryItem136.Hint = "Point";
            chartSeriesTypeGalleryItem136.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem136.Image")));
            chartSeriesTypeGalleryItem136.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem137.Hint = "Line";
            chartSeriesTypeGalleryItem137.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem137.Image")));
            chartSeriesTypeGalleryItem137.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem138.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem138.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem138.Image")));
            chartSeriesTypeGalleryItem138.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem139.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem139.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem139.Image")));
            chartSeriesTypeGalleryItem139.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem140.Hint = "Step Line";
            chartSeriesTypeGalleryItem140.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem140.Image")));
            chartSeriesTypeGalleryItem140.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem141.Hint = "Spline";
            chartSeriesTypeGalleryItem141.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem141.Image")));
            chartSeriesTypeGalleryItem141.SeriesTypeCaption = "Spline";
            galleryItemGroup42.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem136,
            chartSeriesTypeGalleryItem137,
            chartSeriesTypeGalleryItem138,
            chartSeriesTypeGalleryItem139,
            chartSeriesTypeGalleryItem140,
            chartSeriesTypeGalleryItem141});
            galleryItemGroup43.Caption = "Area";
            chartSeriesTypeGalleryItem142.Hint = "Area";
            chartSeriesTypeGalleryItem142.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem142.Image")));
            chartSeriesTypeGalleryItem142.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem143.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem143.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem143.Image")));
            chartSeriesTypeGalleryItem143.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem144.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem144.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem144.Image")));
            chartSeriesTypeGalleryItem144.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem145.Hint = "Step Area";
            chartSeriesTypeGalleryItem145.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem145.Image")));
            chartSeriesTypeGalleryItem145.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem146.Hint = "Spline Area";
            chartSeriesTypeGalleryItem146.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem146.Image")));
            chartSeriesTypeGalleryItem146.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem147.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem147.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem147.Image")));
            chartSeriesTypeGalleryItem147.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem148.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem148.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem148.Image")));
            chartSeriesTypeGalleryItem148.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup43.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem142,
            chartSeriesTypeGalleryItem143,
            chartSeriesTypeGalleryItem144,
            chartSeriesTypeGalleryItem145,
            chartSeriesTypeGalleryItem146,
            chartSeriesTypeGalleryItem147,
            chartSeriesTypeGalleryItem148});
            galleryItemGroup44.Caption = "Range";
            chartSeriesTypeGalleryItem149.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem149.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem149.Image")));
            chartSeriesTypeGalleryItem149.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem150.Hint = "Range Area";
            chartSeriesTypeGalleryItem150.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem150.Image")));
            chartSeriesTypeGalleryItem150.SeriesTypeCaption = "Range Area";
            galleryItemGroup44.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem149,
            chartSeriesTypeGalleryItem150});
            galleryItemGroup45.Caption = "Bubble";
            chartSeriesTypeGalleryItem151.Hint = "Bubble";
            chartSeriesTypeGalleryItem151.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem151.Image")));
            chartSeriesTypeGalleryItem151.SeriesTypeCaption = "Bubble";
            galleryItemGroup45.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem151});
            galleryItemGroup46.Caption = "Financial";
            chartSeriesTypeGalleryItem152.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem152.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem152.Image")));
            chartSeriesTypeGalleryItem152.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem153.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem153.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem153.Image")));
            chartSeriesTypeGalleryItem153.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem154.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem154.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem154.Image")));
            chartSeriesTypeGalleryItem154.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup46.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem152,
            chartSeriesTypeGalleryItem153,
            chartSeriesTypeGalleryItem154});
            galleryItemGroup47.Caption = "Bar";
            chartSeriesTypeGalleryItem155.Hint = "Bar";
            chartSeriesTypeGalleryItem155.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem155.Image")));
            chartSeriesTypeGalleryItem155.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem156.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem156.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem156.Image")));
            chartSeriesTypeGalleryItem156.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem157.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem157.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem157.Image")));
            chartSeriesTypeGalleryItem157.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup47.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem155,
            chartSeriesTypeGalleryItem156,
            chartSeriesTypeGalleryItem157});
            galleryItemGroup48.Caption = "Point / Line";
            chartSeriesTypeGalleryItem158.Hint = "Point";
            chartSeriesTypeGalleryItem158.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem158.Image")));
            chartSeriesTypeGalleryItem158.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem159.Hint = "Line";
            chartSeriesTypeGalleryItem159.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem159.Image")));
            chartSeriesTypeGalleryItem159.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem160.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem160.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem160.Image")));
            chartSeriesTypeGalleryItem160.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem161.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem161.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem161.Image")));
            chartSeriesTypeGalleryItem161.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem162.Hint = "Step Line";
            chartSeriesTypeGalleryItem162.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem162.Image")));
            chartSeriesTypeGalleryItem162.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem163.Hint = "Spline";
            chartSeriesTypeGalleryItem163.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem163.Image")));
            chartSeriesTypeGalleryItem163.SeriesTypeCaption = "Spline";
            galleryItemGroup48.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem158,
            chartSeriesTypeGalleryItem159,
            chartSeriesTypeGalleryItem160,
            chartSeriesTypeGalleryItem161,
            chartSeriesTypeGalleryItem162,
            chartSeriesTypeGalleryItem163});
            galleryItemGroup49.Caption = "Area";
            chartSeriesTypeGalleryItem164.Hint = "Area";
            chartSeriesTypeGalleryItem164.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem164.Image")));
            chartSeriesTypeGalleryItem164.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem165.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem165.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem165.Image")));
            chartSeriesTypeGalleryItem165.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem166.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem166.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem166.Image")));
            chartSeriesTypeGalleryItem166.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem167.Hint = "Step Area";
            chartSeriesTypeGalleryItem167.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem167.Image")));
            chartSeriesTypeGalleryItem167.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem168.Hint = "Spline Area";
            chartSeriesTypeGalleryItem168.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem168.Image")));
            chartSeriesTypeGalleryItem168.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem169.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem169.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem169.Image")));
            chartSeriesTypeGalleryItem169.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem170.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem170.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem170.Image")));
            chartSeriesTypeGalleryItem170.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup49.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem164,
            chartSeriesTypeGalleryItem165,
            chartSeriesTypeGalleryItem166,
            chartSeriesTypeGalleryItem167,
            chartSeriesTypeGalleryItem168,
            chartSeriesTypeGalleryItem169,
            chartSeriesTypeGalleryItem170});
            galleryItemGroup50.Caption = "Range";
            chartSeriesTypeGalleryItem171.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem171.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem171.Image")));
            chartSeriesTypeGalleryItem171.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem172.Hint = "Range Area";
            chartSeriesTypeGalleryItem172.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem172.Image")));
            chartSeriesTypeGalleryItem172.SeriesTypeCaption = "Range Area";
            galleryItemGroup50.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem171,
            chartSeriesTypeGalleryItem172});
            galleryItemGroup51.Caption = "Bubble";
            chartSeriesTypeGalleryItem173.Hint = "Bubble";
            chartSeriesTypeGalleryItem173.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem173.Image")));
            chartSeriesTypeGalleryItem173.SeriesTypeCaption = "Bubble";
            galleryItemGroup51.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem173});
            galleryItemGroup52.Caption = "Financial";
            chartSeriesTypeGalleryItem174.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem174.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem174.Image")));
            chartSeriesTypeGalleryItem174.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem175.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem175.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem175.Image")));
            chartSeriesTypeGalleryItem175.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem176.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem176.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem176.Image")));
            chartSeriesTypeGalleryItem176.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup52.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem174,
            chartSeriesTypeGalleryItem175,
            chartSeriesTypeGalleryItem176});
            galleryItemGroup53.Caption = "Bar";
            chartSeriesTypeGalleryItem177.Hint = "Bar";
            chartSeriesTypeGalleryItem177.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem177.Image")));
            chartSeriesTypeGalleryItem177.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem178.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem178.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem178.Image")));
            chartSeriesTypeGalleryItem178.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem179.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem179.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem179.Image")));
            chartSeriesTypeGalleryItem179.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup53.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem177,
            chartSeriesTypeGalleryItem178,
            chartSeriesTypeGalleryItem179});
            galleryItemGroup54.Caption = "Point / Line";
            chartSeriesTypeGalleryItem180.Hint = "Point";
            chartSeriesTypeGalleryItem180.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem180.Image")));
            chartSeriesTypeGalleryItem180.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem181.Hint = "Line";
            chartSeriesTypeGalleryItem181.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem181.Image")));
            chartSeriesTypeGalleryItem181.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem182.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem182.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem182.Image")));
            chartSeriesTypeGalleryItem182.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem183.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem183.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem183.Image")));
            chartSeriesTypeGalleryItem183.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem184.Hint = "Step Line";
            chartSeriesTypeGalleryItem184.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem184.Image")));
            chartSeriesTypeGalleryItem184.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem185.Hint = "Spline";
            chartSeriesTypeGalleryItem185.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem185.Image")));
            chartSeriesTypeGalleryItem185.SeriesTypeCaption = "Spline";
            galleryItemGroup54.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem180,
            chartSeriesTypeGalleryItem181,
            chartSeriesTypeGalleryItem182,
            chartSeriesTypeGalleryItem183,
            chartSeriesTypeGalleryItem184,
            chartSeriesTypeGalleryItem185});
            galleryItemGroup55.Caption = "Area";
            chartSeriesTypeGalleryItem186.Hint = "Area";
            chartSeriesTypeGalleryItem186.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem186.Image")));
            chartSeriesTypeGalleryItem186.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem187.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem187.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem187.Image")));
            chartSeriesTypeGalleryItem187.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem188.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem188.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem188.Image")));
            chartSeriesTypeGalleryItem188.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem189.Hint = "Step Area";
            chartSeriesTypeGalleryItem189.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem189.Image")));
            chartSeriesTypeGalleryItem189.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem190.Hint = "Spline Area";
            chartSeriesTypeGalleryItem190.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem190.Image")));
            chartSeriesTypeGalleryItem190.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem191.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem191.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem191.Image")));
            chartSeriesTypeGalleryItem191.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem192.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem192.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem192.Image")));
            chartSeriesTypeGalleryItem192.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup55.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem186,
            chartSeriesTypeGalleryItem187,
            chartSeriesTypeGalleryItem188,
            chartSeriesTypeGalleryItem189,
            chartSeriesTypeGalleryItem190,
            chartSeriesTypeGalleryItem191,
            chartSeriesTypeGalleryItem192});
            galleryItemGroup56.Caption = "Range";
            chartSeriesTypeGalleryItem193.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem193.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem193.Image")));
            chartSeriesTypeGalleryItem193.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem194.Hint = "Range Area";
            chartSeriesTypeGalleryItem194.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem194.Image")));
            chartSeriesTypeGalleryItem194.SeriesTypeCaption = "Range Area";
            galleryItemGroup56.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem193,
            chartSeriesTypeGalleryItem194});
            galleryItemGroup57.Caption = "Bubble";
            chartSeriesTypeGalleryItem195.Hint = "Bubble";
            chartSeriesTypeGalleryItem195.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem195.Image")));
            chartSeriesTypeGalleryItem195.SeriesTypeCaption = "Bubble";
            galleryItemGroup57.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem195});
            galleryItemGroup58.Caption = "Financial";
            chartSeriesTypeGalleryItem196.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem196.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem196.Image")));
            chartSeriesTypeGalleryItem196.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem197.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem197.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem197.Image")));
            chartSeriesTypeGalleryItem197.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem198.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem198.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem198.Image")));
            chartSeriesTypeGalleryItem198.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup58.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem196,
            chartSeriesTypeGalleryItem197,
            chartSeriesTypeGalleryItem198});
            galleryItemGroup59.Caption = "Bar";
            chartSeriesTypeGalleryItem199.Hint = "Bar";
            chartSeriesTypeGalleryItem199.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem199.Image")));
            chartSeriesTypeGalleryItem199.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem200.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem200.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem200.Image")));
            chartSeriesTypeGalleryItem200.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem201.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem201.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem201.Image")));
            chartSeriesTypeGalleryItem201.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup59.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem199,
            chartSeriesTypeGalleryItem200,
            chartSeriesTypeGalleryItem201});
            galleryItemGroup60.Caption = "Point / Line";
            chartSeriesTypeGalleryItem202.Hint = "Point";
            chartSeriesTypeGalleryItem202.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem202.Image")));
            chartSeriesTypeGalleryItem202.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem203.Hint = "Line";
            chartSeriesTypeGalleryItem203.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem203.Image")));
            chartSeriesTypeGalleryItem203.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem204.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem204.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem204.Image")));
            chartSeriesTypeGalleryItem204.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem205.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem205.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem205.Image")));
            chartSeriesTypeGalleryItem205.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem206.Hint = "Step Line";
            chartSeriesTypeGalleryItem206.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem206.Image")));
            chartSeriesTypeGalleryItem206.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem207.Hint = "Spline";
            chartSeriesTypeGalleryItem207.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem207.Image")));
            chartSeriesTypeGalleryItem207.SeriesTypeCaption = "Spline";
            galleryItemGroup60.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem202,
            chartSeriesTypeGalleryItem203,
            chartSeriesTypeGalleryItem204,
            chartSeriesTypeGalleryItem205,
            chartSeriesTypeGalleryItem206,
            chartSeriesTypeGalleryItem207});
            galleryItemGroup61.Caption = "Area";
            chartSeriesTypeGalleryItem208.Hint = "Area";
            chartSeriesTypeGalleryItem208.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem208.Image")));
            chartSeriesTypeGalleryItem208.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem209.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem209.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem209.Image")));
            chartSeriesTypeGalleryItem209.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem210.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem210.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem210.Image")));
            chartSeriesTypeGalleryItem210.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem211.Hint = "Step Area";
            chartSeriesTypeGalleryItem211.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem211.Image")));
            chartSeriesTypeGalleryItem211.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem212.Hint = "Spline Area";
            chartSeriesTypeGalleryItem212.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem212.Image")));
            chartSeriesTypeGalleryItem212.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem213.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem213.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem213.Image")));
            chartSeriesTypeGalleryItem213.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem214.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem214.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem214.Image")));
            chartSeriesTypeGalleryItem214.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup61.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem208,
            chartSeriesTypeGalleryItem209,
            chartSeriesTypeGalleryItem210,
            chartSeriesTypeGalleryItem211,
            chartSeriesTypeGalleryItem212,
            chartSeriesTypeGalleryItem213,
            chartSeriesTypeGalleryItem214});
            galleryItemGroup62.Caption = "Range";
            chartSeriesTypeGalleryItem215.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem215.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem215.Image")));
            chartSeriesTypeGalleryItem215.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem216.Hint = "Range Area";
            chartSeriesTypeGalleryItem216.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem216.Image")));
            chartSeriesTypeGalleryItem216.SeriesTypeCaption = "Range Area";
            galleryItemGroup62.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem215,
            chartSeriesTypeGalleryItem216});
            galleryItemGroup63.Caption = "Bubble";
            chartSeriesTypeGalleryItem217.Hint = "Bubble";
            chartSeriesTypeGalleryItem217.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem217.Image")));
            chartSeriesTypeGalleryItem217.SeriesTypeCaption = "Bubble";
            galleryItemGroup63.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem217});
            galleryItemGroup64.Caption = "Financial";
            chartSeriesTypeGalleryItem218.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem218.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem218.Image")));
            chartSeriesTypeGalleryItem218.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem219.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem219.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem219.Image")));
            chartSeriesTypeGalleryItem219.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem220.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem220.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem220.Image")));
            chartSeriesTypeGalleryItem220.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup64.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem218,
            chartSeriesTypeGalleryItem219,
            chartSeriesTypeGalleryItem220});
            galleryItemGroup65.Caption = "Bar";
            chartSeriesTypeGalleryItem221.Hint = "Bar";
            chartSeriesTypeGalleryItem221.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem221.Image")));
            chartSeriesTypeGalleryItem221.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem222.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem222.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem222.Image")));
            chartSeriesTypeGalleryItem222.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem223.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem223.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem223.Image")));
            chartSeriesTypeGalleryItem223.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup65.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem221,
            chartSeriesTypeGalleryItem222,
            chartSeriesTypeGalleryItem223});
            galleryItemGroup66.Caption = "Point / Line";
            chartSeriesTypeGalleryItem224.Hint = "Point";
            chartSeriesTypeGalleryItem224.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem224.Image")));
            chartSeriesTypeGalleryItem224.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem225.Hint = "Line";
            chartSeriesTypeGalleryItem225.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem225.Image")));
            chartSeriesTypeGalleryItem225.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem226.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem226.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem226.Image")));
            chartSeriesTypeGalleryItem226.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem227.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem227.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem227.Image")));
            chartSeriesTypeGalleryItem227.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem228.Hint = "Step Line";
            chartSeriesTypeGalleryItem228.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem228.Image")));
            chartSeriesTypeGalleryItem228.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem229.Hint = "Spline";
            chartSeriesTypeGalleryItem229.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem229.Image")));
            chartSeriesTypeGalleryItem229.SeriesTypeCaption = "Spline";
            galleryItemGroup66.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem224,
            chartSeriesTypeGalleryItem225,
            chartSeriesTypeGalleryItem226,
            chartSeriesTypeGalleryItem227,
            chartSeriesTypeGalleryItem228,
            chartSeriesTypeGalleryItem229});
            galleryItemGroup67.Caption = "Area";
            chartSeriesTypeGalleryItem230.Hint = "Area";
            chartSeriesTypeGalleryItem230.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem230.Image")));
            chartSeriesTypeGalleryItem230.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem231.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem231.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem231.Image")));
            chartSeriesTypeGalleryItem231.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem232.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem232.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem232.Image")));
            chartSeriesTypeGalleryItem232.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem233.Hint = "Step Area";
            chartSeriesTypeGalleryItem233.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem233.Image")));
            chartSeriesTypeGalleryItem233.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem234.Hint = "Spline Area";
            chartSeriesTypeGalleryItem234.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem234.Image")));
            chartSeriesTypeGalleryItem234.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem235.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem235.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem235.Image")));
            chartSeriesTypeGalleryItem235.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem236.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem236.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem236.Image")));
            chartSeriesTypeGalleryItem236.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup67.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem230,
            chartSeriesTypeGalleryItem231,
            chartSeriesTypeGalleryItem232,
            chartSeriesTypeGalleryItem233,
            chartSeriesTypeGalleryItem234,
            chartSeriesTypeGalleryItem235,
            chartSeriesTypeGalleryItem236});
            galleryItemGroup68.Caption = "Range";
            chartSeriesTypeGalleryItem237.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem237.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem237.Image")));
            chartSeriesTypeGalleryItem237.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem238.Hint = "Range Area";
            chartSeriesTypeGalleryItem238.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem238.Image")));
            chartSeriesTypeGalleryItem238.SeriesTypeCaption = "Range Area";
            galleryItemGroup68.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem237,
            chartSeriesTypeGalleryItem238});
            galleryItemGroup69.Caption = "Bubble";
            chartSeriesTypeGalleryItem239.Hint = "Bubble";
            chartSeriesTypeGalleryItem239.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem239.Image")));
            chartSeriesTypeGalleryItem239.SeriesTypeCaption = "Bubble";
            galleryItemGroup69.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem239});
            galleryItemGroup70.Caption = "Financial";
            chartSeriesTypeGalleryItem240.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem240.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem240.Image")));
            chartSeriesTypeGalleryItem240.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem241.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem241.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem241.Image")));
            chartSeriesTypeGalleryItem241.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem242.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem242.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem242.Image")));
            chartSeriesTypeGalleryItem242.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup70.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem240,
            chartSeriesTypeGalleryItem241,
            chartSeriesTypeGalleryItem242});
            this.galleryChartSeriesTypeItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup5,
            galleryItemGroup6,
            galleryItemGroup7,
            galleryItemGroup8,
            galleryItemGroup9,
            galleryItemGroup10,
            galleryItemGroup11,
            galleryItemGroup12,
            galleryItemGroup13,
            galleryItemGroup14,
            galleryItemGroup15,
            galleryItemGroup16,
            galleryItemGroup17,
            galleryItemGroup18,
            galleryItemGroup19,
            galleryItemGroup20,
            galleryItemGroup21,
            galleryItemGroup22,
            galleryItemGroup23,
            galleryItemGroup24,
            galleryItemGroup25,
            galleryItemGroup26,
            galleryItemGroup27,
            galleryItemGroup28,
            galleryItemGroup29,
            galleryItemGroup30,
            galleryItemGroup31,
            galleryItemGroup32,
            galleryItemGroup33,
            galleryItemGroup34,
            galleryItemGroup35,
            galleryItemGroup36,
            galleryItemGroup37,
            galleryItemGroup38,
            galleryItemGroup39,
            galleryItemGroup40,
            galleryItemGroup41,
            galleryItemGroup42,
            galleryItemGroup43,
            galleryItemGroup44,
            galleryItemGroup45,
            galleryItemGroup46,
            galleryItemGroup47,
            galleryItemGroup48,
            galleryItemGroup49,
            galleryItemGroup50,
            galleryItemGroup51,
            galleryItemGroup52,
            galleryItemGroup53,
            galleryItemGroup54,
            galleryItemGroup55,
            galleryItemGroup56,
            galleryItemGroup57,
            galleryItemGroup58,
            galleryItemGroup59,
            galleryItemGroup60,
            galleryItemGroup61,
            galleryItemGroup62,
            galleryItemGroup63,
            galleryItemGroup64,
            galleryItemGroup65,
            galleryItemGroup66,
            galleryItemGroup67,
            galleryItemGroup68,
            galleryItemGroup69,
            galleryItemGroup70});
            this.galleryChartSeriesTypeItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartSeriesTypeItem1.Gallery.RowCount = 8;
            this.galleryChartSeriesTypeItem1.Id = 47;
            this.galleryChartSeriesTypeItem1.Name = "galleryChartSeriesTypeItem1";
            // 
            // pieLabelsDataLabelsBarItem1
            // 
            this.pieLabelsDataLabelsBarItem1.Id = 48;
            this.pieLabelsDataLabelsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1)});
            this.pieLabelsDataLabelsBarItem1.Name = "pieLabelsDataLabelsBarItem1";
            this.pieLabelsDataLabelsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsDataLabelsNoneBarItem1
            // 
            this.pieLabelsDataLabelsNoneBarItem1.Id = 49;
            this.pieLabelsDataLabelsNoneBarItem1.Name = "pieLabelsDataLabelsNoneBarItem1";
            // 
            // pieLabelsDataLabelArgumentBarItem1
            // 
            this.pieLabelsDataLabelArgumentBarItem1.Id = 50;
            this.pieLabelsDataLabelArgumentBarItem1.Name = "pieLabelsDataLabelArgumentBarItem1";
            // 
            // pieLabelsDataLabelsValueBarItem1
            // 
            this.pieLabelsDataLabelsValueBarItem1.Id = 51;
            this.pieLabelsDataLabelsValueBarItem1.Name = "pieLabelsDataLabelsValueBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndValueBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Id = 52;
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Name = "pieLabelsDataLabelsArgumentAndValueBarItem1";
            // 
            // pieLabelsDataLabelsPercentBarItem1
            // 
            this.pieLabelsDataLabelsPercentBarItem1.Id = 53;
            this.pieLabelsDataLabelsPercentBarItem1.Name = "pieLabelsDataLabelsPercentBarItem1";
            // 
            // pieLabelsDataLabelsValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Id = 54;
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Name = "pieLabelsDataLabelsValueAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Id = 55;
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Id = 56;
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentValueAndPercentBarItem1";
            // 
            // pieTooltipsBarItem1
            // 
            this.pieTooltipsBarItem1.Id = 57;
            this.pieTooltipsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1)});
            this.pieTooltipsBarItem1.Name = "pieTooltipsBarItem1";
            this.pieTooltipsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsTooltipsNoneBarItem1
            // 
            this.pieLabelsTooltipsNoneBarItem1.Id = 58;
            this.pieLabelsTooltipsNoneBarItem1.Name = "pieLabelsTooltipsNoneBarItem1";
            // 
            // pieLabelsTooltipsArgumentBarItem1
            // 
            this.pieLabelsTooltipsArgumentBarItem1.Id = 59;
            this.pieLabelsTooltipsArgumentBarItem1.Name = "pieLabelsTooltipsArgumentBarItem1";
            // 
            // pieLabelsTooltipsValueBarItem1
            // 
            this.pieLabelsTooltipsValueBarItem1.Id = 60;
            this.pieLabelsTooltipsValueBarItem1.Name = "pieLabelsTooltipsValueBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndValueBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Id = 61;
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Name = "pieLabelsTooltipsArgumentAndValueBarItem1";
            // 
            // pieLabelsTooltipsPercentBarItem1
            // 
            this.pieLabelsTooltipsPercentBarItem1.Id = 62;
            this.pieLabelsTooltipsPercentBarItem1.Name = "pieLabelsTooltipsPercentBarItem1";
            // 
            // pieLabelsTooltipsValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsValueAndPercentBarItem1.Id = 63;
            this.pieLabelsTooltipsValueAndPercentBarItem1.Name = "pieLabelsTooltipsValueAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Id = 64;
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Id = 65;
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentValueAndPercentBarItem1";
            // 
            // pieStylePieBarItem1
            // 
            this.pieStylePieBarItem1.Id = 66;
            this.pieStylePieBarItem1.Name = "pieStylePieBarItem1";
            // 
            // pieStyleDonutBarItem1
            // 
            this.pieStyleDonutBarItem1.Id = 67;
            this.pieStyleDonutBarItem1.Name = "pieStyleDonutBarItem1";
            // 
            // gaugeStyleFullCircularBarItem1
            // 
            this.gaugeStyleFullCircularBarItem1.Id = 68;
            this.gaugeStyleFullCircularBarItem1.Name = "gaugeStyleFullCircularBarItem1";
            // 
            // gaugeStyleHalfCircularBarItem1
            // 
            this.gaugeStyleHalfCircularBarItem1.Id = 69;
            this.gaugeStyleHalfCircularBarItem1.Name = "gaugeStyleHalfCircularBarItem1";
            // 
            // gaugeStyleLeftQuarterCircularBarItem1
            // 
            this.gaugeStyleLeftQuarterCircularBarItem1.Id = 70;
            this.gaugeStyleLeftQuarterCircularBarItem1.Name = "gaugeStyleLeftQuarterCircularBarItem1";
            // 
            // gaugeStyleRightQuarterCircularBarItem1
            // 
            this.gaugeStyleRightQuarterCircularBarItem1.Id = 71;
            this.gaugeStyleRightQuarterCircularBarItem1.Name = "gaugeStyleRightQuarterCircularBarItem1";
            // 
            // gaugeStyleThreeForthCircularBarItem1
            // 
            this.gaugeStyleThreeForthCircularBarItem1.Id = 72;
            this.gaugeStyleThreeForthCircularBarItem1.Name = "gaugeStyleThreeForthCircularBarItem1";
            // 
            // gaugeStyleLinearHorizontalBarItem1
            // 
            this.gaugeStyleLinearHorizontalBarItem1.Id = 73;
            this.gaugeStyleLinearHorizontalBarItem1.Name = "gaugeStyleLinearHorizontalBarItem1";
            // 
            // gaugeStyleLinearVerticalBarItem1
            // 
            this.gaugeStyleLinearVerticalBarItem1.Id = 74;
            this.gaugeStyleLinearVerticalBarItem1.Name = "gaugeStyleLinearVerticalBarItem1";
            // 
            // imageLoadBarItem1
            // 
            this.imageLoadBarItem1.Id = 75;
            this.imageLoadBarItem1.Name = "imageLoadBarItem1";
            // 
            // imageImportBarItem1
            // 
            this.imageImportBarItem1.Id = 76;
            this.imageImportBarItem1.Name = "imageImportBarItem1";
            // 
            // imageSizeModeClipBarItem1
            // 
            this.imageSizeModeClipBarItem1.Id = 77;
            this.imageSizeModeClipBarItem1.Name = "imageSizeModeClipBarItem1";
            // 
            // imageSizeModeStretchBarItem1
            // 
            this.imageSizeModeStretchBarItem1.Id = 78;
            this.imageSizeModeStretchBarItem1.Name = "imageSizeModeStretchBarItem1";
            // 
            // imageSizeModeSqueezeBarItem1
            // 
            this.imageSizeModeSqueezeBarItem1.Id = 79;
            this.imageSizeModeSqueezeBarItem1.Name = "imageSizeModeSqueezeBarItem1";
            // 
            // imageSizeModeZoomBarItem1
            // 
            this.imageSizeModeZoomBarItem1.Id = 80;
            this.imageSizeModeZoomBarItem1.Name = "imageSizeModeZoomBarItem1";
            // 
            // imageAlignmentTopLeftBarItem1
            // 
            this.imageAlignmentTopLeftBarItem1.Id = 81;
            this.imageAlignmentTopLeftBarItem1.Name = "imageAlignmentTopLeftBarItem1";
            this.imageAlignmentTopLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterLeftBarItem1
            // 
            this.imageAlignmentCenterLeftBarItem1.Id = 82;
            this.imageAlignmentCenterLeftBarItem1.Name = "imageAlignmentCenterLeftBarItem1";
            this.imageAlignmentCenterLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomLeftBarItem1
            // 
            this.imageAlignmentBottomLeftBarItem1.Id = 83;
            this.imageAlignmentBottomLeftBarItem1.Name = "imageAlignmentBottomLeftBarItem1";
            this.imageAlignmentBottomLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopCenterBarItem1
            // 
            this.imageAlignmentTopCenterBarItem1.Id = 84;
            this.imageAlignmentTopCenterBarItem1.Name = "imageAlignmentTopCenterBarItem1";
            this.imageAlignmentTopCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterCenterBarItem1
            // 
            this.imageAlignmentCenterCenterBarItem1.Id = 85;
            this.imageAlignmentCenterCenterBarItem1.Name = "imageAlignmentCenterCenterBarItem1";
            this.imageAlignmentCenterCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomCenterBarItem1
            // 
            this.imageAlignmentBottomCenterBarItem1.Id = 86;
            this.imageAlignmentBottomCenterBarItem1.Name = "imageAlignmentBottomCenterBarItem1";
            this.imageAlignmentBottomCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopRightBarItem1
            // 
            this.imageAlignmentTopRightBarItem1.Id = 87;
            this.imageAlignmentTopRightBarItem1.Name = "imageAlignmentTopRightBarItem1";
            this.imageAlignmentTopRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterRightBarItem1
            // 
            this.imageAlignmentCenterRightBarItem1.Id = 88;
            this.imageAlignmentCenterRightBarItem1.Name = "imageAlignmentCenterRightBarItem1";
            this.imageAlignmentCenterRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomRightBarItem1
            // 
            this.imageAlignmentBottomRightBarItem1.Id = 89;
            this.imageAlignmentBottomRightBarItem1.Name = "imageAlignmentBottomRightBarItem1";
            this.imageAlignmentBottomRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // textBoxEditTextBarItem1
            // 
            this.textBoxEditTextBarItem1.Id = 90;
            this.textBoxEditTextBarItem1.Name = "textBoxEditTextBarItem1";
            // 
            // rangeFilterLineSeriesTypeBarItem1
            // 
            this.rangeFilterLineSeriesTypeBarItem1.Id = 91;
            this.rangeFilterLineSeriesTypeBarItem1.Name = "rangeFilterLineSeriesTypeBarItem1";
            // 
            // rangeFilterStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterStackedLineSeriesTypeBarItem1.Id = 92;
            this.rangeFilterStackedLineSeriesTypeBarItem1.Name = "rangeFilterStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Id = 93;
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Name = "rangeFilterFullStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterAreaSeriesTypeBarItem1
            // 
            this.rangeFilterAreaSeriesTypeBarItem1.Id = 94;
            this.rangeFilterAreaSeriesTypeBarItem1.Name = "rangeFilterAreaSeriesTypeBarItem1";
            // 
            // rangeFilterStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Id = 95;
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Name = "rangeFilterStackedAreaSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Id = 96;
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Name = "rangeFilterFullStackedAreaSeriesTypeBarItem1";
            // 
            // quickAccessUndoBarItem1
            // 
            this.quickAccessUndoBarItem1.Id = 97;
            this.quickAccessUndoBarItem1.Name = "quickAccessUndoBarItem1";
            // 
            // quickAccessRedoBarItem1
            // 
            this.quickAccessRedoBarItem1.Id = 98;
            this.quickAccessRedoBarItem1.Name = "quickAccessRedoBarItem1";
            // 
            // fileSaveCloseBarItem
            // 
            this.fileSaveCloseBarItem.Caption = "Save and Close";
            this.fileSaveCloseBarItem.Id = 99;
            this.fileSaveCloseBarItem.LargeGlyph = global::Xpand.ExpressApp.Dashboard.Win.Properties.Resources.MenuBar_SaveAndClose_32x32;
            this.fileSaveCloseBarItem.Name = "fileSaveCloseBarItem";
            this.fileSaveCloseBarItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.SaveAndClose);
            // 
            // closeBarItem
            // 
            this.closeBarItem.Caption = "Close";
            this.closeBarItem.Id = 100;
            this.closeBarItem.LargeGlyph = global::Xpand.ExpressApp.Dashboard.Win.Properties.Resources.MenuBar_Close_32x32;
            this.closeBarItem.Name = "closeBarItem";
            this.closeBarItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Close);
            // 
            // pivotToolsRibbonPageCategory1
            // 
            this.pivotToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.pivotToolsRibbonPageCategory1.Name = "pivotToolsRibbonPageCategory1";
            this.pivotToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage1});
            this.pivotToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardDesigner
            // 
            this.dashboardDesigner.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardDesigner.Location = new System.Drawing.Point(0, 144);
            this.dashboardDesigner.MenuManager = this.ribbon;
            this.dashboardDesigner.Name = "dashboardDesigner";
            this.dashboardDesigner.Size = new System.Drawing.Size(1040, 566);
            this.dashboardDesigner.TabIndex = 2;
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup1,
            this.masterFilterRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            this.dataRibbonPage1.Visible = false;
            // 
            // filteringRibbonPageGroup1
            // 
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup1.Name = "filteringRibbonPageGroup1";
            // 
            // masterFilterRibbonPageGroup1
            // 
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup1.Name = "masterFilterRibbonPageGroup1";
            // 
            // gridToolsRibbonPageCategory1
            // 
            this.gridToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.gridToolsRibbonPageCategory1.Name = "gridToolsRibbonPageCategory1";
            this.gridToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage2,
            this.layoutAndStyleRibbonPage4});
            this.gridToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage2
            // 
            this.dataRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup2,
            this.masterFilterRibbonPageGroup2,
            this.drillDownRibbonPageGroup1});
            this.dataRibbonPage2.Name = "dataRibbonPage2";
            this.dataRibbonPage2.Visible = false;
            // 
            // filteringRibbonPageGroup2
            // 
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup2.Name = "filteringRibbonPageGroup2";
            // 
            // masterFilterRibbonPageGroup2
            // 
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup2.Name = "masterFilterRibbonPageGroup2";
            // 
            // drillDownRibbonPageGroup1
            // 
            this.drillDownRibbonPageGroup1.ItemLinks.Add(this.drillDownBarItem1);
            this.drillDownRibbonPageGroup1.Name = "drillDownRibbonPageGroup1";
            // 
            // layoutAndStyleRibbonPage4
            // 
            this.layoutAndStyleRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.gridCellsRibbonPageGroup1});
            this.layoutAndStyleRibbonPage4.Name = "layoutAndStyleRibbonPage4";
            this.layoutAndStyleRibbonPage4.Visible = false;
            // 
            // gridCellsRibbonPageGroup1
            // 
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridHorizontalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridVerticalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridMergeCellsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridBandedRowsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridColumnHeadersBarItem1);
            this.gridCellsRibbonPageGroup1.Name = "gridCellsRibbonPageGroup1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage3,
            this.chartLayoutAndStyleRibbonPage1});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage3
            // 
            this.dataRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup3,
            this.masterFilterRibbonPageGroup3,
            this.drillDownRibbonPageGroup2});
            this.dataRibbonPage3.Name = "dataRibbonPage3";
            this.dataRibbonPage3.Visible = false;
            // 
            // filteringRibbonPageGroup3
            // 
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup3.Name = "filteringRibbonPageGroup3";
            // 
            // masterFilterRibbonPageGroup3
            // 
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.filterByChartSeriesBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.filterByChartArgumentsBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup3.Name = "masterFilterRibbonPageGroup3";
            // 
            // drillDownRibbonPageGroup2
            // 
            this.drillDownRibbonPageGroup2.ItemLinks.Add(this.drillDownOnChartSeriesBarItem1);
            this.drillDownRibbonPageGroup2.ItemLinks.Add(this.drillDownOnChartArgumentsBarItem1);
            this.drillDownRibbonPageGroup2.Name = "drillDownRibbonPageGroup2";
            // 
            // chartLayoutAndStyleRibbonPage1
            // 
            this.chartLayoutAndStyleRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.chartLayoutPageGroup1,
            this.chartStylePageGroup1});
            this.chartLayoutAndStyleRibbonPage1.Name = "chartLayoutAndStyleRibbonPage1";
            this.chartLayoutAndStyleRibbonPage1.Visible = false;
            // 
            // chartLayoutPageGroup1
            // 
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartRotateBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartShowLegendBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartYAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.Name = "chartLayoutPageGroup1";
            // 
            // chartStylePageGroup1
            // 
            this.chartStylePageGroup1.ItemLinks.Add(this.galleryChartSeriesTypeItem1);
            this.chartStylePageGroup1.Name = "chartStylePageGroup1";
            // 
            // piesToolsRibbonPageCategory1
            // 
            this.piesToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.piesToolsRibbonPageCategory1.Name = "piesToolsRibbonPageCategory1";
            this.piesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage4,
            this.layoutAndStyleRibbonPage1});
            this.piesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage4
            // 
            this.dataRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup4,
            this.masterFilterRibbonPageGroup4,
            this.drillDownRibbonPageGroup3});
            this.dataRibbonPage4.Name = "dataRibbonPage4";
            this.dataRibbonPage4.Visible = false;
            // 
            // filteringRibbonPageGroup4
            // 
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup4.Name = "filteringRibbonPageGroup4";
            // 
            // masterFilterRibbonPageGroup4
            // 
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.filterByPieSeriesBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.filterByPieArgumentsBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup4.Name = "masterFilterRibbonPageGroup4";
            // 
            // drillDownRibbonPageGroup3
            // 
            this.drillDownRibbonPageGroup3.ItemLinks.Add(this.drillDownOnPieSeriesBarItem1);
            this.drillDownRibbonPageGroup3.ItemLinks.Add(this.drillDownOnPieArgumentsBarItem1);
            this.drillDownRibbonPageGroup3.Name = "drillDownRibbonPageGroup3";
            // 
            // layoutAndStyleRibbonPage1
            // 
            this.layoutAndStyleRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.contentArrangementRibbonPageGroup1,
            this.pieLabelsRibbonPageGroup1,
            this.pieStyleRibbonPageGroup1});
            this.layoutAndStyleRibbonPage1.Name = "layoutAndStyleRibbonPage1";
            this.layoutAndStyleRibbonPage1.Visible = false;
            // 
            // contentArrangementRibbonPageGroup1
            // 
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInColumsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup1.Name = "contentArrangementRibbonPageGroup1";
            // 
            // pieLabelsRibbonPageGroup1
            // 
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieLabelsDataLabelsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieTooltipsBarItem1);
            this.pieLabelsRibbonPageGroup1.Name = "pieLabelsRibbonPageGroup1";
            // 
            // pieStyleRibbonPageGroup1
            // 
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStylePieBarItem1);
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStyleDonutBarItem1);
            this.pieStyleRibbonPageGroup1.Name = "pieStyleRibbonPageGroup1";
            // 
            // gaugesToolsRibbonPageCategory1
            // 
            this.gaugesToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.gaugesToolsRibbonPageCategory1.Name = "gaugesToolsRibbonPageCategory1";
            this.gaugesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage5,
            this.layoutAndStyleRibbonPage2});
            this.gaugesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage5
            // 
            this.dataRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup5,
            this.masterFilterRibbonPageGroup5,
            this.drillDownRibbonPageGroup4});
            this.dataRibbonPage5.Name = "dataRibbonPage5";
            this.dataRibbonPage5.Visible = false;
            // 
            // filteringRibbonPageGroup5
            // 
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup5.Name = "filteringRibbonPageGroup5";
            // 
            // masterFilterRibbonPageGroup5
            // 
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup5.Name = "masterFilterRibbonPageGroup5";
            // 
            // drillDownRibbonPageGroup4
            // 
            this.drillDownRibbonPageGroup4.ItemLinks.Add(this.drillDownBarItem1);
            this.drillDownRibbonPageGroup4.Name = "drillDownRibbonPageGroup4";
            // 
            // layoutAndStyleRibbonPage2
            // 
            this.layoutAndStyleRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.contentArrangementRibbonPageGroup2,
            this.gaugeStyleRibbonPageGroup1});
            this.layoutAndStyleRibbonPage2.Name = "layoutAndStyleRibbonPage2";
            this.layoutAndStyleRibbonPage2.Visible = false;
            // 
            // contentArrangementRibbonPageGroup2
            // 
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInColumsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup2.Name = "contentArrangementRibbonPageGroup2";
            // 
            // gaugeStyleRibbonPageGroup1
            // 
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleFullCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleHalfCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.gaugeStyleRibbonPageGroup1.Name = "gaugeStyleRibbonPageGroup1";
            // 
            // cardsToolsRibbonPageCategory1
            // 
            this.cardsToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.cardsToolsRibbonPageCategory1.Name = "cardsToolsRibbonPageCategory1";
            this.cardsToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage6,
            this.layoutAndStyleRibbonPage3});
            this.cardsToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage6
            // 
            this.dataRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup6,
            this.masterFilterRibbonPageGroup6,
            this.drillDownRibbonPageGroup5});
            this.dataRibbonPage6.Name = "dataRibbonPage6";
            this.dataRibbonPage6.Visible = false;
            // 
            // filteringRibbonPageGroup6
            // 
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup6.Name = "filteringRibbonPageGroup6";
            // 
            // masterFilterRibbonPageGroup6
            // 
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.masterFilterRibbonPageGroup6.Name = "masterFilterRibbonPageGroup6";
            // 
            // drillDownRibbonPageGroup5
            // 
            this.drillDownRibbonPageGroup5.ItemLinks.Add(this.drillDownBarItem1);
            this.drillDownRibbonPageGroup5.Name = "drillDownRibbonPageGroup5";
            // 
            // layoutAndStyleRibbonPage3
            // 
            this.layoutAndStyleRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.contentArrangementRibbonPageGroup3});
            this.layoutAndStyleRibbonPage3.Name = "layoutAndStyleRibbonPage3";
            this.layoutAndStyleRibbonPage3.Visible = false;
            // 
            // contentArrangementRibbonPageGroup3
            // 
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInColumsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup3.Name = "contentArrangementRibbonPageGroup3";
            // 
            // rangeFilterToolsRibbonPageCategory1
            // 
            this.rangeFilterToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.rangeFilterToolsRibbonPageCategory1.Name = "rangeFilterToolsRibbonPageCategory1";
            this.rangeFilterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage7,
            this.rangeFilterStyleRibbonPage1});
            this.rangeFilterToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage7
            // 
            this.dataRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup7,
            this.masterFilterRibbonPageGroup7});
            this.dataRibbonPage7.Name = "dataRibbonPage7";
            this.dataRibbonPage7.Visible = false;
            // 
            // filteringRibbonPageGroup7
            // 
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup7.Name = "filteringRibbonPageGroup7";
            // 
            // masterFilterRibbonPageGroup7
            // 
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.masterFilterRibbonPageGroup7.Name = "masterFilterRibbonPageGroup7";
            // 
            // rangeFilterStyleRibbonPage1
            // 
            this.rangeFilterStyleRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rangeFilterSeriesTypeRibbonPageGroup1});
            this.rangeFilterStyleRibbonPage1.Name = "rangeFilterStyleRibbonPage1";
            this.rangeFilterStyleRibbonPage1.Visible = false;
            // 
            // rangeFilterSeriesTypeRibbonPageGroup1
            // 
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.Name = "rangeFilterSeriesTypeRibbonPageGroup1";
            // 
            // imageToolsRibbonPageCategory1
            // 
            this.imageToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.imageToolsRibbonPageCategory1.Name = "imageToolsRibbonPageCategory1";
            this.imageToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.imageOptionsRibbonPage1});
            this.imageToolsRibbonPageCategory1.Visible = false;
            // 
            // imageOptionsRibbonPage1
            // 
            this.imageOptionsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.imageOpenRibbonPageGroup1,
            this.imageSizeModeRibbonPageGroup1,
            this.imageAlignmentRibbonPageGroup1});
            this.imageOptionsRibbonPage1.Name = "imageOptionsRibbonPage1";
            this.imageOptionsRibbonPage1.Visible = false;
            // 
            // imageOpenRibbonPageGroup1
            // 
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageLoadBarItem1);
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageImportBarItem1);
            this.imageOpenRibbonPageGroup1.Name = "imageOpenRibbonPageGroup1";
            // 
            // imageSizeModeRibbonPageGroup1
            // 
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeClipBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeStretchBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeSqueezeBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeZoomBarItem1);
            this.imageSizeModeRibbonPageGroup1.Name = "imageSizeModeRibbonPageGroup1";
            // 
            // imageAlignmentRibbonPageGroup1
            // 
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.Name = "imageAlignmentRibbonPageGroup1";
            // 
            // textBoxToolsRibbonPageCategory1
            // 
            this.textBoxToolsRibbonPageCategory1.Control = this.dashboardDesigner;
            this.textBoxToolsRibbonPageCategory1.Name = "textBoxToolsRibbonPageCategory1";
            this.textBoxToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.textBoxFormatRibbonPage1});
            this.textBoxToolsRibbonPageCategory1.Visible = false;
            // 
            // textBoxFormatRibbonPage1
            // 
            this.textBoxFormatRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.textBoxSettingsRibbonPageGroup1});
            this.textBoxFormatRibbonPage1.Name = "textBoxFormatRibbonPage1";
            this.textBoxFormatRibbonPage1.Visible = false;
            // 
            // textBoxSettingsRibbonPageGroup1
            // 
            this.textBoxSettingsRibbonPageGroup1.ItemLinks.Add(this.textBoxEditTextBarItem1);
            this.textBoxSettingsRibbonPageGroup1.Name = "textBoxSettingsRibbonPageGroup1";
            // 
            // dashboardRibbonPage1
            // 
            this.dashboardRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.fileRibbonPageGroup1,
            this.historyRibbonPageGroup1,
            this.insertRibbonPageGroup1,
            this.itemsRibbonPageGroup1,
            this.quickAccessHistoryRibbonPageGroup1,
            this.closeGroup});
            this.dashboardRibbonPage1.Name = "dashboardRibbonPage1";
            // 
            // fileRibbonPageGroup1
            // 
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveBarItem);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.fileSaveCloseBarItem);
            this.fileRibbonPageGroup1.Name = "fileRibbonPageGroup1";
            // 
            // historyRibbonPageGroup1
            // 
            this.historyRibbonPageGroup1.ItemLinks.Add(this.undoBarItem1);
            this.historyRibbonPageGroup1.ItemLinks.Add(this.redoBarItem1);
            this.historyRibbonPageGroup1.Name = "historyRibbonPageGroup1";
            // 
            // insertRibbonPageGroup1
            // 
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPivotBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGridBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChartBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPiesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGaugesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertCardsBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertImageBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertRangeFilterBarItem1);
            this.insertRibbonPageGroup1.Name = "insertRibbonPageGroup1";
            // 
            // itemsRibbonPageGroup1
            // 
            this.itemsRibbonPageGroup1.ItemLinks.Add(this.duplicateItemBarItem1);
            this.itemsRibbonPageGroup1.ItemLinks.Add(this.deleteItemBarItem1);
            this.itemsRibbonPageGroup1.Name = "itemsRibbonPageGroup1";
            // 
            // quickAccessHistoryRibbonPageGroup1
            // 
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.Name = "quickAccessHistoryRibbonPageGroup1";
            this.quickAccessHistoryRibbonPageGroup1.Visible = false;
            // 
            // closeGroup
            // 
            this.closeGroup.ItemLinks.Add(this.closeBarItem);
            this.closeGroup.Name = "closeGroup";
            this.closeGroup.Text = "Close";
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 710);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1040, 31);
            // 
            // dashboardBarController1
            // 
            this.dashboardBarController1.BarItems.Add(this.fileSaveBarItem);
            this.dashboardBarController1.BarItems.Add(this.undoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.redoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPivotBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGridBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertChartBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertPiesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertGaugesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertCardsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertImageBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertTextBoxBarItem1);
            this.dashboardBarController1.BarItems.Add(this.insertRangeFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.duplicateItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.deleteItemBarItem1);
            this.dashboardBarController1.BarItems.Add(this.dashboardSkinsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.editFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.clearFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.ignoreMasterFiltersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.masterFilterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.crossDataSourceFilteringBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByChartSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByChartArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByPieSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.filterByPieArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnChartSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnChartArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnPieSeriesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.drillDownOnPieArgumentsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentAutoArrangeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInColumsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangeInRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.contentArrangementCountBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridHorizontalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridVerticalLinesBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridMergeCellsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridBandedRowsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gridColumnHeadersBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartRotateBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartShowLegendBarItem1);
            this.dashboardBarController1.BarItems.Add(this.chartYAxisSettingsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.galleryChartSeriesTypeItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieTooltipsBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsNoneBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndValueBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStylePieBarItem1);
            this.dashboardBarController1.BarItems.Add(this.pieStyleDonutBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleFullCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleHalfCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageLoadBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageImportBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeClipBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeStretchBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeSqueezeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageSizeModeZoomBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomLeftBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomCenterBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentTopRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentCenterRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.imageAlignmentBottomRightBarItem1);
            this.dashboardBarController1.BarItems.Add(this.textBoxEditTextBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessUndoBarItem1);
            this.dashboardBarController1.BarItems.Add(this.quickAccessRedoBarItem1);
            this.dashboardBarController1.Control = this.dashboardDesigner;
            // 
            // DashboardDesignerForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1040, 741);
            this.Controls.Add(this.dashboardDesigner);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.Name = "DashboardDesignerForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "DashboardDesignerForm";
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarController1)).EndInit();
            this.ResumeLayout(false);

        }
Esempio n. 28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(MenuSatisVeSiparisYonetimi));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.labelControl2         = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1         = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location   = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.galleryControl1);
     this.splitContainer1.Panel1.Controls.Add(this.labelControl2);
     this.splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(20);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.labelControl1);
     this.splitContainer1.Size             = new System.Drawing.Size(772, 665);
     this.splitContainer1.SplitterDistance = 414;
     this.splitContainer1.TabIndex         = 3;
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Top;
     //
     //
     //
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.galleryControl1.Gallery.AutoFitColumns          = false;
     this.galleryControl1.Gallery.AutoSize                = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
     this.galleryControl1.Gallery.BackColor               = System.Drawing.Color.Transparent;
     this.galleryControl1.Gallery.ColumnCount             = 1;
     this.galleryControl1.Gallery.DistanceItemImageToText = 20;
     this.galleryControl1.Gallery.DrawImageBackground     = false;
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Satışa Hazırlar";
     galleryItem1.Description  = "Satış durumuna hazır olan stoklarınızı burada satışa çevirebilir, teklif verebili" +
                                 "r veya rezerve edebilirsiniz.";
     galleryItem1.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
     galleryItem1.Value       = 40;
     galleryItem2.Caption     = "Tüm Satışlar";
     galleryItem2.Description = "Satılmış stokların detaylarını müşteri bağlantılarını, ödemeleri, taksitleri ve d" +
                                "aha bir çok şeyi bu ekrandan takip edebilirsiniz.";
     galleryItem2.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
     galleryItem2.ImageIndex  = 1;
     galleryItem2.Value       = 41;
     galleryItem3.Caption     = "Satış İptalleri";
     galleryItem3.Description = "İptale dönüşmüş satışların durumu hakkında detaylı bilgi ve süreç takibini burada" +
                                "n gerçekleştire bilirsiniz.";
     galleryItem3.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
     galleryItem3.Value       = 42;
     galleryItem4.Caption     = "Verilen Teklifler";
     galleryItem4.Description = "Satışa hazırlardan teklif edilmiş olan stokların durumunu ve takibini buradan kon" +
                                "trol edebilirsiniz.";
     galleryItem4.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
     galleryItem4.Value       = 43;
     galleryItem5.Caption     = "Rezerveler";
     galleryItem5.Description = "Talep edilmiş olan rezerveleri buradan takip edebilirsiniz. Müşteri durumu ve rez" +
                                "erve ürününün durumunu ve bilgilerine erişebilirsiniz.";
     galleryItem5.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
     galleryItem5.Value       = 44;
     galleryItem6.Caption     = "Rezerve İptalleri";
     galleryItem6.Description = "Verilen rezervelerin iptal olma durumundaki hareketlerini buradan kontrol edip de" +
                                "taylı bilgi alabilirsiniz.";
     galleryItem6.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
     galleryItem6.Value       = 45;
     galleryItem7.Caption     = "Raporlar";
     galleryItem7.Description = "CRM verilerine özgü detaylı raporlar ve hareket bilgileri alabilirsiniz. Kendi fi" +
                                "ltrelerinizi kaydedip, kendi raporlarınızı yapabilirsiniz.";
     galleryItem7.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem7.Image")));
     galleryItem7.Value       = 46;
     galleryItem8.Caption     = "Tanımlamalar";
     galleryItem8.Description = "Çeşitli dinamik alanların verilerini ve içeriklerini tanımlaya bilirsiniz. İhtiya" +
                                "çlarınız doğrultusunda kategoriler yaratabilirsiniz.";
     galleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem8.Image")));
     galleryItem8.Value = 47;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7,
         galleryItem8
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ItemImageLayout   = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.galleryControl1.Gallery.ShowGroupCaption  = false;
     this.galleryControl1.Gallery.ShowItemText      = true;
     this.galleryControl1.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
     this.galleryControl1.Gallery.ItemClick        += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl1_Gallery_ItemClick);
     this.galleryControl1.Location = new System.Drawing.Point(20, 58);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(374, 410);
     this.galleryControl1.TabIndex = 1;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(0, 0);
     this.galleryControlClient1.Size           = new System.Drawing.Size(374, 10000);
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.labelControl2.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.Dock            = System.Windows.Forms.DockStyle.Top;
     this.labelControl2.LineLocation    = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible     = true;
     this.labelControl2.Location        = new System.Drawing.Point(20, 20);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.ShowLineShadow  = false;
     this.labelControl2.Size            = new System.Drawing.Size(374, 38);
     this.labelControl2.TabIndex        = 0;
     this.labelControl2.Text            = "Satış ve Sipariş Yönetimi";
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.Dock            = System.Windows.Forms.DockStyle.Left;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
     this.labelControl1.LineStyle       = System.Drawing.Drawing2D.DashStyle.DashDot;
     this.labelControl1.LineVisible     = true;
     this.labelControl1.Location        = new System.Drawing.Point(0, 0);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(4, 665);
     this.labelControl1.TabIndex        = 0;
     //
     // MenuSatisVeSiparisYonetimi
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Name = "MenuSatisVeSiparisYonetimi";
     this.Size = new System.Drawing.Size(772, 665);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 29
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.backstageViewControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
            this.bvbiExit = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bbiRotateLayout = new DevExpress.XtraBars.BarButtonItem();
            this.bbiFlipLayout = new DevExpress.XtraBars.BarButtonItem();
            this.bciShowUnreadMessageCount = new DevExpress.XtraBars.BarCheckItem();
            this.bciShowAllMessageCount = new DevExpress.XtraBars.BarCheckItem();
            this.bbiDelete = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNew = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReply = new DevExpress.XtraBars.BarButtonItem();
            this.bbiForward = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReplyAll = new DevExpress.XtraBars.BarButtonItem();
            this.bbiUnreadRead = new DevExpress.XtraBars.BarButtonItem();
            this.bbiPriority = new DevExpress.XtraBars.BarButtonItem();
            this.bsiNavigation = new DevExpress.XtraBars.BarSubItem();
            this.bbiCloseSearch = new DevExpress.XtraBars.BarButtonItem();
            this.bbiShowUnread = new DevExpress.XtraBars.BarButtonItem();
            this.bbiImportant = new DevExpress.XtraBars.BarButtonItem();
            this.bbiHasAttachment = new DevExpress.XtraBars.BarButtonItem();
            this.bbiResetColumnsToDefault = new DevExpress.XtraBars.BarButtonItem();
            this.bsiColumns = new DevExpress.XtraBars.BarSubItem();
            this.bbiSubjectColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiFromColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDateColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiPriorityColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiAttachmentColumn = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDate = new DevExpress.XtraBars.BarButtonItem();
            this.bbiClearFilter = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewFeed = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditFeed = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteFeed = new DevExpress.XtraBars.BarButtonItem();
            this.bbiRefreshFeed = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiCurrentView = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bsiInfo = new DevExpress.XtraBars.BarStaticItem();
            this.beiZoom = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.bbiNormal = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReading = new DevExpress.XtraBars.BarButtonItem();
            this.bsiTemp = new DevExpress.XtraBars.BarStaticItem();
            this.bbiManageView = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSaveCurrentView = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiCurrentViewTasks = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bbiTodayFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiTomorrowFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiThisWeekFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNextWeekFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNoDateFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiCustomFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewTask = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditTask = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteTask = new DevExpress.XtraBars.BarButtonItem();
            this.newAppointmentItem1 = new DevExpress.XtraScheduler.UI.NewAppointmentItem();
            this.newRecurringAppointmentItem1 = new DevExpress.XtraScheduler.UI.NewRecurringAppointmentItem();
            this.navigateViewBackwardItem1 = new DevExpress.XtraScheduler.UI.NavigateViewBackwardItem();
            this.navigateViewForwardItem1 = new DevExpress.XtraScheduler.UI.NavigateViewForwardItem();
            this.gotoTodayItem1 = new DevExpress.XtraScheduler.UI.GotoTodayItem();
            this.viewZoomInItem1 = new DevExpress.XtraScheduler.UI.ViewZoomInItem();
            this.viewZoomOutItem1 = new DevExpress.XtraScheduler.UI.ViewZoomOutItem();
            this.switchToDayViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToDayViewItem();
            this.switchToWorkWeekViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToWorkWeekViewItem();
            this.switchToWeekViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToWeekViewItem();
            this.switchToMonthViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToMonthViewItem();
            this.switchToTimelineViewItem1 = new DevExpress.XtraScheduler.UI.SwitchToTimelineViewItem();
            this.groupByNoneItem1 = new DevExpress.XtraScheduler.UI.GroupByNoneItem();
            this.groupByDateItem1 = new DevExpress.XtraScheduler.UI.GroupByDateItem();
            this.groupByResourceItem1 = new DevExpress.XtraScheduler.UI.GroupByResourceItem();
            this.switchTimeScalesItem1 = new DevExpress.XtraScheduler.UI.SwitchTimeScalesItem();
            this.switchCompressWeekendItem1 = new DevExpress.XtraScheduler.UI.SwitchCompressWeekendItem();
            this.switchShowWorkTimeOnlyItem1 = new DevExpress.XtraScheduler.UI.SwitchShowWorkTimeOnlyItem();
            this.editAppointmentQueryItem1 = new DevExpress.XtraScheduler.UI.EditAppointmentQueryItem();
            this.editOccurrenceUICommandItem1 = new DevExpress.XtraScheduler.UI.EditOccurrenceUICommandItem();
            this.editSeriesUICommandItem1 = new DevExpress.XtraScheduler.UI.EditSeriesUICommandItem();
            this.deleteAppointmentsItem1 = new DevExpress.XtraScheduler.UI.DeleteAppointmentsItem();
            this.deleteOccurrenceItem1 = new DevExpress.XtraScheduler.UI.DeleteOccurrenceItem();
            this.deleteSeriesItem1 = new DevExpress.XtraScheduler.UI.DeleteSeriesItem();
            this.splitAppointmentItem1 = new DevExpress.XtraScheduler.UI.SplitAppointmentItem();
            this.changeAppointmentStatusItem1 = new DevExpress.XtraScheduler.UI.ChangeAppointmentStatusItem();
            this.changeAppointmentLabelItem1 = new DevExpress.XtraScheduler.UI.ChangeAppointmentLabelItem();
            this.toggleRecurrenceItem1 = new DevExpress.XtraScheduler.UI.ToggleRecurrenceItem();
            this.changeAppointmentReminderItem1 = new DevExpress.XtraScheduler.UI.ChangeAppointmentReminderItem();
            this.repositoryItemDuration1 = new DevExpress.XtraScheduler.UI.RepositoryItemDuration();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.helpControl1 = new DevExpress.MailClient.Win.Controls.HelpControl();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.printControl1 = new DevExpress.MailClient.Win.Controls.PrintControl();
            this.exportControl1 = new DevExpress.MailClient.Win.Controls.ExportControl();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.nbgSystem = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer1 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucSystemTree1 = new DevExpress.MailClient.Win.Controls.ucSystemTree();
            this.navBarGroupControlContainer2 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucLineTree1 = new DevExpress.MailClient.Win.Controls.ucLineTree();
            this.navBarGroupControlContainer3 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucPlanTree1 = new DevExpress.MailClient.Win.Controls.ucPlanTree();
            this.navBarGroupControlContainer4 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucDeviceTree1 = new DevExpress.MailClient.Win.Controls.ucDeviceTree();
            this.navBarControl2 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroupControlContainer5 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucReportTree1 = new DevExpress.MailClient.Win.Controls.ucReportTree();
            this.navBarGroupControlContainer7 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucMonitorTree1 = new DevExpress.MailClient.Win.Controls.ucMonitorTree();
            this.navBarGroupControlContainer6 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.ucProcessTree1 = new DevExpress.MailClient.Win.Controls.ucProcessTree();
            this.nbgMonitor = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgPlan = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgReport = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgLine = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgDevice = new DevExpress.XtraNavBar.NavBarGroup();
            this.nbgProcess = new DevExpress.XtraNavBar.NavBarGroup();
            this.pcMain = new DevExpress.XtraEditors.PanelControl();
            this.pmTreeView = new DevExpress.XtraBars.PopupMenu(this.components);
            this.pmMessage = new DevExpress.XtraBars.PopupMenu(this.components);
            this.pmFlagStatus = new DevExpress.XtraBars.PopupMenu(this.components);
            this.schedulerBarController1 = new DevExpress.XtraScheduler.UI.SchedulerBarController();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDuration1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.navBarControl1.SuspendLayout();
            this.navBarGroupControlContainer1.SuspendLayout();
            this.navBarGroupControlContainer2.SuspendLayout();
            this.navBarGroupControlContainer3.SuspendLayout();
            this.navBarGroupControlContainer4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl2)).BeginInit();
            this.navBarGroupControlContainer5.SuspendLayout();
            this.navBarGroupControlContainer7.SuspendLayout();
            this.navBarGroupControlContainer6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pcMain)).BeginInit();
            this.pcMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pmTreeView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMessage)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmFlagStatus)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.schedulerBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.backstageViewControl1;
            this.ribbonControl1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories1"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories2"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories3"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories4")))});
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.ExpandCollapseItem.Name = "";
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.rgbiSkins,
            this.bbiRotateLayout,
            this.bbiFlipLayout,
            this.bciShowUnreadMessageCount,
            this.bciShowAllMessageCount,
            this.bbiDelete,
            this.bbiNew,
            this.bbiReply,
            this.bbiForward,
            this.bbiReplyAll,
            this.bbiUnreadRead,
            this.bbiPriority,
            this.bsiNavigation,
            this.bbiCloseSearch,
            this.bbiShowUnread,
            this.bbiImportant,
            this.bbiHasAttachment,
            this.bbiResetColumnsToDefault,
            this.bsiColumns,
            this.bbiSubjectColumn,
            this.bbiFromColumn,
            this.bbiDateColumn,
            this.bbiPriorityColumn,
            this.bbiAttachmentColumn,
            this.bbiDate,
            this.bbiClearFilter,
            this.bbiNewFeed,
            this.bbiEditFeed,
            this.bbiDeleteFeed,
            this.bbiRefreshFeed,
            this.rgbiCurrentView,
            this.bsiInfo,
            this.beiZoom,
            this.bbiNormal,
            this.bbiReading,
            this.bsiTemp,
            this.bbiManageView,
            this.bbiSaveCurrentView,
            this.rgbiCurrentViewTasks,
            this.bbiTodayFlag,
            this.bbiTomorrowFlag,
            this.bbiThisWeekFlag,
            this.bbiNextWeekFlag,
            this.bbiNoDateFlag,
            this.bbiCustomFlag,
            this.bbiNewContact,
            this.bbiEditContact,
            this.bbiDeleteContact,
            this.bbiNewTask,
            this.bbiEditTask,
            this.bbiDeleteTask,
            this.newAppointmentItem1,
            this.newRecurringAppointmentItem1,
            this.navigateViewBackwardItem1,
            this.navigateViewForwardItem1,
            this.gotoTodayItem1,
            this.viewZoomInItem1,
            this.viewZoomOutItem1,
            this.switchToDayViewItem1,
            this.switchToWorkWeekViewItem1,
            this.switchToWeekViewItem1,
            this.switchToMonthViewItem1,
            this.switchToTimelineViewItem1,
            this.groupByNoneItem1,
            this.groupByDateItem1,
            this.groupByResourceItem1,
            this.switchTimeScalesItem1,
            this.switchCompressWeekendItem1,
            this.switchShowWorkTimeOnlyItem1,
            this.editAppointmentQueryItem1,
            this.editOccurrenceUICommandItem1,
            this.editSeriesUICommandItem1,
            this.deleteAppointmentsItem1,
            this.deleteOccurrenceItem1,
            this.deleteSeriesItem1,
            this.splitAppointmentItem1,
            this.changeAppointmentStatusItem1,
            this.changeAppointmentLabelItem1,
            this.toggleRecurrenceItem1,
            this.changeAppointmentReminderItem1});
            resources.ApplyResources(this.ribbonControl1, "ribbonControl1");
            this.ribbonControl1.MaxItemId = 96;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemZoomTrackBar1,
            this.repositoryItemSpinEdit1,
            this.repositoryItemDuration1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.TransparentEditors = true;
            this.ribbonControl1.BeforeApplicationButtonContentControlShow += new System.EventHandler(this.ribbonControl1_BeforeApplicationButtonContentControlShow);
            this.ribbonControl1.ShowCustomizationMenu += new DevExpress.XtraBars.Ribbon.RibbonCustomizationMenuEventHandler(this.ribbonControl1_ShowCustomizationMenu);
            // 
            // backstageViewControl1
            // 
            this.backstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.backstageViewControl1.Items.Add(this.bvbiExit);
            resources.ApplyResources(this.backstageViewControl1, "backstageViewControl1");
            this.backstageViewControl1.Name = "backstageViewControl1";
            this.backstageViewControl1.Ribbon = this.ribbonControl1;
            this.backstageViewControl1.SelectedTab = null;
            this.backstageViewControl1.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.backstageViewControl1_ItemClick);
            // 
            // bvbiExit
            // 
            resources.ApplyResources(this.bvbiExit, "bvbiExit");
            this.bvbiExit.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Close_16x16;
            this.bvbiExit.Name = "bvbiExit";
            this.bvbiExit.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.bvbiExit_ItemClick);
            // 
            // rgbiSkins
            // 
            resources.ApplyResources(this.rgbiSkins, "rgbiSkins");
            this.rgbiSkins.Id = 1;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // bbiRotateLayout
            // 
            resources.ApplyResources(this.bbiRotateLayout, "bbiRotateLayout");
            this.bbiRotateLayout.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutRotate_16x16;
            this.bbiRotateLayout.Id = 2;
            this.bbiRotateLayout.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutRotate_32x32;
            this.bbiRotateLayout.Name = "bbiRotateLayout";
            // 
            // bbiFlipLayout
            // 
            resources.ApplyResources(this.bbiFlipLayout, "bbiFlipLayout");
            this.bbiFlipLayout.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutFlip_16x16;
            this.bbiFlipLayout.Id = 3;
            this.bbiFlipLayout.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.LayoutFlip_32x32;
            this.bbiFlipLayout.Name = "bbiFlipLayout";
            // 
            // bciShowUnreadMessageCount
            // 
            resources.ApplyResources(this.bciShowUnreadMessageCount, "bciShowUnreadMessageCount");
            this.bciShowUnreadMessageCount.CloseSubMenuOnClick = false;
            this.bciShowUnreadMessageCount.Id = 4;
            this.bciShowUnreadMessageCount.Name = "bciShowUnreadMessageCount";
            this.bciShowUnreadMessageCount.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.bciShowUnreadMessageCount_CheckedChanged);
            // 
            // bciShowAllMessageCount
            // 
            resources.ApplyResources(this.bciShowAllMessageCount, "bciShowAllMessageCount");
            this.bciShowAllMessageCount.CloseSubMenuOnClick = false;
            this.bciShowAllMessageCount.Id = 5;
            this.bciShowAllMessageCount.Name = "bciShowAllMessageCount";
            this.bciShowAllMessageCount.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.bciShowAllMessageCount_CheckedChanged);
            // 
            // bbiDelete
            // 
            resources.ApplyResources(this.bbiDelete, "bbiDelete");
            this.bbiDelete.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDelete.Id = 6;
            this.bbiDelete.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D));
            this.bbiDelete.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDelete.Name = "bbiDelete";
            // 
            // bbiNew
            // 
            resources.ApplyResources(this.bbiNew, "bbiNew");
            this.bbiNew.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_16x16;
            this.bbiNew.Id = 7;
            this.bbiNew.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.bbiNew.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewMail_32x32;
            this.bbiNew.Name = "bbiNew";
            // 
            // bbiReply
            // 
            resources.ApplyResources(this.bbiReply, "bbiReply");
            this.bbiReply.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Reply;
            this.bbiReply.Id = 8;
            this.bbiReply.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R));
            this.bbiReply.Name = "bbiReply";
            // 
            // bbiForward
            // 
            resources.ApplyResources(this.bbiForward, "bbiForward");
            this.bbiForward.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Forward;
            this.bbiForward.Id = 9;
            this.bbiForward.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F));
            this.bbiForward.Name = "bbiForward";
            // 
            // bbiReplyAll
            // 
            resources.ApplyResources(this.bbiReplyAll, "bbiReplyAll");
            this.bbiReplyAll.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.ReplyAll;
            this.bbiReplyAll.Id = 10;
            this.bbiReplyAll.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) 
                | System.Windows.Forms.Keys.R));
            this.bbiReplyAll.Name = "bbiReplyAll";
            // 
            // bbiUnreadRead
            // 
            resources.ApplyResources(this.bbiUnreadRead, "bbiUnreadRead");
            this.bbiUnreadRead.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Mail_16x16;
            this.bbiUnreadRead.Id = 12;
            this.bbiUnreadRead.Name = "bbiUnreadRead";
            // 
            // bbiPriority
            // 
            this.bbiPriority.ActAsDropDown = true;
            this.bbiPriority.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            resources.ApplyResources(this.bbiPriority, "bbiPriority");
            this.bbiPriority.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Priority_16x16;
            this.bbiPriority.Id = 15;
            this.bbiPriority.Name = "bbiPriority";
            // 
            // bsiNavigation
            // 
            resources.ApplyResources(this.bsiNavigation, "bsiNavigation");
            this.bsiNavigation.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NavigationBar_16x16;
            this.bsiNavigation.Id = 16;
            this.bsiNavigation.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NavigationBar_32x32;
            this.bsiNavigation.Name = "bsiNavigation";
            // 
            // bbiCloseSearch
            // 
            resources.ApplyResources(this.bbiCloseSearch, "bbiCloseSearch");
            this.bbiCloseSearch.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Close_16x16;
            this.bbiCloseSearch.Id = 17;
            this.bbiCloseSearch.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Close_32x32;
            this.bbiCloseSearch.Name = "bbiCloseSearch";
            // 
            // bbiShowUnread
            // 
            resources.ApplyResources(this.bbiShowUnread, "bbiShowUnread");
            this.bbiShowUnread.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Mail_16x16;
            this.bbiShowUnread.Id = 18;
            this.bbiShowUnread.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Mail_32x32;
            this.bbiShowUnread.Name = "bbiShowUnread";
            // 
            // bbiImportant
            // 
            resources.ApplyResources(this.bbiImportant, "bbiImportant");
            this.bbiImportant.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Important_16x16;
            this.bbiImportant.Id = 19;
            this.bbiImportant.Name = "bbiImportant";
            // 
            // bbiHasAttachment
            // 
            resources.ApplyResources(this.bbiHasAttachment, "bbiHasAttachment");
            this.bbiHasAttachment.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.AttachmentObject_16x16;
            this.bbiHasAttachment.Id = 20;
            this.bbiHasAttachment.Name = "bbiHasAttachment";
            // 
            // bbiResetColumnsToDefault
            // 
            resources.ApplyResources(this.bbiResetColumnsToDefault, "bbiResetColumnsToDefault");
            this.bbiResetColumnsToDefault.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.ResetToDefault_16x16;
            this.bbiResetColumnsToDefault.Id = 23;
            this.bbiResetColumnsToDefault.Name = "bbiResetColumnsToDefault";
            // 
            // bsiColumns
            // 
            resources.ApplyResources(this.bsiColumns, "bsiColumns");
            this.bsiColumns.Id = 24;
            this.bsiColumns.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiSubjectColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiFromColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiDateColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiPriorityColumn),
            new DevExpress.XtraBars.LinkPersistInfo(this.bbiAttachmentColumn)});
            this.bsiColumns.Name = "bsiColumns";
            // 
            // bbiSubjectColumn
            // 
            this.bbiSubjectColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiSubjectColumn, "bbiSubjectColumn");
            this.bbiSubjectColumn.CloseSubMenuOnClick = false;
            this.bbiSubjectColumn.Id = 25;
            this.bbiSubjectColumn.Name = "bbiSubjectColumn";
            // 
            // bbiFromColumn
            // 
            this.bbiFromColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiFromColumn, "bbiFromColumn");
            this.bbiFromColumn.CloseSubMenuOnClick = false;
            this.bbiFromColumn.Id = 26;
            this.bbiFromColumn.Name = "bbiFromColumn";
            // 
            // bbiDateColumn
            // 
            this.bbiDateColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiDateColumn, "bbiDateColumn");
            this.bbiDateColumn.CloseSubMenuOnClick = false;
            this.bbiDateColumn.Id = 27;
            this.bbiDateColumn.Name = "bbiDateColumn";
            // 
            // bbiPriorityColumn
            // 
            this.bbiPriorityColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiPriorityColumn, "bbiPriorityColumn");
            this.bbiPriorityColumn.CloseSubMenuOnClick = false;
            this.bbiPriorityColumn.Id = 28;
            this.bbiPriorityColumn.Name = "bbiPriorityColumn";
            // 
            // bbiAttachmentColumn
            // 
            this.bbiAttachmentColumn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiAttachmentColumn, "bbiAttachmentColumn");
            this.bbiAttachmentColumn.CloseSubMenuOnClick = false;
            this.bbiAttachmentColumn.Id = 29;
            this.bbiAttachmentColumn.Name = "bbiAttachmentColumn";
            // 
            // bbiDate
            // 
            this.bbiDate.ActAsDropDown = true;
            this.bbiDate.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            resources.ApplyResources(this.bbiDate, "bbiDate");
            this.bbiDate.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Today_16x16;
            this.bbiDate.Id = 30;
            this.bbiDate.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            this.bbiDate.Name = "bbiDate";
            // 
            // bbiClearFilter
            // 
            resources.ApplyResources(this.bbiClearFilter, "bbiClearFilter");
            this.bbiClearFilter.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiClearFilter.Id = 31;
            this.bbiClearFilter.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiClearFilter.Name = "bbiClearFilter";
            // 
            // bbiNewFeed
            // 
            resources.ApplyResources(this.bbiNewFeed, "bbiNewFeed");
            this.bbiNewFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewFeed_16x16;
            this.bbiNewFeed.Id = 32;
            this.bbiNewFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewFeed_32x32;
            this.bbiNewFeed.Name = "bbiNewFeed";
            // 
            // bbiEditFeed
            // 
            resources.ApplyResources(this.bbiEditFeed, "bbiEditFeed");
            this.bbiEditFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.EditFeed_16x16;
            this.bbiEditFeed.Id = 33;
            this.bbiEditFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.EditFeed_32x32;
            this.bbiEditFeed.Name = "bbiEditFeed";
            // 
            // bbiDeleteFeed
            // 
            resources.ApplyResources(this.bbiDeleteFeed, "bbiDeleteFeed");
            this.bbiDeleteFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteFeed.Id = 34;
            this.bbiDeleteFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteFeed.Name = "bbiDeleteFeed";
            // 
            // bbiRefreshFeed
            // 
            resources.ApplyResources(this.bbiRefreshFeed, "bbiRefreshFeed");
            this.bbiRefreshFeed.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Refresh_16x16;
            this.bbiRefreshFeed.Id = 35;
            this.bbiRefreshFeed.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Refresh_32x32;
            this.bbiRefreshFeed.Name = "bbiRefreshFeed";
            // 
            // rgbiCurrentView
            // 
            resources.ApplyResources(this.rgbiCurrentView, "rgbiCurrentView");
            // 
            // rgbiCurrentView
            // 
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font")));
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Font")));
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font")));
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.ColumnCount = 4;
            resources.ApplyResources(galleryItemGroup1, "galleryItemGroup1");
            resources.ApplyResources(galleryItem1, "galleryItem1");
            galleryItem1.Checked = true;
            galleryItem1.Image = global::DevExpress.MailClient.Win.Properties.Resources.List_32x32;
            galleryItem1.Tag = "List";
            resources.ApplyResources(galleryItem2, "galleryItem2");
            galleryItem2.Image = global::DevExpress.MailClient.Win.Properties.Resources.SortAsc_32x32;
            galleryItem2.Tag = "Alphabetical";
            resources.ApplyResources(galleryItem3, "galleryItem3");
            galleryItem3.Image = global::DevExpress.MailClient.Win.Properties.Resources.ByState_32x32;
            galleryItem3.Tag = "ByState";
            resources.ApplyResources(galleryItem4, "galleryItem4");
            galleryItem4.Image = global::DevExpress.MailClient.Win.Properties.Resources.Card_32x32;
            galleryItem4.Tag = "Card";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4});
            this.rgbiCurrentView.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.rgbiCurrentView.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.rgbiCurrentView.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.rgbiCurrentView.Gallery.RowCount = 1;
            this.rgbiCurrentView.Gallery.ShowItemText = true;
            this.rgbiCurrentView.Id = 36;
            this.rgbiCurrentView.Name = "rgbiCurrentView";
            this.rgbiCurrentView.GalleryInitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiCurrentView_GalleryInitDropDownGallery);
            // 
            // bsiInfo
            // 
            this.bsiInfo.Id = 37;
            this.bsiInfo.Name = "bsiInfo";
            this.bsiInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // beiZoom
            // 
            this.beiZoom.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.beiZoom.Edit = this.repositoryItemZoomTrackBar1;
            this.beiZoom.EditValue = 10;
            this.beiZoom.Id = 38;
            this.beiZoom.Name = "beiZoom";
            resources.ApplyResources(this.beiZoom, "beiZoom");
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.Alignment = DevExpress.Utils.VertAlignment.Center;
            this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemZoomTrackBar1.Maximum = 20;
            this.repositoryItemZoomTrackBar1.Minimum = 1;
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            this.repositoryItemZoomTrackBar1.UseParentBackground = true;
            // 
            // bbiNormal
            // 
            this.bbiNormal.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiNormal.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.bbiNormal.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.normal;
            resources.ApplyResources(this.bbiNormal, "bbiNormal");
            this.bbiNormal.Id = 39;
            this.bbiNormal.Name = "bbiNormal";
            this.bbiNormal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNormal_ItemClick);
            // 
            // bbiReading
            // 
            this.bbiReading.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiReading.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.bbiReading.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.reading;
            resources.ApplyResources(this.bbiReading, "bbiReading");
            this.bbiReading.Id = 40;
            this.bbiReading.Name = "bbiReading";
            this.bbiReading.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiReading_ItemClick);
            // 
            // bsiTemp
            // 
            this.bsiTemp.Id = 41;
            this.bsiTemp.Name = "bsiTemp";
            this.bsiTemp.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // bbiManageView
            // 
            resources.ApplyResources(this.bbiManageView, "bbiManageView");
            this.bbiManageView.Enabled = false;
            this.bbiManageView.Id = 42;
            this.bbiManageView.Name = "bbiManageView";
            // 
            // bbiSaveCurrentView
            // 
            resources.ApplyResources(this.bbiSaveCurrentView, "bbiSaveCurrentView");
            this.bbiSaveCurrentView.Enabled = false;
            this.bbiSaveCurrentView.Id = 43;
            this.bbiSaveCurrentView.Name = "bbiSaveCurrentView";
            // 
            // rgbiCurrentViewTasks
            // 
            resources.ApplyResources(this.rgbiCurrentViewTasks, "rgbiCurrentViewTasks");
            // 
            // rgbiCurrentViewTasks
            // 
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Disabled.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Disabled.Font")));
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Disabled.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Font")));
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Font")));
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font = ((System.Drawing.Font)(resources.GetObject("rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Font")));
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.ColumnCount = 4;
            resources.ApplyResources(galleryItemGroup2, "galleryItemGroup2");
            resources.ApplyResources(galleryItem5, "galleryItem5");
            galleryItem5.Image = global::DevExpress.MailClient.Win.Properties.Resources.ListByDate_32x32;
            galleryItem5.Tag = "TaskList";
            resources.ApplyResources(galleryItem6, "galleryItem6");
            galleryItem6.Image = global::DevExpress.MailClient.Win.Properties.Resources.ToDoList_32x32;
            galleryItem6.Tag = "TaskToDoList";
            resources.ApplyResources(galleryItem7, "galleryItem7");
            galleryItem7.Image = global::DevExpress.MailClient.Win.Properties.Resources.Completed_32x32;
            galleryItem7.Tag = "TaskCompleted";
            resources.ApplyResources(galleryItem8, "galleryItem8");
            galleryItem8.Image = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            galleryItem8.Tag = "TaskToday";
            resources.ApplyResources(galleryItem9, "galleryItem9");
            galleryItem9.Image = global::DevExpress.MailClient.Win.Properties.Resources.Prioritized_32x32;
            galleryItem9.Tag = "TaskPrioritized";
            resources.ApplyResources(galleryItem10, "galleryItem10");
            galleryItem10.Image = global::DevExpress.MailClient.Win.Properties.Resources.Overdue_32x32;
            galleryItem10.Tag = "TaskOverdue";
            resources.ApplyResources(galleryItem11, "galleryItem11");
            galleryItem11.Image = global::DevExpress.MailClient.Win.Properties.Resources.List_32x32;
            galleryItem11.Tag = "TaskSimpleList";
            resources.ApplyResources(galleryItem12, "galleryItem12");
            galleryItem12.Checked = true;
            galleryItem12.Image = global::DevExpress.MailClient.Win.Properties.Resources.Deferred_32x32;
            galleryItem12.Tag = "TaskDeferred";
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9,
            galleryItem10,
            galleryItem11,
            galleryItem12});
            this.rgbiCurrentViewTasks.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.rgbiCurrentViewTasks.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.rgbiCurrentViewTasks.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.rgbiCurrentViewTasks.Gallery.RowCount = 2;
            this.rgbiCurrentViewTasks.Gallery.ShowItemText = true;
            this.rgbiCurrentViewTasks.Id = 44;
            this.rgbiCurrentViewTasks.Name = "rgbiCurrentViewTasks";
            this.rgbiCurrentViewTasks.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiCurrentViewTasks_GalleryItemClick);
            this.rgbiCurrentViewTasks.GalleryInitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiCurrentView_GalleryInitDropDownGallery);
            // 
            // bbiTodayFlag
            // 
            this.bbiTodayFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiTodayFlag, "bbiTodayFlag");
            this.bbiTodayFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Today_Flag;
            this.bbiTodayFlag.Id = 45;
            this.bbiTodayFlag.Name = "bbiTodayFlag";
            // 
            // bbiTomorrowFlag
            // 
            this.bbiTomorrowFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiTomorrowFlag, "bbiTomorrowFlag");
            this.bbiTomorrowFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Tomorrow_Flag;
            this.bbiTomorrowFlag.Id = 46;
            this.bbiTomorrowFlag.Name = "bbiTomorrowFlag";
            // 
            // bbiThisWeekFlag
            // 
            this.bbiThisWeekFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiThisWeekFlag, "bbiThisWeekFlag");
            this.bbiThisWeekFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.ThisWeek_Flag;
            this.bbiThisWeekFlag.Id = 47;
            this.bbiThisWeekFlag.Name = "bbiThisWeekFlag";
            // 
            // bbiNextWeekFlag
            // 
            this.bbiNextWeekFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiNextWeekFlag, "bbiNextWeekFlag");
            this.bbiNextWeekFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NextWeek_Flag;
            this.bbiNextWeekFlag.Id = 48;
            this.bbiNextWeekFlag.Name = "bbiNextWeekFlag";
            // 
            // bbiNoDateFlag
            // 
            this.bbiNoDateFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiNoDateFlag, "bbiNoDateFlag");
            this.bbiNoDateFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NoDate_Flag;
            this.bbiNoDateFlag.Id = 49;
            this.bbiNoDateFlag.Name = "bbiNoDateFlag";
            // 
            // bbiCustomFlag
            // 
            resources.ApplyResources(this.bbiCustomFlag, "bbiCustomFlag");
            this.bbiCustomFlag.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Custom_Flag;
            this.bbiCustomFlag.Id = 50;
            this.bbiCustomFlag.Name = "bbiCustomFlag";
            // 
            // bbiNewContact
            // 
            resources.ApplyResources(this.bbiNewContact, "bbiNewContact");
            this.bbiNewContact.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewContact_16x16;
            this.bbiNewContact.Id = 51;
            this.bbiNewContact.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewContact_32x32;
            this.bbiNewContact.Name = "bbiNewContact";
            // 
            // bbiEditContact
            // 
            resources.ApplyResources(this.bbiEditContact, "bbiEditContact");
            this.bbiEditContact.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.EditContact_16x16;
            this.bbiEditContact.Id = 52;
            this.bbiEditContact.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.EditContact_32x32;
            this.bbiEditContact.Name = "bbiEditContact";
            // 
            // bbiDeleteContact
            // 
            resources.ApplyResources(this.bbiDeleteContact, "bbiDeleteContact");
            this.bbiDeleteContact.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteContact.Id = 53;
            this.bbiDeleteContact.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteContact.Name = "bbiDeleteContact";
            // 
            // bbiNewTask
            // 
            resources.ApplyResources(this.bbiNewTask, "bbiNewTask");
            this.bbiNewTask.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.NewTask_16x16;
            this.bbiNewTask.Id = 54;
            this.bbiNewTask.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.NewTask_32x32;
            this.bbiNewTask.Name = "bbiNewTask";
            // 
            // bbiEditTask
            // 
            resources.ApplyResources(this.bbiEditTask, "bbiEditTask");
            this.bbiEditTask.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.EditTask_16x16;
            this.bbiEditTask.Id = 55;
            this.bbiEditTask.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.EditTask_32x32;
            this.bbiEditTask.Name = "bbiEditTask";
            // 
            // bbiDeleteTask
            // 
            resources.ApplyResources(this.bbiDeleteTask, "bbiDeleteTask");
            this.bbiDeleteTask.Glyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteTask.Id = 56;
            this.bbiDeleteTask.LargeGlyph = global::DevExpress.MailClient.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteTask.Name = "bbiDeleteTask";
            // 
            // newAppointmentItem1
            // 
            this.newAppointmentItem1.Enabled = false;
            this.newAppointmentItem1.Id = 67;
            this.newAppointmentItem1.Name = "newAppointmentItem1";
            // 
            // newRecurringAppointmentItem1
            // 
            this.newRecurringAppointmentItem1.Enabled = false;
            this.newRecurringAppointmentItem1.Id = 68;
            this.newRecurringAppointmentItem1.Name = "newRecurringAppointmentItem1";
            // 
            // navigateViewBackwardItem1
            // 
            this.navigateViewBackwardItem1.Enabled = false;
            this.navigateViewBackwardItem1.Id = 69;
            this.navigateViewBackwardItem1.Name = "navigateViewBackwardItem1";
            // 
            // navigateViewForwardItem1
            // 
            this.navigateViewForwardItem1.Enabled = false;
            this.navigateViewForwardItem1.Id = 70;
            this.navigateViewForwardItem1.Name = "navigateViewForwardItem1";
            // 
            // gotoTodayItem1
            // 
            this.gotoTodayItem1.Enabled = false;
            this.gotoTodayItem1.Id = 71;
            this.gotoTodayItem1.Name = "gotoTodayItem1";
            // 
            // viewZoomInItem1
            // 
            this.viewZoomInItem1.Enabled = false;
            this.viewZoomInItem1.Id = 72;
            this.viewZoomInItem1.Name = "viewZoomInItem1";
            // 
            // viewZoomOutItem1
            // 
            this.viewZoomOutItem1.Enabled = false;
            this.viewZoomOutItem1.Id = 73;
            this.viewZoomOutItem1.Name = "viewZoomOutItem1";
            // 
            // switchToDayViewItem1
            // 
            this.switchToDayViewItem1.Enabled = false;
            this.switchToDayViewItem1.Id = 74;
            this.switchToDayViewItem1.Name = "switchToDayViewItem1";
            // 
            // switchToWorkWeekViewItem1
            // 
            this.switchToWorkWeekViewItem1.Enabled = false;
            this.switchToWorkWeekViewItem1.Id = 75;
            this.switchToWorkWeekViewItem1.Name = "switchToWorkWeekViewItem1";
            // 
            // switchToWeekViewItem1
            // 
            this.switchToWeekViewItem1.Enabled = false;
            this.switchToWeekViewItem1.Id = 76;
            this.switchToWeekViewItem1.Name = "switchToWeekViewItem1";
            // 
            // switchToMonthViewItem1
            // 
            this.switchToMonthViewItem1.Enabled = false;
            this.switchToMonthViewItem1.Id = 77;
            this.switchToMonthViewItem1.Name = "switchToMonthViewItem1";
            // 
            // switchToTimelineViewItem1
            // 
            this.switchToTimelineViewItem1.Enabled = false;
            this.switchToTimelineViewItem1.Id = 78;
            this.switchToTimelineViewItem1.Name = "switchToTimelineViewItem1";
            // 
            // groupByNoneItem1
            // 
            this.groupByNoneItem1.Enabled = false;
            this.groupByNoneItem1.Id = 79;
            this.groupByNoneItem1.Name = "groupByNoneItem1";
            // 
            // groupByDateItem1
            // 
            this.groupByDateItem1.Enabled = false;
            this.groupByDateItem1.Id = 80;
            this.groupByDateItem1.Name = "groupByDateItem1";
            // 
            // groupByResourceItem1
            // 
            this.groupByResourceItem1.Enabled = false;
            this.groupByResourceItem1.Id = 81;
            this.groupByResourceItem1.Name = "groupByResourceItem1";
            // 
            // switchTimeScalesItem1
            // 
            this.switchTimeScalesItem1.Enabled = false;
            this.switchTimeScalesItem1.Id = 82;
            this.switchTimeScalesItem1.Name = "switchTimeScalesItem1";
            // 
            // switchCompressWeekendItem1
            // 
            this.switchCompressWeekendItem1.Enabled = false;
            this.switchCompressWeekendItem1.Id = 83;
            this.switchCompressWeekendItem1.Name = "switchCompressWeekendItem1";
            // 
            // switchShowWorkTimeOnlyItem1
            // 
            this.switchShowWorkTimeOnlyItem1.Enabled = false;
            this.switchShowWorkTimeOnlyItem1.Id = 84;
            this.switchShowWorkTimeOnlyItem1.Name = "switchShowWorkTimeOnlyItem1";
            // 
            // editAppointmentQueryItem1
            // 
            this.editAppointmentQueryItem1.Enabled = false;
            this.editAppointmentQueryItem1.Id = 85;
            this.editAppointmentQueryItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.editOccurrenceUICommandItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.editSeriesUICommandItem1)});
            this.editAppointmentQueryItem1.Name = "editAppointmentQueryItem1";
            this.editAppointmentQueryItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // editOccurrenceUICommandItem1
            // 
            this.editOccurrenceUICommandItem1.Enabled = false;
            this.editOccurrenceUICommandItem1.Id = 86;
            this.editOccurrenceUICommandItem1.Name = "editOccurrenceUICommandItem1";
            // 
            // editSeriesUICommandItem1
            // 
            this.editSeriesUICommandItem1.Enabled = false;
            this.editSeriesUICommandItem1.Id = 87;
            this.editSeriesUICommandItem1.Name = "editSeriesUICommandItem1";
            // 
            // deleteAppointmentsItem1
            // 
            this.deleteAppointmentsItem1.Enabled = false;
            this.deleteAppointmentsItem1.Id = 88;
            this.deleteAppointmentsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteOccurrenceItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteSeriesItem1)});
            this.deleteAppointmentsItem1.Name = "deleteAppointmentsItem1";
            this.deleteAppointmentsItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // deleteOccurrenceItem1
            // 
            this.deleteOccurrenceItem1.Enabled = false;
            this.deleteOccurrenceItem1.Id = 89;
            this.deleteOccurrenceItem1.Name = "deleteOccurrenceItem1";
            // 
            // deleteSeriesItem1
            // 
            this.deleteSeriesItem1.Enabled = false;
            this.deleteSeriesItem1.Id = 90;
            this.deleteSeriesItem1.Name = "deleteSeriesItem1";
            // 
            // splitAppointmentItem1
            // 
            this.splitAppointmentItem1.Enabled = false;
            this.splitAppointmentItem1.Id = 91;
            this.splitAppointmentItem1.Name = "splitAppointmentItem1";
            // 
            // changeAppointmentStatusItem1
            // 
            this.changeAppointmentStatusItem1.Enabled = false;
            this.changeAppointmentStatusItem1.Id = 92;
            this.changeAppointmentStatusItem1.Name = "changeAppointmentStatusItem1";
            // 
            // changeAppointmentLabelItem1
            // 
            this.changeAppointmentLabelItem1.Enabled = false;
            this.changeAppointmentLabelItem1.Id = 93;
            this.changeAppointmentLabelItem1.Name = "changeAppointmentLabelItem1";
            // 
            // toggleRecurrenceItem1
            // 
            this.toggleRecurrenceItem1.Enabled = false;
            this.toggleRecurrenceItem1.Id = 94;
            this.toggleRecurrenceItem1.Name = "toggleRecurrenceItem1";
            // 
            // changeAppointmentReminderItem1
            // 
            this.changeAppointmentReminderItem1.Edit = this.repositoryItemDuration1;
            this.changeAppointmentReminderItem1.Enabled = false;
            this.changeAppointmentReminderItem1.Id = 95;
            this.changeAppointmentReminderItem1.Name = "changeAppointmentReminderItem1";
            // 
            // repositoryItemDuration1
            // 
            this.repositoryItemDuration1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            resources.ApplyResources(this.repositoryItemDuration1, "repositoryItemDuration1");
            this.repositoryItemDuration1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemDuration1.Buttons"))))});
            this.repositoryItemDuration1.Name = "repositoryItemDuration1";
            this.repositoryItemDuration1.ShowEmptyItem = true;
            this.repositoryItemDuration1.UseParentBackground = true;
            this.repositoryItemDuration1.ValidateOnEnterKey = true;
            // 
            // repositoryItemSpinEdit1
            // 
            resources.ApplyResources(this.repositoryItemSpinEdit1, "repositoryItemSpinEdit1");
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            200,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            this.repositoryItemSpinEdit1.UseParentBackground = true;
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.bsiInfo);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiNormal);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiReading);
            this.ribbonStatusBar1.ItemLinks.Add(this.beiZoom, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.bsiTemp, true);
            resources.ApplyResources(this.ribbonStatusBar1, "ribbonStatusBar1");
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            // 
            // helpControl1
            // 
            resources.ApplyResources(this.helpControl1, "helpControl1");
            this.helpControl1.ForeColor = System.Drawing.Color.Transparent;
            this.helpControl1.Name = "helpControl1";
            // 
            // galleryControl1
            // 
            this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            resources.ApplyResources(this.galleryControl1, "galleryControl1");
            // 
            // galleryControlGallery1
            // 
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.galleryControl1.Gallery.AutoFitColumns = false;
            this.galleryControl1.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
            this.galleryControl1.Gallery.BackColor = System.Drawing.Color.Transparent;
            this.galleryControl1.Gallery.ColumnCount = 1;
            this.galleryControl1.Gallery.FixedImageSize = false;
            resources.ApplyResources(galleryItemGroup3, "galleryItemGroup3");
            resources.ApplyResources(galleryItem13, "galleryItem13");
            galleryItem13.Image = global::DevExpress.MailClient.Win.Properties.Resources.OpenClendar_64x64;
            galleryItem13.Tag = "OpenCalendar";
            galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem13});
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup3});
            this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.galleryControl1.Gallery.ShowGroupCaption = false;
            this.galleryControl1.Gallery.ShowItemText = true;
            this.galleryControl1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
            this.galleryControl1.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.galleryControl1.Name = "galleryControl1";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
            // 
            // printControl1
            // 
            resources.ApplyResources(this.printControl1, "printControl1");
            this.printControl1.ForeColor = System.Drawing.Color.Transparent;
            this.printControl1.Name = "printControl1";
            // 
            // exportControl1
            // 
            resources.ApplyResources(this.exportControl1, "exportControl1");
            this.exportControl1.ForeColor = System.Drawing.Color.Transparent;
            this.exportControl1.Name = "exportControl1";
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.nbgSystem;
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer1);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer2);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer3);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer4);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer5);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer7);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer6);
            resources.ApplyResources(this.navBarControl1, "navBarControl1");
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.nbgMonitor,
            this.nbgPlan,
            this.nbgReport,
            this.nbgSystem,
            this.nbgLine,
            this.nbgDevice,
            this.nbgProcess});
            this.navBarControl1.MenuManager = this.ribbonControl1;
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.NavigationPaneGroupClientHeight = 320;
            this.navBarControl1.OptionsNavPane.ExpandedWidth = ((int)(resources.GetObject("resource.ExpandedWidth1")));
            this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.SkinNavigationPaneViewInfoRegistrator();
            this.navBarControl1.NavPaneStateChanged += new System.EventHandler(this.navBarControl1_NavPaneStateChanged);
            this.navBarControl1.ActiveGroupChanged += new DevExpress.XtraNavBar.NavBarGroupEventHandler(this.navBarControl1_ActiveGroupChanged);
            // 
            // nbgSystem
            // 
            resources.ApplyResources(this.nbgSystem, "nbgSystem");
            this.nbgSystem.ControlContainer = this.navBarGroupControlContainer1;
            this.nbgSystem.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgSystem.Expanded = true;
            this.nbgSystem.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgSystem.GroupClientHeight = 40;
            this.nbgSystem.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgSystem.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.Mail_32x32;
            this.nbgSystem.Name = "nbgSystem";
            this.nbgSystem.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.Mail_16x16;
            // 
            // navBarGroupControlContainer1
            // 
            this.navBarGroupControlContainer1.Controls.Add(this.ucSystemTree1);
            this.navBarGroupControlContainer1.Name = "navBarGroupControlContainer1";
            resources.ApplyResources(this.navBarGroupControlContainer1, "navBarGroupControlContainer1");
            // 
            // ucSystemTree1
            // 
            resources.ApplyResources(this.ucSystemTree1, "ucSystemTree1");
            this.ucSystemTree1.Name = "ucSystemTree1";
            this.ucSystemTree1.DataSourceChanged += new DevExpress.MailClient.Win.DataSourceChangedEventHandler(this.ucMailTree1_DataSourceChanged);
            this.ucSystemTree1.ShowMenu += new System.Windows.Forms.MouseEventHandler(this.ucMailTree1_ShowMenu);
            // 
            // navBarGroupControlContainer2
            // 
            this.navBarGroupControlContainer2.Controls.Add(this.ucLineTree1);
            this.navBarGroupControlContainer2.Name = "navBarGroupControlContainer2";
            resources.ApplyResources(this.navBarGroupControlContainer2, "navBarGroupControlContainer2");
            // 
            // ucLineTree1
            // 
            resources.ApplyResources(this.ucLineTree1, "ucLineTree1");
            this.ucLineTree1.Name = "ucLineTree1";
            // 
            // navBarGroupControlContainer3
            // 
            this.navBarGroupControlContainer3.Controls.Add(this.ucPlanTree1);
            this.navBarGroupControlContainer3.Name = "navBarGroupControlContainer3";
            resources.ApplyResources(this.navBarGroupControlContainer3, "navBarGroupControlContainer3");
            // 
            // ucPlanTree1
            // 
            resources.ApplyResources(this.ucPlanTree1, "ucPlanTree1");
            this.ucPlanTree1.Name = "ucPlanTree1";
            // 
            // navBarGroupControlContainer4
            // 
            this.navBarGroupControlContainer4.Controls.Add(this.ucDeviceTree1);
            this.navBarGroupControlContainer4.Controls.Add(this.navBarControl2);
            this.navBarGroupControlContainer4.Name = "navBarGroupControlContainer4";
            resources.ApplyResources(this.navBarGroupControlContainer4, "navBarGroupControlContainer4");
            // 
            // ucDeviceTree1
            // 
            resources.ApplyResources(this.ucDeviceTree1, "ucDeviceTree1");
            this.ucDeviceTree1.Name = "ucDeviceTree1";
            this.ucDeviceTree1.DataSourceChanged += new DevExpress.MailClient.Win.DataSourceChangedEventHandler(this.ucDeviceTree1_DataSourceChanged);
            this.ucDeviceTree1.ShowMenu += new System.Windows.Forms.MouseEventHandler(this.ucDeviceTree1_ShowMenu);
            // 
            // navBarControl2
            // 
            this.navBarControl2.ActiveGroup = null;
            this.navBarControl2.AllowSelectedLink = true;
            resources.ApplyResources(this.navBarControl2, "navBarControl2");
            this.navBarControl2.Name = "navBarControl2";
            this.navBarControl2.OptionsNavPane.ExpandedWidth = ((int)(resources.GetObject("resource.ExpandedWidth")));
            // 
            // navBarGroupControlContainer5
            // 
            this.navBarGroupControlContainer5.Controls.Add(this.ucReportTree1);
            this.navBarGroupControlContainer5.Name = "navBarGroupControlContainer5";
            resources.ApplyResources(this.navBarGroupControlContainer5, "navBarGroupControlContainer5");
            // 
            // ucReportTree1
            // 
            resources.ApplyResources(this.ucReportTree1, "ucReportTree1");
            this.ucReportTree1.Name = "ucReportTree1";
            // 
            // navBarGroupControlContainer7
            // 
            this.navBarGroupControlContainer7.Controls.Add(this.ucMonitorTree1);
            this.navBarGroupControlContainer7.Name = "navBarGroupControlContainer7";
            resources.ApplyResources(this.navBarGroupControlContainer7, "navBarGroupControlContainer7");
            // 
            // ucMonitorTree1
            // 
            resources.ApplyResources(this.ucMonitorTree1, "ucMonitorTree1");
            this.ucMonitorTree1.Name = "ucMonitorTree1";
            // 
            // navBarGroupControlContainer6
            // 
            this.navBarGroupControlContainer6.Controls.Add(this.ucProcessTree1);
            this.navBarGroupControlContainer6.Name = "navBarGroupControlContainer6";
            resources.ApplyResources(this.navBarGroupControlContainer6, "navBarGroupControlContainer6");
            // 
            // ucProcessTree1
            // 
            resources.ApplyResources(this.ucProcessTree1, "ucProcessTree1");
            this.ucProcessTree1.Name = "ucProcessTree1";
            // 
            // nbgMonitor
            // 
            resources.ApplyResources(this.nbgMonitor, "nbgMonitor");
            this.nbgMonitor.ControlContainer = this.navBarGroupControlContainer7;
            this.nbgMonitor.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgMonitor.GroupClientHeight = 40;
            this.nbgMonitor.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgMonitor.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.BO_Task_Large;
            this.nbgMonitor.Name = "nbgMonitor";
            this.nbgMonitor.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.BO_Task;
            // 
            // nbgPlan
            // 
            resources.ApplyResources(this.nbgPlan, "nbgPlan");
            this.nbgPlan.ControlContainer = this.navBarGroupControlContainer3;
            this.nbgPlan.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgPlan.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgPlan.GroupClientHeight = 40;
            this.nbgPlan.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgPlan.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.Contact_32x32;
            this.nbgPlan.Name = "nbgPlan";
            this.nbgPlan.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.Contact_16x16;
            // 
            // nbgReport
            // 
            resources.ApplyResources(this.nbgReport, "nbgReport");
            this.nbgReport.ControlContainer = this.navBarGroupControlContainer5;
            this.nbgReport.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgReport.GroupClientHeight = 40;
            this.nbgReport.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgReport.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            this.nbgReport.Name = "nbgReport";
            this.nbgReport.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.Today_16x16;
            // 
            // nbgLine
            // 
            resources.ApplyResources(this.nbgLine, "nbgLine");
            this.nbgLine.ControlContainer = this.navBarGroupControlContainer2;
            this.nbgLine.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgLine.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgLine.GroupClientHeight = 40;
            this.nbgLine.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgLine.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.Today_32x32;
            this.nbgLine.Name = "nbgLine";
            this.nbgLine.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.Today_16x16;
            // 
            // nbgDevice
            // 
            resources.ApplyResources(this.nbgDevice, "nbgDevice");
            this.nbgDevice.ControlContainer = this.navBarGroupControlContainer4;
            this.nbgDevice.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
            this.nbgDevice.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgDevice.GroupClientHeight = 40;
            this.nbgDevice.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgDevice.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.BO_Feeds_Large;
            this.nbgDevice.Name = "nbgDevice";
            this.nbgDevice.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.BO_Feeds;
            // 
            // nbgProcess
            // 
            resources.ApplyResources(this.nbgProcess, "nbgProcess");
            this.nbgProcess.ControlContainer = this.navBarGroupControlContainer6;
            this.nbgProcess.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.nbgProcess.GroupClientHeight = 40;
            this.nbgProcess.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.nbgProcess.LargeImage = global::DevExpress.MailClient.Win.Properties.Resources.Contact_32x32;
            this.nbgProcess.Name = "nbgProcess";
            this.nbgProcess.SmallImage = global::DevExpress.MailClient.Win.Properties.Resources.Contact_16x16;
            // 
            // pcMain
            // 
            this.pcMain.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pcMain.Controls.Add(this.backstageViewControl1);
            resources.ApplyResources(this.pcMain, "pcMain");
            this.pcMain.Name = "pcMain";
            // 
            // pmTreeView
            // 
            this.pmTreeView.ItemLinks.Add(this.bciShowAllMessageCount);
            this.pmTreeView.ItemLinks.Add(this.bciShowUnreadMessageCount);
            this.pmTreeView.Name = "pmTreeView";
            this.pmTreeView.Ribbon = this.ribbonControl1;
            this.pmTreeView.BeforePopup += new System.ComponentModel.CancelEventHandler(this.pmTreeView_BeforePopup);
            // 
            // pmMessage
            // 
            this.pmMessage.ItemLinks.Add(this.bbiReply);
            this.pmMessage.ItemLinks.Add(this.bbiReplyAll);
            this.pmMessage.ItemLinks.Add(this.bbiForward);
            this.pmMessage.ItemLinks.Add(this.bbiDelete, true);
            this.pmMessage.ItemLinks.Add(this.bbiUnreadRead, true);
            this.pmMessage.ItemLinks.Add(this.bbiPriority);
            this.pmMessage.Name = "pmMessage";
            this.pmMessage.Ribbon = this.ribbonControl1;
            // 
            // pmFlagStatus
            // 
            this.pmFlagStatus.ItemLinks.Add(this.bbiTodayFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiTomorrowFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiThisWeekFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiNextWeekFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiNoDateFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiCustomFlag, true);
            this.pmFlagStatus.Name = "pmFlagStatus";
            this.pmFlagStatus.Ribbon = this.ribbonControl1;
            // 
            // schedulerBarController1
            // 
            this.schedulerBarController1.BarItems.Add(this.newAppointmentItem1);
            this.schedulerBarController1.BarItems.Add(this.newRecurringAppointmentItem1);
            this.schedulerBarController1.BarItems.Add(this.navigateViewBackwardItem1);
            this.schedulerBarController1.BarItems.Add(this.navigateViewForwardItem1);
            this.schedulerBarController1.BarItems.Add(this.gotoTodayItem1);
            this.schedulerBarController1.BarItems.Add(this.viewZoomInItem1);
            this.schedulerBarController1.BarItems.Add(this.viewZoomOutItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToDayViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToWorkWeekViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToWeekViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToMonthViewItem1);
            this.schedulerBarController1.BarItems.Add(this.switchToTimelineViewItem1);
            this.schedulerBarController1.BarItems.Add(this.groupByNoneItem1);
            this.schedulerBarController1.BarItems.Add(this.groupByDateItem1);
            this.schedulerBarController1.BarItems.Add(this.groupByResourceItem1);
            this.schedulerBarController1.BarItems.Add(this.switchTimeScalesItem1);
            this.schedulerBarController1.BarItems.Add(this.switchCompressWeekendItem1);
            this.schedulerBarController1.BarItems.Add(this.switchShowWorkTimeOnlyItem1);
            this.schedulerBarController1.BarItems.Add(this.editAppointmentQueryItem1);
            this.schedulerBarController1.BarItems.Add(this.editOccurrenceUICommandItem1);
            this.schedulerBarController1.BarItems.Add(this.editSeriesUICommandItem1);
            this.schedulerBarController1.BarItems.Add(this.deleteAppointmentsItem1);
            this.schedulerBarController1.BarItems.Add(this.deleteOccurrenceItem1);
            this.schedulerBarController1.BarItems.Add(this.deleteSeriesItem1);
            this.schedulerBarController1.BarItems.Add(this.splitAppointmentItem1);
            this.schedulerBarController1.BarItems.Add(this.changeAppointmentStatusItem1);
            this.schedulerBarController1.BarItems.Add(this.changeAppointmentLabelItem1);
            this.schedulerBarController1.BarItems.Add(this.toggleRecurrenceItem1);
            this.schedulerBarController1.BarItems.Add(this.changeAppointmentReminderItem1);
            // 
            // frmMain
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.pcMain);
            this.Controls.Add(this.navBarControl1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.KeyPreview = true;
            this.Name = "frmMain";
            this.Ribbon = this.ribbonControl1;
            this.StatusBar = this.ribbonStatusBar1;
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmMain_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDuration1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.navBarControl1.ResumeLayout(false);
            this.navBarGroupControlContainer1.ResumeLayout(false);
            this.navBarGroupControlContainer2.ResumeLayout(false);
            this.navBarGroupControlContainer3.ResumeLayout(false);
            this.navBarGroupControlContainer4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl2)).EndInit();
            this.navBarGroupControlContainer5.ResumeLayout(false);
            this.navBarGroupControlContainer7.ResumeLayout(false);
            this.navBarGroupControlContainer6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pcMain)).EndInit();
            this.pcMain.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pmTreeView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMessage)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmFlagStatus)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.schedulerBarController1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(RunMapForm));
     this.galleryControl        = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.panelControl1         = new DevExpress.XtraEditors.PanelControl();
     this.runButton             = new DevExpress.XtraEditors.DropDownButton();
     this.runPopup = new DevExpress.XtraBars.PopupMenu(this.components);
     this.runPopupRunFullscreen = new DevExpress.XtraBars.BarButtonItem();
     this.runPopupRunWindowed   = new DevExpress.XtraBars.BarButtonItem();
     this.runPopupRunVR         = new DevExpress.XtraBars.BarButtonItem();
     this.barManager1           = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1                    = new DevExpress.XtraBars.Bar();
     this.toolsUpButton           = new DevExpress.XtraBars.BarButtonItem();
     this.pathEdit                = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.bar2                    = new DevExpress.XtraBars.Bar();
     this.bar3                    = new DevExpress.XtraBars.Bar();
     this.barDockControlTop       = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom    = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft      = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight     = new DevExpress.XtraBars.BarDockControl();
     this.editButton              = new DevExpress.XtraEditors.SimpleButton();
     this.deleteButton            = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1           = new DevExpress.XtraEditors.LabelControl();
     this.splitContainerControl1  = new DevExpress.XtraEditors.SplitContainerControl();
     this.versionsCombo           = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2           = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl)).BeginInit();
     this.galleryControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.runPopup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.versionsCombo.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // galleryControl
     //
     this.galleryControl.Controls.Add(this.galleryControlClient1);
     this.galleryControl.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     //
     //
     this.galleryControl.Gallery.ClearSelectionOnClickEmptySpace = true;
     galleryItemGroup1.Caption = "Maps";
     galleryItem1.Caption      = "Item1";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1
     });
     this.galleryControl.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl.Gallery.ImageSize        = new System.Drawing.Size(192, 108);
     this.galleryControl.Gallery.ItemCheckMode    = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
     this.galleryControl.Gallery.ItemImageLayout  = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl.Gallery.ShowItemText     = true;
     this.galleryControl.Gallery.ItemClick       += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.GalleryControl_Gallery_ItemClick);
     this.galleryControl.Gallery.ItemDoubleClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl_Gallery_ItemDoubleClick);
     this.galleryControl.Location = new System.Drawing.Point(0, 0);
     this.galleryControl.Name     = "galleryControl";
     this.galleryControl.Size     = new System.Drawing.Size(974, 460);
     this.galleryControl.TabIndex = 0;
     this.galleryControl.Text     = "Maps";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl;
     this.galleryControlClient1.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size           = new System.Drawing.Size(953, 456);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.runButton);
     this.panelControl1.Controls.Add(this.editButton);
     this.panelControl1.Controls.Add(this.deleteButton);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 508);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(1248, 39);
     this.panelControl1.TabIndex = 10;
     //
     // runButton
     //
     this.runButton.DialogResult              = System.Windows.Forms.DialogResult.OK;
     this.runButton.DropDownControl           = this.runPopup;
     this.runButton.ImageOptions.SvgImageSize = new System.Drawing.Size(16, 16);
     this.runButton.Location    = new System.Drawing.Point(913, 8);
     this.runButton.MenuManager = this.barManager1;
     this.runButton.Name        = "runButton";
     this.runButton.Size        = new System.Drawing.Size(75, 23);
     this.runButton.TabIndex    = 8;
     this.runButton.Text        = "Run";
     this.runButton.Click      += new System.EventHandler(this.runButton_Click);
     //
     // runPopup
     //
     this.runPopup.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.runPopupRunFullscreen),
         new DevExpress.XtraBars.LinkPersistInfo(this.runPopupRunWindowed),
         new DevExpress.XtraBars.LinkPersistInfo(this.runPopupRunVR)
     });
     this.runPopup.Manager = this.barManager1;
     this.runPopup.Name    = "runPopup";
     //
     // runPopupRunFullscreen
     //
     this.runPopupRunFullscreen.Caption = "Run (Fullscreen)";
     this.runPopupRunFullscreen.Id      = 2;
     this.runPopupRunFullscreen.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("runPopupRunFullscreen.ImageOptions.SvgImage")));
     this.runPopupRunFullscreen.Name       = "runPopupRunFullscreen";
     this.runPopupRunFullscreen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.runPopup_ItemClick);
     //
     // runPopupRunWindowed
     //
     this.runPopupRunWindowed.Caption = "Run (Windowed)";
     this.runPopupRunWindowed.Id      = 3;
     this.runPopupRunWindowed.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("runPopupRunWindowed.ImageOptions.SvgImage")));
     this.runPopupRunWindowed.Name       = "runPopupRunWindowed";
     this.runPopupRunWindowed.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.runPopup_ItemClick);
     //
     // runPopupRunVR
     //
     this.runPopupRunVR.Caption = "Run (VR)";
     this.runPopupRunVR.Id      = 4;
     this.runPopupRunVR.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("runPopupRunVR.ImageOptions.SvgImage")));
     this.runPopupRunVR.Name       = "runPopupRunVR";
     this.runPopupRunVR.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.runPopup_ItemClick);
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar1,
         this.bar2,
         this.bar3
     });
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.toolsUpButton,
         this.pathEdit,
         this.runPopupRunFullscreen,
         this.runPopupRunWindowed,
         this.runPopupRunVR
     });
     this.barManager1.MainMenu  = this.bar2;
     this.barManager1.MaxItemId = 5;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemTextEdit1
     });
     this.barManager1.StatusBar = this.bar3;
     //
     // bar1
     //
     this.bar1.BarName   = "Tools";
     this.bar1.DockCol   = 0;
     this.bar1.DockRow   = 1;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.toolsUpButton),
         new DevExpress.XtraBars.LinkPersistInfo(this.pathEdit)
     });
     this.bar1.Text = "Tools";
     //
     // toolsUpButton
     //
     this.toolsUpButton.Caption = "Up";
     this.toolsUpButton.Id      = 0;
     this.toolsUpButton.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("toolsUpButton.ImageOptions.SvgImage")));
     this.toolsUpButton.Name       = "toolsUpButton";
     this.toolsUpButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ToolsUpButton_ItemClick);
     //
     // pathEdit
     //
     this.pathEdit.AutoFillWidth       = true;
     this.pathEdit.AutoFillWidthInMenu = DevExpress.Utils.DefaultBoolean.False;
     this.pathEdit.CanOpenEdit         = false;
     this.pathEdit.Caption             = "barEditItem1";
     this.pathEdit.Edit    = this.repositoryItemTextEdit1;
     this.pathEdit.Enabled = false;
     this.pathEdit.Id      = 1;
     this.pathEdit.Name    = "pathEdit";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name       = "repositoryItemTextEdit1";
     //
     // bar2
     //
     this.bar2.BarName                = "Main menu";
     this.bar2.DockCol                = 0;
     this.bar2.DockRow                = 0;
     this.bar2.DockStyle              = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.OptionsBar.MultiLine   = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // bar3
     //
     this.bar3.BarName      = "Status bar";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol      = 0;
     this.bar3.DockRow      = 0;
     this.bar3.DockStyle    = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder          = false;
     this.bar3.OptionsBar.UseWholeRow             = true;
     this.bar3.Text = "Status bar";
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Manager          = this.barManager1;
     this.barDockControlTop.Size             = new System.Drawing.Size(1248, 48);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 547);
     this.barDockControlBottom.Manager          = this.barManager1;
     this.barDockControlBottom.Size             = new System.Drawing.Size(1248, 18);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 48);
     this.barDockControlLeft.Manager          = this.barManager1;
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 499);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(1248, 48);
     this.barDockControlRight.Manager          = this.barManager1;
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 499);
     //
     // editButton
     //
     this.editButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.editButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.editButton.Enabled      = false;
     this.editButton.Location     = new System.Drawing.Point(1082, 8);
     this.editButton.Margin       = new System.Windows.Forms.Padding(0, 8, 0, 8);
     this.editButton.Name         = "editButton";
     this.editButton.Size         = new System.Drawing.Size(75, 23);
     this.editButton.TabIndex     = 7;
     this.editButton.Text         = "Edit";
     this.editButton.Visible      = false;
     this.editButton.Click       += new System.EventHandler(this.editButton_Click);
     //
     // deleteButton
     //
     this.deleteButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.deleteButton.Enabled  = false;
     this.deleteButton.Location = new System.Drawing.Point(999, 8);
     this.deleteButton.Margin   = new System.Windows.Forms.Padding(8);
     this.deleteButton.Name     = "deleteButton";
     this.deleteButton.Size     = new System.Drawing.Size(75, 23);
     this.deleteButton.TabIndex = 6;
     this.deleteButton.Text     = "Delete";
     this.deleteButton.Visible  = false;
     this.deleteButton.Click   += new System.EventHandler(this.DeleteButton_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 13);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(361, 13);
     this.labelControl1.TabIndex = 5;
     this.labelControl1.Text     = "Take an ingame screenshot while running the map to update the thumbnail.";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl1.Location   = new System.Drawing.Point(0, 48);
     this.splitContainerControl1.Name       = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.galleryControl);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.versionsCombo);
     this.splitContainerControl1.Panel2.Controls.Add(this.labelControl2);
     this.splitContainerControl1.Panel2.Padding   = new System.Windows.Forms.Padding(8);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(1248, 460);
     this.splitContainerControl1.SplitterPosition = 264;
     this.splitContainerControl1.TabIndex         = 15;
     //
     // versionsCombo
     //
     this.versionsCombo.Dock        = System.Windows.Forms.DockStyle.Top;
     this.versionsCombo.Location    = new System.Drawing.Point(8, 25);
     this.versionsCombo.MenuManager = this.barManager1;
     this.versionsCombo.Name        = "versionsCombo";
     this.versionsCombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.versionsCombo.Size              = new System.Drawing.Size(248, 20);
     this.versionsCombo.TabIndex          = 0;
     this.versionsCombo.EditValueChanged += new System.EventHandler(this.VersionsCombo_EditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.labelControl2.Location = new System.Drawing.Point(8, 8);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Padding  = new System.Windows.Forms.Padding(0, 0, 0, 4);
     this.labelControl2.Size     = new System.Drawing.Size(80, 17);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text     = "Select a version:";
     //
     // RunMapForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1248, 565);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "RunMapForm";
     this.Text  = "Run Map";
     this.Load += new System.EventHandler(this.RunMapForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl)).EndInit();
     this.galleryControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.runPopup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.versionsCombo.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 31
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges2 = new DevExpress.Skins.SkinPaddingEdges();
            this.lvEmployees = new DevExpress.XtraGrid.Views.Layout.LayoutView();
            this.colPhoto = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colPhoto = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colFullName1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colFullName1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colAddress1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.layoutViewField_colAddress1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colEmail1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colEmail1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colMobilePhone = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colMobilePhone = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.gridControl = new DevExpress.XtraGrid.GridControl();
            this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gvOrders = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colEmployee = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colInvoiceNumber = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colOrderDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colShipDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSaleAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colShippingAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTotalAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAddress = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCity = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colState = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colZipCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPhone = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colLogo = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colWebsite = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemHyperLinkEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemHyperLinkEdit();
            this.colProfile = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBillingAddress = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAnnualRevenue = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTotalEmployees = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTotalStores = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biNewCustomer = new DevExpress.XtraBars.BarButtonItem();
            this.biNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biDelete = new DevExpress.XtraBars.BarButtonItem();
            this.biShowList = new DevExpress.XtraBars.BarCheckItem();
            this.biShowCard = new DevExpress.XtraBars.BarCheckItem();
            this.biMap = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.bmiNewCustomer = new DevExpress.XtraBars.BarButtonItem();
            this.bmiNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biEdit = new DevExpress.XtraBars.BarButtonItem();
            this.biPrintSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiPrintProfile = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintContactDirectory = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSalesSummary = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSalesDetail = new DevExpress.XtraBars.BarButtonItem();
            this.biSalesAnalysis = new DevExpress.XtraBars.BarButtonItem();
            this.galleryQuickReports = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.biChangeViewSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiShowList = new DevExpress.XtraBars.BarCheckItem();
            this.bmiShowCard = new DevExpress.XtraBars.BarCheckItem();
            this.biViewSettings = new DevExpress.XtraBars.BarButtonItem();
            this.biResetView = new DevExpress.XtraBars.BarButtonItem();
            this.biDataPaneSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiHorizontalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiVerticalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiHideDetail = new DevExpress.XtraBars.BarCheckItem();
            this.biReverseSort = new DevExpress.XtraBars.BarButtonItem();
            this.biAddColumns = new DevExpress.XtraBars.BarCheckItem();
            this.biExpandCollapse = new DevExpress.XtraBars.BarButtonItem();
            this.hiItemsCount = new DevExpress.XtraBars.BarHeaderItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.biNewCustomFilter = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.layoutView = new DevExpress.XtraGrid.Views.Layout.LayoutView();
            this.colName1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colName1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colHomeOffice = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colHomeOffice = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colBillingAddress1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_colBillingAddress1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.colImage = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
            this.layoutViewField_layoutViewColumn1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
            this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
            this.layoutViewCard2 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
            this.Item1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.moduleLayout = new DevExpress.XtraLayout.LayoutControl();
            this.pnlView = new DevExpress.XtraEditors.PanelControl();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.detailItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem = new DevExpress.XtraLayout.SplitterItem();
            ((System.ComponentModel.ISupportInitialize)(this.lvEmployees)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colPhoto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colFullName1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colAddress1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colEmail1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colMobilePhone)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrders)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colName1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colHomeOffice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colBillingAddress1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Item1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.moduleLayout)).BeginInit();
            this.moduleLayout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).BeginInit();
            this.SuspendLayout();
            // 
            // lvEmployees
            // 
            this.lvEmployees.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.lvEmployees.CardCaptionFormat = "{3}";
            this.lvEmployees.CardHorzInterval = 20;
            this.lvEmployees.CardMinSize = new System.Drawing.Size(292, 183);
            this.lvEmployees.CardVertInterval = 20;
            this.lvEmployees.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
            this.colPhoto,
            this.colFullName1,
            this.colAddress1,
            this.colEmail1,
            this.colMobilePhone});
            this.lvEmployees.FieldCaptionFormat = "{0}";
            this.lvEmployees.GridControl = this.gridControl;
            this.lvEmployees.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colFullName1});
            this.lvEmployees.Name = "lvEmployees";
            this.lvEmployees.OptionsBehavior.AllowRuntimeCustomization = false;
            this.lvEmployees.OptionsBehavior.Editable = false;
            this.lvEmployees.OptionsBehavior.ReadOnly = true;
            this.lvEmployees.OptionsFind.AlwaysVisible = true;
            this.lvEmployees.OptionsFind.FindNullPrompt = "Search Employees (Ctrl + F)";
            this.lvEmployees.OptionsFind.ShowClearButton = false;
            this.lvEmployees.OptionsFind.ShowCloseButton = false;
            this.lvEmployees.OptionsFind.ShowFindButton = false;
            this.lvEmployees.OptionsItemText.TextToControlDistance = 2;
            this.lvEmployees.OptionsView.AllowHotTrackFields = false;
            this.lvEmployees.OptionsView.FocusRectStyle = DevExpress.XtraGrid.Views.Layout.FocusRectStyle.None;
            this.lvEmployees.OptionsView.ShowHeaderPanel = false;
            this.lvEmployees.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.Row;
            this.lvEmployees.TemplateCard = this.layoutViewCard2;
            this.lvEmployees.CustomDrawCardFieldValue += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.lvEmployees_CustomDrawCardFieldValue);
            // 
            // colPhoto
            // 
            this.colPhoto.CustomizationCaption = "Photo";
            this.colPhoto.FieldName = "Photo";
            this.colPhoto.LayoutViewField = this.layoutViewField_colPhoto;
            this.colPhoto.Name = "colPhoto";
            this.colPhoto.OptionsColumn.AllowEdit = false;
            this.colPhoto.OptionsColumn.AllowFocus = false;
            this.colPhoto.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colPhoto.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colPhoto
            // 
            this.layoutViewField_colPhoto.EditorPreferredWidth = 106;
            this.layoutViewField_colPhoto.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colPhoto.MaxSize = new System.Drawing.Size(120, 136);
            this.layoutViewField_colPhoto.MinSize = new System.Drawing.Size(120, 136);
            this.layoutViewField_colPhoto.Name = "layoutViewField_colPhoto";
            this.layoutViewField_colPhoto.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 12, 2, 2);
            this.layoutViewField_colPhoto.Size = new System.Drawing.Size(120, 145);
            this.layoutViewField_colPhoto.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutViewField_colPhoto.TextSize = new System.Drawing.Size(0, 0);
            this.layoutViewField_colPhoto.TextToControlDistance = 0;
            this.layoutViewField_colPhoto.TextVisible = false;
            // 
            // colFullName1
            // 
            this.colFullName1.CustomizationCaption = "Full Name";
            this.colFullName1.FieldName = "FullName";
            this.colFullName1.LayoutViewField = this.layoutViewField_colFullName1;
            this.colFullName1.Name = "colFullName1";
            this.colFullName1.OptionsColumn.AllowFocus = false;
            // 
            // layoutViewField_colFullName1
            // 
            this.layoutViewField_colFullName1.EditorPreferredWidth = 20;
            this.layoutViewField_colFullName1.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colFullName1.Name = "layoutViewField_colFullName1";
            this.layoutViewField_colFullName1.Size = new System.Drawing.Size(272, 136);
            this.layoutViewField_colFullName1.TextSize = new System.Drawing.Size(67, 13);
            this.layoutViewField_colFullName1.TextToControlDistance = 5;
            // 
            // colAddress1
            // 
            this.colAddress1.Caption = "ADDRESS";
            this.colAddress1.ColumnEdit = this.repositoryItemMemoEdit1;
            this.colAddress1.CustomizationCaption = "ADDRESS";
            this.colAddress1.FieldName = "Address";
            this.colAddress1.LayoutViewField = this.layoutViewField_colAddress1;
            this.colAddress1.Name = "colAddress1";
            this.colAddress1.OptionsColumn.AllowFocus = false;
            this.colAddress1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colAddress1.OptionsFilter.AllowFilter = false;
            // 
            // repositoryItemMemoEdit1
            // 
            this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
            // 
            // layoutViewField_colAddress1
            // 
            this.layoutViewField_colAddress1.EditorPreferredWidth = 148;
            this.layoutViewField_colAddress1.Location = new System.Drawing.Point(120, 0);
            this.layoutViewField_colAddress1.Name = "layoutViewField_colAddress1";
            this.layoutViewField_colAddress1.Size = new System.Drawing.Size(152, 38);
            this.layoutViewField_colAddress1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colAddress1.TextSize = new System.Drawing.Size(46, 13);
            // 
            // colEmail1
            // 
            this.colEmail1.Caption = "EMAIL";
            this.colEmail1.CustomizationCaption = "EMAIL";
            this.colEmail1.FieldName = "Email";
            this.colEmail1.LayoutViewField = this.layoutViewField_colEmail1;
            this.colEmail1.Name = "colEmail1";
            this.colEmail1.OptionsColumn.AllowFocus = false;
            this.colEmail1.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colEmail1
            // 
            this.layoutViewField_colEmail1.EditorPreferredWidth = 148;
            this.layoutViewField_colEmail1.Location = new System.Drawing.Point(120, 38);
            this.layoutViewField_colEmail1.Name = "layoutViewField_colEmail1";
            this.layoutViewField_colEmail1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 8, 2);
            this.layoutViewField_colEmail1.Size = new System.Drawing.Size(152, 45);
            this.layoutViewField_colEmail1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colEmail1.TextSize = new System.Drawing.Size(46, 13);
            // 
            // colMobilePhone
            // 
            this.colMobilePhone.Caption = "PHONE";
            this.colMobilePhone.CustomizationCaption = "PHONE";
            this.colMobilePhone.FieldName = "MobilePhone";
            this.colMobilePhone.LayoutViewField = this.layoutViewField_colMobilePhone;
            this.colMobilePhone.Name = "colMobilePhone";
            this.colMobilePhone.OptionsColumn.AllowFocus = false;
            this.colMobilePhone.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colMobilePhone
            // 
            this.layoutViewField_colMobilePhone.EditorPreferredWidth = 148;
            this.layoutViewField_colMobilePhone.Location = new System.Drawing.Point(120, 83);
            this.layoutViewField_colMobilePhone.Name = "layoutViewField_colMobilePhone";
            this.layoutViewField_colMobilePhone.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 8, 2);
            this.layoutViewField_colMobilePhone.Size = new System.Drawing.Size(152, 45);
            this.layoutViewField_colMobilePhone.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colMobilePhone.TextSize = new System.Drawing.Size(46, 13);
            // 
            // gridControl
            // 
            this.gridControl.DataSource = this.bindingSource;
            gridLevelNode1.LevelTemplate = this.lvEmployees;
            gridLevelNode1.RelationName = "Employees";
            gridLevelNode2.LevelTemplate = this.gvOrders;
            gridLevelNode2.RelationName = "Orders";
            this.gridControl.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1,
            gridLevelNode2});
            this.gridControl.Location = new System.Drawing.Point(14, 14);
            this.gridControl.MainView = this.gridView;
            this.gridControl.Margin = new System.Windows.Forms.Padding(12);
            this.gridControl.MenuManager = this.ribbonControl;
            this.gridControl.Name = "gridControl";
            this.gridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemMemoEdit1,
            this.repositoryItemHyperLinkEdit1,
            this.repositoryItemPictureEdit1});
            this.gridControl.ShowOnlyPredefinedDetails = true;
            this.gridControl.Size = new System.Drawing.Size(779, 603);
            this.gridControl.TabIndex = 1;
            this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gvOrders,
            this.gridView,
            this.layoutView,
            this.lvEmployees});
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Customer);
            // 
            // gvOrders
            // 
            this.gvOrders.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gvOrders.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colEmployee,
            this.colInvoiceNumber,
            this.colOrderDate,
            this.colShipDate,
            this.colSaleAmount,
            this.colShippingAmount,
            this.colTotalAmount});
            this.gvOrders.GridControl = this.gridControl;
            this.gvOrders.Name = "gvOrders";
            this.gvOrders.OptionsView.ShowFooter = true;
            this.gvOrders.OptionsView.ShowGroupPanel = false;
            this.gvOrders.OptionsView.ShowIndicator = false;
            this.gvOrders.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            // 
            // colEmployee
            // 
            this.colEmployee.Caption = "EMPLOYEE";
            this.colEmployee.FieldName = "Employee";
            this.colEmployee.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
            this.colEmployee.Name = "colEmployee";
            this.colEmployee.OptionsColumn.AllowFocus = false;
            this.colEmployee.Visible = true;
            this.colEmployee.VisibleIndex = 1;
            this.colEmployee.Width = 317;
            // 
            // colInvoiceNumber
            // 
            this.colInvoiceNumber.Caption = "INVOICE NUMBER";
            this.colInvoiceNumber.FieldName = "InvoiceNumber";
            this.colInvoiceNumber.Name = "colInvoiceNumber";
            this.colInvoiceNumber.OptionsColumn.AllowFocus = false;
            this.colInvoiceNumber.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "InvoiceNumber", "{0}")});
            this.colInvoiceNumber.Visible = true;
            this.colInvoiceNumber.VisibleIndex = 0;
            this.colInvoiceNumber.Width = 161;
            // 
            // colOrderDate
            // 
            this.colOrderDate.Caption = "ORDER DATE";
            this.colOrderDate.FieldName = "OrderDate";
            this.colOrderDate.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DateRange;
            this.colOrderDate.Name = "colOrderDate";
            this.colOrderDate.OptionsColumn.AllowFocus = false;
            this.colOrderDate.Visible = true;
            this.colOrderDate.VisibleIndex = 2;
            this.colOrderDate.Width = 161;
            // 
            // colShipDate
            // 
            this.colShipDate.Caption = "SHIP DATE";
            this.colShipDate.FieldName = "ShipDate";
            this.colShipDate.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DateRange;
            this.colShipDate.Name = "colShipDate";
            this.colShipDate.OptionsColumn.AllowFocus = false;
            this.colShipDate.Visible = true;
            this.colShipDate.VisibleIndex = 3;
            this.colShipDate.Width = 161;
            // 
            // colSaleAmount
            // 
            this.colSaleAmount.Caption = "SALE AMOUNT";
            this.colSaleAmount.DisplayFormat.FormatString = "c";
            this.colSaleAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colSaleAmount.FieldName = "SaleAmount";
            this.colSaleAmount.Name = "colSaleAmount";
            this.colSaleAmount.OptionsColumn.AllowFocus = false;
            this.colSaleAmount.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "SaleAmount", "SUM={0:c}")});
            this.colSaleAmount.Visible = true;
            this.colSaleAmount.VisibleIndex = 4;
            this.colSaleAmount.Width = 161;
            // 
            // colShippingAmount
            // 
            this.colShippingAmount.Caption = "SHIPPING AMOUNT";
            this.colShippingAmount.DisplayFormat.FormatString = "c";
            this.colShippingAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colShippingAmount.FieldName = "ShippingAmount";
            this.colShippingAmount.Name = "colShippingAmount";
            this.colShippingAmount.OptionsColumn.AllowFocus = false;
            this.colShippingAmount.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ShippingAmount", "SUM={0:c}")});
            this.colShippingAmount.Visible = true;
            this.colShippingAmount.VisibleIndex = 5;
            this.colShippingAmount.Width = 161;
            // 
            // colTotalAmount
            // 
            this.colTotalAmount.Caption = "TOTAL AMOUNT";
            this.colTotalAmount.DisplayFormat.FormatString = "c";
            this.colTotalAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colTotalAmount.FieldName = "TotalAmount";
            this.colTotalAmount.Name = "colTotalAmount";
            this.colTotalAmount.OptionsColumn.AllowFocus = false;
            this.colTotalAmount.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TotalAmount", "SUM={0:c}")});
            this.colTotalAmount.Visible = true;
            this.colTotalAmount.VisibleIndex = 6;
            this.colTotalAmount.Width = 167;
            // 
            // gridView
            // 
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colName,
            this.colAddress,
            this.colCity,
            this.colState,
            this.colZipCode,
            this.colPhone,
            this.colLogo,
            this.colFax,
            this.colWebsite,
            this.colProfile,
            this.colStatus,
            this.colBillingAddress,
            this.colAnnualRevenue,
            this.colTotalEmployees,
            this.colTotalStores});
            this.gridView.DetailVerticalIndent = 10;
            this.gridView.GridControl = this.gridControl;
            this.gridView.Name = "gridView";
            this.gridView.OptionsBehavior.AllowPixelScrolling = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridView.OptionsBehavior.Editable = false;
            this.gridView.OptionsBehavior.ReadOnly = true;
            this.gridView.OptionsDetail.AllowZoomDetail = false;
            this.gridView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.CheckAllDetails;
            this.gridView.OptionsDetail.SmartDetailHeight = true;
            this.gridView.OptionsFind.AlwaysVisible = true;
            this.gridView.OptionsFind.FindNullPrompt = "Search Customers (Ctrl + F)";
            this.gridView.OptionsFind.ShowClearButton = false;
            this.gridView.OptionsFind.ShowFindButton = false;
            this.gridView.OptionsSelection.MultiSelect = true;
            this.gridView.OptionsView.ShowGroupPanel = false;
            this.gridView.OptionsView.ShowIndicator = false;
            this.gridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colName, DevExpress.Data.ColumnSortOrder.Ascending)});
            // 
            // colName
            // 
            this.colName.Caption = "CUSTOMER";
            this.colName.FieldName = "Name";
            this.colName.Name = "colName";
            this.colName.OptionsColumn.AllowFocus = false;
            this.colName.Visible = true;
            this.colName.VisibleIndex = 1;
            this.colName.Width = 222;
            // 
            // colAddress
            // 
            this.colAddress.Caption = "ADDRESS";
            this.colAddress.FieldName = "HomeOffice.Line";
            this.colAddress.Name = "colAddress";
            this.colAddress.OptionsColumn.AllowFocus = false;
            this.colAddress.Visible = true;
            this.colAddress.VisibleIndex = 2;
            this.colAddress.Width = 113;
            // 
            // colCity
            // 
            this.colCity.Caption = "CITY";
            this.colCity.FieldName = "HomeOffice.City";
            this.colCity.Name = "colCity";
            this.colCity.OptionsColumn.AllowFocus = false;
            this.colCity.Visible = true;
            this.colCity.VisibleIndex = 4;
            this.colCity.Width = 71;
            // 
            // colState
            // 
            this.colState.Caption = "STATE";
            this.colState.FieldName = "HomeOffice.State";
            this.colState.Name = "colState";
            this.colState.OptionsColumn.AllowFocus = false;
            this.colState.Visible = true;
            this.colState.VisibleIndex = 3;
            this.colState.Width = 68;
            // 
            // colZipCode
            // 
            this.colZipCode.Caption = "ZIP CODE";
            this.colZipCode.FieldName = "HomeOffice.ZipCode";
            this.colZipCode.Name = "colZipCode";
            this.colZipCode.OptionsColumn.AllowFocus = false;
            this.colZipCode.Visible = true;
            this.colZipCode.VisibleIndex = 5;
            this.colZipCode.Width = 90;
            // 
            // colPhone
            // 
            this.colPhone.Caption = "PHONE";
            this.colPhone.FieldName = "Phone";
            this.colPhone.Name = "colPhone";
            this.colPhone.OptionsColumn.AllowFocus = false;
            this.colPhone.Visible = true;
            this.colPhone.VisibleIndex = 6;
            this.colPhone.Width = 156;
            // 
            // colLogo
            // 
            this.colLogo.Caption = "LOGO";
            this.colLogo.ColumnEdit = this.repositoryItemPictureEdit1;
            this.colLogo.FieldName = "Image";
            this.colLogo.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_brand_16;
            this.colLogo.ImageAlignment = System.Drawing.StringAlignment.Center;
            this.colLogo.Name = "colLogo";
            this.colLogo.OptionsColumn.AllowFocus = false;
            this.colLogo.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.colLogo.OptionsColumn.AllowSize = false;
            this.colLogo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colLogo.OptionsColumn.FixedWidth = true;
            this.colLogo.OptionsColumn.ShowCaption = false;
            this.colLogo.OptionsFilter.AllowFilter = false;
            this.colLogo.Visible = true;
            this.colLogo.VisibleIndex = 0;
            this.colLogo.Width = 57;
            // 
            // repositoryItemPictureEdit1
            // 
            this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
            this.repositoryItemPictureEdit1.NullText = " ";
            this.repositoryItemPictureEdit1.PictureInterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
            this.repositoryItemPictureEdit1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
            // 
            // colFax
            // 
            this.colFax.Caption = "FAX";
            this.colFax.FieldName = "Fax";
            this.colFax.Name = "colFax";
            this.colFax.OptionsColumn.AllowFocus = false;
            // 
            // colWebsite
            // 
            this.colWebsite.Caption = "WEBSITE";
            this.colWebsite.ColumnEdit = this.repositoryItemHyperLinkEdit1;
            this.colWebsite.FieldName = "Website";
            this.colWebsite.Name = "colWebsite";
            this.colWebsite.OptionsColumn.AllowFocus = false;
            // 
            // repositoryItemHyperLinkEdit1
            // 
            this.repositoryItemHyperLinkEdit1.AutoHeight = false;
            this.repositoryItemHyperLinkEdit1.Name = "repositoryItemHyperLinkEdit1";
            // 
            // colProfile
            // 
            this.colProfile.Caption = "PROFILE";
            this.colProfile.FieldName = "Profile";
            this.colProfile.Name = "colProfile";
            this.colProfile.OptionsColumn.AllowFocus = false;
            // 
            // colStatus
            // 
            this.colStatus.Caption = "STATUS";
            this.colStatus.FieldName = "Status";
            this.colStatus.Name = "colStatus";
            this.colStatus.OptionsColumn.AllowFocus = false;
            // 
            // colBillingAddress
            // 
            this.colBillingAddress.Caption = "BILLING ADDRESS";
            this.colBillingAddress.FieldName = "BillingAddress";
            this.colBillingAddress.Name = "colBillingAddress";
            this.colBillingAddress.OptionsColumn.AllowFocus = false;
            // 
            // colAnnualRevenue
            // 
            this.colAnnualRevenue.Caption = "ANNUAL REVENUE";
            this.colAnnualRevenue.DisplayFormat.FormatString = "{0:c}";
            this.colAnnualRevenue.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colAnnualRevenue.FieldName = "AnnualRevenue";
            this.colAnnualRevenue.Name = "colAnnualRevenue";
            this.colAnnualRevenue.OptionsColumn.AllowFocus = false;
            // 
            // colTotalEmployees
            // 
            this.colTotalEmployees.Caption = "TOTAL EMPLOYEES";
            this.colTotalEmployees.DisplayFormat.FormatString = "{0:n0}";
            this.colTotalEmployees.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colTotalEmployees.FieldName = "TotalEmployees";
            this.colTotalEmployees.Name = "colTotalEmployees";
            this.colTotalEmployees.OptionsColumn.AllowFocus = false;
            // 
            // colTotalStores
            // 
            this.colTotalStores.Caption = "TOTAL STORES";
            this.colTotalStores.FieldName = "TotalStores";
            this.colTotalStores.Name = "colTotalStores";
            this.colTotalStores.OptionsColumn.AllowFocus = false;
            // 
            // ribbonControl
            // 
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biNewCustomer,
            this.biNewGroup,
            this.biDelete,
            this.biShowList,
            this.biShowCard,
            this.biMap,
            this.barSubItem1,
            this.bmiNewCustomer,
            this.bmiNewGroup,
            this.biEdit,
            this.biPrintSubItem,
            this.biSalesAnalysis,
            this.galleryQuickReports,
            this.bmiPrintSalesSummary,
            this.bmiPrintProfile,
            this.bmiPrintContactDirectory,
            this.biChangeViewSubItem,
            this.biViewSettings,
            this.biResetView,
            this.biDataPaneSubItem,
            this.bmiHorizontalLayout,
            this.bmiVerticalLayout,
            this.bmiHideDetail,
            this.biReverseSort,
            this.biAddColumns,
            this.biExpandCollapse,
            this.bmiShowCard,
            this.bmiShowList,
            this.bmiPrintSalesDetail,
            this.hiItemsCount});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 36;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2});
            this.ribbonControl.Size = new System.Drawing.Size(1280, 142);
            this.ribbonControl.StatusBar = this.ribbonStatusBar;
            // 
            // biNewCustomer
            // 
            this.biNewCustomer.Caption = "New Customer";
            this.biNewCustomer.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_customers_16;
            this.biNewCustomer.Id = 1;
            this.biNewCustomer.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_customers_32;
            this.biNewCustomer.Name = "biNewCustomer";
            // 
            // biNewGroup
            // 
            this.biNewGroup.Caption = "New Group";
            this.biNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.biNewGroup.Id = 2;
            this.biNewGroup.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_32;
            this.biNewGroup.Name = "biNewGroup";
            // 
            // biDelete
            // 
            this.biDelete.Caption = "Delete";
            this.biDelete.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_16;
            this.biDelete.Id = 3;
            this.biDelete.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_32;
            this.biDelete.Name = "biDelete";
            // 
            // biShowList
            // 
            this.biShowList.Caption = "List";
            this.biShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_16;
            this.biShowList.GroupIndex = 1;
            this.biShowList.Id = 4;
            this.biShowList.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.biShowList.Name = "biShowList";
            // 
            // biShowCard
            // 
            this.biShowCard.Caption = "Card";
            this.biShowCard.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_16;
            this.biShowCard.GroupIndex = 1;
            this.biShowCard.Id = 5;
            this.biShowCard.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_32;
            this.biShowCard.Name = "biShowCard";
            // 
            // biMap
            // 
            this.biMap.Caption = "Sales Map";
            this.biMap.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_16;
            this.biMap.Id = 8;
            this.biMap.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_32;
            this.biMap.Name = "biMap";
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "New Items";
            this.barSubItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.barSubItem1.Id = 10;
            this.barSubItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_32;
            this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewCustomer),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewGroup)});
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiNewCustomer
            // 
            this.bmiNewCustomer.Caption = "New Customer";
            this.bmiNewCustomer.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_nav_customers_16;
            this.bmiNewCustomer.Id = 11;
            this.bmiNewCustomer.Name = "bmiNewCustomer";
            // 
            // bmiNewGroup
            // 
            this.bmiNewGroup.Caption = "New Group";
            this.bmiNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.bmiNewGroup.Id = 12;
            this.bmiNewGroup.Name = "bmiNewGroup";
            // 
            // biEdit
            // 
            this.biEdit.Caption = "Edit";
            this.biEdit.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_16;
            this.biEdit.Id = 13;
            this.biEdit.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_32;
            this.biEdit.Name = "biEdit";
            // 
            // biPrintSubItem
            // 
            this.biPrintSubItem.Caption = "Print";
            this.biPrintSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_16;
            this.biPrintSubItem.Id = 15;
            this.biPrintSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.biPrintSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintProfile),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintContactDirectory),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSalesSummary),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSalesDetail)});
            this.biPrintSubItem.Name = "biPrintSubItem";
            this.biPrintSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiPrintProfile
            // 
            this.bmiPrintProfile.Caption = "Customer Profile";
            this.bmiPrintProfile.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_profile_report_16;
            this.bmiPrintProfile.Id = 19;
            this.bmiPrintProfile.Name = "bmiPrintProfile";
            // 
            // bmiPrintContactDirectory
            // 
            this.bmiPrintContactDirectory.Caption = "Employees";
            this.bmiPrintContactDirectory.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_contact_directory_16;
            this.bmiPrintContactDirectory.Id = 20;
            this.bmiPrintContactDirectory.Name = "bmiPrintContactDirectory";
            // 
            // bmiPrintSalesSummary
            // 
            this.bmiPrintSalesSummary.Caption = "Sales Summary";
            this.bmiPrintSalesSummary.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_sales_summary_16;
            this.bmiPrintSalesSummary.Id = 18;
            this.bmiPrintSalesSummary.Name = "bmiPrintSalesSummary";
            // 
            // bmiPrintSalesDetail
            // 
            this.bmiPrintSalesDetail.Caption = "Sales Detail";
            this.bmiPrintSalesDetail.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_sale_detalis_16;
            this.bmiPrintSalesDetail.Id = 34;
            this.bmiPrintSalesDetail.Name = "bmiPrintSalesDetail";
            // 
            // biSalesAnalysis
            // 
            this.biSalesAnalysis.Caption = "Sales Analysis";
            this.biSalesAnalysis.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_analysis_16;
            this.biSalesAnalysis.Id = 16;
            this.biSalesAnalysis.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_analysis_32;
            this.biSalesAnalysis.Name = "biSalesAnalysis";
            // 
            // galleryQuickReports
            // 
            this.galleryQuickReports.Caption = "ribbonGalleryBarItem1";
            // 
            // 
            // 
            this.galleryQuickReports.Gallery.ColumnCount = 2;
            this.galleryQuickReports.Gallery.DrawImageBackground = false;
            galleryItemGroup1.Caption = "Group1";
            galleryItem1.Caption = "Sales Report";
            galleryItem1.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_quick_sales_16;
            galleryItem2.Caption = "Locations";
            galleryItem2.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_quick_locations_16;
            galleryItem3.Caption = "Employees";
            galleryItem3.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_customer_quick_employees_16;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3});
            this.galleryQuickReports.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryQuickReports.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.galleryQuickReports.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -1;
            skinPaddingEdges2.Top = -1;
            this.galleryQuickReports.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.galleryQuickReports.Gallery.ShowItemText = true;
            this.galleryQuickReports.Id = 17;
            this.galleryQuickReports.Name = "galleryQuickReports";
            // 
            // biChangeViewSubItem
            // 
            this.biChangeViewSubItem.Caption = "Change View";
            this.biChangeViewSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_16;
            this.biChangeViewSubItem.Id = 21;
            this.biChangeViewSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_32;
            this.biChangeViewSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowList),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowCard)});
            this.biChangeViewSubItem.Name = "biChangeViewSubItem";
            this.biChangeViewSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiShowList
            // 
            this.bmiShowList.Caption = "List";
            this.bmiShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.bmiShowList.Id = 33;
            this.bmiShowList.Name = "bmiShowList";
            // 
            // bmiShowCard
            // 
            this.bmiShowCard.Caption = "Card";
            this.bmiShowCard.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_card_32;
            this.bmiShowCard.Id = 32;
            this.bmiShowCard.Name = "bmiShowCard";
            // 
            // biViewSettings
            // 
            this.biViewSettings.Caption = "View Settings";
            this.biViewSettings.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_16;
            this.biViewSettings.Id = 22;
            this.biViewSettings.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_32;
            this.biViewSettings.Name = "biViewSettings";
            // 
            // biResetView
            // 
            this.biResetView.Caption = "Reset View";
            this.biResetView.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_16;
            this.biResetView.Id = 23;
            this.biResetView.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_32;
            this.biResetView.Name = "biResetView";
            // 
            // biDataPaneSubItem
            // 
            this.biDataPaneSubItem.Caption = "Data Pane";
            this.biDataPaneSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_16;
            this.biDataPaneSubItem.Id = 24;
            this.biDataPaneSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_32;
            this.biDataPaneSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHorizontalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiVerticalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHideDetail)});
            this.biDataPaneSubItem.Name = "biDataPaneSubItem";
            this.biDataPaneSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiHorizontalLayout
            // 
            this.bmiHorizontalLayout.Caption = "Right";
            this.bmiHorizontalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_bottom_16;
            this.bmiHorizontalLayout.Id = 25;
            this.bmiHorizontalLayout.Name = "bmiHorizontalLayout";
            // 
            // bmiVerticalLayout
            // 
            this.bmiVerticalLayout.Caption = "Bottom";
            this.bmiVerticalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_right_16;
            this.bmiVerticalLayout.Id = 26;
            this.bmiVerticalLayout.Name = "bmiVerticalLayout";
            // 
            // bmiHideDetail
            // 
            this.bmiHideDetail.Caption = "Off";
            this.bmiHideDetail.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_off_16;
            this.bmiHideDetail.Id = 27;
            this.bmiHideDetail.Name = "bmiHideDetail";
            // 
            // biReverseSort
            // 
            this.biReverseSort.Caption = "Reverse Sort";
            this.biReverseSort.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_revers_sort_16;
            this.biReverseSort.Id = 28;
            this.biReverseSort.Name = "biReverseSort";
            this.biReverseSort.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biReverseSort_ItemClick);
            // 
            // biAddColumns
            // 
            this.biAddColumns.Caption = "Add Columns";
            this.biAddColumns.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_add_column_16;
            this.biAddColumns.Id = 30;
            this.biAddColumns.Name = "biAddColumns";
            this.biAddColumns.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.biAddColumns_ItemCheckedChanged);
            // 
            // biExpandCollapse
            // 
            this.biExpandCollapse.Caption = "Expand/Collapse";
            this.biExpandCollapse.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_expand_collapse_16;
            this.biExpandCollapse.Id = 31;
            this.biExpandCollapse.Name = "biExpandCollapse";
            this.biExpandCollapse.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biExpandCollapse_ItemClick);
            // 
            // hiItemsCount
            // 
            this.hiItemsCount.Caption = "RECORDS: 0";
            this.hiItemsCount.Id = 35;
            this.hiItemsCount.Name = "hiItemsCount";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup7,
            this.ribbonPageGroup4,
            this.ribbonPageGroup6});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "HOME";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewCustomer);
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewGroup);
            this.ribbonPageGroup1.ItemLinks.Add(this.barSubItem1);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "New";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.biDelete);
            this.ribbonPageGroup2.MergeOrder = 0;
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Delete";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.AllowTextClipping = false;
            this.ribbonPageGroup3.ItemLinks.Add(this.biEdit);
            this.ribbonPageGroup3.ItemLinks.Add(this.biPrintSubItem);
            this.ribbonPageGroup3.ItemLinks.Add(this.biSalesAnalysis);
            this.ribbonPageGroup3.MergeOrder = 0;
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Actions";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.AllowTextClipping = false;
            this.ribbonPageGroup7.ItemLinks.Add(this.galleryQuickReports);
            this.ribbonPageGroup7.MergeOrder = 0;
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.ShowCaptionButton = false;
            this.ribbonPageGroup7.Text = "Quick Reports";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.AllowTextClipping = false;
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowList);
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowCard);
            this.ribbonPageGroup4.ItemLinks.Add(this.biMap);
            this.ribbonPageGroup4.MergeOrder = 0;
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "View";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.AllowTextClipping = false;
            this.ribbonPageGroup6.ItemLinks.Add(this.biNewCustomFilter);
            this.ribbonPageGroup6.MergeOrder = 0;
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Find";
            // 
            // biNewCustomFilter
            // 
            this.biNewCustomFilter.Caption = "Custom Filter";
            this.biNewCustomFilter.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_16;
            this.biNewCustomFilter.Id = 9;
            this.biNewCustomFilter.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_32;
            this.biNewCustomFilter.Name = "biNewCustomFilter";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup8,
            this.ribbonPageGroup5,
            this.ribbonPageGroup9});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "VIEW";
            // 
            // ribbonPageGroup8
            // 
            this.ribbonPageGroup8.AllowTextClipping = false;
            this.ribbonPageGroup8.ItemLinks.Add(this.biChangeViewSubItem);
            this.ribbonPageGroup8.ItemLinks.Add(this.biViewSettings);
            this.ribbonPageGroup8.ItemLinks.Add(this.biResetView);
            this.ribbonPageGroup8.MergeOrder = 0;
            this.ribbonPageGroup8.Name = "ribbonPageGroup8";
            this.ribbonPageGroup8.ShowCaptionButton = false;
            this.ribbonPageGroup8.Text = "Current View";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.AllowTextClipping = false;
            this.ribbonPageGroup5.ItemLinks.Add(this.biDataPaneSubItem);
            this.ribbonPageGroup5.MergeOrder = 1;
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Layout";
            // 
            // ribbonPageGroup9
            // 
            this.ribbonPageGroup9.AllowTextClipping = false;
            this.ribbonPageGroup9.ItemLinks.Add(this.biReverseSort);
            this.ribbonPageGroup9.ItemLinks.Add(this.biAddColumns);
            this.ribbonPageGroup9.ItemLinks.Add(this.biExpandCollapse);
            this.ribbonPageGroup9.MergeOrder = 1;
            this.ribbonPageGroup9.Name = "ribbonPageGroup9";
            this.ribbonPageGroup9.ShowCaptionButton = false;
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.hiItemsCount);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 773);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbonControl;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1280, 27);
            // 
            // layoutView
            // 
            this.layoutView.CardCaptionFormat = "{2}";
            this.layoutView.CardMinSize = new System.Drawing.Size(231, 165);
            this.layoutView.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
            this.colName1,
            this.colHomeOffice,
            this.colBillingAddress1,
            this.colImage});
            this.layoutView.FieldCaptionFormat = "{0}";
            this.layoutView.GridControl = this.gridControl;
            this.layoutView.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colName1});
            this.layoutView.Name = "layoutView";
            this.layoutView.OptionsBehavior.AllowExpandCollapse = false;
            this.layoutView.OptionsBehavior.AllowRuntimeCustomization = false;
            this.layoutView.OptionsBehavior.Editable = false;
            this.layoutView.OptionsBehavior.ReadOnly = true;
            this.layoutView.OptionsMultiRecordMode.MultiRowScrollBarOrientation = DevExpress.XtraGrid.Views.Layout.ScrollBarOrientation.Vertical;
            this.layoutView.OptionsSelection.MultiSelect = true;
            this.layoutView.OptionsView.AllowHotTrackFields = false;
            this.layoutView.OptionsView.FocusRectStyle = DevExpress.XtraGrid.Views.Layout.FocusRectStyle.None;
            this.layoutView.OptionsView.ShowHeaderPanel = false;
            this.layoutView.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.MultiRow;
            this.layoutView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colName1, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.layoutView.TemplateCard = this.layoutViewCard1;
            // 
            // colName1
            // 
            this.colName1.FieldName = "Name";
            this.colName1.LayoutViewField = this.layoutViewField_colName1;
            this.colName1.Name = "colName1";
            // 
            // layoutViewField_colName1
            // 
            this.layoutViewField_colName1.EditorPreferredWidth = 20;
            this.layoutViewField_colName1.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_colName1.Name = "layoutViewField_colName1";
            this.layoutViewField_colName1.Size = new System.Drawing.Size(209, 68);
            this.layoutViewField_colName1.TextSize = new System.Drawing.Size(72, 13);
            this.layoutViewField_colName1.TextToControlDistance = 5;
            // 
            // colHomeOffice
            // 
            this.colHomeOffice.Caption = "HOME OFFICE";
            this.colHomeOffice.ColumnEdit = this.repositoryItemMemoEdit1;
            this.colHomeOffice.FieldName = "HomeOffice";
            this.colHomeOffice.LayoutViewField = this.layoutViewField_colHomeOffice;
            this.colHomeOffice.Name = "colHomeOffice";
            this.colHomeOffice.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colHomeOffice.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colHomeOffice
            // 
            this.layoutViewField_colHomeOffice.EditorPreferredWidth = 124;
            this.layoutViewField_colHomeOffice.Location = new System.Drawing.Point(83, 0);
            this.layoutViewField_colHomeOffice.Name = "layoutViewField_colHomeOffice";
            this.layoutViewField_colHomeOffice.Size = new System.Drawing.Size(128, 62);
            this.layoutViewField_colHomeOffice.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
            this.layoutViewField_colHomeOffice.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colHomeOffice.TextSize = new System.Drawing.Size(87, 13);
            this.layoutViewField_colHomeOffice.TextToControlDistance = 0;
            // 
            // colBillingAddress1
            // 
            this.colBillingAddress1.Caption = "BILLING ADDRESS";
            this.colBillingAddress1.ColumnEdit = this.repositoryItemMemoEdit1;
            this.colBillingAddress1.FieldName = "BillingAddress";
            this.colBillingAddress1.LayoutViewField = this.layoutViewField_colBillingAddress1;
            this.colBillingAddress1.Name = "colBillingAddress1";
            this.colBillingAddress1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colBillingAddress1.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_colBillingAddress1
            // 
            this.layoutViewField_colBillingAddress1.EditorPreferredWidth = 124;
            this.layoutViewField_colBillingAddress1.Location = new System.Drawing.Point(83, 62);
            this.layoutViewField_colBillingAddress1.Name = "layoutViewField_colBillingAddress1";
            this.layoutViewField_colBillingAddress1.Size = new System.Drawing.Size(128, 64);
            this.layoutViewField_colBillingAddress1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
            this.layoutViewField_colBillingAddress1.TextLocation = DevExpress.Utils.Locations.Top;
            this.layoutViewField_colBillingAddress1.TextSize = new System.Drawing.Size(87, 13);
            this.layoutViewField_colBillingAddress1.TextToControlDistance = 0;
            // 
            // colImage
            // 
            this.colImage.Caption = "IMAGE";
            this.colImage.ColumnEdit = this.repositoryItemPictureEdit1;
            this.colImage.FieldName = "Image";
            this.colImage.LayoutViewField = this.layoutViewField_layoutViewColumn1;
            this.colImage.Name = "colImage";
            this.colImage.OptionsColumn.AllowEdit = false;
            this.colImage.OptionsColumn.AllowFocus = false;
            this.colImage.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colImage.OptionsFilter.AllowFilter = false;
            // 
            // layoutViewField_layoutViewColumn1
            // 
            this.layoutViewField_layoutViewColumn1.EditorPreferredWidth = 79;
            this.layoutViewField_layoutViewColumn1.Location = new System.Drawing.Point(0, 0);
            this.layoutViewField_layoutViewColumn1.Name = "layoutViewField_layoutViewColumn1";
            this.layoutViewField_layoutViewColumn1.Size = new System.Drawing.Size(83, 126);
            this.layoutViewField_layoutViewColumn1.TextSize = new System.Drawing.Size(0, 0);
            this.layoutViewField_layoutViewColumn1.TextToControlDistance = 0;
            this.layoutViewField_layoutViewColumn1.TextVisible = false;
            // 
            // layoutViewCard1
            // 
            this.layoutViewCard1.CustomizationFormText = "TemplateCard";
            this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
            this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colHomeOffice,
            this.layoutViewField_colBillingAddress1,
            this.layoutViewField_layoutViewColumn1});
            this.layoutViewCard1.Name = "layoutViewTemplateCard";
            this.layoutViewCard1.OptionsItemText.TextToControlDistance = 5;
            this.layoutViewCard1.Text = "TemplateCard";
            // 
            // layoutViewCard2
            // 
            this.layoutViewCard2.CustomizationFormText = "TemplateCard";
            this.layoutViewCard2.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
            this.layoutViewCard2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutViewField_colAddress1,
            this.layoutViewField_colEmail1,
            this.layoutViewField_colPhoto,
            this.layoutViewField_colMobilePhone,
            this.Item1});
            this.layoutViewCard2.Name = "layoutViewCard2";
            this.layoutViewCard2.OptionsItemText.TextToControlDistance = 2;
            this.layoutViewCard2.Text = "TemplateCard";
            // 
            // Item1
            // 
            this.Item1.AllowHotTrack = false;
            this.Item1.CustomizationFormText = "Item1";
            this.Item1.Location = new System.Drawing.Point(120, 128);
            this.Item1.Name = "Item1";
            this.Item1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.Item1.Size = new System.Drawing.Size(152, 17);
            this.Item1.Text = "Item1";
            this.Item1.TextSize = new System.Drawing.Size(0, 0);
            // 
            // moduleLayout
            // 
            this.moduleLayout.AllowCustomizationMenu = false;
            this.moduleLayout.Controls.Add(this.pnlView);
            this.moduleLayout.Controls.Add(this.gridControl);
            this.moduleLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.moduleLayout.Location = new System.Drawing.Point(0, 142);
            this.moduleLayout.MenuManager = this.ribbonControl;
            this.moduleLayout.Name = "moduleLayout";
            this.moduleLayout.Root = this.layoutControlGroup1;
            this.moduleLayout.Size = new System.Drawing.Size(1280, 631);
            this.moduleLayout.TabIndex = 5;
            this.moduleLayout.Text = "moduleLayout";
            // 
            // pnlView
            // 
            this.pnlView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pnlView.Location = new System.Drawing.Point(802, 14);
            this.pnlView.Name = "pnlView";
            this.pnlView.Size = new System.Drawing.Size(464, 603);
            this.pnlView.TabIndex = 4;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem1,
            this.detailItem,
            this.splitterItem});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(12, 12, 12, 12);
            this.layoutControlGroup1.Size = new System.Drawing.Size(1280, 631);
            this.layoutControlGroup1.Text = "Root";
            this.layoutControlGroup1.TextVisible = false;
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Control = this.gridControl;
            this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.Size = new System.Drawing.Size(783, 607);
            this.layoutControlItem1.Text = "layoutControlItem1";
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem1.TextToControlDistance = 0;
            this.layoutControlItem1.TextVisible = false;
            // 
            // detailItem
            // 
            this.detailItem.Control = this.pnlView;
            this.detailItem.CustomizationFormText = "detailItem";
            this.detailItem.Location = new System.Drawing.Point(788, 0);
            this.detailItem.Name = "detailItem";
            this.detailItem.Size = new System.Drawing.Size(468, 607);
            this.detailItem.Text = "detailItem";
            this.detailItem.TextSize = new System.Drawing.Size(0, 0);
            this.detailItem.TextToControlDistance = 0;
            this.detailItem.TextVisible = false;
            // 
            // splitterItem
            // 
            this.splitterItem.AllowHotTrack = true;
            this.splitterItem.CustomizationFormText = "splitterItem";
            this.splitterItem.Location = new System.Drawing.Point(783, 0);
            this.splitterItem.Name = "splitterItem";
            this.splitterItem.Size = new System.Drawing.Size(5, 607);
            // 
            // Customers
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.moduleLayout);
            this.Controls.Add(this.ribbonControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Name = "Customers";
            this.Size = new System.Drawing.Size(1280, 800);
            ((System.ComponentModel.ISupportInitialize)(this.lvEmployees)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colPhoto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colFullName1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colAddress1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colEmail1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colMobilePhone)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrders)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colName1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colHomeOffice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_colBillingAddress1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Item1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.moduleLayout)).EndInit();
            this.moduleLayout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup13 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem33      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources          = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem34      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem35      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup14 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem36      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem37      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem38      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem39      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup15 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem40      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.Utils.SuperToolTip         superToolTip5         = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem     toolTipTitleItem5     = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem          toolTipItem9          = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem5 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipItem          toolTipItem10         = new DevExpress.Utils.ToolTipItem();
     this.ribbonControl1        = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barToggleSwitchItem1  = new DevExpress.XtraBars.BarToggleSwitchItem();
     this.barButtonItem1        = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1        = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem2        = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.galleryDropDown1      = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
     this.barButtonItem3        = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonMiniToolbar1    = new DevExpress.XtraBars.Ribbon.RibbonMiniToolbar(this.components);
     this.ribbonPage1           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1      = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.popupMenu1            = new DevExpress.XtraBars.PopupMenu(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AllowCustomization  = true;
     this.ribbonControl1.AutoSaveLayoutToXml = true;
     this.ribbonControl1.CaptionBarItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barToggleSwitchItem1,
         this.ribbonControl1.ExpandCollapseItem,
         this.ribbonControl1.SearchEditItem,
         this.barButtonItem1,
         this.barStaticItem1,
         this.barButtonItem2,
         this.ribbonGalleryBarItem1,
         this.barButtonItem3
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 7;
     this.ribbonControl1.MiniToolbars.Add(this.ribbonMiniToolbar1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.PageHeaderItemLinks.Add(this.barButtonItem2);
     this.ribbonControl1.PageHeaderItemLinks.Add(this.barStaticItem1);
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage2
     });
     this.ribbonControl1.QuickToolbarItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2019;
     this.ribbonControl1.Size        = new System.Drawing.Size(862, 158);
     this.ribbonControl1.StatusBar   = this.ribbonStatusBar1;
     //
     // barToggleSwitchItem1
     //
     this.barToggleSwitchItem1.Caption = "barToggleSwitchItem1";
     this.barToggleSwitchItem1.Id      = 4;
     this.barToggleSwitchItem1.Name    = "barToggleSwitchItem1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 1;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "barStaticItem1";
     this.barStaticItem1.Id      = 2;
     this.barStaticItem1.Name    = "barStaticItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 3;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     galleryItemGroup13.Caption          = "Alignment";
     galleryItem33.Caption               = "Top";
     galleryItem33.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     galleryItem34.Caption               = "Middle";
     galleryItem34.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1")));
     galleryItem35.Caption               = "Bottom";
     galleryItem35.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2")));
     galleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem33,
         galleryItem34,
         galleryItem35
     });
     galleryItemGroup14.Caption          = "Text alignment";
     galleryItem36.Caption               = "Left";
     galleryItem36.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage3")));
     galleryItem37.Caption               = "Center";
     galleryItem37.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage4")));
     galleryItem38.Caption               = "Right";
     galleryItem38.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage5")));
     galleryItem39.Caption               = "Block";
     galleryItem39.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage6")));
     galleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem36,
         galleryItem37,
         galleryItem38,
         galleryItem39
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup13,
         galleryItemGroup14
     });
     this.ribbonGalleryBarItem1.Gallery.ShowItemText = true;
     this.ribbonGalleryBarItem1.GalleryDropDown      = this.galleryDropDown1;
     this.ribbonGalleryBarItem1.Id   = 5;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // galleryDropDown1
     //
     //
     //
     //
     galleryItemGroup15.Caption = "Group1";
     galleryItem40.Caption      = "Drop-down gallery item";
     galleryItemGroup15.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem40
     });
     this.galleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup15
     });
     this.galleryDropDown1.Gallery.ShowItemText = true;
     this.galleryDropDown1.ItemLinks.Add(this.barButtonItem1);
     this.galleryDropDown1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.galleryDropDown1.Name   = "galleryDropDown1";
     this.galleryDropDown1.Ribbon = this.ribbonControl1;
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id      = 6;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // ribbonMiniToolbar1
     //
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItem3);
     this.ribbonMiniToolbar1.ParentControl = this;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup3
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2, "BX");
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.True;
     this.ribbonPageGroup3.ItemLinks.Add(this.ribbonGalleryBarItem1);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     toolTipTitleItem5.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage7")));
     toolTipTitleItem5.Text = "This is the Ribbon Gallery";
     toolTipItem9.Text      = "Galleries can display options or commands for quick selection.";
     toolTipItem10.Text     = "They can also be useful for elements that require visual identification.";
     superToolTip5.Items.Add(toolTipTitleItem5);
     superToolTip5.Items.Add(toolTipItem9);
     superToolTip5.Items.Add(toolTipSeparatorItem5);
     superToolTip5.Items.Add(toolTipItem10);
     this.ribbonPageGroup3.SuperTip = superToolTip5;
     this.ribbonPageGroup3.Text     = "Gallery";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup2
     });
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "ribbonPage2";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "ribbonPageGroup2";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 491);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(862, 22);
     //
     // popupMenu1
     //
     this.popupMenu1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.popupMenu1.ItemLinks.Add(this.barButtonItem1);
     this.popupMenu1.Name   = "popupMenu1";
     this.popupMenu1.Ribbon = this.ribbonControl1;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(862, 513);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Name      = "Form1";
     this.Ribbon    = this.ribbonControl1;
     this.StatusBar = this.ribbonStatusBar1;
     this.Text      = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(FormCarStyle));
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.imageCollection1      = new DevExpress.Utils.ImageCollection(this.components);
     this.panel1        = new System.Windows.Forms.Panel();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.btnOK         = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // galleryControlGallery1
     //
     this.galleryControl1.Gallery.Appearance.GroupCaption.BackColor                                = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.galleryControl1.Gallery.Appearance.GroupCaption.ForeColor                                = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     this.galleryControl1.Gallery.Appearance.GroupCaption.Options.UseBackColor                     = true;
     this.galleryControl1.Gallery.Appearance.GroupCaption.Options.UseForeColor                     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseForeColor    = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.ForeColor                = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseForeColor     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseForeColor    = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseForeColor = true;
     this.galleryControl1.Gallery.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(50)))));
     galleryItemGroup1.Caption = "车标";
     galleryItem1.Caption      = "不限";
     galleryItem1.Image        = global::Bocom.ImageAnalysisClient.App.Properties.Resources._1565_QuestionMarkBlue;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ImageSize        = new System.Drawing.Size(48, 48);
     this.galleryControl1.Gallery.ItemCheckMode    = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadioInGroup;
     this.galleryControl1.Gallery.ItemImageLayout  = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl1.Gallery.ScrollSpeed      = 3F;
     this.galleryControl1.Gallery.ShowItemText     = true;
     this.galleryControl1.Gallery.ItemClick       += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
     this.galleryControl1.Gallery.ItemDoubleClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl1_Gallery_ItemDoubleClick);
     this.galleryControl1.Location        = new System.Drawing.Point(0, 0);
     this.galleryControl1.Name            = "galleryControl1";
     this.galleryControl1.Size            = new System.Drawing.Size(900, 500);
     this.galleryControl1.TabIndex        = 0;
     this.galleryControl1.Text            = "galleryControl1";
     this.galleryControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.XtraFormCarStyle_PreviewKeyDown);
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(1, 1);
     this.galleryControlClient1.Size           = new System.Drawing.Size(881, 498);
     //
     // imageCollection1
     //
     this.imageCollection1.ImageSize   = new System.Drawing.Size(48, 48);
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "GMC.png");
     this.imageCollection1.Images.SetKeyName(1, "JEEP.png");
     this.imageCollection1.Images.SetKeyName(2, "MG.png");
     this.imageCollection1.Images.SetKeyName(3, "MINI.png");
     this.imageCollection1.Images.SetKeyName(4, "TVR.png");
     this.imageCollection1.Images.SetKeyName(5, "阿尔法罗密欧.png");
     this.imageCollection1.Images.SetKeyName(6, "阿斯顿马丁.png");
     this.imageCollection1.Images.SetKeyName(7, "奥迪.png");
     this.imageCollection1.Images.SetKeyName(8, "宝马.png");
     this.imageCollection1.Images.SetKeyName(9, "保时捷.png");
     this.imageCollection1.Images.SetKeyName(10, "北奔.png");
     this.imageCollection1.Images.SetKeyName(11, "北汽.png");
     this.imageCollection1.Images.SetKeyName(12, "奔驰.png");
     this.imageCollection1.Images.SetKeyName(13, "奔腾.png");
     this.imageCollection1.Images.SetKeyName(14, "本田.png");
     this.imageCollection1.Images.SetKeyName(15, "比亚迪.png");
     this.imageCollection1.Images.SetKeyName(16, "标志.png");
     this.imageCollection1.Images.SetKeyName(17, "别克.png");
     this.imageCollection1.Images.SetKeyName(18, "宾利.png");
     this.imageCollection1.Images.SetKeyName(19, "昌河.png");
     this.imageCollection1.Images.SetKeyName(20, "楚风.png");
     this.imageCollection1.Images.SetKeyName(21, "春兰.png");
     this.imageCollection1.Images.SetKeyName(22, "大发.png");
     this.imageCollection1.Images.SetKeyName(23, "大宇.png");
     this.imageCollection1.Images.SetKeyName(24, "大运.png");
     this.imageCollection1.Images.SetKeyName(25, "大众.png");
     this.imageCollection1.Images.SetKeyName(26, "帝豪.png");
     this.imageCollection1.Images.SetKeyName(27, "东风.png");
     this.imageCollection1.Images.SetKeyName(28, "东风柳州.png");
     this.imageCollection1.Images.SetKeyName(29, "东南.png");
     this.imageCollection1.Images.SetKeyName(30, "法拉利.png");
     this.imageCollection1.Images.SetKeyName(31, "飞驰.png");
     this.imageCollection1.Images.SetKeyName(32, "菲亚特.png");
     this.imageCollection1.Images.SetKeyName(33, "丰田.png");
     this.imageCollection1.Images.SetKeyName(34, "福迪.png");
     this.imageCollection1.Images.SetKeyName(35, "福特.png");
     this.imageCollection1.Images.SetKeyName(36, "福田.png");
     this.imageCollection1.Images.SetKeyName(37, "广汽.png");
     this.imageCollection1.Images.SetKeyName(38, "哈飞.png");
     this.imageCollection1.Images.SetKeyName(39, "海马郑州.png");
     this.imageCollection1.Images.SetKeyName(40, "悍马.png");
     this.imageCollection1.Images.SetKeyName(41, "红旗.png");
     this.imageCollection1.Images.SetKeyName(42, "红岩.png");
     this.imageCollection1.Images.SetKeyName(43, "华德.png");
     this.imageCollection1.Images.SetKeyName(44, "华菱.png");
     this.imageCollection1.Images.SetKeyName(45, "华普.png");
     this.imageCollection1.Images.SetKeyName(46, "华泰.png");
     this.imageCollection1.Images.SetKeyName(47, "皇冠.png");
     this.imageCollection1.Images.SetKeyName(48, "汇众.png");
     this.imageCollection1.Images.SetKeyName(49, "吉奥.png");
     this.imageCollection1.Images.SetKeyName(50, "吉利.png");
     this.imageCollection1.Images.SetKeyName(51, "江淮.png");
     this.imageCollection1.Images.SetKeyName(52, "江铃.png");
     this.imageCollection1.Images.SetKeyName(53, "捷豹.png");
     this.imageCollection1.Images.SetKeyName(54, "解放.png");
     this.imageCollection1.Images.SetKeyName(55, "金杯.png");
     this.imageCollection1.Images.SetKeyName(56, "金龙.png");
     this.imageCollection1.Images.SetKeyName(57, "金旅.png");
     this.imageCollection1.Images.SetKeyName(58, "开瑞.png");
     this.imageCollection1.Images.SetKeyName(59, "凯迪拉克.png");
     this.imageCollection1.Images.SetKeyName(60, "克莱斯勒.png");
     this.imageCollection1.Images.SetKeyName(61, "兰博基尼.png");
     this.imageCollection1.Images.SetKeyName(62, "劳斯莱斯.png");
     this.imageCollection1.Images.SetKeyName(63, "雷克萨斯.png");
     this.imageCollection1.Images.SetKeyName(64, "雷诺.png");
     this.imageCollection1.Images.SetKeyName(65, "力帆.png");
     this.imageCollection1.Images.SetKeyName(66, "莲花.png");
     this.imageCollection1.Images.SetKeyName(67, "联合.png");
     this.imageCollection1.Images.SetKeyName(68, "林肯.png");
     this.imageCollection1.Images.SetKeyName(69, "铃木.png");
     this.imageCollection1.Images.SetKeyName(70, "陆风.png");
     this.imageCollection1.Images.SetKeyName(71, "路虎.png");
     this.imageCollection1.Images.SetKeyName(72, "罗孚.png");
     this.imageCollection1.Images.SetKeyName(73, "马自达.png");
     this.imageCollection1.Images.SetKeyName(74, "玛莎拉蒂.png");
     this.imageCollection1.Images.SetKeyName(75, "曼.png");
     this.imageCollection1.Images.SetKeyName(76, "南汽.png");
     this.imageCollection1.Images.SetKeyName(77, "讴歌.png");
     this.imageCollection1.Images.SetKeyName(78, "欧宝.png");
     this.imageCollection1.Images.SetKeyName(79, "奇瑞.png");
     this.imageCollection1.Images.SetKeyName(80, "起亚.png");
     this.imageCollection1.Images.SetKeyName(81, "青年.png");
     this.imageCollection1.Images.SetKeyName(82, "全球鹰.png");
     this.imageCollection1.Images.SetKeyName(83, "日产.png");
     this.imageCollection1.Images.SetKeyName(84, "日产柴.png");
     this.imageCollection1.Images.SetKeyName(85, "日野.png");
     this.imageCollection1.Images.SetKeyName(86, "荣威.png");
     this.imageCollection1.Images.SetKeyName(87, "瑞麟.png");
     this.imageCollection1.Images.SetKeyName(88, "瑞麒.png");
     this.imageCollection1.Images.SetKeyName(89, "萨博.png");
     this.imageCollection1.Images.SetKeyName(90, "三菱.png");
     this.imageCollection1.Images.SetKeyName(91, "陕汽.png");
     this.imageCollection1.Images.SetKeyName(92, "神野.png");
     this.imageCollection1.Images.SetKeyName(93, "世爵.png");
     this.imageCollection1.Images.SetKeyName(94, "曙光.png");
     this.imageCollection1.Images.SetKeyName(95, "双环.png");
     this.imageCollection1.Images.SetKeyName(96, "双龙.png");
     this.imageCollection1.Images.SetKeyName(97, "斯巴鲁.png");
     this.imageCollection1.Images.SetKeyName(98, "斯堪尼亚.png");
     this.imageCollection1.Images.SetKeyName(99, "斯柯达.png");
     this.imageCollection1.Images.SetKeyName(100, "王牌.png");
     this.imageCollection1.Images.SetKeyName(101, "威麟.png");
     this.imageCollection1.Images.SetKeyName(102, "威兹曼.png");
     this.imageCollection1.Images.SetKeyName(103, "沃尔沃.png");
     this.imageCollection1.Images.SetKeyName(104, "五铃.png");
     this.imageCollection1.Images.SetKeyName(105, "五十铃.png");
     this.imageCollection1.Images.SetKeyName(106, "五征.png");
     this.imageCollection1.Images.SetKeyName(107, "夏利.png");
     this.imageCollection1.Images.SetKeyName(108, "现代.png");
     this.imageCollection1.Images.SetKeyName(109, "徐工.png");
     this.imageCollection1.Images.SetKeyName(110, "雪佛兰.png");
     this.imageCollection1.Images.SetKeyName(111, "雪铁龙.png");
     this.imageCollection1.Images.SetKeyName(112, "羊城.png");
     this.imageCollection1.Images.SetKeyName(113, "野马.png");
     this.imageCollection1.Images.SetKeyName(114, "依维柯.png");
     this.imageCollection1.Images.SetKeyName(115, "英菲尼迪.png");
     this.imageCollection1.Images.SetKeyName(116, "宇通.png");
     this.imageCollection1.Images.SetKeyName(117, "跃进.png");
     this.imageCollection1.Images.SetKeyName(118, "长安.png");
     this.imageCollection1.Images.SetKeyName(119, "长城.png");
     this.imageCollection1.Images.SetKeyName(120, "长丰.png");
     this.imageCollection1.Images.SetKeyName(121, "中国重汽.png");
     this.imageCollection1.Images.SetKeyName(122, "中华.png");
     this.imageCollection1.Images.SetKeyName(123, "中顺.png");
     this.imageCollection1.Images.SetKeyName(124, "中通.png");
     this.imageCollection1.Images.SetKeyName(125, "中兴.png");
     this.imageCollection1.Images.SetKeyName(126, "众泰.png");
     this.imageCollection1.Images.SetKeyName(127, "一汽.png");
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.panel1.Controls.Add(this.simpleButton2);
     this.panel1.Controls.Add(this.btnOK);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 500);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(900, 43);
     this.panel1.TabIndex = 0;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location     = new System.Drawing.Point(822, 8);
     this.simpleButton2.Name         = "simpleButton2";
     this.simpleButton2.Size         = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex     = 7;
     this.simpleButton2.Text         = "取 消";
     this.simpleButton2.Click       += new System.EventHandler(this.simpleButton2_Click);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(750, 8);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new System.Drawing.Size(66, 23);
     this.btnOK.TabIndex = 6;
     this.btnOK.Text     = "确 定";
     this.btnOK.Click   += new System.EventHandler(this.btnOK_Click);
     //
     // FormCarStyle
     //
     this.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(24)))), ((int)(((byte)(24)))));
     this.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseForeColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize    = new System.Drawing.Size(900, 543);
     this.Controls.Add(this.galleryControl1);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.KeyPreview      = true;
     this.Name            = "FormCarStyle";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "XtraFormCarStyle";
     this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.XtraFormCarStyle_PreviewKeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.Utils.SuperToolTip         superToolTip1         = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem     toolTipTitleItem1     = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem          toolTipItem1          = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipItem          toolTipItem2          = new DevExpress.Utils.ToolTipItem();
     this.ribbonControl1        = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1        = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1        = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem2        = new DevExpress.XtraBars.BarButtonItem();
     this.barToggleSwitchItem1  = new DevExpress.XtraBars.BarToggleSwitchItem();
     this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.ribbonPage1           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1      = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.ribbonControl1.SearchEditItem,
         this.barButtonItem1,
         this.barStaticItem1,
         this.barButtonItem2,
         this.barToggleSwitchItem1,
         this.ribbonGalleryBarItem1
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 6;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage2
     });
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2019;
     this.ribbonControl1.Size        = new System.Drawing.Size(656, 158);
     this.ribbonControl1.StatusBar   = this.ribbonStatusBar1;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 1;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "barStaticItem1";
     this.barStaticItem1.Id      = 2;
     this.barStaticItem1.Name    = "barStaticItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 3;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // barToggleSwitchItem1
     //
     this.barToggleSwitchItem1.Caption = "barToggleSwitchItem1";
     this.barToggleSwitchItem1.Id      = 4;
     this.barToggleSwitchItem1.Name    = "barToggleSwitchItem1";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     galleryItemGroup1.Caption          = "Alignment";
     galleryItem1.Caption               = "Top";
     galleryItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     galleryItem2.Caption               = "Middle";
     galleryItem2.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1")));
     galleryItem3.Caption               = "Bottom";
     galleryItem3.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2")));
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3
     });
     galleryItemGroup2.Caption          = "Text alignment";
     galleryItem4.Caption               = "Left";
     galleryItem4.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage3")));
     galleryItem5.Caption               = "Center";
     galleryItem5.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage4")));
     galleryItem6.Caption               = "Right";
     galleryItem6.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage5")));
     galleryItem7.Caption               = "Block";
     galleryItem7.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage6")));
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2
     });
     this.ribbonGalleryBarItem1.Gallery.ShowItemText = true;
     this.ribbonGalleryBarItem1.Id   = 5;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup3
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.True;
     this.ribbonPageGroup3.ItemLinks.Add(this.ribbonGalleryBarItem1);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     toolTipTitleItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage7")));
     toolTipTitleItem1.Text = "This is the Ribbon Gallery";
     toolTipItem1.Text      = "Galleries can display options or commands for quick selection.";
     toolTipItem2.Text      = "They can also be useful for elements that require visual identification.";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     superToolTip1.Items.Add(toolTipSeparatorItem1);
     superToolTip1.Items.Add(toolTipItem2);
     this.ribbonPageGroup3.SuperTip = superToolTip1;
     this.ribbonPageGroup3.Text     = "Gallery";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup2
     });
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "ribbonPage2";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "ribbonPageGroup2";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 372);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(656, 22);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(656, 394);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Name      = "Form1";
     this.Ribbon    = this.ribbonControl1;
     this.StatusBar = this.ribbonStatusBar1;
     this.Text      = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(ExportControl));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem9      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.exportGallery         = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.backstageViewLabel1   = new DevExpress.ProductsDemo.Win.BackstageViewLabel();
     this.labelControl4         = new DevExpress.XtraEditors.LabelControl();
     this.saveFileDialog1       = new System.Windows.Forms.SaveFileDialog();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.exportGallery)).BeginInit();
     this.exportGallery.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.exportGallery);
     this.splitContainer1.Panel1.Controls.Add(this.backstageViewLabel1);
     resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.labelControl4);
     //
     // exportGallery
     //
     this.exportGallery.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.exportGallery.Controls.Add(this.galleryControlClient1);
     this.exportGallery.DesignGalleryGroupIndex = 0;
     this.exportGallery.DesignGalleryItemIndex  = 0;
     resources.ApplyResources(this.exportGallery, "exportGallery");
     //
     // galleryControlGallery1
     //
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions     = true;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.VAlignment     = DevExpress.Utils.VertAlignment.Center;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions      = true;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment      = DevExpress.Utils.HorzAlignment.Near;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.VAlignment      = DevExpress.Utils.VertAlignment.Center;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions     = true;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.exportGallery.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.VAlignment     = DevExpress.Utils.VertAlignment.Center;
     this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseTextOptions = true;
     this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions  = true;
     this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment  = DevExpress.Utils.HorzAlignment.Near;
     this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseTextOptions = true;
     this.exportGallery.Gallery.Appearance.ItemDescriptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.exportGallery.Gallery.AutoFitColumns = false;
     this.exportGallery.Gallery.AutoSize       = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
     this.exportGallery.Gallery.BackColor      = System.Drawing.Color.Transparent;
     this.exportGallery.Gallery.CheckDrawMode  = DevExpress.XtraBars.Ribbon.Gallery.CheckDrawMode.OnlyImage;
     this.exportGallery.Gallery.ColumnCount    = 1;
     this.exportGallery.Gallery.FixedImageSize = false;
     resources.ApplyResources(galleryItemGroup1, "galleryItemGroup1");
     resources.ApplyResources(galleryItem1, "galleryItem1");
     galleryItem1.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToPDF_32x32;
     galleryItem1.Tag   = "PDF";
     resources.ApplyResources(galleryItem2, "galleryItem2");
     galleryItem2.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToHTML_32x32;
     galleryItem2.Tag   = "HTML";
     resources.ApplyResources(galleryItem3, "galleryItem3");
     galleryItem3.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToMHT_32x32;
     galleryItem3.Tag   = "MHT";
     resources.ApplyResources(galleryItem4, "galleryItem4");
     galleryItem4.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToRTF_32x32;
     galleryItem4.Tag   = "RTF";
     resources.ApplyResources(galleryItem5, "galleryItem5");
     galleryItem5.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToXLS_32x32;
     galleryItem5.Tag   = "XLS";
     resources.ApplyResources(galleryItem6, "galleryItem6");
     galleryItem6.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToXLSX_32x32;
     galleryItem6.Tag   = "XLSX";
     resources.ApplyResources(galleryItem7, "galleryItem7");
     galleryItem7.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToCSV_32x32;
     galleryItem7.Tag   = "CSV";
     resources.ApplyResources(galleryItem8, "galleryItem8");
     galleryItem8.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToText_32x32;
     galleryItem8.Tag   = "Text";
     resources.ApplyResources(galleryItem9, "galleryItem9");
     galleryItem9.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ExportToImage_32x32;
     galleryItem9.Tag   = "Image";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7,
         galleryItem8,
         galleryItem9
     });
     this.exportGallery.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.exportGallery.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.exportGallery.Gallery.ShowGroupCaption  = false;
     this.exportGallery.Gallery.ShowItemText      = true;
     this.exportGallery.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
     this.exportGallery.Gallery.StretchItems      = true;
     this.exportGallery.Gallery.ItemClick        += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
     this.exportGallery.Name = "exportGallery";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.exportGallery;
     resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
     //
     // backstageViewLabel1
     //
     this.backstageViewLabel1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("backstageViewLabel1.Appearance.Font")));
     resources.ApplyResources(this.backstageViewLabel1, "backstageViewLabel1");
     this.backstageViewLabel1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.backstageViewLabel1.LineVisible  = true;
     this.backstageViewLabel1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.backstageViewLabel1.Name           = "backstageViewLabel1";
     this.backstageViewLabel1.ShowLineShadow = false;
     //
     // labelControl4
     //
     resources.ApplyResources(this.labelControl4, "labelControl4");
     this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
     this.labelControl4.LineVisible     = true;
     this.labelControl4.Name            = "labelControl4";
     //
     // saveFileDialog1
     //
     resources.ApplyResources(this.saveFileDialog1, "saveFileDialog1");
     //
     // ExportControl
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Name = "ExportControl";
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.exportGallery)).EndInit();
     this.exportGallery.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(frmListarDireccion));
     DevExpress.Utils.SuperToolTip               superToolTip1        = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem           toolTipTitleItem1    = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem2         = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2    = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem3         = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem4         = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3    = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem5         = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem6         = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.groupControl1         = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1          = new DevExpress.XtraGrid.GridControl();
     this.gridView1             = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl2         = new DevExpress.XtraEditors.PanelControl();
     this.panelControl1         = new DevExpress.XtraEditors.PanelControl();
     this.label1                = new System.Windows.Forms.Label();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(183, 71);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(633, 420);
     this.groupControl1.TabIndex = 8;
     //
     // gridControl1
     //
     this.gridControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(2, 25);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(629, 393);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.Editable      = false;
     this.gridView1.OptionsSelection.MultiSelect  = true;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.galleryControl1);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panelControl2.Location = new System.Drawing.Point(0, 71);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(183, 420);
     this.panelControl2.TabIndex = 7;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(816, 71);
     this.panelControl1.TabIndex = 6;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Times New Roman", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(114, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(235, 37);
     this.label1.TabIndex = 5;
     this.label1.Text     = "DIRECCIONES";
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.Cursor = System.Windows.Forms.Cursors.Default;
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     //
     //
     galleryItemGroup1.Caption = "Vista";
     galleryItem1.Caption      = "Todo";
     galleryItem1.Checked      = true;
     galleryItem1.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
     galleryItem1.ImageUri.Uri = "BringToFrontOfText;Size32x32";
     toolTipTitleItem1.Text    = "Lista";
     superToolTip1.Items.Add(toolTipTitleItem1);
     galleryItem1.SuperTip = superToolTip1;
     galleryItem2.Caption  = "Activos";
     galleryItem2.Image    = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2
     });
     galleryItemGroup2.Caption = "Acciones";
     galleryItem3.Caption      = "Crear";
     galleryItem3.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
     galleryItem4.Caption      = "Modificar";
     galleryItem4.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem3,
         galleryItem4
     });
     galleryItemGroup3.Caption = "Reportes";
     galleryItem5.Caption      = "Crear";
     galleryItem5.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
     galleryItem6.Caption      = "Ver";
     galleryItem6.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem5,
         galleryItem6
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2,
         galleryItemGroup3
     });
     this.galleryControl1.Gallery.ShowItemText = true;
     this.galleryControl1.Location             = new System.Drawing.Point(2, 2);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(179, 416);
     this.galleryControl1.TabIndex = 2;
     this.galleryControl1.Text     = "Menu";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(2, 28);
     this.galleryControlClient1.Size           = new System.Drawing.Size(154, 386);
     //
     // frmListarDireccion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(816, 491);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Name = "frmListarDireccion";
     this.Text = "frmListarDireccion";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(BanHangPhaiThu));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem9      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem10     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem11     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem12     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem13     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem14     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem15     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem16     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem17     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem18     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem19     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem20     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem21     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem22     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem23     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem24     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem25     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem26     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem27     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.galleryControl2       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient2 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.separatorControl1     = new DevExpress.XtraEditors.SeparatorControl();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).BeginInit();
     this.galleryControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).BeginInit();
     this.SuspendLayout();
     //
     // galleryControl2
     //
     this.galleryControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.galleryControl2.Controls.Add(this.galleryControlClient2);
     this.galleryControl2.DesignGalleryGroupIndex = 0;
     this.galleryControl2.DesignGalleryItemIndex  = 0;
     //
     //
     //
     this.galleryControl2.Gallery.AllowFilter    = false;
     this.galleryControl2.Gallery.AutoFitColumns = false;
     this.galleryControl2.Gallery.AutoSize       = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
     this.galleryControl2.Gallery.BackColor      = System.Drawing.SystemColors.GradientInactiveCaption;
     this.galleryControl2.Gallery.CheckDrawMode  = DevExpress.XtraBars.Ribbon.Gallery.CheckDrawMode.OnlyImage;
     this.galleryControl2.Gallery.ColumnCount    = 10;
     this.galleryControl2.Gallery.FixedImageSize = false;
     galleryItemGroup1.Caption = "DỮ LIỆU";
     galleryItem1.AppearanceCaption.Normal.Font            = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
     galleryItem1.AppearanceCaption.Normal.Options.UseFont = true;
     galleryItem1.Caption            = "Đơn đặt hàng";
     galleryItem1.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     galleryItem1.Value   = 0;
     galleryItem2.Caption = "Hoá đơn bán hàng";
     galleryItem2.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     galleryItem2.Tag                   = "HDBH";
     galleryItem2.Value                 = 1;
     galleryItem3.Caption               = "Hoá đơn dịch vụ";
     galleryItem3.ImageOptions.Image    = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
     galleryItem3.Value                 = 2;
     galleryItem4.Caption               = "Hàng bán trả lại";
     galleryItem4.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1")));
     galleryItem4.Value                 = 3;
     galleryItem5.Caption               = "Truy vấn khách hàng";
     galleryItem5.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2")));
     galleryItem5.Value                 = 4;
     galleryItem6.Caption               = "Chính sách giá bán";
     galleryItem6.ImageOptions.Image    = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5,
         galleryItem6
     });
     galleryItemGroup2.Caption       = "BÁO CÁO";
     galleryItem7.Caption            = "Báo cáo danh thu bán hàng";
     galleryItem7.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
     galleryItem7.Tag                = "bcmh";
     galleryItem7.Value              = 6;
     galleryItem8.Caption            = "Báo cáo hàng tồn kho";
     galleryItem8.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
     galleryItem8.Value              = 7;
     galleryItem9.Caption            = "Báo cáo công nợ phải thu";
     galleryItem9.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image5")));
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem7,
         galleryItem8,
         galleryItem9
     });
     galleryItemGroup3.Caption        = "DANH MỤC";
     galleryItem10.Caption            = "Danh mục nghiệp vụ";
     galleryItem10.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image6")));
     galleryItem10.Tag     = "DMNVU";
     galleryItem10.Value   = 8;
     galleryItem11.Caption = "Danh muc tài khoản";
     galleryItem11.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage3")));
     galleryItem11.Tag                = "DMTK";
     galleryItem11.Value              = 9;
     galleryItem12.Caption            = "Danh mục đối tượng";
     galleryItem12.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image7")));
     galleryItem12.Tag                = "DMDT";
     galleryItem12.Value              = 10;
     galleryItem13.Caption            = "Danh mục kho";
     galleryItem13.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image8")));
     galleryItem13.Tag                = "DMKHO";
     galleryItem13.Value              = 13;
     galleryItem14.Caption            = "Danh mục bộ phận";
     galleryItem14.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image9")));
     galleryItem14.Tag                = "DMBP";
     galleryItem14.Value              = 12;
     galleryItem15.Caption            = "Danh mục khoản mục";
     galleryItem15.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image10")));
     galleryItem15.Tag                = "DMKM";
     galleryItem16.Caption            = "Danh mục khu vực";
     galleryItem16.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image11")));
     galleryItem16.Tag                = "DMKV";
     galleryItem16.Value              = 15;
     galleryItem17.Caption            = "Danh mục thuế";
     galleryItem17.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image12")));
     galleryItem17.Tag                = "DMTHUE";
     galleryItem17.Value              = 16;
     galleryItem18.Caption            = "Danh mục vật tư";
     galleryItem18.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image13")));
     galleryItem18.Tag                = "DMVT";
     galleryItem19.Caption            = "Danh mục bảng giá";
     galleryItem19.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image14")));
     galleryItem19.Tag                = "DMBG";
     galleryItem20.Caption            = "Danh mục nhóm nhân viên";
     galleryItem20.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image15")));
     galleryItem20.Tag                = "DMNHNV";
     galleryItem21.Caption            = "Danh mục nhóm CCDC";
     galleryItem21.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image16")));
     galleryItem21.Tag                = "DMNHCCDC";
     galleryItem22.Caption            = "Danh mục nhóm đối tượng";
     galleryItem22.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image17")));
     galleryItem22.Tag                = "DMNDT";
     galleryItem23.Caption            = "Danh mục nhóm hợp đồng";
     galleryItem23.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image18")));
     galleryItem23.Tag                = "DMNHHD";
     galleryItem23.Value              = 11;
     galleryItem24.Caption            = "Danh mục nhân viên";
     galleryItem24.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image19")));
     galleryItem24.Tag                = "DMNV";
     galleryItem25.Caption            = "Danh mục nhóm vật tư";
     galleryItem25.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image20")));
     galleryItem25.Tag                = "DMNHSP";
     galleryItem26.Caption            = "Item5";
     galleryItem26.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image21")));
     galleryItem26.Tag                = "DMSP";
     galleryItem27.Caption            = "Danh mục nhóm vật tư";
     galleryItem27.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image22")));
     galleryItem27.Tag                = "DMNHVT";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem10,
         galleryItem11,
         galleryItem12,
         galleryItem13,
         galleryItem14,
         galleryItem15,
         galleryItem16,
         galleryItem17,
         galleryItem18,
         galleryItem19,
         galleryItem20,
         galleryItem21,
         galleryItem22,
         galleryItem23,
         galleryItem24,
         galleryItem25,
         galleryItem26,
         galleryItem27
     });
     this.galleryControl2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2,
         galleryItemGroup3
     });
     this.galleryControl2.Gallery.RowCount      = 5;
     this.galleryControl2.Gallery.ShowItemText  = true;
     this.galleryControl2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
     this.galleryControl2.Gallery.ItemClick    += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl2_Gallery_ItemClick);
     this.galleryControl2.Location = new System.Drawing.Point(0, 50);
     this.galleryControl2.Name     = "galleryControl2";
     this.galleryControl2.Size     = new System.Drawing.Size(940, 504);
     this.galleryControl2.TabIndex = 6;
     this.galleryControl2.Text     = "galleryControl2";
     //
     // galleryControlClient2
     //
     this.galleryControlClient2.GalleryControl = this.galleryControl2;
     this.galleryControlClient2.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient2.Size           = new System.Drawing.Size(919, 500);
     //
     // separatorControl1
     //
     this.separatorControl1.Location = new System.Drawing.Point(0, 35);
     this.separatorControl1.Margin   = new System.Windows.Forms.Padding(0);
     this.separatorControl1.Name     = "separatorControl1";
     this.separatorControl1.Padding  = new System.Windows.Forms.Padding(0);
     this.separatorControl1.Size     = new System.Drawing.Size(400, 15);
     this.separatorControl1.TabIndex = 13;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ButtonShadow;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(400, 35);
     this.label1.TabIndex  = 12;
     this.label1.Text      = "BÁN HÀNG PHẢI THU";
     //
     // BanHangPhaiThu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.separatorControl1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.galleryControl2);
     this.Name = "BanHangPhaiThu";
     this.Size = new System.Drawing.Size(940, 554);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).EndInit();
     this.galleryControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(AreaGraphDrawing));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.pcMain                = new DevExpress.XtraEditors.PanelControl();
     this.layoutControl1        = new DevExpress.XtraLayout.LayoutControl();
     this.mx                    = new Axmetamap2dLib.AxMetaMapX2D();
     this.layoutControlGroup1   = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1    = new DevExpress.XtraLayout.LayoutControlItem();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.panelControl1         = new DevExpress.XtraEditors.PanelControl();
     this.rpSearch              = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbgClose              = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpgFilterColumns      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpgFind               = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.saveFileDialog1       = new System.Windows.Forms.SaveFileDialog();
     this.popupMenu2            = new DevExpress.XtraBars.PopupMenu();
     this.barManager1           = new DevExpress.XtraBars.BarManager();
     this.bar3                  = new DevExpress.XtraBars.Bar();
     this.barButtonItem1        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5        = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop     = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom  = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft    = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight   = new DevExpress.XtraBars.BarDockControl();
     this.popupMenu1            = new DevExpress.XtraBars.PopupMenu();
     this.bar2                  = new DevExpress.XtraBars.Bar();
     this.pictureBox1           = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pcMain)).BeginInit();
     this.pcMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mx)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pcMain
     //
     this.pcMain.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.pcMain.Controls.Add(this.layoutControl1);
     this.pcMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pcMain.Location = new System.Drawing.Point(0, 24);
     this.pcMain.Margin   = new System.Windows.Forms.Padding(0);
     this.pcMain.Name     = "pcMain";
     this.pcMain.Size     = new System.Drawing.Size(990, 425);
     this.pcMain.TabIndex = 7;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.mx);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(2, 2);
     this.layoutControl1.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(473, 382, 250, 350);
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(986, 421);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // mx
     //
     this.mx.Enabled               = true;
     this.mx.Location              = new System.Drawing.Point(4, 4);
     this.mx.Name                  = "mx";
     this.mx.OcxState              = ((System.Windows.Forms.AxHost.State)(resources.GetObject("mx.OcxState")));
     this.mx.Size                  = new System.Drawing.Size(978, 413);
     this.mx.TabIndex              = 4;
     this.mx.OnViewCallOutCommand += new Axmetamap2dLib.IMetaMapX2DEvents_OnViewCallOutCommandEventHandler(this.mx_OnViewCallOutCommand);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(986, 421);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.mx;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(982, 417);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // galleryControlGallery1
     //
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions  = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment  = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.VAlignment  = DevExpress.Utils.VertAlignment.Center;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.galleryControl1.Gallery.AutoFitColumns = false;
     this.galleryControl1.Gallery.AutoSize       = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
     this.galleryControl1.Gallery.BackColor      = System.Drawing.Color.Transparent;
     this.galleryControl1.Gallery.ColumnCount    = 1;
     this.galleryControl1.Gallery.FixedImageSize = false;
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Open Calendar";
     galleryItem1.Description  = "Open a calendar file (.ics)";
     galleryItem1.Tag          = "OpenCalendar";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.galleryControl1.Gallery.ShowGroupCaption  = false;
     this.galleryControl1.Gallery.ShowItemText      = true;
     this.galleryControl1.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
     this.galleryControl1.Location = new System.Drawing.Point(23, 22);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(1005, 300);
     this.galleryControl1.TabIndex = 0;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(1, 1);
     this.galleryControlClient1.Size           = new System.Drawing.Size(1003, 298);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location    = new System.Drawing.Point(0, 24);
     this.panelControl1.Name        = "panelControl1";
     this.panelControl1.Size        = new System.Drawing.Size(990, 425);
     this.panelControl1.TabIndex    = 0;
     //
     // rpSearch
     //
     this.rpSearch.Name    = "rpSearch";
     this.rpSearch.Text    = "SAERCH";
     this.rpSearch.Visible = false;
     //
     // rbgClose
     //
     this.rbgClose.AllowTextClipping = false;
     this.rbgClose.Name = "rbgClose";
     this.rbgClose.ShowCaptionButton = false;
     this.rbgClose.Text = "Close";
     //
     // rpgFilterColumns
     //
     this.rpgFilterColumns.Name = "rpgFilterColumns";
     this.rpgFilterColumns.ShowCaptionButton = false;
     this.rpgFilterColumns.Text = "Filter Columns";
     //
     // rpgFind
     //
     this.rpgFind.Name = "rpgFind";
     this.rpgFind.ShowCaptionButton = false;
     this.rpgFind.Text = "Filter Actions";
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.Filter = "图片文件|*.png";
     //
     // popupMenu2
     //
     this.popupMenu2.Manager = this.barManager1;
     this.popupMenu2.Name    = "popupMenu2";
     //
     // barManager1
     //
     this.barManager1.AllowCustomization      = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar3
     });
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barButtonItem1,
         this.barButtonItem2,
         this.barButtonItem3,
         this.barButtonItem4,
         this.barButtonItem5
     });
     this.barManager1.MainMenu  = this.bar3;
     this.barManager1.MaxItemId = 5;
     //
     // bar3
     //
     this.bar3.BarName   = "Main menu";
     this.bar3.DockCol   = 0;
     this.bar3.DockRow   = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem2, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem3, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem4, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.barButtonItem5, false)
     });
     this.bar3.OptionsBar.MultiLine   = true;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Main menu";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption    = "绘制区域";
     this.barButtonItem1.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id         = 0;
     this.barButtonItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.LargeGlyph")));
     this.barButtonItem1.Name       = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick_1);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption    = "清除区域";
     this.barButtonItem2.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
     this.barButtonItem2.Id         = 1;
     this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
     this.barButtonItem2.Name       = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick_1);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption    = "上传默认图形";
     this.barButtonItem3.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
     this.barButtonItem3.Id         = 2;
     this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
     this.barButtonItem3.Name       = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick_1);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption    = "保存区域";
     this.barButtonItem4.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.Glyph")));
     this.barButtonItem4.Id         = 3;
     this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
     this.barButtonItem4.Name       = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick_1);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption    = "显示测试";
     this.barButtonItem5.Id         = 4;
     this.barButtonItem5.Name       = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick_1);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Margin           = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlTop.Size             = new System.Drawing.Size(990, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 449);
     this.barDockControlBottom.Margin           = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlBottom.Size             = new System.Drawing.Size(990, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Margin           = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 425);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(990, 24);
     this.barDockControlRight.Margin           = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 425);
     //
     // popupMenu1
     //
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name    = "popupMenu1";
     //
     // bar2
     //
     this.bar2.BarName                = "Main menu";
     this.bar2.DockCol                = 0;
     this.bar2.DockStyle              = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.OptionsBar.MultiLine   = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor   = System.Drawing.Color.LightGray;
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Location    = new System.Drawing.Point(836, 0);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(60, 60);
     this.pictureBox1.TabIndex    = 101;
     this.pictureBox1.TabStop     = false;
     this.pictureBox1.Visible     = false;
     //
     // AreaGraphDrawing
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(990, 449);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.pcMain);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "AreaGraphDrawing";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "GIS图形展示平台";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.GISPlatformCenter_FormClosing);
     this.FormClosed     += new System.Windows.Forms.FormClosedEventHandler(this.GISPlatformCenter_FormClosed);
     this.Load           += new System.EventHandler(this.GISPlatformCenter_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pcMain)).EndInit();
     this.pcMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mx)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(HelpControl));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.backstageViewLabel1   = new DevExpress.MailClient.Win.Controls.BackstageViewLabel();
     this.labelControl4         = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.galleryControl1);
     this.splitContainer1.Panel1.Controls.Add(this.backstageViewLabel1);
     resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.labelControl4);
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     resources.ApplyResources(this.galleryControl1, "galleryControl1");
     //
     //
     //
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions      = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment      = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions  = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment  = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.AutoFitColumns          = false;
     this.galleryControl1.Gallery.BackColor               = System.Drawing.Color.Transparent;
     this.galleryControl1.Gallery.ColumnCount             = 1;
     this.galleryControl1.Gallery.DistanceItemImageToText = 20;
     this.galleryControl1.Gallery.DrawImageBackground     = false;
     this.galleryControl1.Gallery.FixedImageSize          = false;
     resources.ApplyResources(galleryItemGroup1, "galleryItemGroup1");
     resources.ApplyResources(galleryItem1, "galleryItem1");
     galleryItem1.Image = global::DevExpress.MailClient.Win.Properties.Resources.Online_Help;
     galleryItem1.Tag   = "LinkHelp";
     resources.ApplyResources(galleryItem2, "galleryItem2");
     galleryItem2.Image = global::DevExpress.MailClient.Win.Properties.Resources.Code_Central;
     galleryItem2.Tag   = "LinkGetStarted";
     resources.ApplyResources(galleryItem3, "galleryItem3");
     galleryItem3.Image = global::DevExpress.MailClient.Win.Properties.Resources.Contact_Us;
     galleryItem3.Tag   = "LinkGetSupport";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.galleryControl1.Gallery.ShowGroupCaption  = false;
     this.galleryControl1.Gallery.ShowItemText      = true;
     this.galleryControl1.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
     this.galleryControl1.Gallery.ItemClick        += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
     this.galleryControl1.Name = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     resources.ApplyResources(this.galleryControlClient1, "galleryControlClient1");
     //
     // backstageViewLabel1
     //
     this.backstageViewLabel1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("backstageViewLabel1.Appearance.Font")));
     resources.ApplyResources(this.backstageViewLabel1, "backstageViewLabel1");
     this.backstageViewLabel1.LineLocation   = DevExpress.XtraEditors.LineLocation.Bottom;
     this.backstageViewLabel1.LineVisible    = true;
     this.backstageViewLabel1.Name           = "backstageViewLabel1";
     this.backstageViewLabel1.ShowLineShadow = false;
     //
     // labelControl4
     //
     resources.ApplyResources(this.labelControl4, "labelControl4");
     this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
     this.labelControl4.LineVisible     = true;
     this.labelControl4.Name            = "labelControl4";
     //
     // HelpControl
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Name = "HelpControl";
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources      = new System.ComponentModel.ComponentResourceManager(typeof(PluginsSettingsControl));
     DevExpress.Utils.ContextButton contextButton1                 = new DevExpress.Utils.ContextButton();
     DevExpress.Utils.ContextButton contextButton2                 = new DevExpress.Utils.ContextButton();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.imlIcons                  = new DevExpress.Utils.ImageCollection(this.components);
     this.lblTitle                  = new DevExpress.XtraEditors.LabelControl();
     this.barManager                = new DevExpress.XtraBars.BarManager(this.components);
     this.tbrPlugins                = new DevExpress.XtraBars.Bar();
     this.cmdPluginAdd              = new DevExpress.XtraBars.BarButtonItem();
     this.cmdPluginEdit             = new DevExpress.XtraBars.BarButtonItem();
     this.cmdPluginDelete           = new DevExpress.XtraBars.BarButtonItem();
     this.standaloneBarDockControl1 = new DevExpress.XtraBars.StandaloneBarDockControl();
     this.barDockControlTop         = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom      = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft        = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight       = new DevExpress.XtraBars.BarDockControl();
     this.gcPlugins                 = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1     = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     ((System.ComponentModel.ISupportInitialize)(this.imlIcons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcPlugins)).BeginInit();
     this.gcPlugins.SuspendLayout();
     this.SuspendLayout();
     //
     // imlIcons
     //
     this.imlIcons.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imlIcons.ImageStream")));
     //
     // lblTitle
     //
     this.lblTitle.Appearance.FontSizeDelta = 3;
     this.lblTitle.Dock     = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(10, 10);
     this.lblTitle.Margin   = new System.Windows.Forms.Padding(0);
     this.lblTitle.Name     = "lblTitle";
     this.lblTitle.Padding  = new System.Windows.Forms.Padding(0, 0, 0, 15);
     this.lblTitle.Size     = new System.Drawing.Size(43, 33);
     this.lblTitle.TabIndex = 1;
     this.lblTitle.Text     = "Plugins";
     //
     // barManager
     //
     this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.tbrPlugins
     });
     this.barManager.DockControls.Add(this.barDockControlTop);
     this.barManager.DockControls.Add(this.barDockControlBottom);
     this.barManager.DockControls.Add(this.barDockControlLeft);
     this.barManager.DockControls.Add(this.barDockControlRight);
     this.barManager.DockControls.Add(this.standaloneBarDockControl1);
     this.barManager.Form = this;
     this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.cmdPluginAdd,
         this.cmdPluginEdit,
         this.cmdPluginDelete
     });
     this.barManager.MaxItemId = 3;
     //
     // tbrPlugins
     //
     this.tbrPlugins.BarName       = "Plugins";
     this.tbrPlugins.DockCol       = 0;
     this.tbrPlugins.DockRow       = 0;
     this.tbrPlugins.DockStyle     = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.tbrPlugins.FloatLocation = new System.Drawing.Point(1436, 150);
     this.tbrPlugins.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.cmdPluginAdd),
         new DevExpress.XtraBars.LinkPersistInfo(this.cmdPluginEdit),
         new DevExpress.XtraBars.LinkPersistInfo(this.cmdPluginDelete)
     });
     this.tbrPlugins.OptionsBar.AllowQuickCustomization = false;
     this.tbrPlugins.OptionsBar.AllowRename             = true;
     this.tbrPlugins.OptionsBar.DisableClose            = true;
     this.tbrPlugins.OptionsBar.DisableCustomization    = true;
     this.tbrPlugins.OptionsBar.DrawBorder    = false;
     this.tbrPlugins.OptionsBar.UseWholeRow   = true;
     this.tbrPlugins.StandaloneBarDockControl = this.standaloneBarDockControl1;
     this.tbrPlugins.Text = "Plugins";
     //
     // cmdPluginAdd
     //
     this.cmdPluginAdd.Caption    = "Register plugin";
     this.cmdPluginAdd.Glyph      = global::Rwm.Studio.Properties.Resources.ICO_PLUGIN_ADD_16;
     this.cmdPluginAdd.Id         = 0;
     this.cmdPluginAdd.LargeGlyph = global::Rwm.Studio.Properties.Resources.ICO_PLUGIN_ADD_32;
     this.cmdPluginAdd.Name       = "cmdPluginAdd";
     this.cmdPluginAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cmdPluginAdd_ItemClick);
     //
     // cmdPluginEdit
     //
     this.cmdPluginEdit.Caption    = "Edit plugin properties";
     this.cmdPluginEdit.Glyph      = global::Rwm.Studio.Properties.Resources.ICO_PLUGIN_EDIT_16;
     this.cmdPluginEdit.Id         = 1;
     this.cmdPluginEdit.LargeGlyph = global::Rwm.Studio.Properties.Resources.ICO_PLUGIN_EDIT_32;
     this.cmdPluginEdit.Name       = "cmdPluginEdit";
     //
     // cmdPluginDelete
     //
     this.cmdPluginDelete.Caption    = "Delete plugin";
     this.cmdPluginDelete.Glyph      = global::Rwm.Studio.Properties.Resources.ICO_PLUGIN_DELETE_16;
     this.cmdPluginDelete.Id         = 2;
     this.cmdPluginDelete.LargeGlyph = global::Rwm.Studio.Properties.Resources.ICO_PLUGIN_DELETE_32;
     this.cmdPluginDelete.Name       = "cmdPluginDelete";
     //
     // standaloneBarDockControl1
     //
     this.standaloneBarDockControl1.CausesValidation = false;
     this.standaloneBarDockControl1.Dock             = System.Windows.Forms.DockStyle.Top;
     this.standaloneBarDockControl1.Location         = new System.Drawing.Point(10, 43);
     this.standaloneBarDockControl1.Name             = "standaloneBarDockControl1";
     this.standaloneBarDockControl1.Size             = new System.Drawing.Size(615, 31);
     this.standaloneBarDockControl1.Text             = "standaloneBarDockControl1";
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(10, 10);
     this.barDockControlTop.Size             = new System.Drawing.Size(615, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(10, 515);
     this.barDockControlBottom.Size             = new System.Drawing.Size(615, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(10, 10);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 505);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(625, 10);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 505);
     //
     // gcPlugins
     //
     this.gcPlugins.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gcPlugins.Controls.Add(this.galleryControlClient1);
     this.gcPlugins.DesignGalleryGroupIndex = 0;
     this.gcPlugins.DesignGalleryItemIndex  = 0;
     //
     //
     //
     this.gcPlugins.Gallery.AllowFilter = false;
     this.gcPlugins.Gallery.ContextButtonOptions.TopPanelPadding = new System.Windows.Forms.Padding(5, 5, -240, 5);
     contextButton1.Alignment = DevExpress.Utils.ContextItemAlignment.TopFar;
     contextButton1.Glyph     = global::Rwm.Studio.Properties.Resources.ICO_EDIT_16;
     contextButton1.Id        = new System.Guid("4b04d652-5480-4936-8e66-e98c02b8a9b8");
     contextButton1.Name      = "cbEdit";
     contextButton2.Alignment = DevExpress.Utils.ContextItemAlignment.TopFar;
     contextButton2.Glyph     = global::Rwm.Studio.Properties.Resources.cross;
     contextButton2.Id        = new System.Guid("210e500a-3827-4eff-997e-3a22b9aadf60");
     contextButton2.Name      = "cbDelete";
     this.gcPlugins.Gallery.ContextButtons.Add(contextButton1);
     this.gcPlugins.Gallery.ContextButtons.Add(contextButton2);
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Railway Collection";
     galleryItem1.Description  = "A model collection manager.";
     galleryItem1.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
     galleryItem2.Caption      = "Item2";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2
     });
     this.gcPlugins.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.gcPlugins.Gallery.ImageSize           = new System.Drawing.Size(32, 32);
     this.gcPlugins.Gallery.ItemImageLayout     = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
     this.gcPlugins.Gallery.ItemImageLocation   = DevExpress.Utils.Locations.Left;
     this.gcPlugins.Gallery.ShowGroupCaption    = false;
     this.gcPlugins.Gallery.ShowItemText        = true;
     this.gcPlugins.Gallery.ShowScrollBar       = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
     this.gcPlugins.Gallery.StretchItems        = true;
     this.gcPlugins.Gallery.ContextButtonClick += new DevExpress.Utils.ContextItemClickEventHandler(this.gcPlugins_Gallery_ContextButtonClick);
     this.gcPlugins.Location = new System.Drawing.Point(16, 80);
     this.gcPlugins.Name     = "gcPlugins";
     this.gcPlugins.Size     = new System.Drawing.Size(292, 435);
     this.gcPlugins.TabIndex = 8;
     this.gcPlugins.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.gcPlugins;
     this.galleryControlClient1.Location       = new System.Drawing.Point(1, 1);
     this.galleryControlClient1.Size           = new System.Drawing.Size(290, 433);
     //
     // PluginsSettingsControl
     //
     this.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gcPlugins);
     this.Controls.Add(this.standaloneBarDockControl1);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name    = "PluginsSettingsControl";
     this.Padding = new System.Windows.Forms.Padding(10);
     this.Size    = new System.Drawing.Size(635, 525);
     ((System.ComponentModel.ISupportInitialize)(this.imlIcons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcPlugins)).EndInit();
     this.gcPlugins.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 41
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges2 = new DevExpress.Skins.SkinPaddingEdges();
            this.gridViewOrderItems = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colProduct = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colProductUnits = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colProductPrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTotal = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl = new DevExpress.XtraGrid.GridControl();
            this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colInvoiceNumber = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colOrderDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTotalAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colStore = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCustomer = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colShipDate1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colShippingAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.modueLayout = new DevExpress.XtraLayout.LayoutControl();
            this.pnlView = new DevExpress.XtraEditors.PanelControl();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.masterItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.detailItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem = new DevExpress.XtraLayout.SplitterItem();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biNewOrder = new DevExpress.XtraBars.BarButtonItem();
            this.biNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biDelete = new DevExpress.XtraBars.BarButtonItem();
            this.biShowList = new DevExpress.XtraBars.BarCheckItem();
            this.biMap = new DevExpress.XtraBars.BarButtonItem();
            this.biNewSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiNewOrder = new DevExpress.XtraBars.BarButtonItem();
            this.bmiNewGroup = new DevExpress.XtraBars.BarButtonItem();
            this.biChangeViewSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiShowList = new DevExpress.XtraBars.BarCheckItem();
            this.biDataPaneSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiHorizontalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiVerticalLayout = new DevExpress.XtraBars.BarCheckItem();
            this.bmiHideDetail = new DevExpress.XtraBars.BarCheckItem();
            this.biResetView = new DevExpress.XtraBars.BarButtonItem();
            this.biPrintSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiPrintInvoice = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSalesSummary = new DevExpress.XtraBars.BarButtonItem();
            this.bmiPrintSalesAnalysis = new DevExpress.XtraBars.BarButtonItem();
            this.biEdit = new DevExpress.XtraBars.BarButtonItem();
            this.galleryQuickReports = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.biViewSettings = new DevExpress.XtraBars.BarButtonItem();
            this.biReverseSort = new DevExpress.XtraBars.BarButtonItem();
            this.biAddColumns = new DevExpress.XtraBars.BarCheckItem();
            this.biExpandCollapse = new DevExpress.XtraBars.BarButtonItem();
            this.biNewCustomFilter = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.hiItemsCount = new DevExpress.XtraBars.BarHeaderItem();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewOrderItems)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.modueLayout)).BeginInit();
            this.modueLayout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.masterItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            this.SuspendLayout();
            // 
            // gridViewOrderItems
            // 
            this.gridViewOrderItems.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colProduct,
            this.colProductUnits,
            this.colProductPrice,
            this.colDiscount,
            this.colTotal,
            this.colId});
            this.gridViewOrderItems.GridControl = this.gridControl;
            this.gridViewOrderItems.Name = "gridViewOrderItems";
            this.gridViewOrderItems.OptionsView.AllowHtmlDrawHeaders = true;
            this.gridViewOrderItems.OptionsView.ShowFooter = true;
            this.gridViewOrderItems.OptionsView.ShowGroupPanel = false;
            this.gridViewOrderItems.OptionsView.ShowIndicator = false;
            this.gridViewOrderItems.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            // 
            // colProduct
            // 
            this.colProduct.Caption = "<b>PRODUCT</b>";
            this.colProduct.FieldName = "Product.Name";
            this.colProduct.Name = "colProduct";
            this.colProduct.OptionsColumn.AllowFocus = false;
            this.colProduct.Visible = true;
            this.colProduct.VisibleIndex = 0;
            // 
            // colProductUnits
            // 
            this.colProductUnits.Caption = "UNITS";
            this.colProductUnits.FieldName = "ProductUnits";
            this.colProductUnits.Name = "colProductUnits";
            this.colProductUnits.OptionsColumn.AllowFocus = false;
            this.colProductUnits.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ProductUnits", "SUM={0}")});
            this.colProductUnits.Visible = true;
            this.colProductUnits.VisibleIndex = 1;
            // 
            // colProductPrice
            // 
            this.colProductPrice.Caption = "UNIT PRICE";
            this.colProductPrice.DisplayFormat.FormatString = "c";
            this.colProductPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colProductPrice.FieldName = "ProductPrice";
            this.colProductPrice.Name = "colProductPrice";
            this.colProductPrice.OptionsColumn.AllowFocus = false;
            this.colProductPrice.Visible = true;
            this.colProductPrice.VisibleIndex = 2;
            // 
            // colDiscount
            // 
            this.colDiscount.Caption = "DISCOUNT";
            this.colDiscount.DisplayFormat.FormatString = "c";
            this.colDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colDiscount.FieldName = "Discount";
            this.colDiscount.Name = "colDiscount";
            this.colDiscount.OptionsColumn.AllowFocus = false;
            this.colDiscount.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "Discount", "AVG={0:c}")});
            this.colDiscount.Visible = true;
            this.colDiscount.VisibleIndex = 3;
            // 
            // colTotal
            // 
            this.colTotal.Caption = "TOTAL";
            this.colTotal.DisplayFormat.FormatString = "c";
            this.colTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colTotal.FieldName = "Total";
            this.colTotal.Name = "colTotal";
            this.colTotal.OptionsColumn.AllowFocus = false;
            this.colTotal.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", "SUM={0:c}")});
            this.colTotal.Visible = true;
            this.colTotal.VisibleIndex = 4;
            // 
            // colId
            // 
            this.colId.FieldName = "Id";
            this.colId.Name = "colId";
            this.colId.OptionsColumn.AllowFocus = false;
            // 
            // gridControl
            // 
            this.gridControl.DataSource = this.bindingSource;
            gridLevelNode1.LevelTemplate = this.gridViewOrderItems;
            gridLevelNode1.RelationName = "OrderItems";
            this.gridControl.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            this.gridControl.Location = new System.Drawing.Point(12, 12);
            this.gridControl.MainView = this.gridView;
            this.gridControl.Margin = new System.Windows.Forms.Padding(12);
            this.gridControl.Name = "gridControl";
            this.gridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemMemoEdit1});
            this.gridControl.ShowOnlyPredefinedDetails = true;
            this.gridControl.Size = new System.Drawing.Size(777, 538);
            this.gridControl.TabIndex = 1;
            this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView,
            this.gridViewOrderItems});
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Order);
            // 
            // gridView
            // 
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colInvoiceNumber,
            this.colOrderDate,
            this.colTotalAmount,
            this.colStore,
            this.colCustomer,
            this.colShipDate1,
            this.colShippingAmount});
            this.gridView.DetailVerticalIndent = 20;
            this.gridView.GridControl = this.gridControl;
            this.gridView.Name = "gridView";
            this.gridView.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridView.OptionsBehavior.Editable = false;
            this.gridView.OptionsBehavior.ReadOnly = true;
            this.gridView.OptionsDetail.AllowZoomDetail = false;
            this.gridView.OptionsDetail.ShowDetailTabs = false;
            this.gridView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.CheckAllDetails;
            this.gridView.OptionsDetail.SmartDetailHeight = true;
            this.gridView.OptionsFind.AlwaysVisible = true;
            this.gridView.OptionsFind.FindNullPrompt = "Search Orders (Ctrl + F)";
            this.gridView.OptionsFind.ShowClearButton = false;
            this.gridView.OptionsFind.ShowFindButton = false;
            this.gridView.OptionsView.ShowGroupPanel = false;
            this.gridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colOrderDate, DevExpress.Data.ColumnSortOrder.Ascending)});
            // 
            // colInvoiceNumber
            // 
            this.colInvoiceNumber.Caption = "INVOICE #";
            this.colInvoiceNumber.FieldName = "InvoiceNumber";
            this.colInvoiceNumber.Name = "colInvoiceNumber";
            this.colInvoiceNumber.OptionsColumn.AllowFocus = false;
            this.colInvoiceNumber.Visible = true;
            this.colInvoiceNumber.VisibleIndex = 0;
            this.colInvoiceNumber.Width = 106;
            // 
            // colOrderDate
            // 
            this.colOrderDate.Caption = "ORDER DATE";
            this.colOrderDate.FieldName = "OrderDate";
            this.colOrderDate.Name = "colOrderDate";
            this.colOrderDate.OptionsColumn.AllowFocus = false;
            this.colOrderDate.Visible = true;
            this.colOrderDate.VisibleIndex = 1;
            this.colOrderDate.Width = 133;
            // 
            // colTotalAmount
            // 
            this.colTotalAmount.Caption = "ORDER TOTAL";
            this.colTotalAmount.DisplayFormat.FormatString = "c";
            this.colTotalAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colTotalAmount.FieldName = "TotalAmount";
            this.colTotalAmount.Name = "colTotalAmount";
            this.colTotalAmount.OptionsColumn.AllowFocus = false;
            this.colTotalAmount.Visible = true;
            this.colTotalAmount.VisibleIndex = 4;
            this.colTotalAmount.Width = 149;
            // 
            // colStore
            // 
            this.colStore.Caption = "STORE";
            this.colStore.FieldName = "Store.CrestCity";
            this.colStore.Name = "colStore";
            this.colStore.OptionsColumn.AllowFocus = false;
            this.colStore.Visible = true;
            this.colStore.VisibleIndex = 3;
            this.colStore.Width = 180;
            // 
            // colCustomer
            // 
            this.colCustomer.Caption = "COMPANY";
            this.colCustomer.FieldName = "Customer.Name";
            this.colCustomer.Name = "colCustomer";
            this.colCustomer.OptionsColumn.AllowFocus = false;
            this.colCustomer.Visible = true;
            this.colCustomer.VisibleIndex = 2;
            this.colCustomer.Width = 191;
            // 
            // colShipDate1
            // 
            this.colShipDate1.Caption = "SHIP DATE";
            this.colShipDate1.FieldName = "ShipDate";
            this.colShipDate1.Name = "colShipDate1";
            this.colShipDate1.OptionsColumn.AllowFocus = false;
            // 
            // colShippingAmount
            // 
            this.colShippingAmount.Caption = "SHIPPING AMOUNT";
            this.colShippingAmount.DisplayFormat.FormatString = "c";
            this.colShippingAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colShippingAmount.FieldName = "ShippingAmount";
            this.colShippingAmount.Name = "colShippingAmount";
            this.colShippingAmount.OptionsColumn.AllowFocus = false;
            // 
            // repositoryItemMemoEdit1
            // 
            this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
            // 
            // modueLayout
            // 
            this.modueLayout.AllowCustomizationMenu = false;
            this.modueLayout.Controls.Add(this.pnlView);
            this.modueLayout.Controls.Add(this.gridControl);
            this.modueLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.modueLayout.Location = new System.Drawing.Point(0, 142);
            this.modueLayout.Name = "modueLayout";
            this.modueLayout.Root = this.layoutControlGroup1;
            this.modueLayout.Size = new System.Drawing.Size(1273, 562);
            this.modueLayout.TabIndex = 5;
            this.modueLayout.Text = "modueLayout";
            // 
            // pnlView
            // 
            this.pnlView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pnlView.Location = new System.Drawing.Point(798, 12);
            this.pnlView.Name = "pnlView";
            this.pnlView.Size = new System.Drawing.Size(463, 538);
            this.pnlView.TabIndex = 4;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.masterItem,
            this.detailItem,
            this.splitterItem});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.Size = new System.Drawing.Size(1273, 562);
            this.layoutControlGroup1.Text = "Root";
            this.layoutControlGroup1.TextVisible = false;
            // 
            // masterItem
            // 
            this.masterItem.Control = this.gridControl;
            this.masterItem.CustomizationFormText = "masterItem";
            this.masterItem.Location = new System.Drawing.Point(0, 0);
            this.masterItem.Name = "masterItem";
            this.masterItem.Size = new System.Drawing.Size(781, 542);
            this.masterItem.Text = "masterItem";
            this.masterItem.TextSize = new System.Drawing.Size(0, 0);
            this.masterItem.TextToControlDistance = 0;
            this.masterItem.TextVisible = false;
            // 
            // detailItem
            // 
            this.detailItem.Control = this.pnlView;
            this.detailItem.CustomizationFormText = "detailItem";
            this.detailItem.Location = new System.Drawing.Point(786, 0);
            this.detailItem.Name = "detailItem";
            this.detailItem.Size = new System.Drawing.Size(467, 542);
            this.detailItem.Text = "detailItem";
            this.detailItem.TextSize = new System.Drawing.Size(0, 0);
            this.detailItem.TextToControlDistance = 0;
            this.detailItem.TextVisible = false;
            // 
            // splitterItem
            // 
            this.splitterItem.AllowHotTrack = true;
            this.splitterItem.CustomizationFormText = "splitterItem1";
            this.splitterItem.Location = new System.Drawing.Point(781, 0);
            this.splitterItem.Name = "splitterItem1";
            this.splitterItem.Size = new System.Drawing.Size(5, 542);
            // 
            // ribbonControl
            // 
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biNewOrder,
            this.biNewGroup,
            this.biDelete,
            this.biShowList,
            this.biMap,
            this.biNewSubItem,
            this.biChangeViewSubItem,
            this.biDataPaneSubItem,
            this.bmiHideDetail,
            this.bmiHorizontalLayout,
            this.bmiVerticalLayout,
            this.biResetView,
            this.bmiShowList,
            this.bmiNewOrder,
            this.bmiNewGroup,
            this.biPrintSubItem,
            this.bmiPrintInvoice,
            this.biEdit,
            this.galleryQuickReports,
            this.biViewSettings,
            this.biReverseSort,
            this.biAddColumns,
            this.biExpandCollapse,
            this.biNewCustomFilter,
            this.bmiPrintSalesSummary,
            this.bmiPrintSalesAnalysis,
            this.hiItemsCount});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 11;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2});
            this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbonControl.Size = new System.Drawing.Size(1273, 142);
            this.ribbonControl.StatusBar = this.ribbonStatusBar;
            // 
            // biNewOrder
            // 
            this.biNewOrder.Caption = "New Order";
            this.biNewOrder.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_sales_16;
            this.biNewOrder.Id = 1;
            this.biNewOrder.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_sales_32;
            this.biNewOrder.Name = "biNewOrder";
            // 
            // biNewGroup
            // 
            this.biNewGroup.Caption = "New Group";
            this.biNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.biNewGroup.Id = 2;
            this.biNewGroup.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_32;
            this.biNewGroup.Name = "biNewGroup";
            // 
            // biDelete
            // 
            this.biDelete.Caption = "Delete";
            this.biDelete.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_16;
            this.biDelete.Id = 3;
            this.biDelete.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_delete_32;
            this.biDelete.Name = "biDelete";
            // 
            // biShowList
            // 
            this.biShowList.Caption = "List";
            this.biShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_16;
            this.biShowList.GroupIndex = 1;
            this.biShowList.Id = 4;
            this.biShowList.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.biShowList.LargeImageIndex = 37;
            this.biShowList.Name = "biShowList";
            // 
            // biMap
            // 
            this.biMap.Caption = "Shipping Map";
            this.biMap.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_16;
            this.biMap.Id = 8;
            this.biMap.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_mapit_32;
            this.biMap.Name = "biMap";
            // 
            // biNewSubItem
            // 
            this.biNewSubItem.Caption = "New Items";
            this.biNewSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_item_16;
            this.biNewSubItem.Id = 10;
            this.biNewSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_item_32;
            this.biNewSubItem.LargeImageIndex = 29;
            this.biNewSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewOrder),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiNewGroup)});
            this.biNewSubItem.Name = "biNewSubItem";
            this.biNewSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiNewOrder
            // 
            this.bmiNewOrder.Caption = "New Order";
            this.bmiNewOrder.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_sales_16;
            this.bmiNewOrder.Id = 11;
            this.bmiNewOrder.Name = "bmiNewOrder";
            // 
            // bmiNewGroup
            // 
            this.bmiNewGroup.Caption = "New Group";
            this.bmiNewGroup.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_group_16;
            this.bmiNewGroup.Id = 12;
            this.bmiNewGroup.Name = "bmiNewGroup";
            // 
            // biChangeViewSubItem
            // 
            this.biChangeViewSubItem.Caption = "Change View";
            this.biChangeViewSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_16;
            this.biChangeViewSubItem.Id = 10;
            this.biChangeViewSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_change_view_32;
            this.biChangeViewSubItem.LargeImageIndex = 40;
            this.biChangeViewSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiShowList)});
            this.biChangeViewSubItem.Name = "biChangeViewSubItem";
            this.biChangeViewSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiShowList
            // 
            this.bmiShowList.Caption = "List";
            this.bmiShowList.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_list_32;
            this.bmiShowList.GroupIndex = 3;
            this.bmiShowList.Id = 4;
            this.bmiShowList.Name = "bmiShowList";
            // 
            // biDataPaneSubItem
            // 
            this.biDataPaneSubItem.Caption = "Data Pane";
            this.biDataPaneSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_16;
            this.biDataPaneSubItem.Id = 10;
            this.biDataPaneSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_data_panel_32;
            this.biDataPaneSubItem.LargeImageIndex = 41;
            this.biDataPaneSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHorizontalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiVerticalLayout),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiHideDetail)});
            this.biDataPaneSubItem.Name = "biDataPaneSubItem";
            this.biDataPaneSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiHorizontalLayout
            // 
            this.bmiHorizontalLayout.Caption = "Right";
            this.bmiHorizontalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_bottom_16;
            this.bmiHorizontalLayout.GroupIndex = 2;
            this.bmiHorizontalLayout.Id = 6;
            this.bmiHorizontalLayout.Name = "bmiHorizontalLayout";
            // 
            // bmiVerticalLayout
            // 
            this.bmiVerticalLayout.Caption = "Bottom";
            this.bmiVerticalLayout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_right_16;
            this.bmiVerticalLayout.GroupIndex = 2;
            this.bmiVerticalLayout.Id = 7;
            this.bmiVerticalLayout.Name = "bmiVerticalLayout";
            // 
            // bmiHideDetail
            // 
            this.bmiHideDetail.Caption = "Off";
            this.bmiHideDetail.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_panel_off_16;
            this.bmiHideDetail.GroupIndex = 2;
            this.bmiHideDetail.Id = 7;
            this.bmiHideDetail.Name = "bmiHideDetail";
            // 
            // biResetView
            // 
            this.biResetView.Caption = "Reset View";
            this.biResetView.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_16;
            this.biResetView.Id = 9;
            this.biResetView.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_reset_32;
            this.biResetView.Name = "biResetView";
            // 
            // biPrintSubItem
            // 
            this.biPrintSubItem.Caption = "Print";
            this.biPrintSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_16;
            this.biPrintSubItem.Id = 10;
            this.biPrintSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.biPrintSubItem.LargeImageIndex = 30;
            this.biPrintSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintInvoice),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSalesSummary),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiPrintSalesAnalysis)});
            this.biPrintSubItem.Name = "biPrintSubItem";
            this.biPrintSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiPrintInvoice
            // 
            this.bmiPrintInvoice.Caption = "Invoice";
            this.bmiPrintInvoice.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_invoice_16;
            this.bmiPrintInvoice.GroupIndex = 5;
            this.bmiPrintInvoice.Id = 6;
            this.bmiPrintInvoice.Name = "bmiPrintInvoice";
            // 
            // bmiPrintSalesSummary
            // 
            this.bmiPrintSalesSummary.Caption = "Summary Report";
            this.bmiPrintSalesSummary.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_report_16;
            this.bmiPrintSalesSummary.Id = 9;
            this.bmiPrintSalesSummary.Name = "bmiPrintSalesSummary";
            // 
            // bmiPrintSalesAnalysis
            // 
            this.bmiPrintSalesAnalysis.Caption = "Sales Analisys";
            this.bmiPrintSalesAnalysis.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_by_store_16;
            this.bmiPrintSalesAnalysis.Id = 10;
            this.bmiPrintSalesAnalysis.Name = "bmiPrintSalesAnalysis";
            // 
            // biEdit
            // 
            this.biEdit.Caption = "Edit";
            this.biEdit.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_16;
            this.biEdit.Id = 13;
            this.biEdit.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_edit_32;
            this.biEdit.Name = "biEdit";
            // 
            // galleryQuickReports
            // 
            this.galleryQuickReports.Caption = "ribbonGalleryBarItem1";
            // 
            // 
            // 
            this.galleryQuickReports.Gallery.ColumnCount = 2;
            this.galleryQuickReports.Gallery.DrawImageBackground = false;
            galleryItemGroup1.Caption = "Group1";
            galleryItem1.Caption = "Sales Report";
            galleryItem1.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_quick_report_16;
            galleryItem2.Caption = "Thank You";
            galleryItem2.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_quick_thankyou_16;
            galleryItem3.Caption = "Sales by Store";
            galleryItem3.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_quick_summary_16;
            galleryItem4.Caption = "Invoice";
            galleryItem4.Image = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_quick_invoice_16;
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4});
            this.galleryQuickReports.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryQuickReports.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.galleryQuickReports.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -1;
            skinPaddingEdges2.Top = -1;
            this.galleryQuickReports.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.galleryQuickReports.Gallery.ShowItemText = true;
            this.galleryQuickReports.Id = 15;
            this.galleryQuickReports.Name = "galleryQuickReports";
            // 
            // biViewSettings
            // 
            this.biViewSettings.Caption = "View Settings";
            this.biViewSettings.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_16;
            this.biViewSettings.Id = 3;
            this.biViewSettings.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_view_setting_32;
            this.biViewSettings.Name = "biViewSettings";
            // 
            // biReverseSort
            // 
            this.biReverseSort.Caption = "Reverse Sort";
            this.biReverseSort.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_revers_sort_16;
            this.biReverseSort.Id = 4;
            this.biReverseSort.Name = "biReverseSort";
            this.biReverseSort.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biReverseSort_ItemClick);
            // 
            // biAddColumns
            // 
            this.biAddColumns.Caption = "Add Columns";
            this.biAddColumns.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_add_column_16;
            this.biAddColumns.Id = 5;
            this.biAddColumns.Name = "biAddColumns";
            this.biAddColumns.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.biAddColumns_ItemCheckedChanged);
            // 
            // biExpandCollapse
            // 
            this.biExpandCollapse.Caption = "Expand/Collapse";
            this.biExpandCollapse.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_expand_collapse_16;
            this.biExpandCollapse.Id = 6;
            this.biExpandCollapse.Name = "biExpandCollapse";
            this.biExpandCollapse.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biExpandCollapse_ItemClick);
            // 
            // biNewCustomFilter
            // 
            this.biNewCustomFilter.Caption = "Custom Filter";
            this.biNewCustomFilter.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_16;
            this.biNewCustomFilter.Id = 8;
            this.biNewCustomFilter.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_filter_32;
            this.biNewCustomFilter.Name = "biNewCustomFilter";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup8,
            this.ribbonPageGroup4,
            this.ribbonPageGroup6});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "HOME";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewOrder);
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewGroup);
            this.ribbonPageGroup1.ItemLinks.Add(this.biNewSubItem);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "New";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.biDelete);
            this.ribbonPageGroup2.MergeOrder = 0;
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Delete";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.AllowTextClipping = false;
            this.ribbonPageGroup3.ItemLinks.Add(this.biEdit);
            this.ribbonPageGroup3.ItemLinks.Add(this.biPrintSubItem);
            this.ribbonPageGroup3.MergeOrder = 0;
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Actions";
            // 
            // ribbonPageGroup8
            // 
            this.ribbonPageGroup8.AllowTextClipping = false;
            this.ribbonPageGroup8.ItemLinks.Add(this.galleryQuickReports);
            this.ribbonPageGroup8.MergeOrder = 0;
            this.ribbonPageGroup8.Name = "ribbonPageGroup8";
            this.ribbonPageGroup8.ShowCaptionButton = false;
            this.ribbonPageGroup8.Text = "Quick Reports";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.AllowTextClipping = false;
            this.ribbonPageGroup4.ItemLinks.Add(this.biShowList);
            this.ribbonPageGroup4.ItemLinks.Add(this.biMap);
            this.ribbonPageGroup4.MergeOrder = 0;
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "View";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.AllowTextClipping = false;
            this.ribbonPageGroup6.ItemLinks.Add(this.biNewCustomFilter);
            this.ribbonPageGroup6.MergeOrder = 0;
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Find";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup5,
            this.ribbonPageGroup7,
            this.ribbonPageGroup9});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "VIEW";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.AllowTextClipping = false;
            this.ribbonPageGroup5.ItemLinks.Add(this.biChangeViewSubItem);
            this.ribbonPageGroup5.ItemLinks.Add(this.biViewSettings);
            this.ribbonPageGroup5.ItemLinks.Add(this.biResetView);
            this.ribbonPageGroup5.MergeOrder = 0;
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Current View";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.AllowTextClipping = false;
            this.ribbonPageGroup7.ItemLinks.Add(this.biDataPaneSubItem);
            this.ribbonPageGroup7.MergeOrder = 1;
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.ShowCaptionButton = false;
            this.ribbonPageGroup7.Text = "Layout";
            // 
            // ribbonPageGroup9
            // 
            this.ribbonPageGroup9.AllowTextClipping = false;
            this.ribbonPageGroup9.ItemLinks.Add(this.biReverseSort);
            this.ribbonPageGroup9.ItemLinks.Add(this.biAddColumns);
            this.ribbonPageGroup9.ItemLinks.Add(this.biExpandCollapse);
            this.ribbonPageGroup9.MergeOrder = 1;
            this.ribbonPageGroup9.Name = "ribbonPageGroup9";
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.hiItemsCount);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 704);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbonControl;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1273, 27);
            // 
            // hiItemsCount
            // 
            this.hiItemsCount.Caption = "RECORDS: 0";
            this.hiItemsCount.Id = 7;
            this.hiItemsCount.Name = "hiItemsCount";
            // 
            // Orders
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.modueLayout);
            this.Controls.Add(this.ribbonControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Margin = new System.Windows.Forms.Padding(6);
            this.Name = "Orders";
            this.Size = new System.Drawing.Size(1273, 731);
            ((System.ComponentModel.ISupportInitialize)(this.gridViewOrderItems)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.modueLayout)).EndInit();
            this.modueLayout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pnlView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.masterItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(MenuRaporlar));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.labelControl2         = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1         = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location   = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.galleryControl1);
     this.splitContainer1.Panel1.Controls.Add(this.labelControl2);
     this.splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(20);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.labelControl1);
     this.splitContainer1.Size             = new System.Drawing.Size(855, 645);
     this.splitContainer1.SplitterDistance = 414;
     this.splitContainer1.TabIndex         = 5;
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Top;
     //
     //
     //
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.galleryControl1.Gallery.AutoFitColumns          = false;
     this.galleryControl1.Gallery.AutoSize                = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
     this.galleryControl1.Gallery.BackColor               = System.Drawing.Color.Transparent;
     this.galleryControl1.Gallery.ColumnCount             = 1;
     this.galleryControl1.Gallery.DistanceItemImageToText = 20;
     this.galleryControl1.Gallery.DrawImageBackground     = false;
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Performans Raporu";
     galleryItem1.Description  = "Personel performans raporu.";
     galleryItem1.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
     galleryItem1.Value        = 50;
     galleryItem2.Caption      = "Satış Raporu";
     galleryItem2.Description  = "Genel satış raporu.";
     galleryItem2.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
     galleryItem2.ImageIndex   = 1;
     galleryItem2.Value        = 51;
     galleryItem3.Caption      = "Gelen Ödemeler";
     galleryItem3.Description  = "Ödemesi yapılmışlar raporu.";
     galleryItem3.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
     galleryItem3.Value        = 52;
     galleryItem4.Caption      = "Bekleyen Ödemeler";
     galleryItem4.Description  = "Sadece bekleyen ödemeler ve taksitler raporu.";
     galleryItem4.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
     galleryItem4.Value        = 53;
     galleryItem5.Caption      = "Firma Komisyonları";
     galleryItem5.Description  = "Acente firmaların komisyon raporu.";
     galleryItem5.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
     galleryItem5.Value        = 54;
     galleryItem6.Caption      = "Personel Primleri";
     galleryItem6.Description  = "Prim hakediş ve raporu.";
     galleryItem6.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
     galleryItem6.Value        = 55;
     galleryItem7.Caption      = "Raporlar";
     galleryItem7.Description  = "Stok verilerine özgü detaylı raporlar ve hareket bilgileri alabilirsiniz. Kendi f" +
                                 "iltrelerinizi kaydedip, kendi raporlarınızı yapabilirsiniz.";
     galleryItem7.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem7.Image")));
     galleryItem8.Caption     = "Dashboard Ekranları";
     galleryItem8.Description = "Kullanıcı bazında dashboard raporları hazırlayın.";
     galleryItem8.Image       = ((System.Drawing.Image)(resources.GetObject("galleryItem8.Image")));
     galleryItem8.Value       = 56;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7,
         galleryItem8
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ItemImageLayout   = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.galleryControl1.Gallery.ShowGroupCaption  = false;
     this.galleryControl1.Gallery.ShowItemText      = true;
     this.galleryControl1.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
     this.galleryControl1.Gallery.ItemClick        += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl1_Gallery_ItemClick);
     this.galleryControl1.Location = new System.Drawing.Point(20, 58);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(374, 410);
     this.galleryControl1.TabIndex = 1;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(0, 0);
     this.galleryControlClient1.Size           = new System.Drawing.Size(374, 10000);
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.labelControl2.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.Dock            = System.Windows.Forms.DockStyle.Top;
     this.labelControl2.LineLocation    = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible     = true;
     this.labelControl2.Location        = new System.Drawing.Point(20, 20);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.ShowLineShadow  = false;
     this.labelControl2.Size            = new System.Drawing.Size(374, 38);
     this.labelControl2.TabIndex        = 0;
     this.labelControl2.Text            = "Raporlar";
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.Dock            = System.Windows.Forms.DockStyle.Left;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
     this.labelControl1.LineStyle       = System.Drawing.Drawing2D.DashStyle.DashDot;
     this.labelControl1.LineVisible     = true;
     this.labelControl1.Location        = new System.Drawing.Point(0, 0);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(4, 645);
     this.labelControl1.TabIndex        = 0;
     //
     // MenuRaporlar
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Name = "MenuRaporlar";
     this.Size = new System.Drawing.Size(855, 645);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 43
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
			DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
			DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
			DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
			DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
			DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
			DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
			this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
			this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
			this.showTickets = new DevExpress.XtraBars.BarButtonItem();
			this.saveDB = new DevExpress.XtraBars.BarButtonItem();
			this.dbGallery = new DevExpress.XtraBars.RibbonGalleryBarItem();
			this.pushData = new DevExpress.XtraBars.BarButtonItem();
			this.pullData = new DevExpress.XtraBars.BarButtonItem();
			this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
			this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
			this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabbedMdiManager1
			// 
			this.xtraTabbedMdiManager1.MdiParent = this;
			// 
			// ribbonControl1
			// 
			this.ribbonControl1.ApplicationButtonText = null;
			// 
			// 
			// 
			this.ribbonControl1.ExpandCollapseItem.Id = 0;
			this.ribbonControl1.ExpandCollapseItem.Name = "";
			this.ribbonControl1.ExpandCollapseItem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
			this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.showTickets,
            this.saveDB,
            this.dbGallery,
            this.pushData,
            this.pullData});
			this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
			this.ribbonControl1.MaxItemId = 6;
			this.ribbonControl1.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
			this.ribbonControl1.Name = "ribbonControl1";
			this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
			this.ribbonControl1.SelectedPage = this.ribbonPage1;
			this.ribbonControl1.Size = new System.Drawing.Size(706, 114);
			this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
			// 
			// showTickets
			// 
			this.showTickets.Caption = "Show Tickets";
			this.showTickets.Id = 1;
			this.showTickets.LargeGlyph = global::ShomreiTorah.Rafflizer.Properties.Resources.Grid32;
			this.showTickets.Name = "showTickets";
			// 
			// saveDB
			// 
			this.saveDB.Caption = "Save";
			this.saveDB.Glyph = global::ShomreiTorah.Rafflizer.Properties.Resources.Save16;
			this.saveDB.Id = 2;
			this.saveDB.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
			this.saveDB.LargeGlyph = global::ShomreiTorah.Rafflizer.Properties.Resources.Save32;
			this.saveDB.Name = "saveDB";
			this.saveDB.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.saveDB_ItemClick);
			// 
			// dbGallery
			// 
			this.dbGallery.Caption = "Databases";
			// 
			// 
			// 
			this.dbGallery.Gallery.ColumnCount = 2;
			galleryItemGroup1.Caption = "ShomreiTorahConfig";
			galleryItem1.Caption = "LFC";
			galleryItem1.Checked = true;
			galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
			galleryItem2.Caption = "Item2";
			galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
			galleryItem3.Caption = "Item3";
			galleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
			galleryItem4.Caption = "Item4";
			galleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
			galleryItem5.Caption = "Item5";
			galleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
			galleryItem6.Caption = "Item6";
			galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6});
			this.dbGallery.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
			this.dbGallery.Gallery.ImageSize = new System.Drawing.Size(12, 16);
			this.dbGallery.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
			skinPaddingEdges1.Top = 3;
			this.dbGallery.Gallery.ItemTextPadding = skinPaddingEdges1;
			this.dbGallery.Gallery.ShowItemText = true;
			this.dbGallery.Id = 3;
			this.dbGallery.Name = "dbGallery";
			// 
			// pushData
			// 
			this.pushData.Caption = "Push";
			this.pushData.Glyph = global::ShomreiTorah.Rafflizer.Properties.Resources.ServerPush16;
			this.pushData.Id = 4;
			this.pushData.Name = "pushData";
			this.pushData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pushData_ItemClick);
			// 
			// pullData
			// 
			this.pullData.Caption = "Pull";
			this.pullData.Glyph = global::ShomreiTorah.Rafflizer.Properties.Resources.ServerPull16;
			this.pullData.Id = 5;
			this.pullData.Name = "pullData";
			this.pullData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pullData_ItemClick);
			// 
			// ribbonPage1
			// 
			this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2});
			this.ribbonPage1.Name = "ribbonPage1";
			this.ribbonPage1.Text = "Data";
			// 
			// ribbonPageGroup1
			// 
			this.ribbonPageGroup1.ItemLinks.Add(this.showTickets);
			this.ribbonPageGroup1.Name = "ribbonPageGroup1";
			this.ribbonPageGroup1.ShowCaptionButton = false;
			this.ribbonPageGroup1.Text = "Raffle";
			// 
			// ribbonPageGroup2
			// 
			this.ribbonPageGroup2.ItemLinks.Add(this.saveDB);
			this.ribbonPageGroup2.ItemLinks.Add(this.dbGallery, true);
			this.ribbonPageGroup2.ItemLinks.Add(this.pullData);
			this.ribbonPageGroup2.ItemLinks.Add(this.pushData);
			this.ribbonPageGroup2.Name = "ribbonPageGroup2";
			this.ribbonPageGroup2.ShowCaptionButton = false;
			this.ribbonPageGroup2.Text = "Database";
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(706, 486);
			this.Controls.Add(this.ribbonControl1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.IsMdiContainer = true;
			this.Name = "MainForm";
			this.Text = "Shomrei Torah Rafflizer";
			((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(MenuStokYonetimi));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.labelControl2         = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1         = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location   = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.galleryControl1);
     this.splitContainer1.Panel1.Controls.Add(this.labelControl2);
     this.splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(20);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.labelControl1);
     this.splitContainer1.Size             = new System.Drawing.Size(766, 624);
     this.splitContainer1.SplitterDistance = 414;
     this.splitContainer1.TabIndex         = 4;
     //
     // galleryControl1
     //
     this.galleryControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Top;
     //
     //
     //
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions     = true;
     this.galleryControl1.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment     = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.galleryControl1.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.galleryControl1.Gallery.AutoFitColumns          = false;
     this.galleryControl1.Gallery.AutoSize                = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
     this.galleryControl1.Gallery.BackColor               = System.Drawing.Color.Transparent;
     this.galleryControl1.Gallery.ColumnCount             = 1;
     this.galleryControl1.Gallery.DistanceItemImageToText = 20;
     this.galleryControl1.Gallery.DrawImageBackground     = false;
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Proje Kartları";
     galleryItem1.Description  = "Gayrimenkullerinizin hangi projelerde oladuğunu ve derinlemesine detaylarnı barın" +
                                 "dıran, durum ve hareketlerini göreceğiniz ekranlar.";
     galleryItem1.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     galleryItem1.Value       = "18";
     galleryItem2.Caption     = "Vaziyet Planı";
     galleryItem2.Description = "Projeniz hakkında detaylı bilgiler girebilirsiniz ve vaziyet olarak projenizi det" +
                                "aylandırırsınız.";
     galleryItem2.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
     galleryItem2.ImageOptions.ImageIndex = 1;
     galleryItem2.Value       = "19";
     galleryItem3.Caption     = "Gayrimenkul Kartları";
     galleryItem3.Description = "Bütün detaylarıyla gayrimenkul bilgilerini girip hızlıca satışa hazırlayabilirsin" +
                                "iz.";
     galleryItem3.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
     galleryItem3.Value       = "20";
     galleryItem4.Caption     = "Fiyat Listeleri";
     galleryItem4.Description = "Gayrimenkul fiyatlarını tanımlayabileceğiniz ve farklı satış listeleri oluşturabi" +
                                "lirsiniz.";
     galleryItem4.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
     galleryItem4.Value              = "21";
     galleryItem5.Caption            = "Kampanya Yönetimi";
     galleryItem5.Description        = "Çeşitli kampanyalar tanımlayabileceğiniz ve bunları yönetebileceğinizi ekran.";
     galleryItem5.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
     galleryItem5.Value              = "22";
     galleryItem6.Caption            = "İçeri Aktarımlar";
     galleryItem6.Description        = "Excel üzerinde olan gayrimenkul bilgilerinizi sistem içerisine aktarımını sağlar." +
                                       "";
     galleryItem6.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image5")));
     galleryItem6.Value       = "23";
     galleryItem7.Caption     = "Raporlar";
     galleryItem7.Description = "Stok verilerine özgü detaylı raporlar ve hareket bilgileri alabilirsiniz. Kendi f" +
                                "iltrelerinizi kaydedip, kendi raporlarınızı yapabilirsiniz.";
     galleryItem7.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image6")));
     galleryItem7.Value       = "24";
     galleryItem8.Caption     = "Tanımlamalar";
     galleryItem8.Description = "Çeşitli dinamik alanların verilerini ve içeriklerini tanımlaya bilirsiniz. İhtiya" +
                                "çlarınız doğrultusunda kategoriler yaratabilirsiniz.";
     galleryItem8.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image7")));
     galleryItem8.Value = "25";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7,
         galleryItem8
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ItemImageLayout   = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
     this.galleryControl1.Gallery.ShowGroupCaption  = false;
     this.galleryControl1.Gallery.ShowItemText      = true;
     this.galleryControl1.Gallery.ShowScrollBar     = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Hide;
     this.galleryControl1.Gallery.ItemClick        += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl1_Gallery_ItemClick);
     this.galleryControl1.Location = new System.Drawing.Point(20, 58);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(374, 410);
     this.galleryControl1.TabIndex = 1;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(0, 0);
     this.galleryControlClient1.Size           = new System.Drawing.Size(374, 10000);
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font            = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Appearance.Options.UseFont = true;
     this.labelControl2.AutoSizeMode   = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.Dock           = System.Windows.Forms.DockStyle.Top;
     this.labelControl2.LineLocation   = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible    = true;
     this.labelControl2.Location       = new System.Drawing.Point(20, 20);
     this.labelControl2.Name           = "labelControl2";
     this.labelControl2.ShowLineShadow = false;
     this.labelControl2.Size           = new System.Drawing.Size(374, 38);
     this.labelControl2.TabIndex       = 0;
     this.labelControl2.Text           = "Stok Yönetimi";
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.Dock            = System.Windows.Forms.DockStyle.Left;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
     this.labelControl1.LineStyle       = System.Drawing.Drawing2D.DashStyle.DashDot;
     this.labelControl1.LineVisible     = true;
     this.labelControl1.Location        = new System.Drawing.Point(0, 0);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(4, 624);
     this.labelControl1.TabIndex        = 0;
     //
     // MenuStokYonetimi
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Name = "MenuStokYonetimi";
     this.Size = new System.Drawing.Size(766, 624);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.Utils.SuperToolTip         superToolTip1         = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem     toolTipTitleItem1     = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem          toolTipItem1          = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipItem          toolTipItem2          = new DevExpress.Utils.ToolTipItem();
     this.ribbonControl1              = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.backstageViewControl1       = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
     this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.placeholder1 = new sample_2_10.Placeholder();
     this.backstageViewClientControl2        = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.recentItemControl1                 = new DevExpress.XtraBars.Ribbon.RecentItemControl();
     this.recentControlItemControlContainer1 = new DevExpress.XtraBars.Ribbon.RecentControlItemControlContainer();
     this.placeholder2                = new sample_2_10.Placeholder();
     this.recentStackPanel2           = new DevExpress.XtraBars.Ribbon.RecentStackPanel();
     this.recentStackPanel1           = new DevExpress.XtraBars.Ribbon.RecentStackPanel();
     this.recentButtonItem1           = new DevExpress.XtraBars.Ribbon.RecentButtonItem();
     this.recentHyperlinkItem1        = new DevExpress.XtraBars.Ribbon.RecentHyperlinkItem();
     this.recentLabelItem1            = new DevExpress.XtraBars.Ribbon.RecentLabelItem();
     this.recentPinItem1              = new DevExpress.XtraBars.Ribbon.RecentPinItem();
     this.recentTabItem1              = new DevExpress.XtraBars.Ribbon.RecentTabItem();
     this.recentStackPanel3           = new DevExpress.XtraBars.Ribbon.RecentStackPanel();
     this.recentButtonItem2           = new DevExpress.XtraBars.Ribbon.RecentButtonItem();
     this.recentButtonItem3           = new DevExpress.XtraBars.Ribbon.RecentButtonItem();
     this.recentControlContainerItem1 = new DevExpress.XtraBars.Ribbon.RecentControlContainerItem();
     this.recentTabItem2              = new DevExpress.XtraBars.Ribbon.RecentTabItem();
     this.recentStackPanel4           = new DevExpress.XtraBars.Ribbon.RecentStackPanel();
     this.backstageViewTabItem1       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem2       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewItemSeparator1 = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
     this.backstageViewButtonItem1    = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
     this.barToggleSwitchItem1        = new DevExpress.XtraBars.BarToggleSwitchItem();
     this.barButtonItem1              = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1              = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem2              = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonGalleryBarItem1       = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.galleryDropDown1            = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
     this.barButtonItem3              = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonMiniToolbar1          = new DevExpress.XtraBars.Ribbon.RibbonMiniToolbar(this.components);
     this.ribbonPage1           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1      = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.popupMenu1            = new DevExpress.XtraBars.PopupMenu(this.components);
     this.backstageViewManager1 = new DevExpress.XtraBars.Ribbon.BackstageViewManager();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.backstageViewControl1)).BeginInit();
     this.backstageViewControl1.SuspendLayout();
     this.backstageViewClientControl1.SuspendLayout();
     this.backstageViewClientControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recentItemControl1)).BeginInit();
     this.recentItemControl1.SuspendLayout();
     this.recentControlItemControlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AllowCustomization = true;
     this.ribbonControl1.ApplicationButtonDropDownControl = this.backstageViewControl1;
     this.ribbonControl1.AutoSaveLayoutToXml = true;
     this.ribbonControl1.CaptionBarItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barToggleSwitchItem1,
         this.ribbonControl1.ExpandCollapseItem,
         this.ribbonControl1.SearchEditItem,
         this.barButtonItem1,
         this.barStaticItem1,
         this.barButtonItem2,
         this.ribbonGalleryBarItem1,
         this.barButtonItem3
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 7;
     this.ribbonControl1.MiniToolbars.Add(this.ribbonMiniToolbar1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.PageHeaderItemLinks.Add(this.barButtonItem2);
     this.ribbonControl1.PageHeaderItemLinks.Add(this.barStaticItem1);
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage2
     });
     this.ribbonControl1.QuickToolbarItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2019;
     this.ribbonControl1.Size        = new System.Drawing.Size(1098, 158);
     this.ribbonControl1.StatusBar   = this.ribbonStatusBar1;
     //
     // backstageViewControl1
     //
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl2);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl1);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem1);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem2);
     this.backstageViewControl1.Items.Add(this.backstageViewItemSeparator1);
     this.backstageViewControl1.Items.Add(this.backstageViewButtonItem1);
     this.backstageViewControl1.Location            = new System.Drawing.Point(12, 164);
     this.backstageViewControl1.Name                = "backstageViewControl1";
     this.backstageViewControl1.OwnerControl        = this.ribbonControl1;
     this.backstageViewControl1.SelectedTab         = this.backstageViewTabItem2;
     this.backstageViewControl1.SelectedTabIndex    = 1;
     this.backstageViewControl1.Size                = new System.Drawing.Size(956, 621);
     this.backstageViewControl1.TabIndex            = 2;
     this.backstageViewControl1.VisibleInDesignTime = true;
     //
     // backstageViewClientControl1
     //
     this.backstageViewClientControl1.Controls.Add(this.placeholder1);
     this.backstageViewClientControl1.Location = new System.Drawing.Point(146, 62);
     this.backstageViewClientControl1.Name     = "backstageViewClientControl1";
     this.backstageViewClientControl1.Size     = new System.Drawing.Size(810, 559);
     this.backstageViewClientControl1.TabIndex = 1;
     //
     // placeholder1
     //
     this.placeholder1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.placeholder1.Location = new System.Drawing.Point(0, 0);
     this.placeholder1.Margin   = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.placeholder1.Name     = "placeholder1";
     this.placeholder1.Size     = new System.Drawing.Size(810, 559);
     this.placeholder1.TabIndex = 0;
     //
     // backstageViewClientControl2
     //
     this.backstageViewClientControl2.Controls.Add(this.recentItemControl1);
     this.backstageViewClientControl2.Location = new System.Drawing.Point(146, 63);
     this.backstageViewClientControl2.Name     = "backstageViewClientControl2";
     this.backstageViewClientControl2.Size     = new System.Drawing.Size(809, 557);
     this.backstageViewClientControl2.TabIndex = 2;
     //
     // recentItemControl1
     //
     this.recentItemControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.recentItemControl1.Controls.Add(this.recentControlItemControlContainer1);
     this.recentItemControl1.DefaultContentPanel = this.recentStackPanel2;
     this.recentItemControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.recentItemControl1.Location    = new System.Drawing.Point(0, 0);
     this.recentItemControl1.MainPanel   = this.recentStackPanel1;
     this.recentItemControl1.Name        = "recentItemControl1";
     this.recentItemControl1.SelectedTab = this.recentTabItem1;
     this.recentItemControl1.Size        = new System.Drawing.Size(809, 557);
     this.recentItemControl1.TabIndex    = 0;
     this.recentItemControl1.Title       = "Recent Files";
     //
     // recentControlItemControlContainer1
     //
     this.recentControlItemControlContainer1.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.recentControlItemControlContainer1.Appearance.Options.UseBackColor = true;
     this.recentControlItemControlContainer1.Controls.Add(this.placeholder2);
     this.recentControlItemControlContainer1.Name     = "recentControlItemControlContainer1";
     this.recentControlItemControlContainer1.Size     = new System.Drawing.Size(438, 265);
     this.recentControlItemControlContainer1.TabIndex = 1;
     //
     // placeholder2
     //
     this.placeholder2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.placeholder2.Location = new System.Drawing.Point(0, 0);
     this.placeholder2.Margin   = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.placeholder2.Name     = "placeholder2";
     this.placeholder2.Size     = new System.Drawing.Size(438, 265);
     this.placeholder2.TabIndex = 0;
     //
     // recentStackPanel2
     //
     this.recentStackPanel2.Name = "recentStackPanel2";
     //
     // recentStackPanel1
     //
     this.recentStackPanel1.Items.AddRange(new DevExpress.XtraBars.Ribbon.RecentItemBase[] {
         this.recentButtonItem1,
         this.recentHyperlinkItem1,
         this.recentLabelItem1,
         this.recentPinItem1,
         this.recentTabItem1,
         this.recentTabItem2
     });
     this.recentStackPanel1.Name         = "recentStackPanel1";
     this.recentStackPanel1.SelectedItem = this.recentTabItem1;
     //
     // recentButtonItem1
     //
     this.recentButtonItem1.Caption = "recentButtonItem1";
     this.recentButtonItem1.Name    = "recentButtonItem1";
     this.recentButtonItem1.Size    = new System.Drawing.Size(151, 54);
     //
     // recentHyperlinkItem1
     //
     this.recentHyperlinkItem1.Caption = "recentHyperlinkItem1";
     this.recentHyperlinkItem1.Name    = "recentHyperlinkItem1";
     //
     // recentLabelItem1
     //
     this.recentLabelItem1.Caption = "recentLabelItem1";
     this.recentLabelItem1.Name    = "recentLabelItem1";
     //
     // recentPinItem1
     //
     this.recentPinItem1.Caption        = "Settings";
     this.recentPinItem1.Description    = "Find important Recent File settings here";
     this.recentPinItem1.GlyphAlignment = DevExpress.XtraBars.Ribbon.RecentPinItemGlyphAlignment.Center;
     this.recentPinItem1.ImageOptions.ItemNormal.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("recentPinItem1.ImageOptions.ItemNormal.SvgImage")));
     this.recentPinItem1.Name = "recentPinItem1";
     this.recentPinItem1.PinButtonVisibility = DevExpress.XtraBars.Ribbon.RecentPinButtonVisibility.Never;
     //
     // recentTabItem1
     //
     this.recentTabItem1.Caption  = "recentTabItem1";
     this.recentTabItem1.Name     = "recentTabItem1";
     this.recentTabItem1.TabPanel = this.recentStackPanel3;
     //
     // recentStackPanel3
     //
     this.recentStackPanel3.Caption = "recentTabItem1";
     this.recentStackPanel3.Items.AddRange(new DevExpress.XtraBars.Ribbon.RecentItemBase[] {
         this.recentButtonItem2,
         this.recentButtonItem3,
         this.recentControlContainerItem1
     });
     this.recentStackPanel3.Name = "recentStackPanel3";
     //
     // recentButtonItem2
     //
     this.recentButtonItem2.Caption = "recentButtonItem2";
     this.recentButtonItem2.Name    = "recentButtonItem2";
     this.recentButtonItem2.Size    = new System.Drawing.Size(151, 54);
     //
     // recentButtonItem3
     //
     this.recentButtonItem3.Caption = "recentButtonItem3";
     this.recentButtonItem3.Name    = "recentButtonItem3";
     this.recentButtonItem3.Size    = new System.Drawing.Size(151, 54);
     //
     // recentControlContainerItem1
     //
     this.recentControlContainerItem1.ClientHeight     = 265;
     this.recentControlContainerItem1.ControlContainer = this.recentControlItemControlContainer1;
     this.recentControlContainerItem1.FillSpace        = true;
     this.recentControlContainerItem1.Name             = "recentControlContainerItem1";
     //
     // recentTabItem2
     //
     this.recentTabItem2.Caption  = "recentTabItem2";
     this.recentTabItem2.Name     = "recentTabItem2";
     this.recentTabItem2.TabPanel = this.recentStackPanel4;
     //
     // recentStackPanel4
     //
     this.recentStackPanel4.Caption = "recentTabItem2";
     this.recentStackPanel4.Name    = "recentStackPanel4";
     //
     // backstageViewTabItem1
     //
     this.backstageViewTabItem1.Caption        = "Placeholder";
     this.backstageViewTabItem1.ContentControl = this.backstageViewClientControl1;
     this.backstageViewTabItem1.Name           = "backstageViewTabItem1";
     //
     // backstageViewTabItem2
     //
     this.backstageViewTabItem2.Caption        = "Open";
     this.backstageViewTabItem2.ContentControl = this.backstageViewClientControl2;
     this.backstageViewTabItem2.Name           = "backstageViewTabItem2";
     this.backstageViewTabItem2.Selected       = true;
     //
     // backstageViewItemSeparator1
     //
     this.backstageViewItemSeparator1.Name = "backstageViewItemSeparator1";
     //
     // backstageViewButtonItem1
     //
     this.backstageViewButtonItem1.Caption    = "Quit";
     this.backstageViewButtonItem1.Name       = "backstageViewButtonItem1";
     this.backstageViewButtonItem1.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.backstageViewButtonItem1_ItemClick);
     //
     // barToggleSwitchItem1
     //
     this.barToggleSwitchItem1.Caption = "barToggleSwitchItem1";
     this.barToggleSwitchItem1.Id      = 4;
     this.barToggleSwitchItem1.Name    = "barToggleSwitchItem1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 1;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "barStaticItem1";
     this.barStaticItem1.Id      = 2;
     this.barStaticItem1.Name    = "barStaticItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 3;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     galleryItemGroup1.Caption          = "Alignment";
     galleryItem1.Caption               = "Top";
     galleryItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     galleryItem2.Caption               = "Middle";
     galleryItem2.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1")));
     galleryItem3.Caption               = "Bottom";
     galleryItem3.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2")));
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3
     });
     galleryItemGroup2.Caption          = "Text alignment";
     galleryItem4.Caption               = "Left";
     galleryItem4.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage3")));
     galleryItem5.Caption               = "Center";
     galleryItem5.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage4")));
     galleryItem6.Caption               = "Right";
     galleryItem6.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage5")));
     galleryItem7.Caption               = "Block";
     galleryItem7.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage6")));
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2
     });
     this.ribbonGalleryBarItem1.Gallery.ShowItemText = true;
     this.ribbonGalleryBarItem1.GalleryDropDown      = this.galleryDropDown1;
     this.ribbonGalleryBarItem1.Id   = 5;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // galleryDropDown1
     //
     //
     //
     //
     galleryItemGroup3.Caption = "Group1";
     galleryItem8.Caption      = "Drop-down gallery item";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem8
     });
     this.galleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup3
     });
     this.galleryDropDown1.Gallery.ShowItemText = true;
     this.galleryDropDown1.ItemLinks.Add(this.barButtonItem1);
     this.galleryDropDown1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.galleryDropDown1.Name   = "galleryDropDown1";
     this.galleryDropDown1.Ribbon = this.ribbonControl1;
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id      = 6;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // ribbonMiniToolbar1
     //
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItem3);
     this.ribbonMiniToolbar1.ParentControl = this;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup3
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2, "BX");
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.True;
     this.ribbonPageGroup3.ItemLinks.Add(this.ribbonGalleryBarItem1);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     toolTipTitleItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage7")));
     toolTipTitleItem1.Text = "This is the Ribbon Gallery";
     toolTipItem1.Text      = "Galleries can display options or commands for quick selection.";
     toolTipItem2.Text      = "They can also be useful for elements that require visual identification.";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     superToolTip1.Items.Add(toolTipSeparatorItem1);
     superToolTip1.Items.Add(toolTipItem2);
     this.ribbonPageGroup3.SuperTip = superToolTip1;
     this.ribbonPageGroup3.Text     = "Gallery";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup2
     });
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "ribbonPage2";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barToggleSwitchItem1);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "ribbonPageGroup2";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 791);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(1098, 22);
     //
     // popupMenu1
     //
     this.popupMenu1.ItemLinks.Add(this.barToggleSwitchItem1);
     this.popupMenu1.ItemLinks.Add(this.barButtonItem1);
     this.popupMenu1.Name   = "popupMenu1";
     this.popupMenu1.Ribbon = this.ribbonControl1;
     //
     // backstageViewManager1
     //
     this.backstageViewManager1.BackstageView = this.backstageViewControl1;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1098, 813);
     this.Controls.Add(this.backstageViewControl1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Name      = "Form1";
     this.Ribbon    = this.ribbonControl1;
     this.StatusBar = this.ribbonStatusBar1;
     this.Text      = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.backstageViewControl1)).EndInit();
     this.backstageViewControl1.ResumeLayout(false);
     this.backstageViewClientControl1.ResumeLayout(false);
     this.backstageViewClientControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.recentItemControl1)).EndInit();
     this.recentItemControl1.ResumeLayout(false);
     this.recentControlItemControlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.CheckContextButton            checkContextButton1 = new DevExpress.Utils.CheckContextButton();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1   = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1        = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2        = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3        = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.Utils.CheckContextButton            checkContextButton2 = new DevExpress.Utils.CheckContextButton();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2   = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     this.galleryDropDown1      = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
     this.barManager1           = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop     = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom  = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft    = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight   = new DevExpress.XtraBars.BarDockControl();
     this.barButtonItem1        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2        = new DevExpress.XtraBars.BarButtonItem();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // galleryDropDown1
     //
     //
     //
     //
     checkContextButton1.Checked    = true;
     checkContextButton1.Id         = new System.Guid("c849249b-dc14-40ad-8a7e-fe13cf7990c8");
     checkContextButton1.Name       = "CheckContextButton";
     checkContextButton1.Visibility = DevExpress.Utils.ContextItemVisibility.Visible;
     this.galleryDropDown1.Gallery.ContextButtons.Add(checkContextButton1);
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Item1";
     galleryItem1.Checked      = true;
     galleryItem1.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
     galleryItem1.Value        = 0;
     galleryItem2.Caption      = "Item2";
     galleryItem2.Checked      = true;
     galleryItem2.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
     galleryItem2.Value        = 1;
     galleryItem3.Caption      = "Item3";
     galleryItem3.Image        = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
     galleryItem3.Value        = 2;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3
     });
     this.galleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryDropDown1.Gallery.ImageSize     = new System.Drawing.Size(90, 120);
     this.galleryDropDown1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.Multiple;
     this.galleryDropDown1.Gallery.ShowItemText  = true;
     this.galleryDropDown1.Manager     = this.barManager1;
     this.galleryDropDown1.Name        = "galleryDropDown1";
     this.galleryDropDown1.ShowCaption = true;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barButtonItem1,
         this.barButtonItem2
     });
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     //  this.barDockControlTop.Manager = this.barManager1;
     this.barDockControlTop.Size = new System.Drawing.Size(374, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 406);
     // this.barDockControlBottom.Manager = this.barManager1;
     this.barDockControlBottom.Size = new System.Drawing.Size(374, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 0);
     //  this.barDockControlLeft.Manager = this.barManager1;
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 406);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(374, 0);
     //  this.barDockControlRight.Manager = this.barManager1;
     this.barDockControlRight.Size = new System.Drawing.Size(0, 406);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 0;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 1;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.Cursor = System.Windows.Forms.Cursors.Default;
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     //
     //
     checkContextButton2.Id         = new System.Guid("1976cde2-0fca-4666-b1fc-7a8d4762b2e3");
     checkContextButton2.Name       = "CheckContextButton";
     checkContextButton2.Visibility = DevExpress.Utils.ContextItemVisibility.Visible;
     this.galleryControl1.Gallery.ContextButtons.Add(checkContextButton2);
     galleryItemGroup2.Caption = "Group2";
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup2
     });
     this.galleryControl1.Gallery.ImageSize               = new System.Drawing.Size(120, 90);
     this.galleryControl1.Gallery.ItemCheckMode           = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.Multiple;
     this.galleryControl1.Gallery.ItemImageLayout         = DevExpress.Utils.Drawing.ImageLayoutMode.Stretch;
     this.galleryControl1.Gallery.ItemSize                = new System.Drawing.Size(50, 50);
     this.galleryControl1.Gallery.ContextButtonCustomize += new DevExpress.XtraBars.Ribbon.Gallery.GalleryContextButtonCustomizeEventHandler(this.galleryControl1_Gallery_ContextButtonCustomize);
     this.galleryControl1.Gallery.ContextButtonClick     += new DevExpress.Utils.ContextItemClickEventHandler(this.galleryControl1_Gallery_ContextButtonClick);
     this.galleryControl1.Location = new System.Drawing.Point(0, 0);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(374, 406);
     this.galleryControl1.TabIndex = 4;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size           = new System.Drawing.Size(353, 402);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(374, 406);
     this.Controls.Add(this.galleryControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.galleryControl2       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient2 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).BeginInit();
     this.galleryControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // galleryControlGallery1
     //
     galleryItemGroup1.Caption = "Group1";
     galleryItem1.Caption      = "Mercedes-Benz";
     galleryItem1.Description  = "SL500 Roadster";
     galleryItem1.Image        = global::WindowsFormsApplication19.Properties.Resources.Car1;
     galleryItem2.Caption      = "BMW";
     galleryItem2.Description  = "530i";
     galleryItem2.Image        = global::WindowsFormsApplication19.Properties.Resources.Car4;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ImageSize       = new System.Drawing.Size(128, 128);
     this.galleryControl1.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl1.Gallery.ShowItemText    = true;
     this.galleryControl1.Location = new System.Drawing.Point(0, 0);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(678, 209);
     this.galleryControl1.TabIndex = 0;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size           = new System.Drawing.Size(657, 205);
     //
     // galleryControl2
     //
     this.galleryControl2.Controls.Add(this.galleryControlClient2);
     this.galleryControl2.DesignGalleryGroupIndex = 0;
     this.galleryControl2.DesignGalleryItemIndex  = 0;
     this.galleryControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // galleryControlGallery2
     //
     this.galleryControl2.Gallery.ImageSize       = new System.Drawing.Size(128, 128);
     this.galleryControl2.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl2.Gallery.ShowItemText    = true;
     this.galleryControl2.Location = new System.Drawing.Point(0, 248);
     this.galleryControl2.Name     = "galleryControl2";
     this.galleryControl2.Size     = new System.Drawing.Size(678, 209);
     this.galleryControl2.TabIndex = 1;
     this.galleryControl2.Text     = "galleryControl2";
     //
     // galleryControlClient2
     //
     this.galleryControlClient2.GalleryControl = this.galleryControl2;
     this.galleryControlClient2.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient2.Size           = new System.Drawing.Size(657, 205);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(678, 457);
     this.Controls.Add(this.galleryControl2);
     this.Controls.Add(this.galleryControl1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).EndInit();
     this.galleryControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(ChiPhiGiaThanh));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem9      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem10     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem11     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem12     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem13     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem14     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem15     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem16     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem17     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.galleryControl2       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient2 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.separatorControl1     = new DevExpress.XtraEditors.SeparatorControl();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).BeginInit();
     this.galleryControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).BeginInit();
     this.SuspendLayout();
     //
     // galleryControl2
     //
     this.galleryControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.galleryControl2.Controls.Add(this.galleryControlClient2);
     this.galleryControl2.DesignGalleryGroupIndex = 0;
     this.galleryControl2.DesignGalleryItemIndex  = 0;
     //
     //
     //
     this.galleryControl2.Gallery.AllowFilter    = false;
     this.galleryControl2.Gallery.AutoFitColumns = false;
     this.galleryControl2.Gallery.AutoSize       = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
     this.galleryControl2.Gallery.BackColor      = System.Drawing.SystemColors.GradientInactiveCaption;
     this.galleryControl2.Gallery.CheckDrawMode  = DevExpress.XtraBars.Ribbon.Gallery.CheckDrawMode.OnlyImage;
     this.galleryControl2.Gallery.ColumnCount    = 10;
     this.galleryControl2.Gallery.FixedImageSize = false;
     galleryItemGroup1.Caption = "DỮ LIỆU";
     galleryItem1.AppearanceCaption.Normal.Font            = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
     galleryItem1.AppearanceCaption.Normal.Options.UseFont = true;
     galleryItem1.Caption = "Phiếu nhập thành phần";
     galleryItem1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     galleryItem1.Value   = 0;
     galleryItem2.Caption = "Khai báo định mức sản phẩm";
     galleryItem2.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1")));
     galleryItem2.Value   = 1;
     galleryItem3.Caption = "Tính giá thành sản phẩm";
     galleryItem3.ImageOptions.HoverImage = ((System.Drawing.Image)(resources.GetObject("resource.HoverImage")));
     galleryItem3.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     galleryItem3.Tag     = "tgtp";
     galleryItem3.Value   = 2;
     galleryItem4.Caption = "Phân bổ chi phí chung";
     galleryItem4.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2")));
     galleryItem4.Value   = 3;
     galleryItem5.Caption = "Chi phí sản xuất dở dang đầu năm";
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5
     });
     galleryItemGroup2.Caption       = "BÁO CÁO";
     galleryItem6.Caption            = "Báo cáo hàng tồn kho";
     galleryItem6.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
     galleryItem6.Value              = 6;
     galleryItem7.Caption            = "Báo cáo chi phí";
     galleryItem7.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
     galleryItem8.Caption            = "Báo cáo giá thành sản xuất";
     galleryItem8.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem6,
         galleryItem7,
         galleryItem8
     });
     galleryItemGroup3.Caption       = "DANH MỤC";
     galleryItem9.Caption            = "Danh mục nghiệp vụ";
     galleryItem9.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
     galleryItem9.Tag      = "DMNVU";
     galleryItem9.Value    = 8;
     galleryItem10.Caption = "Danh muc tài khoản";
     galleryItem10.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage3")));
     galleryItem10.Tag                = "DMTK";
     galleryItem10.Value              = 9;
     galleryItem11.Caption            = "Danh mục bộ phận";
     galleryItem11.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image5")));
     galleryItem11.Tag                = "DMBP";
     galleryItem11.Value              = 12;
     galleryItem12.Caption            = "Danh mục nhóm sản phẩm";
     galleryItem12.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image6")));
     galleryItem12.Tag                = "DMNHSP";
     galleryItem13.Caption            = "Các phân đoạn giá thành";
     galleryItem13.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image7")));
     galleryItem13.Tag                = "CPDGT";
     galleryItem13.Value              = 13;
     galleryItem14.Caption            = "Phương pháp phân bổ chi phí";
     galleryItem14.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image8")));
     galleryItem14.Tag                = "PPPBCP";
     galleryItem14.Value              = 15;
     galleryItem15.Caption            = "Danh mục yếu tố chi phí";
     galleryItem15.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image9")));
     galleryItem15.Tag                = "DMYTCP";
     galleryItem15.Value              = 16;
     galleryItem16.Caption            = "Danh mục đối tượng";
     galleryItem16.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image10")));
     galleryItem16.Tag                = "DMDT";
     galleryItem17.Caption            = "Danh mục bảng giá";
     galleryItem17.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image11")));
     galleryItem17.Tag                = "DMBG";
     galleryItem17.Value              = "";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem9,
         galleryItem10,
         galleryItem11,
         galleryItem12,
         galleryItem13,
         galleryItem14,
         galleryItem15,
         galleryItem16,
         galleryItem17
     });
     this.galleryControl2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2,
         galleryItemGroup3
     });
     this.galleryControl2.Gallery.RowCount      = 5;
     this.galleryControl2.Gallery.ShowItemText  = true;
     this.galleryControl2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
     this.galleryControl2.Gallery.ItemClick    += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl2_Gallery_ItemClick);
     this.galleryControl2.Location = new System.Drawing.Point(0, 50);
     this.galleryControl2.Name     = "galleryControl2";
     this.galleryControl2.Size     = new System.Drawing.Size(871, 421);
     this.galleryControl2.TabIndex = 8;
     this.galleryControl2.Text     = "galleryControl2";
     //
     // galleryControlClient2
     //
     this.galleryControlClient2.GalleryControl = this.galleryControl2;
     this.galleryControlClient2.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient2.Size           = new System.Drawing.Size(850, 417);
     //
     // separatorControl1
     //
     this.separatorControl1.Location = new System.Drawing.Point(0, 35);
     this.separatorControl1.Margin   = new System.Windows.Forms.Padding(0);
     this.separatorControl1.Name     = "separatorControl1";
     this.separatorControl1.Padding  = new System.Windows.Forms.Padding(0);
     this.separatorControl1.Size     = new System.Drawing.Size(400, 15);
     this.separatorControl1.TabIndex = 13;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ButtonShadow;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(400, 35);
     this.label1.TabIndex  = 12;
     this.label1.Text      = "CHI PHÍ GIÁ THÀNH";
     //
     // ChiPhiGiaThanh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.separatorControl1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.galleryControl2);
     this.Name = "ChiPhiGiaThanh";
     this.Size = new System.Drawing.Size(871, 471);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).EndInit();
     this.galleryControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.imageList1            = new System.Windows.Forms.ImageList(this.components);
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "91Wallpaper_280148.jpg");
     this.imageList1.Images.SetKeyName(1, "91Wallpaper_280671.jpg");
     this.imageList1.Images.SetKeyName(2, "91Wallpaper_280793.jpg");
     this.imageList1.Images.SetKeyName(3, "91Wallpaper_280849.jpg");
     this.imageList1.Images.SetKeyName(4, "91Wallpaper_280854.jpg");
     this.imageList1.Images.SetKeyName(5, "91Wallpaper_282818.jpg");
     this.imageList1.Images.SetKeyName(6, "91Wallpaper_282983.jpg");
     this.imageList1.Images.SetKeyName(7, "91Wallpaper_283283.jpg");
     this.imageList1.Images.SetKeyName(8, "91Wallpaper_283446.jpg");
     this.imageList1.Images.SetKeyName(9, "91Wallpaper_283979.jpg");
     this.imageList1.Images.SetKeyName(10, "91Wallpaper_283986.jpg");
     this.imageList1.Images.SetKeyName(11, "91Wallpaper_283989.jpg");
     this.imageList1.Images.SetKeyName(12, "91Wallpaper_283992.jpg");
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // galleryControlGallery1
     //
     this.galleryControl1.Gallery.AllowHoverImages     = true;
     this.galleryControl1.Gallery.ColumnCount          = 3;
     this.galleryControl1.Gallery.DistanceBetweenItems = 100;
     galleryItemGroup1.Caption    = "我的素颜";
     galleryItem1.Caption         = "Item2";
     galleryItem1.Checked         = true;
     galleryItem1.Description     = "Description";
     galleryItem1.HoverImage      = ((System.Drawing.Image)(resources.GetObject("galleryItem1.HoverImage")));
     galleryItem1.Image           = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
     galleryItem1.ImageIndex      = 0;
     galleryItem2.Caption         = "Item3";
     galleryItem2.HoverImage      = ((System.Drawing.Image)(resources.GetObject("galleryItem2.HoverImage")));
     galleryItem2.HoverImageIndex = 1;
     galleryItem2.Image           = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
     galleryItem2.ImageIndex      = 1;
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2
     });
     galleryItemGroup2.Caption = "其他";
     galleryItem3.Caption      = "Item1";
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem3
     });
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2
     });
     this.galleryControl1.Gallery.HoverImages       = this.imageList1;
     this.galleryControl1.Gallery.HoverImageSize    = new System.Drawing.Size(180, 180);
     this.galleryControl1.Gallery.Images            = this.imageList1;
     this.galleryControl1.Gallery.ImageSize         = new System.Drawing.Size(125, 125);
     this.galleryControl1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Right;
     this.galleryControl1.Gallery.ItemClick        += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl1_Gallery_ItemClick);
     this.galleryControl1.Location = new System.Drawing.Point(0, 0);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(730, 377);
     this.galleryControl1.TabIndex = 0;
     this.galleryControl1.Text     = "galleryControl1";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControl1;
     this.galleryControlClient1.Location       = new System.Drawing.Point(2, 24);
     this.galleryControlClient1.Size           = new System.Drawing.Size(709, 351);
     //
     // Form2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(730, 377);
     this.Controls.Add(this.galleryControl1);
     this.Name = "Form2";
     this.Text = "Form2";
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DashboardDesignerUC));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup4 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup5 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup6 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup7 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup8 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup9 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem1 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem2 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem3 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup10 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem4 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem5 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem6 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem7 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem8 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem9 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup11 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem10 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem11 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem12 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem13 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem14 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem15 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem16 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup12 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem17 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem18 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup13 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem19 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup14 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem20 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem21 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem22 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup15 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup16 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup17 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            this.dashboardDesignerMain = new DevExpress.DashboardWin.DashboardDesigner();
            this.ribbonControlMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.dashboardBackstageViewControl1 = new DevExpress.DashboardWin.Bars.DashboardBackstageViewControl();
            this.dashboardBarAndDockingControllerMain = new DevExpress.DashboardWin.Native.DashboardBarAndDockingController(this.components);
            this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.recentDashboardsControl1 = new DevExpress.DashboardWin.Bars.RecentDashboardsControl();
            this.dashboardBackstageRecentTab1 = new DevExpress.DashboardWin.Bars.DashboardBackstageRecentTab();
            this.dashboardBackstageNewButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageNewButton();
            this.dashboardBackstageOpenButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageOpenButton();
            this.dashboardBackstageSaveButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageSaveButton();
            this.dashboardBackstageSaveAsButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageSaveAsButton();
            this.fileNewBarItem1 = new DevExpress.DashboardWin.Bars.FileNewBarItem();
            this.fileOpenBarItem1 = new DevExpress.DashboardWin.Bars.FileOpenBarItem();
            this.fileSaveBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveBarItem();
            this.fileSaveAsBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveAsBarItem();
            this.undoBarItem1 = new DevExpress.DashboardWin.Bars.UndoBarItem();
            this.redoBarItem1 = new DevExpress.DashboardWin.Bars.RedoBarItem();
            this.newDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.NewDataSourceBarItem();
            this.editDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceBarItem();
            this.renameDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.RenameDataSourceBarItem();
            this.deleteDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.DeleteDataSourceBarItem();
            this.serverModeBarItem1 = new DevExpress.DashboardWin.Bars.ServerModeBarItem();
            this.addCalculatedFieldBarItem1 = new DevExpress.DashboardWin.Bars.AddCalculatedFieldBarItem();
            this.dashboardParametersBarItem1 = new DevExpress.DashboardWin.Bars.DashboardParametersBarItem();
            this.editDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceFilterBarItem();
            this.clearDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearDataSourceFilterBarItem();
            this.insertPivotBarItem1 = new DevExpress.DashboardWin.Bars.InsertPivotBarItem();
            this.insertGridBarItem1 = new DevExpress.DashboardWin.Bars.InsertGridBarItem();
            this.insertChartBarItem1 = new DevExpress.DashboardWin.Bars.InsertChartBarItem();
            this.insertPiesBarItem1 = new DevExpress.DashboardWin.Bars.InsertPiesBarItem();
            this.insertGaugesBarItem1 = new DevExpress.DashboardWin.Bars.InsertGaugesBarItem();
            this.insertCardsBarItem1 = new DevExpress.DashboardWin.Bars.InsertCardsBarItem();
            this.insertChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertChoroplethMapBarItem();
            this.insertGeoPointMapBarSubItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarSubItem();
            this.insertGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarItem();
            this.insertBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertBubbleMapBarItem();
            this.insertPieMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertPieMapBarItem();
            this.insertRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.InsertRangeFilterBarItem();
            this.insertImageBarItem1 = new DevExpress.DashboardWin.Bars.InsertImageBarItem();
            this.insertTextBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertTextBoxBarItem();
            this.duplicateItemBarItem1 = new DevExpress.DashboardWin.Bars.DuplicateItemBarItem();
            this.deleteItemBarItem1 = new DevExpress.DashboardWin.Bars.DeleteItemBarItem();
            this.convertDashboardItemTypeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertDashboardItemTypeBarItem();
            this.convertToPivotBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPivotBarItem();
            this.convertToGridBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGridBarItem();
            this.convertToChartBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChartBarItem();
            this.convertToPieBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieBarItem();
            this.convertToGaugeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGaugeBarItem();
            this.convertToCardBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToCardBarItem();
            this.convertToChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChoroplethMapBarItem();
            this.convertGeoPointMapBaseBarItem1 = new DevExpress.DashboardWin.Bars.ConvertGeoPointMapBaseBarItem();
            this.convertToGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGeoPointMapBarItem();
            this.convertToBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToBubbleMapBarItem();
            this.convertToPieMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieMapBarItem();
            this.convertToRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToRangeFilterBarItem();
            this.removeDataItemsBarItem1 = new DevExpress.DashboardWin.Bars.RemoveDataItemsBarItem();
            this.transposeItemBarItem1 = new DevExpress.DashboardWin.Bars.TransposeItemBarItem();
            this.dashboardTitleBarItem1 = new DevExpress.DashboardWin.Bars.DashboardTitleBarItem();
            this.setCurrencyCultureBarItem1 = new DevExpress.DashboardWin.Bars.SetCurrencyCultureBarItem();
            this.dashboardSkinsBarItem1 = new DevExpress.DashboardWin.Bars.DashboardSkinsBarItem();
            this.editFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditFilterBarItem();
            this.clearFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearFilterBarItem();
            this.masterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MasterFilterBarItem();
            this.multipleValuesMasterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MultipleValuesMasterFilterBarItem();
            this.drillDownBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownBarItem();
            this.ignoreMasterFiltersBarItem1 = new DevExpress.DashboardWin.Bars.IgnoreMasterFiltersBarItem();
            this.crossDataSourceFilteringBarItem1 = new DevExpress.DashboardWin.Bars.CrossDataSourceFilteringBarItem();
            this.chartTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsArgumentsBarItem();
            this.chartTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsSeriesBarItem();
            this.pieTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsArgumentsBarItem();
            this.pieTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsSeriesBarItem();
            this.geoPointMapClusterizationBarItem1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationBarItem();
            this.showItemCaptionBarItem1 = new DevExpress.DashboardWin.Bars.ShowItemCaptionBarItem();
            this.editItemNamesBarItem1 = new DevExpress.DashboardWin.Bars.EditItemNamesBarItem();
            this.contentAutoArrangeBarItem1 = new DevExpress.DashboardWin.Bars.ContentAutoArrangeBarItem();
            this.contentArrangeInColumnsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInColumnsBarItem();
            this.contentArrangeInRowsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInRowsBarItem();
            this.contentArrangementCountBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangementCountBarItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridHorizontalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridHorizontalLinesBarItem();
            this.gridVerticalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridVerticalLinesBarItem();
            this.gridMergeCellsBarItem1 = new DevExpress.DashboardWin.Bars.GridMergeCellsBarItem();
            this.gridBandedRowsBarItem1 = new DevExpress.DashboardWin.Bars.GridBandedRowsBarItem();
            this.gridColumnHeadersBarItem1 = new DevExpress.DashboardWin.Bars.GridColumnHeadersBarItem();
            this.chartRotateBarItem1 = new DevExpress.DashboardWin.Bars.ChartRotateBarItem();
            this.chartXAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartXAxisSettingsBarItem();
            this.chartYAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartYAxisSettingsBarItem();
            this.chartShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.ChartShowLegendBarItem();
            this.galleryChartLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryChartLegendPositionItem();
            this.galleryChartSeriesTypeItem1 = new DevExpress.DashboardWin.Bars.GalleryChartSeriesTypeItem();
            this.pieLabelsDataLabelsBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsBarItem();
            this.pieLabelsDataLabelsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsNoneBarItem();
            this.pieLabelsDataLabelArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelArgumentBarItem();
            this.pieLabelsDataLabelsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueBarItem();
            this.pieLabelsDataLabelsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndValueBarItem();
            this.pieLabelsDataLabelsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsPercentBarItem();
            this.pieLabelsDataLabelsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentValueAndPercentBarItem();
            this.pieTooltipsBarItem1 = new DevExpress.DashboardWin.Bars.PieTooltipsBarItem();
            this.pieLabelsTooltipsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsNoneBarItem();
            this.pieLabelsTooltipsArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentBarItem();
            this.pieLabelsTooltipsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueBarItem();
            this.pieLabelsTooltipsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndValueBarItem();
            this.pieLabelsTooltipsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsPercentBarItem();
            this.pieLabelsTooltipsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueAndPercentBarItem();
            this.pieLabelsTooltipsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndPercentBarItem();
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentValueAndPercentBarItem();
            this.pieStylePieBarItem1 = new DevExpress.DashboardWin.Bars.PieStylePieBarItem();
            this.pieStyleDonutBarItem1 = new DevExpress.DashboardWin.Bars.PieStyleDonutBarItem();
            this.pieShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.PieShowCaptionsBarItem();
            this.gaugeStyleFullCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleFullCircularBarItem();
            this.gaugeStyleHalfCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleHalfCircularBarItem();
            this.gaugeStyleLeftQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLeftQuarterCircularBarItem();
            this.gaugeStyleRightQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleRightQuarterCircularBarItem();
            this.gaugeStyleThreeForthCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleThreeForthCircularBarItem();
            this.gaugeStyleLinearHorizontalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearHorizontalBarItem();
            this.gaugeStyleLinearVerticalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearVerticalBarItem();
            this.gaugeShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.GaugeShowCaptionsBarItem();
            this.imageLoadBarItem1 = new DevExpress.DashboardWin.Bars.ImageLoadBarItem();
            this.imageImportBarItem1 = new DevExpress.DashboardWin.Bars.ImageImportBarItem();
            this.imageSizeModeClipBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeClipBarItem();
            this.imageSizeModeStretchBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeStretchBarItem();
            this.imageSizeModeSqueezeBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeSqueezeBarItem();
            this.imageSizeModeZoomBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeZoomBarItem();
            this.imageAlignmentTopLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopLeftBarItem();
            this.imageAlignmentCenterLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterLeftBarItem();
            this.imageAlignmentBottomLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomLeftBarItem();
            this.imageAlignmentTopCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopCenterBarItem();
            this.imageAlignmentCenterCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterCenterBarItem();
            this.imageAlignmentBottomCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomCenterBarItem();
            this.imageAlignmentTopRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopRightBarItem();
            this.imageAlignmentCenterRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterRightBarItem();
            this.imageAlignmentBottomRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomRightBarItem();
            this.textBoxEditTextBarItem1 = new DevExpress.DashboardWin.Bars.TextBoxEditTextBarItem();
            this.rangeFilterLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterLineSeriesTypeBarItem();
            this.rangeFilterStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedLineSeriesTypeBarItem();
            this.rangeFilterFullStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedLineSeriesTypeBarItem();
            this.rangeFilterAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterAreaSeriesTypeBarItem();
            this.rangeFilterStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedAreaSeriesTypeBarItem();
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedAreaSeriesTypeBarItem();
            this.pivotInitialStateBarItem1 = new DevExpress.DashboardWin.Bars.PivotInitialStateBarItem();
            this.pivotAutoExpandColumnBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandColumnBarItem();
            this.pivotAutoExpandRowBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandRowBarItem();
            this.mapLoadBarItem1 = new DevExpress.DashboardWin.Bars.MapLoadBarItem();
            this.mapImportBarItem1 = new DevExpress.DashboardWin.Bars.MapImportBarItem();
            this.mapDefaultShapefileBarItem1 = new DevExpress.DashboardWin.Bars.MapDefaultShapefileBarItem();
            this.mapWorldCountriesBarItem1 = new DevExpress.DashboardWin.Bars.MapWorldCountriesBarItem();
            this.mapEuropeBarItem1 = new DevExpress.DashboardWin.Bars.MapEuropeBarItem();
            this.mapAsiaBarItem1 = new DevExpress.DashboardWin.Bars.MapAsiaBarItem();
            this.mapNorthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapNorthAmericaBarItem();
            this.mapSouthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapSouthAmericaBarItem();
            this.mapAfricaBarItem1 = new DevExpress.DashboardWin.Bars.MapAfricaBarItem();
            this.mapUSABarItem1 = new DevExpress.DashboardWin.Bars.MapUSABarItem();
            this.mapCanadaBarItem1 = new DevExpress.DashboardWin.Bars.MapCanadaBarItem();
            this.mapLockNavigationBarItem1 = new DevExpress.DashboardWin.Bars.MapLockNavigationBarItem();
            this.mapFullExtentBarItem1 = new DevExpress.DashboardWin.Bars.MapFullExtentBarItem();
            this.mapShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.MapShowLegendBarItem();
            this.galleryMapLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryMapLegendPositionItem();
            this.changeWeightedLegendTypeBarItem1 = new DevExpress.DashboardWin.Bars.ChangeWeightedLegendTypeBarItem();
            this.weightedLegendNoneBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNoneBarItem();
            this.weightedLegendLinearBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendLinearBarItem();
            this.weightedLegendNestedBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNestedBarItem();
            this.galleryWeightedLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryWeightedLegendPositionItem();
            this.pieMapIsWeightedBarItem1 = new DevExpress.DashboardWin.Bars.PieMapIsWeightedBarItem();
            this.quickAccessUndoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessUndoBarItem();
            this.quickAccessRedoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessRedoBarItem();
            this.bbiNew = new DevExpress.XtraBars.BarButtonItem();
            this.bbiOpen = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSave = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSaveAs = new DevExpress.XtraBars.BarButtonItem();
            this.bbiAddDatasource = new DevExpress.XtraBars.BarButtonItem();
            this.pivotToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PivotToolsRibbonPageCategory();
            this.dataRibbonPage1 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.pivotLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PivotLayoutRibbonPageGroup();
            this.dashboardItemDesignRibbonPage9 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GridToolsRibbonPageCategory();
            this.dataRibbonPage2 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage1 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridCellsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridCellsRibbonPageGroup();
            this.chartToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChartToolsRibbonPageCategory();
            this.dataRibbonPage3 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage2 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.chartLayoutPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLayoutPageGroup();
            this.chartLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLegendPositionPageGroup();
            this.chartStylePageGroup1 = new DevExpress.DashboardWin.Bars.ChartStylePageGroup();
            this.piesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PiesToolsRibbonPageCategory();
            this.dataRibbonPage4 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage3 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.pieLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieLabelsRibbonPageGroup();
            this.pieStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieStyleRibbonPageGroup();
            this.gaugesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GaugesToolsRibbonPageCategory();
            this.dataRibbonPage5 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage4 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.gaugeStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugeStyleRibbonPageGroup();
            this.gaugesLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugesLabelsRibbonPageGroup();
            this.cardsToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.CardsToolsRibbonPageCategory();
            this.dataRibbonPage6 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage5 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.rangeFilterToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.RangeFilterToolsRibbonPageCategory();
            this.dataRibbonPage7 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage8 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.rangeFilterSeriesTypeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.RangeFilterSeriesTypeRibbonPageGroup();
            this.choroplethMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChoroplethMapToolsRibbonPageCategory();
            this.dataRibbonPage8 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage10 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup1 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.geoPointMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GeoPointMapToolsRibbonPageCategory();
            this.dataRibbonPage9 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage11 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup2 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.bubbleMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.BubbleMapToolsRibbonPageCategory();
            this.dataRibbonPage10 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage12 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup12 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup3 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup2 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup1 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PieMapToolsRibbonPageCategory();
            this.dataRibbonPage11 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage13 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup13 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup4 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup3 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup2 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapOptionsPageGroup1 = new DevExpress.DashboardWin.Bars.PieMapOptionsPageGroup();
            this.imageToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ImageToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage6 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.imageOpenRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageOpenRibbonPageGroup();
            this.imageSizeModeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageSizeModeRibbonPageGroup();
            this.imageAlignmentRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageAlignmentRibbonPageGroup();
            this.textBoxToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.TextBoxToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage7 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.textBoxSettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TextBoxSettingsRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.DashboardWin.Bars.HomeRibbonPage();
            this.fileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FileRibbonPageGroup();
            this.historyRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.HistoryRibbonPageGroup();
            this.insertRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InsertRibbonPageGroup();
            this.itemOperationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ItemOperationRibbonPageGroup();
            this.dashboardDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DashboardDesignRibbonPageGroup();
            this.quickAccessHistoryRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.QuickAccessHistoryRibbonPageGroup();
            this.dataSourceRibbonPage1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPage();
            this.dataSourceRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPageGroup();
            this.dataSourceElementsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceElementsRibbonPageGroup();
            this.dataSourceFilteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceFilteringRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.DashboardWin.Bars.ViewRibbonPage();
            this.skinsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.SkinsRibbonPageGroup();
            this.dashboardBarControllerMain = new DevExpress.DashboardWin.Bars.DashboardBarController();
            this.appDashboardDSTableAdapter = new NICSQLTools.Data.dsDataSourceTableAdapters.AppDatasourceTableAdapter();
            this.dsData = new NICSQLTools.Data.dsData();
            this.appDashboardSchemaTableAdapter = new NICSQLTools.Data.dsDataTableAdapters.AppDashboardSchemaTableAdapter();
            this.dsDataSource = new NICSQLTools.Data.dsDataSource();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBackstageViewControl1)).BeginInit();
            this.dashboardBackstageViewControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarAndDockingControllerMain)).BeginInit();
            this.backstageViewClientControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarControllerMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsDataSource)).BeginInit();
            this.SuspendLayout();
            // 
            // dashboardDesignerMain
            // 
            this.dashboardDesignerMain.ActionOnClose = DevExpress.DashboardWin.DashboardActionOnClose.Discard;
            this.dashboardDesignerMain.AutoScroll = true;
            this.dashboardDesignerMain.CustomDBSchemaProvider = null;
            this.dashboardDesignerMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardDesignerMain.Location = new System.Drawing.Point(0, 142);
            this.dashboardDesignerMain.MenuManager = this.ribbonControlMain;
            this.dashboardDesignerMain.Name = "dashboardDesignerMain";
            this.dashboardDesignerMain.PrintingOptions.DocumentContentOptions.FilterState = DevExpress.DashboardWin.DashboardPrintingFilterState.SeparatePage;
            this.dashboardDesignerMain.PrintingOptions.FontInfo.GdiCharSet = ((byte)(0));
            this.dashboardDesignerMain.PrintingOptions.FontInfo.Name = null;
            this.dashboardDesignerMain.Size = new System.Drawing.Size(982, 391);
            this.dashboardDesignerMain.TabIndex = 0;
            // 
            // ribbonControlMain
            // 
            this.ribbonControlMain.ApplicationButtonDropDownControl = this.dashboardBackstageViewControl1;
            this.ribbonControlMain.AutoSaveLayoutToXml = true;
            this.ribbonControlMain.AutoSaveLayoutToXmlPath = "RibbonSettingsDashboard.xml";
            this.ribbonControlMain.Controller = this.dashboardBarAndDockingControllerMain;
            this.ribbonControlMain.ExpandCollapseItem.Id = 0;
            this.ribbonControlMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControlMain.ExpandCollapseItem,
            this.fileNewBarItem1,
            this.fileOpenBarItem1,
            this.fileSaveBarItem1,
            this.fileSaveAsBarItem1,
            this.undoBarItem1,
            this.redoBarItem1,
            this.newDataSourceBarItem1,
            this.editDataSourceBarItem1,
            this.renameDataSourceBarItem1,
            this.deleteDataSourceBarItem1,
            this.serverModeBarItem1,
            this.addCalculatedFieldBarItem1,
            this.dashboardParametersBarItem1,
            this.editDataSourceFilterBarItem1,
            this.clearDataSourceFilterBarItem1,
            this.insertPivotBarItem1,
            this.insertGridBarItem1,
            this.insertChartBarItem1,
            this.insertPiesBarItem1,
            this.insertGaugesBarItem1,
            this.insertCardsBarItem1,
            this.insertChoroplethMapBarItem1,
            this.insertGeoPointMapBarSubItem1,
            this.insertGeoPointMapBarItem1,
            this.insertBubbleMapBarItem1,
            this.insertPieMapBarItem1,
            this.insertRangeFilterBarItem1,
            this.insertImageBarItem1,
            this.insertTextBoxBarItem1,
            this.duplicateItemBarItem1,
            this.deleteItemBarItem1,
            this.convertDashboardItemTypeBarItem1,
            this.convertToPivotBarItem1,
            this.convertToGridBarItem1,
            this.convertToChartBarItem1,
            this.convertToPieBarItem1,
            this.convertToGaugeBarItem1,
            this.convertToCardBarItem1,
            this.convertToChoroplethMapBarItem1,
            this.convertToGeoPointMapBarItem1,
            this.convertToBubbleMapBarItem1,
            this.convertToPieMapBarItem1,
            this.convertGeoPointMapBaseBarItem1,
            this.convertToRangeFilterBarItem1,
            this.removeDataItemsBarItem1,
            this.transposeItemBarItem1,
            this.dashboardTitleBarItem1,
            this.setCurrencyCultureBarItem1,
            this.dashboardSkinsBarItem1,
            this.editFilterBarItem1,
            this.clearFilterBarItem1,
            this.masterFilterBarItem1,
            this.multipleValuesMasterFilterBarItem1,
            this.drillDownBarItem1,
            this.ignoreMasterFiltersBarItem1,
            this.crossDataSourceFilteringBarItem1,
            this.chartTargetDimensionsArgumentsBarItem1,
            this.chartTargetDimensionsSeriesBarItem1,
            this.pieTargetDimensionsArgumentsBarItem1,
            this.pieTargetDimensionsSeriesBarItem1,
            this.geoPointMapClusterizationBarItem1,
            this.showItemCaptionBarItem1,
            this.editItemNamesBarItem1,
            this.contentAutoArrangeBarItem1,
            this.contentArrangeInColumnsBarItem1,
            this.contentArrangeInRowsBarItem1,
            this.contentArrangementCountBarItem1,
            this.gridHorizontalLinesBarItem1,
            this.gridVerticalLinesBarItem1,
            this.gridMergeCellsBarItem1,
            this.gridBandedRowsBarItem1,
            this.gridColumnHeadersBarItem1,
            this.chartRotateBarItem1,
            this.chartXAxisSettingsBarItem1,
            this.chartYAxisSettingsBarItem1,
            this.chartShowLegendBarItem1,
            this.galleryChartLegendPositionItem1,
            this.galleryChartSeriesTypeItem1,
            this.pieLabelsDataLabelsBarItem1,
            this.pieLabelsDataLabelsNoneBarItem1,
            this.pieLabelsDataLabelArgumentBarItem1,
            this.pieLabelsDataLabelsValueBarItem1,
            this.pieLabelsDataLabelsArgumentAndValueBarItem1,
            this.pieLabelsDataLabelsPercentBarItem1,
            this.pieLabelsDataLabelsValueAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1,
            this.pieTooltipsBarItem1,
            this.pieLabelsTooltipsNoneBarItem1,
            this.pieLabelsTooltipsArgumentBarItem1,
            this.pieLabelsTooltipsValueBarItem1,
            this.pieLabelsTooltipsArgumentAndValueBarItem1,
            this.pieLabelsTooltipsPercentBarItem1,
            this.pieLabelsTooltipsValueAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1,
            this.pieStylePieBarItem1,
            this.pieStyleDonutBarItem1,
            this.pieShowCaptionsBarItem1,
            this.gaugeStyleFullCircularBarItem1,
            this.gaugeStyleHalfCircularBarItem1,
            this.gaugeStyleLeftQuarterCircularBarItem1,
            this.gaugeStyleRightQuarterCircularBarItem1,
            this.gaugeStyleThreeForthCircularBarItem1,
            this.gaugeStyleLinearHorizontalBarItem1,
            this.gaugeStyleLinearVerticalBarItem1,
            this.gaugeShowCaptionsBarItem1,
            this.imageLoadBarItem1,
            this.imageImportBarItem1,
            this.imageSizeModeClipBarItem1,
            this.imageSizeModeStretchBarItem1,
            this.imageSizeModeSqueezeBarItem1,
            this.imageSizeModeZoomBarItem1,
            this.imageAlignmentTopLeftBarItem1,
            this.imageAlignmentCenterLeftBarItem1,
            this.imageAlignmentBottomLeftBarItem1,
            this.imageAlignmentTopCenterBarItem1,
            this.imageAlignmentCenterCenterBarItem1,
            this.imageAlignmentBottomCenterBarItem1,
            this.imageAlignmentTopRightBarItem1,
            this.imageAlignmentCenterRightBarItem1,
            this.imageAlignmentBottomRightBarItem1,
            this.textBoxEditTextBarItem1,
            this.rangeFilterLineSeriesTypeBarItem1,
            this.rangeFilterStackedLineSeriesTypeBarItem1,
            this.rangeFilterFullStackedLineSeriesTypeBarItem1,
            this.rangeFilterAreaSeriesTypeBarItem1,
            this.rangeFilterStackedAreaSeriesTypeBarItem1,
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1,
            this.pivotInitialStateBarItem1,
            this.pivotAutoExpandColumnBarItem1,
            this.pivotAutoExpandRowBarItem1,
            this.mapLoadBarItem1,
            this.mapImportBarItem1,
            this.mapDefaultShapefileBarItem1,
            this.mapWorldCountriesBarItem1,
            this.mapEuropeBarItem1,
            this.mapAsiaBarItem1,
            this.mapNorthAmericaBarItem1,
            this.mapSouthAmericaBarItem1,
            this.mapAfricaBarItem1,
            this.mapUSABarItem1,
            this.mapCanadaBarItem1,
            this.mapLockNavigationBarItem1,
            this.mapFullExtentBarItem1,
            this.mapShowLegendBarItem1,
            this.galleryMapLegendPositionItem1,
            this.changeWeightedLegendTypeBarItem1,
            this.weightedLegendNoneBarItem1,
            this.weightedLegendLinearBarItem1,
            this.weightedLegendNestedBarItem1,
            this.galleryWeightedLegendPositionItem1,
            this.pieMapIsWeightedBarItem1,
            this.quickAccessUndoBarItem1,
            this.quickAccessRedoBarItem1,
            this.bbiNew,
            this.bbiOpen,
            this.bbiSave,
            this.bbiSaveAs,
            this.bbiAddDatasource});
            this.ribbonControlMain.Location = new System.Drawing.Point(0, 0);
            this.ribbonControlMain.MaxItemId = 161;
            this.ribbonControlMain.Name = "ribbonControlMain";
            this.ribbonControlMain.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.pivotToolsRibbonPageCategory1,
            this.gridToolsRibbonPageCategory1,
            this.chartToolsRibbonPageCategory1,
            this.piesToolsRibbonPageCategory1,
            this.gaugesToolsRibbonPageCategory1,
            this.cardsToolsRibbonPageCategory1,
            this.rangeFilterToolsRibbonPageCategory1,
            this.choroplethMapToolsRibbonPageCategory1,
            this.geoPointMapToolsRibbonPageCategory1,
            this.bubbleMapToolsRibbonPageCategory1,
            this.pieMapToolsRibbonPageCategory1,
            this.imageToolsRibbonPageCategory1,
            this.textBoxToolsRibbonPageCategory1});
            this.ribbonControlMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.homeRibbonPage1,
            this.dataSourceRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControlMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1});
            this.ribbonControlMain.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbonControlMain.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonControlMain.ShowFullScreenButton = DevExpress.Utils.DefaultBoolean.True;
            this.ribbonControlMain.Size = new System.Drawing.Size(982, 142);
            this.ribbonControlMain.Toolbar.ItemLinks.Add(this.bbiSave);
            this.ribbonControlMain.Toolbar.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.ribbonControlMain.Toolbar.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.ribbonControlMain.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            // 
            // dashboardBackstageViewControl1
            // 
            this.dashboardBackstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.dashboardBackstageViewControl1.Controller = this.dashboardBarAndDockingControllerMain;
            this.dashboardBackstageViewControl1.Controls.Add(this.backstageViewClientControl1);
            this.dashboardBackstageViewControl1.DashboardRecentTab = this.dashboardBackstageRecentTab1;
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageNewButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageOpenButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageSaveButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageSaveAsButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageRecentTab1);
            this.dashboardBackstageViewControl1.Location = new System.Drawing.Point(0, 0);
            this.dashboardBackstageViewControl1.Name = "dashboardBackstageViewControl1";
            this.dashboardBackstageViewControl1.Ribbon = this.ribbonControlMain;
            this.dashboardBackstageViewControl1.SelectedTab = this.dashboardBackstageRecentTab1;
            this.dashboardBackstageViewControl1.SelectedTabIndex = 4;
            this.dashboardBackstageViewControl1.Size = new System.Drawing.Size(240, 150);
            this.dashboardBackstageViewControl1.TabIndex = 2;
            // 
            // dashboardBarAndDockingControllerMain
            // 
            this.dashboardBarAndDockingControllerMain.PropertiesBar.DefaultGlyphSize = new System.Drawing.Size(16, 16);
            this.dashboardBarAndDockingControllerMain.PropertiesBar.DefaultLargeGlyphSize = new System.Drawing.Size(32, 32);
            // 
            // backstageViewClientControl1
            // 
            this.backstageViewClientControl1.Controls.Add(this.recentDashboardsControl1);
            this.backstageViewClientControl1.Location = new System.Drawing.Point(133, 63);
            this.backstageViewClientControl1.Name = "backstageViewClientControl1";
            this.backstageViewClientControl1.Size = new System.Drawing.Size(106, 86);
            this.backstageViewClientControl1.TabIndex = 0;
            // 
            // recentDashboardsControl1
            // 
            this.recentDashboardsControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.recentDashboardsControl1.ForeColor = System.Drawing.Color.Transparent;
            this.recentDashboardsControl1.Location = new System.Drawing.Point(0, 0);
            this.recentDashboardsControl1.Name = "recentDashboardsControl1";
            this.recentDashboardsControl1.ServiceProvider = this.dashboardDesignerMain;
            this.recentDashboardsControl1.Size = new System.Drawing.Size(106, 86);
            this.recentDashboardsControl1.TabIndex = 0;
            // 
            // dashboardBackstageRecentTab1
            // 
            this.dashboardBackstageRecentTab1.ContentControl = this.backstageViewClientControl1;
            this.dashboardBackstageRecentTab1.Name = "dashboardBackstageRecentTab1";
            this.dashboardBackstageRecentTab1.RecentDashboardsControl = this.recentDashboardsControl1;
            this.dashboardBackstageRecentTab1.Selected = true;
            // 
            // dashboardBackstageNewButton1
            // 
            this.dashboardBackstageNewButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageNewButton1.Glyph")));
            this.dashboardBackstageNewButton1.Name = "dashboardBackstageNewButton1";
            this.dashboardBackstageNewButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // dashboardBackstageOpenButton1
            // 
            this.dashboardBackstageOpenButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageOpenButton1.Glyph")));
            this.dashboardBackstageOpenButton1.Name = "dashboardBackstageOpenButton1";
            this.dashboardBackstageOpenButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // dashboardBackstageSaveButton1
            // 
            this.dashboardBackstageSaveButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageSaveButton1.Glyph")));
            this.dashboardBackstageSaveButton1.Name = "dashboardBackstageSaveButton1";
            this.dashboardBackstageSaveButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // dashboardBackstageSaveAsButton1
            // 
            this.dashboardBackstageSaveAsButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageSaveAsButton1.Glyph")));
            this.dashboardBackstageSaveAsButton1.Name = "dashboardBackstageSaveAsButton1";
            this.dashboardBackstageSaveAsButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // fileNewBarItem1
            // 
            this.fileNewBarItem1.Id = 1;
            this.fileNewBarItem1.Name = "fileNewBarItem1";
            // 
            // fileOpenBarItem1
            // 
            this.fileOpenBarItem1.Id = 2;
            this.fileOpenBarItem1.Name = "fileOpenBarItem1";
            // 
            // fileSaveBarItem1
            // 
            this.fileSaveBarItem1.Id = 3;
            this.fileSaveBarItem1.Name = "fileSaveBarItem1";
            // 
            // fileSaveAsBarItem1
            // 
            this.fileSaveAsBarItem1.Id = 4;
            this.fileSaveAsBarItem1.Name = "fileSaveAsBarItem1";
            // 
            // undoBarItem1
            // 
            this.undoBarItem1.Id = 5;
            this.undoBarItem1.Name = "undoBarItem1";
            // 
            // redoBarItem1
            // 
            this.redoBarItem1.Id = 6;
            this.redoBarItem1.Name = "redoBarItem1";
            // 
            // newDataSourceBarItem1
            // 
            this.newDataSourceBarItem1.Id = 7;
            this.newDataSourceBarItem1.Name = "newDataSourceBarItem1";
            // 
            // editDataSourceBarItem1
            // 
            this.editDataSourceBarItem1.Id = 8;
            this.editDataSourceBarItem1.Name = "editDataSourceBarItem1";
            // 
            // renameDataSourceBarItem1
            // 
            this.renameDataSourceBarItem1.Id = 9;
            this.renameDataSourceBarItem1.Name = "renameDataSourceBarItem1";
            // 
            // deleteDataSourceBarItem1
            // 
            this.deleteDataSourceBarItem1.Id = 10;
            this.deleteDataSourceBarItem1.Name = "deleteDataSourceBarItem1";
            // 
            // serverModeBarItem1
            // 
            this.serverModeBarItem1.Id = 11;
            this.serverModeBarItem1.Name = "serverModeBarItem1";
            // 
            // addCalculatedFieldBarItem1
            // 
            this.addCalculatedFieldBarItem1.Id = 12;
            this.addCalculatedFieldBarItem1.Name = "addCalculatedFieldBarItem1";
            // 
            // dashboardParametersBarItem1
            // 
            this.dashboardParametersBarItem1.Id = 13;
            this.dashboardParametersBarItem1.Name = "dashboardParametersBarItem1";
            // 
            // editDataSourceFilterBarItem1
            // 
            this.editDataSourceFilterBarItem1.Id = 14;
            this.editDataSourceFilterBarItem1.Name = "editDataSourceFilterBarItem1";
            // 
            // clearDataSourceFilterBarItem1
            // 
            this.clearDataSourceFilterBarItem1.Id = 15;
            this.clearDataSourceFilterBarItem1.Name = "clearDataSourceFilterBarItem1";
            // 
            // insertPivotBarItem1
            // 
            this.insertPivotBarItem1.Id = 16;
            this.insertPivotBarItem1.Name = "insertPivotBarItem1";
            // 
            // insertGridBarItem1
            // 
            this.insertGridBarItem1.Id = 17;
            this.insertGridBarItem1.Name = "insertGridBarItem1";
            // 
            // insertChartBarItem1
            // 
            this.insertChartBarItem1.Id = 18;
            this.insertChartBarItem1.Name = "insertChartBarItem1";
            // 
            // insertPiesBarItem1
            // 
            this.insertPiesBarItem1.Id = 19;
            this.insertPiesBarItem1.Name = "insertPiesBarItem1";
            // 
            // insertGaugesBarItem1
            // 
            this.insertGaugesBarItem1.Id = 20;
            this.insertGaugesBarItem1.Name = "insertGaugesBarItem1";
            // 
            // insertCardsBarItem1
            // 
            this.insertCardsBarItem1.Id = 21;
            this.insertCardsBarItem1.Name = "insertCardsBarItem1";
            // 
            // insertChoroplethMapBarItem1
            // 
            this.insertChoroplethMapBarItem1.Id = 22;
            this.insertChoroplethMapBarItem1.Name = "insertChoroplethMapBarItem1";
            // 
            // insertGeoPointMapBarSubItem1
            // 
            this.insertGeoPointMapBarSubItem1.Id = 23;
            this.insertGeoPointMapBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPieMapBarItem1)});
            this.insertGeoPointMapBarSubItem1.Name = "insertGeoPointMapBarSubItem1";
            this.insertGeoPointMapBarSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // insertGeoPointMapBarItem1
            // 
            this.insertGeoPointMapBarItem1.Id = 24;
            this.insertGeoPointMapBarItem1.Name = "insertGeoPointMapBarItem1";
            // 
            // insertBubbleMapBarItem1
            // 
            this.insertBubbleMapBarItem1.Id = 25;
            this.insertBubbleMapBarItem1.Name = "insertBubbleMapBarItem1";
            // 
            // insertPieMapBarItem1
            // 
            this.insertPieMapBarItem1.Id = 26;
            this.insertPieMapBarItem1.Name = "insertPieMapBarItem1";
            // 
            // insertRangeFilterBarItem1
            // 
            this.insertRangeFilterBarItem1.Id = 27;
            this.insertRangeFilterBarItem1.Name = "insertRangeFilterBarItem1";
            // 
            // insertImageBarItem1
            // 
            this.insertImageBarItem1.Id = 28;
            this.insertImageBarItem1.Name = "insertImageBarItem1";
            // 
            // insertTextBoxBarItem1
            // 
            this.insertTextBoxBarItem1.Id = 29;
            this.insertTextBoxBarItem1.Name = "insertTextBoxBarItem1";
            // 
            // duplicateItemBarItem1
            // 
            this.duplicateItemBarItem1.Id = 30;
            this.duplicateItemBarItem1.Name = "duplicateItemBarItem1";
            // 
            // deleteItemBarItem1
            // 
            this.deleteItemBarItem1.Id = 31;
            this.deleteItemBarItem1.Name = "deleteItemBarItem1";
            // 
            // convertDashboardItemTypeBarItem1
            // 
            this.convertDashboardItemTypeBarItem1.Id = 32;
            this.convertDashboardItemTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPivotBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGridBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChartBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGaugeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToCardBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChoroplethMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertGeoPointMapBaseBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToRangeFilterBarItem1)});
            this.convertDashboardItemTypeBarItem1.Name = "convertDashboardItemTypeBarItem1";
            this.convertDashboardItemTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // convertToPivotBarItem1
            // 
            this.convertToPivotBarItem1.Id = 33;
            this.convertToPivotBarItem1.Name = "convertToPivotBarItem1";
            // 
            // convertToGridBarItem1
            // 
            this.convertToGridBarItem1.Id = 34;
            this.convertToGridBarItem1.Name = "convertToGridBarItem1";
            // 
            // convertToChartBarItem1
            // 
            this.convertToChartBarItem1.Id = 35;
            this.convertToChartBarItem1.Name = "convertToChartBarItem1";
            // 
            // convertToPieBarItem1
            // 
            this.convertToPieBarItem1.Id = 36;
            this.convertToPieBarItem1.Name = "convertToPieBarItem1";
            // 
            // convertToGaugeBarItem1
            // 
            this.convertToGaugeBarItem1.Id = 37;
            this.convertToGaugeBarItem1.Name = "convertToGaugeBarItem1";
            // 
            // convertToCardBarItem1
            // 
            this.convertToCardBarItem1.Id = 38;
            this.convertToCardBarItem1.Name = "convertToCardBarItem1";
            // 
            // convertToChoroplethMapBarItem1
            // 
            this.convertToChoroplethMapBarItem1.Id = 39;
            this.convertToChoroplethMapBarItem1.Name = "convertToChoroplethMapBarItem1";
            // 
            // convertGeoPointMapBaseBarItem1
            // 
            this.convertGeoPointMapBaseBarItem1.Id = 43;
            this.convertGeoPointMapBaseBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieMapBarItem1)});
            this.convertGeoPointMapBaseBarItem1.Name = "convertGeoPointMapBaseBarItem1";
            // 
            // convertToGeoPointMapBarItem1
            // 
            this.convertToGeoPointMapBarItem1.Id = 40;
            this.convertToGeoPointMapBarItem1.Name = "convertToGeoPointMapBarItem1";
            // 
            // convertToBubbleMapBarItem1
            // 
            this.convertToBubbleMapBarItem1.Id = 41;
            this.convertToBubbleMapBarItem1.Name = "convertToBubbleMapBarItem1";
            // 
            // convertToPieMapBarItem1
            // 
            this.convertToPieMapBarItem1.Id = 42;
            this.convertToPieMapBarItem1.Name = "convertToPieMapBarItem1";
            // 
            // convertToRangeFilterBarItem1
            // 
            this.convertToRangeFilterBarItem1.Id = 44;
            this.convertToRangeFilterBarItem1.Name = "convertToRangeFilterBarItem1";
            // 
            // removeDataItemsBarItem1
            // 
            this.removeDataItemsBarItem1.Id = 45;
            this.removeDataItemsBarItem1.Name = "removeDataItemsBarItem1";
            // 
            // transposeItemBarItem1
            // 
            this.transposeItemBarItem1.Id = 46;
            this.transposeItemBarItem1.Name = "transposeItemBarItem1";
            // 
            // dashboardTitleBarItem1
            // 
            this.dashboardTitleBarItem1.Id = 47;
            this.dashboardTitleBarItem1.Name = "dashboardTitleBarItem1";
            // 
            // setCurrencyCultureBarItem1
            // 
            this.setCurrencyCultureBarItem1.Id = 48;
            this.setCurrencyCultureBarItem1.Name = "setCurrencyCultureBarItem1";
            // 
            // dashboardSkinsBarItem1
            // 
            // 
            // 
            // 
            this.dashboardSkinsBarItem1.Gallery.AllowHoverImages = true;
            this.dashboardSkinsBarItem1.Gallery.ColumnCount = 4;
            this.dashboardSkinsBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Standard Skins";
            galleryItem1.Caption = "DevExpress Style";
            galleryItem1.Checked = true;
            galleryItem1.Hint = "DevExpress Style";
            galleryItem1.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem1.HoverImage")));
            galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
            galleryItem1.Tag = "DevExpress Style";
            galleryItem2.Caption = "DevExpress Dark Style";
            galleryItem2.Hint = "DevExpress Dark Style";
            galleryItem2.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem2.HoverImage")));
            galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
            galleryItem2.Tag = "DevExpress Dark Style";
            galleryItem3.Caption = "Office 2013 White";
            galleryItem3.Hint = "Office 2013 White";
            galleryItem3.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem3.HoverImage")));
            galleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
            galleryItem3.Tag = "Office 2013";
            galleryItem4.Caption = "Office 2013 Dark Gray";
            galleryItem4.Hint = "Office 2013 Dark Gray";
            galleryItem4.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem4.HoverImage")));
            galleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
            galleryItem4.Tag = "Office 2013 Dark Gray";
            galleryItem5.Caption = "Office 2013 Light Gray";
            galleryItem5.Hint = "Office 2013 Light Gray";
            galleryItem5.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem5.HoverImage")));
            galleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
            galleryItem5.Tag = "Office 2013 Light Gray";
            galleryItem6.Caption = "Office 2010 Blue";
            galleryItem6.Hint = "Office 2010 Blue";
            galleryItem6.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem6.HoverImage")));
            galleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
            galleryItem6.Tag = "Office 2010 Blue";
            galleryItem7.Caption = "Office 2010 Black";
            galleryItem7.Hint = "Office 2010 Black";
            galleryItem7.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem7.HoverImage")));
            galleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem7.Image")));
            galleryItem7.Tag = "Office 2010 Black";
            galleryItem8.Caption = "Office 2010 Silver";
            galleryItem8.Hint = "Office 2010 Silver";
            galleryItem8.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem8.HoverImage")));
            galleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem8.Image")));
            galleryItem8.Tag = "Office 2010 Silver";
            galleryItem9.Caption = "Visual Studio 2013 Blue";
            galleryItem9.Hint = "Visual Studio 2013 Blue";
            galleryItem9.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem9.HoverImage")));
            galleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem9.Image")));
            galleryItem9.Tag = "Visual Studio 2013 Blue";
            galleryItem10.Caption = "Visual Studio 2013 Dark";
            galleryItem10.Hint = "Visual Studio 2013 Dark";
            galleryItem10.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem10.HoverImage")));
            galleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem10.Image")));
            galleryItem10.Tag = "Visual Studio 2013 Dark";
            galleryItem11.Caption = "Visual Studio 2013 Light";
            galleryItem11.Hint = "Visual Studio 2013 Light";
            galleryItem11.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem11.HoverImage")));
            galleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem11.Image")));
            galleryItem11.Tag = "Visual Studio 2013 Light";
            galleryItem12.Caption = "Seven Classic";
            galleryItem12.Hint = "Seven Classic";
            galleryItem12.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem12.HoverImage")));
            galleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem12.Image")));
            galleryItem12.Tag = "Seven Classic";
            galleryItem13.Caption = "Visual Studio 2010";
            galleryItem13.Hint = "Visual Studio 2010";
            galleryItem13.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem13.HoverImage")));
            galleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem13.Image")));
            galleryItem13.Tag = "VS2010";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9,
            galleryItem10,
            galleryItem11,
            galleryItem12,
            galleryItem13});
            galleryItemGroup2.Caption = "Bonus Skins";
            galleryItemGroup2.Visible = false;
            galleryItemGroup3.Caption = "Theme Skins";
            galleryItemGroup3.Visible = false;
            galleryItemGroup4.Caption = "Custom Skins";
            galleryItemGroup4.Visible = false;
            this.dashboardSkinsBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3,
            galleryItemGroup4});
            this.dashboardSkinsBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 16);
            this.dashboardSkinsBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.dashboardSkinsBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.dashboardSkinsBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardSkinsBarItem1.Glyph")));
            this.dashboardSkinsBarItem1.Id = 49;
            this.dashboardSkinsBarItem1.Name = "dashboardSkinsBarItem1";
            // 
            // editFilterBarItem1
            // 
            this.editFilterBarItem1.Id = 50;
            this.editFilterBarItem1.Name = "editFilterBarItem1";
            // 
            // clearFilterBarItem1
            // 
            this.clearFilterBarItem1.Id = 51;
            this.clearFilterBarItem1.Name = "clearFilterBarItem1";
            // 
            // masterFilterBarItem1
            // 
            this.masterFilterBarItem1.Id = 52;
            this.masterFilterBarItem1.Name = "masterFilterBarItem1";
            // 
            // multipleValuesMasterFilterBarItem1
            // 
            this.multipleValuesMasterFilterBarItem1.Id = 53;
            this.multipleValuesMasterFilterBarItem1.Name = "multipleValuesMasterFilterBarItem1";
            // 
            // drillDownBarItem1
            // 
            this.drillDownBarItem1.Id = 54;
            this.drillDownBarItem1.Name = "drillDownBarItem1";
            // 
            // ignoreMasterFiltersBarItem1
            // 
            this.ignoreMasterFiltersBarItem1.Id = 55;
            this.ignoreMasterFiltersBarItem1.Name = "ignoreMasterFiltersBarItem1";
            // 
            // crossDataSourceFilteringBarItem1
            // 
            this.crossDataSourceFilteringBarItem1.Id = 56;
            this.crossDataSourceFilteringBarItem1.Name = "crossDataSourceFilteringBarItem1";
            // 
            // chartTargetDimensionsArgumentsBarItem1
            // 
            this.chartTargetDimensionsArgumentsBarItem1.Id = 57;
            this.chartTargetDimensionsArgumentsBarItem1.Name = "chartTargetDimensionsArgumentsBarItem1";
            // 
            // chartTargetDimensionsSeriesBarItem1
            // 
            this.chartTargetDimensionsSeriesBarItem1.Id = 58;
            this.chartTargetDimensionsSeriesBarItem1.Name = "chartTargetDimensionsSeriesBarItem1";
            // 
            // pieTargetDimensionsArgumentsBarItem1
            // 
            this.pieTargetDimensionsArgumentsBarItem1.Id = 59;
            this.pieTargetDimensionsArgumentsBarItem1.Name = "pieTargetDimensionsArgumentsBarItem1";
            // 
            // pieTargetDimensionsSeriesBarItem1
            // 
            this.pieTargetDimensionsSeriesBarItem1.Id = 60;
            this.pieTargetDimensionsSeriesBarItem1.Name = "pieTargetDimensionsSeriesBarItem1";
            // 
            // geoPointMapClusterizationBarItem1
            // 
            this.geoPointMapClusterizationBarItem1.Id = 61;
            this.geoPointMapClusterizationBarItem1.Name = "geoPointMapClusterizationBarItem1";
            // 
            // showItemCaptionBarItem1
            // 
            this.showItemCaptionBarItem1.Id = 62;
            this.showItemCaptionBarItem1.Name = "showItemCaptionBarItem1";
            // 
            // editItemNamesBarItem1
            // 
            this.editItemNamesBarItem1.Id = 63;
            this.editItemNamesBarItem1.Name = "editItemNamesBarItem1";
            // 
            // contentAutoArrangeBarItem1
            // 
            this.contentAutoArrangeBarItem1.Id = 64;
            this.contentAutoArrangeBarItem1.Name = "contentAutoArrangeBarItem1";
            // 
            // contentArrangeInColumnsBarItem1
            // 
            this.contentArrangeInColumnsBarItem1.Id = 65;
            this.contentArrangeInColumnsBarItem1.Name = "contentArrangeInColumnsBarItem1";
            // 
            // contentArrangeInRowsBarItem1
            // 
            this.contentArrangeInRowsBarItem1.Id = 66;
            this.contentArrangeInRowsBarItem1.Name = "contentArrangeInRowsBarItem1";
            // 
            // contentArrangementCountBarItem1
            // 
            this.contentArrangementCountBarItem1.Edit = this.repositoryItemSpinEdit1;
            this.contentArrangementCountBarItem1.Id = 67;
            this.contentArrangementCountBarItem1.Name = "contentArrangementCountBarItem1";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // gridHorizontalLinesBarItem1
            // 
            this.gridHorizontalLinesBarItem1.Id = 68;
            this.gridHorizontalLinesBarItem1.Name = "gridHorizontalLinesBarItem1";
            // 
            // gridVerticalLinesBarItem1
            // 
            this.gridVerticalLinesBarItem1.Id = 69;
            this.gridVerticalLinesBarItem1.Name = "gridVerticalLinesBarItem1";
            // 
            // gridMergeCellsBarItem1
            // 
            this.gridMergeCellsBarItem1.Id = 70;
            this.gridMergeCellsBarItem1.Name = "gridMergeCellsBarItem1";
            // 
            // gridBandedRowsBarItem1
            // 
            this.gridBandedRowsBarItem1.Id = 71;
            this.gridBandedRowsBarItem1.Name = "gridBandedRowsBarItem1";
            // 
            // gridColumnHeadersBarItem1
            // 
            this.gridColumnHeadersBarItem1.Id = 72;
            this.gridColumnHeadersBarItem1.Name = "gridColumnHeadersBarItem1";
            // 
            // chartRotateBarItem1
            // 
            this.chartRotateBarItem1.Id = 73;
            this.chartRotateBarItem1.Name = "chartRotateBarItem1";
            // 
            // chartXAxisSettingsBarItem1
            // 
            this.chartXAxisSettingsBarItem1.Id = 74;
            this.chartXAxisSettingsBarItem1.Name = "chartXAxisSettingsBarItem1";
            // 
            // chartYAxisSettingsBarItem1
            // 
            this.chartYAxisSettingsBarItem1.Id = 75;
            this.chartYAxisSettingsBarItem1.Name = "chartYAxisSettingsBarItem1";
            // 
            // chartShowLegendBarItem1
            // 
            this.chartShowLegendBarItem1.Id = 76;
            this.chartShowLegendBarItem1.Name = "chartShowLegendBarItem1";
            // 
            // galleryChartLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryChartLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup5.Caption = "Inside Horizontal";
            galleryItemGroup6.Caption = "Inside Vertical";
            galleryItemGroup7.Caption = "Outside Horizontal";
            galleryItemGroup8.Caption = "Outside Vertical";
            this.galleryChartLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup5,
            galleryItemGroup6,
            galleryItemGroup7,
            galleryItemGroup8});
            this.galleryChartLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartLegendPositionItem1.Gallery.RowCount = 8;
            this.galleryChartLegendPositionItem1.Id = 77;
            this.galleryChartLegendPositionItem1.Name = "galleryChartLegendPositionItem1";
            // 
            // galleryChartSeriesTypeItem1
            // 
            // 
            // 
            // 
            galleryItemGroup9.Caption = "Bar";
            chartSeriesTypeGalleryItem1.Hint = "Bar";
            chartSeriesTypeGalleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem1.Image")));
            chartSeriesTypeGalleryItem1.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem2.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem2.Image")));
            chartSeriesTypeGalleryItem2.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem3.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem3.Image")));
            chartSeriesTypeGalleryItem3.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup9.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem1,
            chartSeriesTypeGalleryItem2,
            chartSeriesTypeGalleryItem3});
            galleryItemGroup10.Caption = "Point / Line";
            chartSeriesTypeGalleryItem4.Hint = "Point";
            chartSeriesTypeGalleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem4.Image")));
            chartSeriesTypeGalleryItem4.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem5.Hint = "Line";
            chartSeriesTypeGalleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem5.Image")));
            chartSeriesTypeGalleryItem5.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem6.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem6.Image")));
            chartSeriesTypeGalleryItem6.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem7.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem7.Image")));
            chartSeriesTypeGalleryItem7.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem8.Hint = "Step Line";
            chartSeriesTypeGalleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem8.Image")));
            chartSeriesTypeGalleryItem8.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem9.Hint = "Spline";
            chartSeriesTypeGalleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem9.Image")));
            chartSeriesTypeGalleryItem9.SeriesTypeCaption = "Spline";
            galleryItemGroup10.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem4,
            chartSeriesTypeGalleryItem5,
            chartSeriesTypeGalleryItem6,
            chartSeriesTypeGalleryItem7,
            chartSeriesTypeGalleryItem8,
            chartSeriesTypeGalleryItem9});
            galleryItemGroup11.Caption = "Area";
            chartSeriesTypeGalleryItem10.Hint = "Area";
            chartSeriesTypeGalleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem10.Image")));
            chartSeriesTypeGalleryItem10.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem11.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem11.Image")));
            chartSeriesTypeGalleryItem11.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem12.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem12.Image")));
            chartSeriesTypeGalleryItem12.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem13.Hint = "Step Area";
            chartSeriesTypeGalleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem13.Image")));
            chartSeriesTypeGalleryItem13.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem14.Hint = "Spline Area";
            chartSeriesTypeGalleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem14.Image")));
            chartSeriesTypeGalleryItem14.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem15.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem15.Image")));
            chartSeriesTypeGalleryItem15.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem16.Image")));
            chartSeriesTypeGalleryItem16.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup11.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem10,
            chartSeriesTypeGalleryItem11,
            chartSeriesTypeGalleryItem12,
            chartSeriesTypeGalleryItem13,
            chartSeriesTypeGalleryItem14,
            chartSeriesTypeGalleryItem15,
            chartSeriesTypeGalleryItem16});
            galleryItemGroup12.Caption = "Range";
            chartSeriesTypeGalleryItem17.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem17.Image")));
            chartSeriesTypeGalleryItem17.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem18.Hint = "Range Area";
            chartSeriesTypeGalleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem18.Image")));
            chartSeriesTypeGalleryItem18.SeriesTypeCaption = "Range Area";
            galleryItemGroup12.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem17,
            chartSeriesTypeGalleryItem18});
            galleryItemGroup13.Caption = "Bubble";
            chartSeriesTypeGalleryItem19.Hint = "Bubble";
            chartSeriesTypeGalleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem19.Image")));
            chartSeriesTypeGalleryItem19.SeriesTypeCaption = "Bubble";
            galleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem19});
            galleryItemGroup14.Caption = "Financial";
            chartSeriesTypeGalleryItem20.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem20.Image")));
            chartSeriesTypeGalleryItem20.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem21.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem21.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem21.Image")));
            chartSeriesTypeGalleryItem21.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem22.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem22.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem22.Image")));
            chartSeriesTypeGalleryItem22.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem20,
            chartSeriesTypeGalleryItem21,
            chartSeriesTypeGalleryItem22});
            this.galleryChartSeriesTypeItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup9,
            galleryItemGroup10,
            galleryItemGroup11,
            galleryItemGroup12,
            galleryItemGroup13,
            galleryItemGroup14});
            this.galleryChartSeriesTypeItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartSeriesTypeItem1.Gallery.RowCount = 8;
            this.galleryChartSeriesTypeItem1.Id = 78;
            this.galleryChartSeriesTypeItem1.Name = "galleryChartSeriesTypeItem1";
            // 
            // pieLabelsDataLabelsBarItem1
            // 
            this.pieLabelsDataLabelsBarItem1.Id = 79;
            this.pieLabelsDataLabelsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1)});
            this.pieLabelsDataLabelsBarItem1.Name = "pieLabelsDataLabelsBarItem1";
            this.pieLabelsDataLabelsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsDataLabelsNoneBarItem1
            // 
            this.pieLabelsDataLabelsNoneBarItem1.Id = 80;
            this.pieLabelsDataLabelsNoneBarItem1.Name = "pieLabelsDataLabelsNoneBarItem1";
            // 
            // pieLabelsDataLabelArgumentBarItem1
            // 
            this.pieLabelsDataLabelArgumentBarItem1.Id = 81;
            this.pieLabelsDataLabelArgumentBarItem1.Name = "pieLabelsDataLabelArgumentBarItem1";
            // 
            // pieLabelsDataLabelsValueBarItem1
            // 
            this.pieLabelsDataLabelsValueBarItem1.Id = 82;
            this.pieLabelsDataLabelsValueBarItem1.Name = "pieLabelsDataLabelsValueBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndValueBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Id = 83;
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Name = "pieLabelsDataLabelsArgumentAndValueBarItem1";
            // 
            // pieLabelsDataLabelsPercentBarItem1
            // 
            this.pieLabelsDataLabelsPercentBarItem1.Id = 84;
            this.pieLabelsDataLabelsPercentBarItem1.Name = "pieLabelsDataLabelsPercentBarItem1";
            // 
            // pieLabelsDataLabelsValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Id = 85;
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Name = "pieLabelsDataLabelsValueAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Id = 86;
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Id = 87;
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentValueAndPercentBarItem1";
            // 
            // pieTooltipsBarItem1
            // 
            this.pieTooltipsBarItem1.Id = 88;
            this.pieTooltipsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1)});
            this.pieTooltipsBarItem1.Name = "pieTooltipsBarItem1";
            this.pieTooltipsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsTooltipsNoneBarItem1
            // 
            this.pieLabelsTooltipsNoneBarItem1.Id = 89;
            this.pieLabelsTooltipsNoneBarItem1.Name = "pieLabelsTooltipsNoneBarItem1";
            // 
            // pieLabelsTooltipsArgumentBarItem1
            // 
            this.pieLabelsTooltipsArgumentBarItem1.Id = 90;
            this.pieLabelsTooltipsArgumentBarItem1.Name = "pieLabelsTooltipsArgumentBarItem1";
            // 
            // pieLabelsTooltipsValueBarItem1
            // 
            this.pieLabelsTooltipsValueBarItem1.Id = 91;
            this.pieLabelsTooltipsValueBarItem1.Name = "pieLabelsTooltipsValueBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndValueBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Id = 92;
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Name = "pieLabelsTooltipsArgumentAndValueBarItem1";
            // 
            // pieLabelsTooltipsPercentBarItem1
            // 
            this.pieLabelsTooltipsPercentBarItem1.Id = 93;
            this.pieLabelsTooltipsPercentBarItem1.Name = "pieLabelsTooltipsPercentBarItem1";
            // 
            // pieLabelsTooltipsValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsValueAndPercentBarItem1.Id = 94;
            this.pieLabelsTooltipsValueAndPercentBarItem1.Name = "pieLabelsTooltipsValueAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Id = 95;
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Id = 96;
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentValueAndPercentBarItem1";
            // 
            // pieStylePieBarItem1
            // 
            this.pieStylePieBarItem1.Id = 97;
            this.pieStylePieBarItem1.Name = "pieStylePieBarItem1";
            // 
            // pieStyleDonutBarItem1
            // 
            this.pieStyleDonutBarItem1.Id = 98;
            this.pieStyleDonutBarItem1.Name = "pieStyleDonutBarItem1";
            // 
            // pieShowCaptionsBarItem1
            // 
            this.pieShowCaptionsBarItem1.Id = 99;
            this.pieShowCaptionsBarItem1.Name = "pieShowCaptionsBarItem1";
            // 
            // gaugeStyleFullCircularBarItem1
            // 
            this.gaugeStyleFullCircularBarItem1.Id = 100;
            this.gaugeStyleFullCircularBarItem1.Name = "gaugeStyleFullCircularBarItem1";
            // 
            // gaugeStyleHalfCircularBarItem1
            // 
            this.gaugeStyleHalfCircularBarItem1.Id = 101;
            this.gaugeStyleHalfCircularBarItem1.Name = "gaugeStyleHalfCircularBarItem1";
            // 
            // gaugeStyleLeftQuarterCircularBarItem1
            // 
            this.gaugeStyleLeftQuarterCircularBarItem1.Id = 102;
            this.gaugeStyleLeftQuarterCircularBarItem1.Name = "gaugeStyleLeftQuarterCircularBarItem1";
            // 
            // gaugeStyleRightQuarterCircularBarItem1
            // 
            this.gaugeStyleRightQuarterCircularBarItem1.Id = 103;
            this.gaugeStyleRightQuarterCircularBarItem1.Name = "gaugeStyleRightQuarterCircularBarItem1";
            // 
            // gaugeStyleThreeForthCircularBarItem1
            // 
            this.gaugeStyleThreeForthCircularBarItem1.Id = 104;
            this.gaugeStyleThreeForthCircularBarItem1.Name = "gaugeStyleThreeForthCircularBarItem1";
            // 
            // gaugeStyleLinearHorizontalBarItem1
            // 
            this.gaugeStyleLinearHorizontalBarItem1.Id = 105;
            this.gaugeStyleLinearHorizontalBarItem1.Name = "gaugeStyleLinearHorizontalBarItem1";
            // 
            // gaugeStyleLinearVerticalBarItem1
            // 
            this.gaugeStyleLinearVerticalBarItem1.Id = 106;
            this.gaugeStyleLinearVerticalBarItem1.Name = "gaugeStyleLinearVerticalBarItem1";
            // 
            // gaugeShowCaptionsBarItem1
            // 
            this.gaugeShowCaptionsBarItem1.Id = 107;
            this.gaugeShowCaptionsBarItem1.Name = "gaugeShowCaptionsBarItem1";
            // 
            // imageLoadBarItem1
            // 
            this.imageLoadBarItem1.Id = 108;
            this.imageLoadBarItem1.Name = "imageLoadBarItem1";
            // 
            // imageImportBarItem1
            // 
            this.imageImportBarItem1.Id = 109;
            this.imageImportBarItem1.Name = "imageImportBarItem1";
            // 
            // imageSizeModeClipBarItem1
            // 
            this.imageSizeModeClipBarItem1.Id = 110;
            this.imageSizeModeClipBarItem1.Name = "imageSizeModeClipBarItem1";
            // 
            // imageSizeModeStretchBarItem1
            // 
            this.imageSizeModeStretchBarItem1.Id = 111;
            this.imageSizeModeStretchBarItem1.Name = "imageSizeModeStretchBarItem1";
            // 
            // imageSizeModeSqueezeBarItem1
            // 
            this.imageSizeModeSqueezeBarItem1.Id = 112;
            this.imageSizeModeSqueezeBarItem1.Name = "imageSizeModeSqueezeBarItem1";
            // 
            // imageSizeModeZoomBarItem1
            // 
            this.imageSizeModeZoomBarItem1.Id = 113;
            this.imageSizeModeZoomBarItem1.Name = "imageSizeModeZoomBarItem1";
            // 
            // imageAlignmentTopLeftBarItem1
            // 
            this.imageAlignmentTopLeftBarItem1.Id = 114;
            this.imageAlignmentTopLeftBarItem1.Name = "imageAlignmentTopLeftBarItem1";
            this.imageAlignmentTopLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterLeftBarItem1
            // 
            this.imageAlignmentCenterLeftBarItem1.Id = 115;
            this.imageAlignmentCenterLeftBarItem1.Name = "imageAlignmentCenterLeftBarItem1";
            this.imageAlignmentCenterLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomLeftBarItem1
            // 
            this.imageAlignmentBottomLeftBarItem1.Id = 116;
            this.imageAlignmentBottomLeftBarItem1.Name = "imageAlignmentBottomLeftBarItem1";
            this.imageAlignmentBottomLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopCenterBarItem1
            // 
            this.imageAlignmentTopCenterBarItem1.Id = 117;
            this.imageAlignmentTopCenterBarItem1.Name = "imageAlignmentTopCenterBarItem1";
            this.imageAlignmentTopCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterCenterBarItem1
            // 
            this.imageAlignmentCenterCenterBarItem1.Id = 118;
            this.imageAlignmentCenterCenterBarItem1.Name = "imageAlignmentCenterCenterBarItem1";
            this.imageAlignmentCenterCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomCenterBarItem1
            // 
            this.imageAlignmentBottomCenterBarItem1.Id = 119;
            this.imageAlignmentBottomCenterBarItem1.Name = "imageAlignmentBottomCenterBarItem1";
            this.imageAlignmentBottomCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopRightBarItem1
            // 
            this.imageAlignmentTopRightBarItem1.Id = 120;
            this.imageAlignmentTopRightBarItem1.Name = "imageAlignmentTopRightBarItem1";
            this.imageAlignmentTopRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterRightBarItem1
            // 
            this.imageAlignmentCenterRightBarItem1.Id = 121;
            this.imageAlignmentCenterRightBarItem1.Name = "imageAlignmentCenterRightBarItem1";
            this.imageAlignmentCenterRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomRightBarItem1
            // 
            this.imageAlignmentBottomRightBarItem1.Id = 122;
            this.imageAlignmentBottomRightBarItem1.Name = "imageAlignmentBottomRightBarItem1";
            this.imageAlignmentBottomRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // textBoxEditTextBarItem1
            // 
            this.textBoxEditTextBarItem1.Id = 123;
            this.textBoxEditTextBarItem1.Name = "textBoxEditTextBarItem1";
            // 
            // rangeFilterLineSeriesTypeBarItem1
            // 
            this.rangeFilterLineSeriesTypeBarItem1.Id = 124;
            this.rangeFilterLineSeriesTypeBarItem1.Name = "rangeFilterLineSeriesTypeBarItem1";
            // 
            // rangeFilterStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterStackedLineSeriesTypeBarItem1.Id = 125;
            this.rangeFilterStackedLineSeriesTypeBarItem1.Name = "rangeFilterStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Id = 126;
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Name = "rangeFilterFullStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterAreaSeriesTypeBarItem1
            // 
            this.rangeFilterAreaSeriesTypeBarItem1.Id = 127;
            this.rangeFilterAreaSeriesTypeBarItem1.Name = "rangeFilterAreaSeriesTypeBarItem1";
            // 
            // rangeFilterStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Id = 128;
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Name = "rangeFilterStackedAreaSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Id = 129;
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Name = "rangeFilterFullStackedAreaSeriesTypeBarItem1";
            // 
            // pivotInitialStateBarItem1
            // 
            this.pivotInitialStateBarItem1.Id = 130;
            this.pivotInitialStateBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandColumnBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandRowBarItem1)});
            this.pivotInitialStateBarItem1.Name = "pivotInitialStateBarItem1";
            this.pivotInitialStateBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pivotAutoExpandColumnBarItem1
            // 
            this.pivotAutoExpandColumnBarItem1.Id = 131;
            this.pivotAutoExpandColumnBarItem1.Name = "pivotAutoExpandColumnBarItem1";
            // 
            // pivotAutoExpandRowBarItem1
            // 
            this.pivotAutoExpandRowBarItem1.Id = 132;
            this.pivotAutoExpandRowBarItem1.Name = "pivotAutoExpandRowBarItem1";
            // 
            // mapLoadBarItem1
            // 
            this.mapLoadBarItem1.Id = 133;
            this.mapLoadBarItem1.Name = "mapLoadBarItem1";
            // 
            // mapImportBarItem1
            // 
            this.mapImportBarItem1.Id = 134;
            this.mapImportBarItem1.Name = "mapImportBarItem1";
            // 
            // mapDefaultShapefileBarItem1
            // 
            this.mapDefaultShapefileBarItem1.Id = 135;
            this.mapDefaultShapefileBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.mapWorldCountriesBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapEuropeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAsiaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapNorthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapSouthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAfricaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapUSABarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapCanadaBarItem1)});
            this.mapDefaultShapefileBarItem1.Name = "mapDefaultShapefileBarItem1";
            this.mapDefaultShapefileBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // mapWorldCountriesBarItem1
            // 
            this.mapWorldCountriesBarItem1.Id = 136;
            this.mapWorldCountriesBarItem1.Name = "mapWorldCountriesBarItem1";
            // 
            // mapEuropeBarItem1
            // 
            this.mapEuropeBarItem1.Id = 137;
            this.mapEuropeBarItem1.Name = "mapEuropeBarItem1";
            // 
            // mapAsiaBarItem1
            // 
            this.mapAsiaBarItem1.Id = 138;
            this.mapAsiaBarItem1.Name = "mapAsiaBarItem1";
            // 
            // mapNorthAmericaBarItem1
            // 
            this.mapNorthAmericaBarItem1.Id = 139;
            this.mapNorthAmericaBarItem1.Name = "mapNorthAmericaBarItem1";
            // 
            // mapSouthAmericaBarItem1
            // 
            this.mapSouthAmericaBarItem1.Id = 140;
            this.mapSouthAmericaBarItem1.Name = "mapSouthAmericaBarItem1";
            // 
            // mapAfricaBarItem1
            // 
            this.mapAfricaBarItem1.Id = 141;
            this.mapAfricaBarItem1.Name = "mapAfricaBarItem1";
            // 
            // mapUSABarItem1
            // 
            this.mapUSABarItem1.Id = 142;
            this.mapUSABarItem1.Name = "mapUSABarItem1";
            // 
            // mapCanadaBarItem1
            // 
            this.mapCanadaBarItem1.Id = 143;
            this.mapCanadaBarItem1.Name = "mapCanadaBarItem1";
            // 
            // mapLockNavigationBarItem1
            // 
            this.mapLockNavigationBarItem1.Id = 144;
            this.mapLockNavigationBarItem1.Name = "mapLockNavigationBarItem1";
            // 
            // mapFullExtentBarItem1
            // 
            this.mapFullExtentBarItem1.Id = 145;
            this.mapFullExtentBarItem1.Name = "mapFullExtentBarItem1";
            // 
            // mapShowLegendBarItem1
            // 
            this.mapShowLegendBarItem1.Id = 146;
            this.mapShowLegendBarItem1.Name = "mapShowLegendBarItem1";
            // 
            // galleryMapLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryMapLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup15.Caption = "Vertical";
            galleryItemGroup16.Caption = "Horizontal";
            this.galleryMapLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup15,
            galleryItemGroup16});
            this.galleryMapLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryMapLegendPositionItem1.Gallery.RowCount = 4;
            this.galleryMapLegendPositionItem1.Id = 147;
            this.galleryMapLegendPositionItem1.Name = "galleryMapLegendPositionItem1";
            // 
            // changeWeightedLegendTypeBarItem1
            // 
            this.changeWeightedLegendTypeBarItem1.Id = 148;
            this.changeWeightedLegendTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendLinearBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNestedBarItem1)});
            this.changeWeightedLegendTypeBarItem1.Name = "changeWeightedLegendTypeBarItem1";
            this.changeWeightedLegendTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // weightedLegendNoneBarItem1
            // 
            this.weightedLegendNoneBarItem1.Id = 149;
            this.weightedLegendNoneBarItem1.Name = "weightedLegendNoneBarItem1";
            // 
            // weightedLegendLinearBarItem1
            // 
            this.weightedLegendLinearBarItem1.Id = 150;
            this.weightedLegendLinearBarItem1.Name = "weightedLegendLinearBarItem1";
            // 
            // weightedLegendNestedBarItem1
            // 
            this.weightedLegendNestedBarItem1.Id = 151;
            this.weightedLegendNestedBarItem1.Name = "weightedLegendNestedBarItem1";
            // 
            // galleryWeightedLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryWeightedLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup17.Caption = "Position";
            this.galleryWeightedLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup17});
            this.galleryWeightedLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryWeightedLegendPositionItem1.Gallery.RowCount = 2;
            this.galleryWeightedLegendPositionItem1.Id = 152;
            this.galleryWeightedLegendPositionItem1.Name = "galleryWeightedLegendPositionItem1";
            // 
            // pieMapIsWeightedBarItem1
            // 
            this.pieMapIsWeightedBarItem1.Id = 153;
            this.pieMapIsWeightedBarItem1.Name = "pieMapIsWeightedBarItem1";
            // 
            // quickAccessUndoBarItem1
            // 
            this.quickAccessUndoBarItem1.Id = 154;
            this.quickAccessUndoBarItem1.Name = "quickAccessUndoBarItem1";
            // 
            // quickAccessRedoBarItem1
            // 
            this.quickAccessRedoBarItem1.Id = 155;
            this.quickAccessRedoBarItem1.Name = "quickAccessRedoBarItem1";
            // 
            // bbiNew
            // 
            this.bbiNew.Caption = "New Dashboard";
            this.bbiNew.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiNew.Glyph = global::NICSQLTools.Properties.Resources.new_16x16;
            this.bbiNew.Id = 156;
            this.bbiNew.LargeGlyph = global::NICSQLTools.Properties.Resources.new_32x32;
            this.bbiNew.Name = "bbiNew";
            this.bbiNew.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem1.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
            toolTipTitleItem1.Appearance.Options.UseImage = true;
            toolTipTitleItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem1.Image")));
            toolTipTitleItem1.Text = "New";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Create a new dashboard";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.bbiNew.SuperTip = superToolTip1;
            this.bbiNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNew_ItemClick);
            // 
            // bbiOpen
            // 
            this.bbiOpen.Caption = "Open";
            this.bbiOpen.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiOpen.Glyph = global::NICSQLTools.Properties.Resources.open_16x16;
            this.bbiOpen.Id = 157;
            this.bbiOpen.LargeGlyph = global::NICSQLTools.Properties.Resources.open_32x32;
            this.bbiOpen.Name = "bbiOpen";
            this.bbiOpen.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem2.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
            toolTipTitleItem2.Appearance.Options.UseImage = true;
            toolTipTitleItem2.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem2.Image")));
            toolTipTitleItem2.Text = "Open";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Open Saved Dashboard From Database";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.bbiOpen.SuperTip = superToolTip2;
            this.bbiOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiOpen_ItemClick);
            // 
            // bbiSave
            // 
            this.bbiSave.Caption = "Save";
            this.bbiSave.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiSave.Glyph = global::NICSQLTools.Properties.Resources.save_16x16;
            this.bbiSave.Id = 158;
            this.bbiSave.LargeGlyph = global::NICSQLTools.Properties.Resources.save_32x32;
            this.bbiSave.Name = "bbiSave";
            this.bbiSave.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem3.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
            toolTipTitleItem3.Appearance.Options.UseImage = true;
            toolTipTitleItem3.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem3.Image")));
            toolTipTitleItem3.Text = "Save";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Save Current Dashboard to Database";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.bbiSave.SuperTip = superToolTip3;
            this.bbiSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSave_ItemClick);
            // 
            // bbiSaveAs
            // 
            this.bbiSaveAs.Caption = "Save As";
            this.bbiSaveAs.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiSaveAs.Glyph = global::NICSQLTools.Properties.Resources.saveall_16x16;
            this.bbiSaveAs.Id = 159;
            this.bbiSaveAs.LargeGlyph = global::NICSQLTools.Properties.Resources.saveall_32x32;
            this.bbiSaveAs.Name = "bbiSaveAs";
            this.bbiSaveAs.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem4.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
            toolTipTitleItem4.Appearance.Options.UseImage = true;
            toolTipTitleItem4.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem4.Image")));
            toolTipTitleItem4.Text = "Save As";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Copy Current Dashboard To New Dashboard";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.bbiSaveAs.SuperTip = superToolTip4;
            this.bbiSaveAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSaveAs_ItemClick);
            // 
            // bbiAddDatasource
            // 
            this.bbiAddDatasource.Caption = "New Datasource";
            this.bbiAddDatasource.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiAddDatasource.Glyph = global::NICSQLTools.Properties.Resources.addnewdatasource_16x16;
            this.bbiAddDatasource.Id = 160;
            this.bbiAddDatasource.LargeGlyph = global::NICSQLTools.Properties.Resources.addnewdatasource_32x32;
            this.bbiAddDatasource.Name = "bbiAddDatasource";
            this.bbiAddDatasource.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem5.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
            toolTipTitleItem5.Appearance.Options.UseImage = true;
            toolTipTitleItem5.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem5.Image")));
            toolTipTitleItem5.Text = "New Datashource";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Add New Datasource Into Current Dashboard";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            this.bbiAddDatasource.SuperTip = superToolTip5;
            this.bbiAddDatasource.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiAddDatasource_ItemClick);
            // 
            // pivotToolsRibbonPageCategory1
            // 
            this.pivotToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.pivotToolsRibbonPageCategory1.Name = "pivotToolsRibbonPageCategory1";
            this.pivotToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage1,
            this.dashboardItemDesignRibbonPage9});
            this.pivotToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup1,
            this.pivotLayoutRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            this.dataRibbonPage1.Visible = false;
            // 
            // filteringRibbonPageGroup1
            // 
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup1.Name = "filteringRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup1
            // 
            this.interactivitySettingsRibbonPageGroup1.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup1.Name = "interactivitySettingsRibbonPageGroup1";
            // 
            // pivotLayoutRibbonPageGroup1
            // 
            this.pivotLayoutRibbonPageGroup1.ItemLinks.Add(this.pivotInitialStateBarItem1);
            this.pivotLayoutRibbonPageGroup1.Name = "pivotLayoutRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage9
            // 
            this.dashboardItemDesignRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup9});
            this.dashboardItemDesignRibbonPage9.Name = "dashboardItemDesignRibbonPage9";
            this.dashboardItemDesignRibbonPage9.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup9
            // 
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup9.Name = "commonItemDesignRibbonPageGroup9";
            // 
            // gridToolsRibbonPageCategory1
            // 
            this.gridToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.gridToolsRibbonPageCategory1.Name = "gridToolsRibbonPageCategory1";
            this.gridToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage2,
            this.dashboardItemDesignRibbonPage1});
            this.gridToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage2
            // 
            this.dataRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup2,
            this.masterFilterRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup2});
            this.dataRibbonPage2.Name = "dataRibbonPage2";
            this.dataRibbonPage2.Visible = false;
            // 
            // filteringRibbonPageGroup2
            // 
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup2.Name = "filteringRibbonPageGroup2";
            // 
            // masterFilterRibbonPageGroup1
            // 
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup1.Name = "masterFilterRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup2
            // 
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup2.Name = "interactivitySettingsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage1
            // 
            this.dashboardItemDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup1,
            this.gridCellsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage1.Name = "dashboardItemDesignRibbonPage1";
            this.dashboardItemDesignRibbonPage1.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup1
            // 
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup1.Name = "commonItemDesignRibbonPageGroup1";
            // 
            // gridCellsRibbonPageGroup1
            // 
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridHorizontalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridVerticalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridMergeCellsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridBandedRowsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridColumnHeadersBarItem1);
            this.gridCellsRibbonPageGroup1.Name = "gridCellsRibbonPageGroup1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage3,
            this.dashboardItemDesignRibbonPage2});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage3
            // 
            this.dataRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup3,
            this.masterFilterRibbonPageGroup2,
            this.interactivitySettingsRibbonPageGroup3,
            this.targetDimensionsRibbonPageGroup1});
            this.dataRibbonPage3.Name = "dataRibbonPage3";
            this.dataRibbonPage3.Visible = false;
            // 
            // filteringRibbonPageGroup3
            // 
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup3.Name = "filteringRibbonPageGroup3";
            // 
            // masterFilterRibbonPageGroup2
            // 
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup2.Name = "masterFilterRibbonPageGroup2";
            // 
            // interactivitySettingsRibbonPageGroup3
            // 
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup3.Name = "interactivitySettingsRibbonPageGroup3";
            // 
            // targetDimensionsRibbonPageGroup1
            // 
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup1.Name = "targetDimensionsRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage2
            // 
            this.dashboardItemDesignRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup2,
            this.chartLayoutPageGroup1,
            this.chartLegendPositionPageGroup1,
            this.chartStylePageGroup1});
            this.dashboardItemDesignRibbonPage2.Name = "dashboardItemDesignRibbonPage2";
            this.dashboardItemDesignRibbonPage2.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup2
            // 
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup2.Name = "commonItemDesignRibbonPageGroup2";
            // 
            // chartLayoutPageGroup1
            // 
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartRotateBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartXAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartYAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.Name = "chartLayoutPageGroup1";
            // 
            // chartLegendPositionPageGroup1
            // 
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.chartShowLegendBarItem1);
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.galleryChartLegendPositionItem1);
            this.chartLegendPositionPageGroup1.Name = "chartLegendPositionPageGroup1";
            // 
            // chartStylePageGroup1
            // 
            this.chartStylePageGroup1.ItemLinks.Add(this.galleryChartSeriesTypeItem1);
            this.chartStylePageGroup1.Name = "chartStylePageGroup1";
            // 
            // piesToolsRibbonPageCategory1
            // 
            this.piesToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.piesToolsRibbonPageCategory1.Name = "piesToolsRibbonPageCategory1";
            this.piesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage4,
            this.dashboardItemDesignRibbonPage3});
            this.piesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage4
            // 
            this.dataRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup4,
            this.masterFilterRibbonPageGroup3,
            this.interactivitySettingsRibbonPageGroup4,
            this.targetDimensionsRibbonPageGroup2});
            this.dataRibbonPage4.Name = "dataRibbonPage4";
            this.dataRibbonPage4.Visible = false;
            // 
            // filteringRibbonPageGroup4
            // 
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup4.Name = "filteringRibbonPageGroup4";
            // 
            // masterFilterRibbonPageGroup3
            // 
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup3.Name = "masterFilterRibbonPageGroup3";
            // 
            // interactivitySettingsRibbonPageGroup4
            // 
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup4.Name = "interactivitySettingsRibbonPageGroup4";
            // 
            // targetDimensionsRibbonPageGroup2
            // 
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup2.Name = "targetDimensionsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage3
            // 
            this.dashboardItemDesignRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup3,
            this.contentArrangementRibbonPageGroup1,
            this.pieLabelsRibbonPageGroup1,
            this.pieStyleRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage3.Name = "dashboardItemDesignRibbonPage3";
            this.dashboardItemDesignRibbonPage3.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup3
            // 
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup3.Name = "commonItemDesignRibbonPageGroup3";
            // 
            // contentArrangementRibbonPageGroup1
            // 
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup1.Name = "contentArrangementRibbonPageGroup1";
            // 
            // pieLabelsRibbonPageGroup1
            // 
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieLabelsDataLabelsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieTooltipsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieShowCaptionsBarItem1);
            this.pieLabelsRibbonPageGroup1.Name = "pieLabelsRibbonPageGroup1";
            // 
            // pieStyleRibbonPageGroup1
            // 
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStylePieBarItem1);
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStyleDonutBarItem1);
            this.pieStyleRibbonPageGroup1.Name = "pieStyleRibbonPageGroup1";
            // 
            // gaugesToolsRibbonPageCategory1
            // 
            this.gaugesToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.gaugesToolsRibbonPageCategory1.Name = "gaugesToolsRibbonPageCategory1";
            this.gaugesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage5,
            this.dashboardItemDesignRibbonPage4});
            this.gaugesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage5
            // 
            this.dataRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup5,
            this.masterFilterRibbonPageGroup4,
            this.interactivitySettingsRibbonPageGroup5});
            this.dataRibbonPage5.Name = "dataRibbonPage5";
            this.dataRibbonPage5.Visible = false;
            // 
            // filteringRibbonPageGroup5
            // 
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup5.Name = "filteringRibbonPageGroup5";
            // 
            // masterFilterRibbonPageGroup4
            // 
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup4.Name = "masterFilterRibbonPageGroup4";
            // 
            // interactivitySettingsRibbonPageGroup5
            // 
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup5.Name = "interactivitySettingsRibbonPageGroup5";
            // 
            // dashboardItemDesignRibbonPage4
            // 
            this.dashboardItemDesignRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup4,
            this.contentArrangementRibbonPageGroup2,
            this.gaugeStyleRibbonPageGroup1,
            this.gaugesLabelsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage4.Name = "dashboardItemDesignRibbonPage4";
            this.dashboardItemDesignRibbonPage4.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup4
            // 
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup4.Name = "commonItemDesignRibbonPageGroup4";
            // 
            // contentArrangementRibbonPageGroup2
            // 
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup2.Name = "contentArrangementRibbonPageGroup2";
            // 
            // gaugeStyleRibbonPageGroup1
            // 
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleFullCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleHalfCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.gaugeStyleRibbonPageGroup1.Name = "gaugeStyleRibbonPageGroup1";
            // 
            // gaugesLabelsRibbonPageGroup1
            // 
            this.gaugesLabelsRibbonPageGroup1.ItemLinks.Add(this.gaugeShowCaptionsBarItem1);
            this.gaugesLabelsRibbonPageGroup1.Name = "gaugesLabelsRibbonPageGroup1";
            // 
            // cardsToolsRibbonPageCategory1
            // 
            this.cardsToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.cardsToolsRibbonPageCategory1.Name = "cardsToolsRibbonPageCategory1";
            this.cardsToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage6,
            this.dashboardItemDesignRibbonPage5});
            this.cardsToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage6
            // 
            this.dataRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup6,
            this.masterFilterRibbonPageGroup5,
            this.interactivitySettingsRibbonPageGroup6});
            this.dataRibbonPage6.Name = "dataRibbonPage6";
            this.dataRibbonPage6.Visible = false;
            // 
            // filteringRibbonPageGroup6
            // 
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup6.Name = "filteringRibbonPageGroup6";
            // 
            // masterFilterRibbonPageGroup5
            // 
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup5.Name = "masterFilterRibbonPageGroup5";
            // 
            // interactivitySettingsRibbonPageGroup6
            // 
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup6.Name = "interactivitySettingsRibbonPageGroup6";
            // 
            // dashboardItemDesignRibbonPage5
            // 
            this.dashboardItemDesignRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup5,
            this.contentArrangementRibbonPageGroup3});
            this.dashboardItemDesignRibbonPage5.Name = "dashboardItemDesignRibbonPage5";
            this.dashboardItemDesignRibbonPage5.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup5
            // 
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup5.Name = "commonItemDesignRibbonPageGroup5";
            // 
            // contentArrangementRibbonPageGroup3
            // 
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup3.Name = "contentArrangementRibbonPageGroup3";
            // 
            // rangeFilterToolsRibbonPageCategory1
            // 
            this.rangeFilterToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.rangeFilterToolsRibbonPageCategory1.Name = "rangeFilterToolsRibbonPageCategory1";
            this.rangeFilterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage7,
            this.dashboardItemDesignRibbonPage8});
            this.rangeFilterToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage7
            // 
            this.dataRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup7});
            this.dataRibbonPage7.Name = "dataRibbonPage7";
            this.dataRibbonPage7.Visible = false;
            // 
            // filteringRibbonPageGroup7
            // 
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup7.Name = "filteringRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup7
            // 
            this.interactivitySettingsRibbonPageGroup7.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup7.Name = "interactivitySettingsRibbonPageGroup7";
            // 
            // dashboardItemDesignRibbonPage8
            // 
            this.dashboardItemDesignRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup8,
            this.rangeFilterSeriesTypeRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage8.Name = "dashboardItemDesignRibbonPage8";
            this.dashboardItemDesignRibbonPage8.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup8
            // 
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup8.Name = "commonItemDesignRibbonPageGroup8";
            // 
            // rangeFilterSeriesTypeRibbonPageGroup1
            // 
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.Name = "rangeFilterSeriesTypeRibbonPageGroup1";
            // 
            // choroplethMapToolsRibbonPageCategory1
            // 
            this.choroplethMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.choroplethMapToolsRibbonPageCategory1.Name = "choroplethMapToolsRibbonPageCategory1";
            this.choroplethMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage8,
            this.dashboardItemDesignRibbonPage10});
            this.choroplethMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage8
            // 
            this.dataRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup8,
            this.masterFilterRibbonPageGroup6,
            this.interactivitySettingsRibbonPageGroup8});
            this.dataRibbonPage8.Name = "dataRibbonPage8";
            this.dataRibbonPage8.Visible = false;
            // 
            // filteringRibbonPageGroup8
            // 
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup8.Name = "filteringRibbonPageGroup8";
            // 
            // masterFilterRibbonPageGroup6
            // 
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.Name = "masterFilterRibbonPageGroup6";
            // 
            // interactivitySettingsRibbonPageGroup8
            // 
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup8.Name = "interactivitySettingsRibbonPageGroup8";
            // 
            // dashboardItemDesignRibbonPage10
            // 
            this.dashboardItemDesignRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup10,
            this.mapShapefileRibbonPageGroup1,
            this.mapNavigationPageGroup1,
            this.mapLegendPositionPageGroup1});
            this.dashboardItemDesignRibbonPage10.Name = "dashboardItemDesignRibbonPage10";
            this.dashboardItemDesignRibbonPage10.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup10
            // 
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup10.Name = "commonItemDesignRibbonPageGroup10";
            // 
            // mapShapefileRibbonPageGroup1
            // 
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup1.Name = "mapShapefileRibbonPageGroup1";
            // 
            // mapNavigationPageGroup1
            // 
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup1.Name = "mapNavigationPageGroup1";
            // 
            // mapLegendPositionPageGroup1
            // 
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup1.Name = "mapLegendPositionPageGroup1";
            // 
            // geoPointMapToolsRibbonPageCategory1
            // 
            this.geoPointMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.geoPointMapToolsRibbonPageCategory1.Name = "geoPointMapToolsRibbonPageCategory1";
            this.geoPointMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage9,
            this.dashboardItemDesignRibbonPage11});
            this.geoPointMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage9
            // 
            this.dataRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup9,
            this.masterFilterRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup9,
            this.geoPointMapClusterizationRibbonPageGroup1});
            this.dataRibbonPage9.Name = "dataRibbonPage9";
            this.dataRibbonPage9.Visible = false;
            // 
            // filteringRibbonPageGroup9
            // 
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup9.Name = "filteringRibbonPageGroup9";
            // 
            // masterFilterRibbonPageGroup7
            // 
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.Name = "masterFilterRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup9
            // 
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup9.Name = "interactivitySettingsRibbonPageGroup9";
            // 
            // geoPointMapClusterizationRibbonPageGroup1
            // 
            this.geoPointMapClusterizationRibbonPageGroup1.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup1.Name = "geoPointMapClusterizationRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage11
            // 
            this.dashboardItemDesignRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup11,
            this.mapShapefileRibbonPageGroup2,
            this.mapNavigationPageGroup2});
            this.dashboardItemDesignRibbonPage11.Name = "dashboardItemDesignRibbonPage11";
            this.dashboardItemDesignRibbonPage11.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup11
            // 
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup11.Name = "commonItemDesignRibbonPageGroup11";
            // 
            // mapShapefileRibbonPageGroup2
            // 
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup2.Name = "mapShapefileRibbonPageGroup2";
            // 
            // mapNavigationPageGroup2
            // 
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup2.Name = "mapNavigationPageGroup2";
            // 
            // bubbleMapToolsRibbonPageCategory1
            // 
            this.bubbleMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.bubbleMapToolsRibbonPageCategory1.Name = "bubbleMapToolsRibbonPageCategory1";
            this.bubbleMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage10,
            this.dashboardItemDesignRibbonPage12});
            this.bubbleMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage10
            // 
            this.dataRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup10,
            this.masterFilterRibbonPageGroup8,
            this.interactivitySettingsRibbonPageGroup10,
            this.geoPointMapClusterizationRibbonPageGroup2});
            this.dataRibbonPage10.Name = "dataRibbonPage10";
            this.dataRibbonPage10.Visible = false;
            // 
            // filteringRibbonPageGroup10
            // 
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup10.Name = "filteringRibbonPageGroup10";
            // 
            // masterFilterRibbonPageGroup8
            // 
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.Name = "masterFilterRibbonPageGroup8";
            // 
            // interactivitySettingsRibbonPageGroup10
            // 
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup10.Name = "interactivitySettingsRibbonPageGroup10";
            // 
            // geoPointMapClusterizationRibbonPageGroup2
            // 
            this.geoPointMapClusterizationRibbonPageGroup2.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup2.Name = "geoPointMapClusterizationRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage12
            // 
            this.dashboardItemDesignRibbonPage12.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup12,
            this.mapShapefileRibbonPageGroup3,
            this.mapNavigationPageGroup3,
            this.mapLegendPositionPageGroup2,
            this.weightedLegendPageGroup1});
            this.dashboardItemDesignRibbonPage12.Name = "dashboardItemDesignRibbonPage12";
            this.dashboardItemDesignRibbonPage12.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup12
            // 
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup12.Name = "commonItemDesignRibbonPageGroup12";
            // 
            // mapShapefileRibbonPageGroup3
            // 
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup3.Name = "mapShapefileRibbonPageGroup3";
            // 
            // mapNavigationPageGroup3
            // 
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup3.Name = "mapNavigationPageGroup3";
            // 
            // mapLegendPositionPageGroup2
            // 
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup2.Name = "mapLegendPositionPageGroup2";
            // 
            // weightedLegendPageGroup1
            // 
            this.weightedLegendPageGroup1.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup1.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup1.Name = "weightedLegendPageGroup1";
            // 
            // pieMapToolsRibbonPageCategory1
            // 
            this.pieMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.pieMapToolsRibbonPageCategory1.Name = "pieMapToolsRibbonPageCategory1";
            this.pieMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage11,
            this.dashboardItemDesignRibbonPage13});
            this.pieMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage11
            // 
            this.dataRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup11,
            this.masterFilterRibbonPageGroup9,
            this.interactivitySettingsRibbonPageGroup11,
            this.geoPointMapClusterizationRibbonPageGroup3});
            this.dataRibbonPage11.Name = "dataRibbonPage11";
            this.dataRibbonPage11.Visible = false;
            // 
            // filteringRibbonPageGroup11
            // 
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup11.Name = "filteringRibbonPageGroup11";
            // 
            // masterFilterRibbonPageGroup9
            // 
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.Name = "masterFilterRibbonPageGroup9";
            // 
            // interactivitySettingsRibbonPageGroup11
            // 
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup11.Name = "interactivitySettingsRibbonPageGroup11";
            // 
            // geoPointMapClusterizationRibbonPageGroup3
            // 
            this.geoPointMapClusterizationRibbonPageGroup3.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup3.Name = "geoPointMapClusterizationRibbonPageGroup3";
            // 
            // dashboardItemDesignRibbonPage13
            // 
            this.dashboardItemDesignRibbonPage13.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup13,
            this.mapShapefileRibbonPageGroup4,
            this.mapNavigationPageGroup4,
            this.mapLegendPositionPageGroup3,
            this.weightedLegendPageGroup2,
            this.pieMapOptionsPageGroup1});
            this.dashboardItemDesignRibbonPage13.Name = "dashboardItemDesignRibbonPage13";
            this.dashboardItemDesignRibbonPage13.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup13
            // 
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup13.Name = "commonItemDesignRibbonPageGroup13";
            // 
            // mapShapefileRibbonPageGroup4
            // 
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup4.Name = "mapShapefileRibbonPageGroup4";
            // 
            // mapNavigationPageGroup4
            // 
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup4.Name = "mapNavigationPageGroup4";
            // 
            // mapLegendPositionPageGroup3
            // 
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup3.Name = "mapLegendPositionPageGroup3";
            // 
            // weightedLegendPageGroup2
            // 
            this.weightedLegendPageGroup2.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup2.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup2.Name = "weightedLegendPageGroup2";
            // 
            // pieMapOptionsPageGroup1
            // 
            this.pieMapOptionsPageGroup1.ItemLinks.Add(this.pieMapIsWeightedBarItem1);
            this.pieMapOptionsPageGroup1.Name = "pieMapOptionsPageGroup1";
            // 
            // imageToolsRibbonPageCategory1
            // 
            this.imageToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.imageToolsRibbonPageCategory1.Name = "imageToolsRibbonPageCategory1";
            this.imageToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage6});
            this.imageToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage6
            // 
            this.dashboardItemDesignRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup6,
            this.imageOpenRibbonPageGroup1,
            this.imageSizeModeRibbonPageGroup1,
            this.imageAlignmentRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage6.Name = "dashboardItemDesignRibbonPage6";
            this.dashboardItemDesignRibbonPage6.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup6
            // 
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup6.Name = "commonItemDesignRibbonPageGroup6";
            // 
            // imageOpenRibbonPageGroup1
            // 
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageLoadBarItem1);
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageImportBarItem1);
            this.imageOpenRibbonPageGroup1.Name = "imageOpenRibbonPageGroup1";
            // 
            // imageSizeModeRibbonPageGroup1
            // 
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeClipBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeStretchBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeSqueezeBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeZoomBarItem1);
            this.imageSizeModeRibbonPageGroup1.Name = "imageSizeModeRibbonPageGroup1";
            // 
            // imageAlignmentRibbonPageGroup1
            // 
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.Name = "imageAlignmentRibbonPageGroup1";
            // 
            // textBoxToolsRibbonPageCategory1
            // 
            this.textBoxToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.textBoxToolsRibbonPageCategory1.Name = "textBoxToolsRibbonPageCategory1";
            this.textBoxToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage7});
            this.textBoxToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage7
            // 
            this.dashboardItemDesignRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup7,
            this.textBoxSettingsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage7.Name = "dashboardItemDesignRibbonPage7";
            this.dashboardItemDesignRibbonPage7.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup7
            // 
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup7.Name = "commonItemDesignRibbonPageGroup7";
            // 
            // textBoxSettingsRibbonPageGroup1
            // 
            this.textBoxSettingsRibbonPageGroup1.ItemLinks.Add(this.textBoxEditTextBarItem1);
            this.textBoxSettingsRibbonPageGroup1.Name = "textBoxSettingsRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.fileRibbonPageGroup1,
            this.historyRibbonPageGroup1,
            this.insertRibbonPageGroup1,
            this.itemOperationRibbonPageGroup1,
            this.dashboardDesignRibbonPageGroup1,
            this.quickAccessHistoryRibbonPageGroup1});
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            // 
            // fileRibbonPageGroup1
            // 
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiNew);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiOpen);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiSave);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiSaveAs);
            this.fileRibbonPageGroup1.Name = "fileRibbonPageGroup1";
            this.fileRibbonPageGroup1.Text = "";
            // 
            // historyRibbonPageGroup1
            // 
            this.historyRibbonPageGroup1.ItemLinks.Add(this.undoBarItem1);
            this.historyRibbonPageGroup1.ItemLinks.Add(this.redoBarItem1);
            this.historyRibbonPageGroup1.Name = "historyRibbonPageGroup1";
            // 
            // insertRibbonPageGroup1
            // 
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPivotBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGridBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChartBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPiesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGaugesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertCardsBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChoroplethMapBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGeoPointMapBarSubItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertRangeFilterBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertImageBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxBarItem1);
            this.insertRibbonPageGroup1.Name = "insertRibbonPageGroup1";
            // 
            // itemOperationRibbonPageGroup1
            // 
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.duplicateItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.deleteItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.convertDashboardItemTypeBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.removeDataItemsBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.transposeItemBarItem1);
            this.itemOperationRibbonPageGroup1.Name = "itemOperationRibbonPageGroup1";
            this.itemOperationRibbonPageGroup1.Visible = false;
            // 
            // dashboardDesignRibbonPageGroup1
            // 
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.dashboardTitleBarItem1);
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.setCurrencyCultureBarItem1);
            this.dashboardDesignRibbonPageGroup1.Name = "dashboardDesignRibbonPageGroup1";
            // 
            // quickAccessHistoryRibbonPageGroup1
            // 
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.Name = "quickAccessHistoryRibbonPageGroup1";
            this.quickAccessHistoryRibbonPageGroup1.Visible = false;
            // 
            // dataSourceRibbonPage1
            // 
            this.dataSourceRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.dataSourceRibbonPageGroup1,
            this.dataSourceElementsRibbonPageGroup1,
            this.dataSourceFilteringRibbonPageGroup1});
            this.dataSourceRibbonPage1.Name = "dataSourceRibbonPage1";
            // 
            // dataSourceRibbonPageGroup1
            // 
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.bbiAddDatasource);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.renameDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.deleteDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.serverModeBarItem1);
            this.dataSourceRibbonPageGroup1.Name = "dataSourceRibbonPageGroup1";
            // 
            // dataSourceElementsRibbonPageGroup1
            // 
            this.dataSourceElementsRibbonPageGroup1.ItemLinks.Add(this.addCalculatedFieldBarItem1);
            this.dataSourceElementsRibbonPageGroup1.ItemLinks.Add(this.dashboardParametersBarItem1);
            this.dataSourceElementsRibbonPageGroup1.Name = "dataSourceElementsRibbonPageGroup1";
            // 
            // dataSourceFilteringRibbonPageGroup1
            // 
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.editDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.clearDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.Name = "dataSourceFilteringRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.skinsRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // skinsRibbonPageGroup1
            // 
            this.skinsRibbonPageGroup1.ItemLinks.Add(this.dashboardSkinsBarItem1);
            this.skinsRibbonPageGroup1.Name = "skinsRibbonPageGroup1";
            // 
            // dashboardBarControllerMain
            // 
            this.dashboardBarControllerMain.BarItems.Add(this.fileNewBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.fileOpenBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.fileSaveBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.fileSaveAsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.undoBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.redoBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.newDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.renameDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.deleteDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.serverModeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.addCalculatedFieldBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.dashboardParametersBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editDataSourceFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.clearDataSourceFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertPivotBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGridBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertChartBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertPiesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGaugesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertCardsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertChoroplethMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGeoPointMapBarSubItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGeoPointMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertBubbleMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertPieMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertRangeFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertImageBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertTextBoxBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.duplicateItemBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.deleteItemBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertDashboardItemTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToPivotBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToGridBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToChartBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToPieBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToGaugeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToCardBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToChoroplethMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertGeoPointMapBaseBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToGeoPointMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToBubbleMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToPieMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToRangeFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.removeDataItemsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.transposeItemBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.dashboardTitleBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.setCurrencyCultureBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.dashboardSkinsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.clearFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.masterFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.multipleValuesMasterFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.drillDownBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.ignoreMasterFiltersBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.crossDataSourceFilteringBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.geoPointMapClusterizationBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.showItemCaptionBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editItemNamesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentAutoArrangeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentArrangeInColumnsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentArrangeInRowsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentArrangementCountBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridHorizontalLinesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridVerticalLinesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridMergeCellsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridBandedRowsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridColumnHeadersBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartRotateBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartXAxisSettingsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartYAxisSettingsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartShowLegendBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryChartLegendPositionItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryChartSeriesTypeItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsNoneBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelArgumentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsArgumentAndValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsArgumentAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieTooltipsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsNoneBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentAndValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieStylePieBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieStyleDonutBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieShowCaptionsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleFullCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleHalfCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeShowCaptionsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageLoadBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageImportBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeClipBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeStretchBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeSqueezeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeZoomBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentTopLeftBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentCenterLeftBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentBottomLeftBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentTopCenterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentCenterCenterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentBottomCenterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentTopRightBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentCenterRightBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentBottomRightBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.textBoxEditTextBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pivotInitialStateBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pivotAutoExpandColumnBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pivotAutoExpandRowBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapLoadBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapImportBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapDefaultShapefileBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapWorldCountriesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapEuropeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapAsiaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapNorthAmericaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapSouthAmericaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapAfricaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapUSABarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapCanadaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapLockNavigationBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapFullExtentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapShowLegendBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryMapLegendPositionItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.changeWeightedLegendTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.weightedLegendNoneBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.weightedLegendLinearBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.weightedLegendNestedBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryWeightedLegendPositionItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieMapIsWeightedBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.quickAccessUndoBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.quickAccessRedoBarItem1);
            this.dashboardBarControllerMain.Control = this.dashboardDesignerMain;
            // 
            // appDashboardDSTableAdapter
            // 
            this.appDashboardDSTableAdapter.ClearBeforeFill = true;
            // 
            // dsData
            // 
            this.dsData.DataSetName = "dsData";
            this.dsData.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // appDashboardSchemaTableAdapter
            // 
            this.appDashboardSchemaTableAdapter.ClearBeforeFill = true;
            // 
            // dsDataSource
            // 
            this.dsDataSource.DataSetName = "dsDataSource";
            this.dsDataSource.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // DashboardDesignerUC
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dashboardDesignerMain);
            this.Controls.Add(this.ribbonControlMain);
            this.Controls.Add(this.dashboardBackstageViewControl1);
            this.Name = "DashboardDesignerUC";
            this.Size = new System.Drawing.Size(982, 533);
            this.Load += new System.EventHandler(this.DashboardDesignerUC_Load);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBackstageViewControl1)).EndInit();
            this.dashboardBackstageViewControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarAndDockingControllerMain)).EndInit();
            this.backstageViewClientControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarControllerMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsDataSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(FirmaKarti));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem9      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.ribbonControl1          = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.btnKaydet               = new DevExpress.XtraBars.BarButtonItem();
     this.btnKaydetVeKapat        = new DevExpress.XtraBars.BarButtonItem();
     this.btnDuzenle              = new DevExpress.XtraBars.BarButtonItem();
     this.btnTemizle              = new DevExpress.XtraBars.BarButtonItem();
     this.btnSil                  = new DevExpress.XtraBars.BarButtonItem();
     this.btnYazdir               = new DevExpress.XtraBars.BarButtonItem();
     this.btnEpostaGonder         = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonGalleryBarItem1   = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.ribbonGalleryBarItem2   = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.ribbonGalleryBarItem3   = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.btnYardim               = new DevExpress.XtraBars.BarButtonItem();
     this.btnBilgi                = new DevExpress.XtraBars.BarButtonItem();
     this.btnDestekTalebi         = new DevExpress.XtraBars.BarButtonItem();
     this.toggAktif               = new DevExpress.XtraBars.BarToggleSwitchItem();
     this.barLblKayitID           = new DevExpress.XtraBars.BarStaticItem();
     this.barLblKayitTarihi       = new DevExpress.XtraBars.BarStaticItem();
     this.barLblKayitAktifPasif   = new DevExpress.XtraBars.BarStaticItem();
     this.ribbonPage1             = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup_Duzenle = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup5        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1        = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.labelControl2           = new DevExpress.XtraEditors.LabelControl();
     this.txtFirmaAdi             = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1           = new DevExpress.XtraEditors.LabelControl();
     this.txtFirmaKodu            = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirmaAdi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirmaKodu.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.btnKaydet,
         this.btnKaydetVeKapat,
         this.btnDuzenle,
         this.btnTemizle,
         this.btnSil,
         this.btnYazdir,
         this.btnEpostaGonder,
         this.ribbonGalleryBarItem1,
         this.ribbonGalleryBarItem2,
         this.ribbonGalleryBarItem3,
         this.btnYardim,
         this.btnBilgi,
         this.btnDestekTalebi,
         this.toggAktif,
         this.barLblKayitID,
         this.barLblKayitTarihi,
         this.barLblKayitAktifPasif
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 24;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.Size            = new System.Drawing.Size(706, 143);
     this.ribbonControl1.StatusBar       = this.ribbonStatusBar1;
     this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // btnKaydet
     //
     this.btnKaydet.Caption                 = "Kaydet";
     this.btnKaydet.Id                      = 1;
     this.btnKaydet.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnKaydet.ImageOptions.Image")));
     this.btnKaydet.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnKaydet.ImageOptions.LargeImage")));
     this.btnKaydet.Name                    = "btnKaydet";
     this.btnKaydet.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnKaydet_ItemClick);
     //
     // btnKaydetVeKapat
     //
     this.btnKaydetVeKapat.Caption                 = "Kaydet ve Kapat";
     this.btnKaydetVeKapat.Id                      = 2;
     this.btnKaydetVeKapat.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnKaydetVeKapat.ImageOptions.Image")));
     this.btnKaydetVeKapat.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnKaydetVeKapat.ImageOptions.LargeImage")));
     this.btnKaydetVeKapat.Name                    = "btnKaydetVeKapat";
     this.btnKaydetVeKapat.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnKaydetVeKapat_ItemClick);
     //
     // btnDuzenle
     //
     this.btnDuzenle.Caption                 = "Düzenle";
     this.btnDuzenle.Id                      = 4;
     this.btnDuzenle.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDuzenle.ImageOptions.Image")));
     this.btnDuzenle.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDuzenle.ImageOptions.LargeImage")));
     this.btnDuzenle.Name                    = "btnDuzenle";
     this.btnDuzenle.Visibility              = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnTemizle
     //
     this.btnTemizle.Caption                 = "Temizle";
     this.btnTemizle.Id                      = 5;
     this.btnTemizle.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnTemizle.ImageOptions.Image")));
     this.btnTemizle.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnTemizle.ImageOptions.LargeImage")));
     this.btnTemizle.Name                    = "btnTemizle";
     //
     // btnSil
     //
     this.btnSil.Caption                 = "Sil";
     this.btnSil.Id                      = 6;
     this.btnSil.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnSil.ImageOptions.Image")));
     this.btnSil.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnSil.ImageOptions.LargeImage")));
     this.btnSil.Name                    = "btnSil";
     this.btnSil.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSil_ItemClick);
     //
     // btnYazdir
     //
     this.btnYazdir.ActAsDropDown           = true;
     this.btnYazdir.ButtonStyle             = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.btnYazdir.Caption                 = "Yazdır";
     this.btnYazdir.Id                      = 7;
     this.btnYazdir.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnYazdir.ImageOptions.Image")));
     this.btnYazdir.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnYazdir.ImageOptions.LargeImage")));
     this.btnYazdir.Name                    = "btnYazdir";
     //
     // btnEpostaGonder
     //
     this.btnEpostaGonder.Caption                 = "E-Posta Gönder";
     this.btnEpostaGonder.Id                      = 10;
     this.btnEpostaGonder.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnEpostaGonder.ImageOptions.Image")));
     this.btnEpostaGonder.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnEpostaGonder.ImageOptions.LargeImage")));
     this.btnEpostaGonder.Name                    = "btnEpostaGonder";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     galleryItemGroup1.Caption       = "Group5";
     galleryItem1.Caption            = "Stok Yetkiler";
     galleryItem1.Description        = "Stok Yetkiler";
     galleryItem1.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     galleryItem2.Caption            = "CRM Yetkileri";
     galleryItem2.Description        = "CRM Yetkileri";
     galleryItem2.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
     galleryItem3.Caption            = "Personel Yetkileri";
     galleryItem3.Description        = "Personel Yetkileri";
     galleryItem3.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.ribbonGalleryBarItem1.Gallery.ShowItemText = true;
     this.ribbonGalleryBarItem1.Id   = 11;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // ribbonGalleryBarItem2
     //
     this.ribbonGalleryBarItem2.Caption = "InplaceGallery1";
     //
     //
     //
     galleryItemGroup2.Caption = "Group3";
     galleryItem4.Caption      = "Item3";
     galleryItem5.Caption      = "Item4";
     galleryItem6.Caption      = "Item5";
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem4,
         galleryItem5,
         galleryItem6
     });
     this.ribbonGalleryBarItem2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup2
     });
     this.ribbonGalleryBarItem2.Id   = 12;
     this.ribbonGalleryBarItem2.Name = "ribbonGalleryBarItem2";
     //
     // ribbonGalleryBarItem3
     //
     this.ribbonGalleryBarItem3.Caption = "InplaceGallery1";
     //
     //
     //
     galleryItemGroup3.Caption = "Group4";
     galleryItem7.Caption      = "Item6";
     galleryItem8.Caption      = "Item7";
     galleryItem9.Caption      = "Item8";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem7,
         galleryItem8,
         galleryItem9
     });
     this.ribbonGalleryBarItem3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup3
     });
     this.ribbonGalleryBarItem3.Id   = 1;
     this.ribbonGalleryBarItem3.Name = "ribbonGalleryBarItem3";
     //
     // btnYardim
     //
     this.btnYardim.Caption                 = "Yardım";
     this.btnYardim.Id                      = 2;
     this.btnYardim.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnYardim.ImageOptions.Image")));
     this.btnYardim.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnYardim.ImageOptions.LargeImage")));
     this.btnYardim.Name                    = "btnYardim";
     //
     // btnBilgi
     //
     this.btnBilgi.Caption                 = "Bilgi";
     this.btnBilgi.Id                      = 3;
     this.btnBilgi.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnBilgi.ImageOptions.Image")));
     this.btnBilgi.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnBilgi.ImageOptions.LargeImage")));
     this.btnBilgi.Name                    = "btnBilgi";
     //
     // btnDestekTalebi
     //
     this.btnDestekTalebi.Caption                 = "Destek Talebi";
     this.btnDestekTalebi.Id                      = 4;
     this.btnDestekTalebi.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDestekTalebi.ImageOptions.Image")));
     this.btnDestekTalebi.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDestekTalebi.ImageOptions.LargeImage")));
     this.btnDestekTalebi.Name                    = "btnDestekTalebi";
     //
     // toggAktif
     //
     this.toggAktif.BindableChecked = true;
     this.toggAktif.Caption         = "Aktif";
     this.toggAktif.Checked         = true;
     this.toggAktif.Id   = 12;
     this.toggAktif.Name = "toggAktif";
     //
     // barLblKayitID
     //
     this.barLblKayitID.Caption                 = "KayitID";
     this.barLblKayitID.Description             = "KayitID";
     this.barLblKayitID.Id                      = 19;
     this.barLblKayitID.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barLblKayitID.ImageOptions.Image")));
     this.barLblKayitID.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barLblKayitID.ImageOptions.LargeImage")));
     this.barLblKayitID.Name                    = "barLblKayitID";
     //
     // barLblKayitTarihi
     //
     this.barLblKayitTarihi.Caption                 = "KayitTarihi";
     this.barLblKayitTarihi.Description             = "KayitTarihi";
     this.barLblKayitTarihi.Id                      = 20;
     this.barLblKayitTarihi.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barLblKayitTarihi.ImageOptions.Image")));
     this.barLblKayitTarihi.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barLblKayitTarihi.ImageOptions.LargeImage")));
     this.barLblKayitTarihi.Name                    = "barLblKayitTarihi";
     //
     // barLblKayitAktifPasif
     //
     this.barLblKayitAktifPasif.Alignment   = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barLblKayitAktifPasif.Caption     = "KayitAktifPasif";
     this.barLblKayitAktifPasif.Description = "KayitAktifPasif";
     this.barLblKayitAktifPasif.Id          = 21;
     this.barLblKayitAktifPasif.ImageOptions.DisabledImage      = ((System.Drawing.Image)(resources.GetObject("barLblKayitAktifPasif.ImageOptions.DisabledImage")));
     this.barLblKayitAktifPasif.ImageOptions.DisabledLargeImage = ((System.Drawing.Image)(resources.GetObject("barLblKayitAktifPasif.ImageOptions.DisabledLargeImage")));
     this.barLblKayitAktifPasif.Name = "barLblKayitAktifPasif";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup_Duzenle,
         this.ribbonPageGroup3,
         this.ribbonPageGroup4,
         this.ribbonPageGroup5,
         this.ribbonPageGroup6
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "FİRMA KARTI";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.btnKaydet);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnKaydetVeKapat);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "Kaydet";
     //
     // ribbonPageGroup_Duzenle
     //
     this.ribbonPageGroup_Duzenle.ItemLinks.Add(this.btnDuzenle);
     this.ribbonPageGroup_Duzenle.ItemLinks.Add(this.btnTemizle);
     this.ribbonPageGroup_Duzenle.Name = "ribbonPageGroup_Duzenle";
     this.ribbonPageGroup_Duzenle.ShowCaptionButton = false;
     this.ribbonPageGroup_Duzenle.Text = "Düzenle";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.btnSil);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.ShowCaptionButton = false;
     this.ribbonPageGroup3.Text = "Sil";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.btnYazdir);
     this.ribbonPageGroup4.ItemLinks.Add(this.btnEpostaGonder);
     this.ribbonPageGroup4.ItemLinks.Add(this.toggAktif);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.ShowCaptionButton = false;
     this.ribbonPageGroup4.Text = "İşlemler";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.ribbonGalleryBarItem1);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.ShowCaptionButton = false;
     this.ribbonPageGroup5.Text    = "Yetkiler";
     this.ribbonPageGroup5.Visible = false;
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.btnYardim);
     this.ribbonPageGroup6.ItemLinks.Add(this.btnDestekTalebi);
     this.ribbonPageGroup6.ItemLinks.Add(this.btnBilgi);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.ShowCaptionButton = false;
     this.ribbonPageGroup6.Text = "Barduck CRM";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barLblKayitID);
     this.ribbonStatusBar1.ItemLinks.Add(this.barLblKayitTarihi);
     this.ribbonStatusBar1.ItemLinks.Add(this.barLblKayitAktifPasif);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 221);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(706, 31);
     //
     // labelControl2
     //
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.Location     = new System.Drawing.Point(12, 182);
     this.labelControl2.Name         = "labelControl2";
     this.labelControl2.Size         = new System.Drawing.Size(130, 22);
     this.labelControl2.TabIndex     = 29;
     this.labelControl2.Text         = "Firma Adı";
     //
     // txtFirmaAdi
     //
     this.txtFirmaAdi.Location    = new System.Drawing.Point(148, 183);
     this.txtFirmaAdi.MenuManager = this.ribbonControl1;
     this.txtFirmaAdi.Name        = "txtFirmaAdi";
     this.txtFirmaAdi.Size        = new System.Drawing.Size(279, 20);
     this.txtFirmaAdi.TabIndex    = 30;
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.Location     = new System.Drawing.Point(12, 156);
     this.labelControl1.Name         = "labelControl1";
     this.labelControl1.Size         = new System.Drawing.Size(130, 22);
     this.labelControl1.TabIndex     = 27;
     this.labelControl1.Text         = "Firma Kodu";
     //
     // txtFirmaKodu
     //
     this.txtFirmaKodu.Location    = new System.Drawing.Point(148, 157);
     this.txtFirmaKodu.MenuManager = this.ribbonControl1;
     this.txtFirmaKodu.Name        = "txtFirmaKodu";
     this.txtFirmaKodu.Size        = new System.Drawing.Size(279, 20);
     this.txtFirmaKodu.TabIndex    = 28;
     //
     // FirmaKarti
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(706, 252);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.txtFirmaAdi);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.txtFirmaKodu);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FirmaKarti";
     this.Ribbon        = this.ribbonControl1;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.StatusBar     = this.ribbonStatusBar1;
     this.Text          = "FirmaKarti";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FirmaKarti_FormClosing);
     this.Load         += new System.EventHandler(this.FirmaKarti_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirmaAdi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirmaKodu.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem1      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(KeToanTongHop));
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem2      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem4      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem5      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem6      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem7      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem8      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem9      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem10     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem11     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem12     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem13     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem14     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem15     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem16     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem17     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem18     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem19     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem20     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem21     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem22     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem23     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem24     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem25     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem26     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem27     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem28     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     DevExpress.XtraBars.Ribbon.GalleryItem         galleryItem29     = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.galleryControl2       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient2 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.separatorControl1     = new DevExpress.XtraEditors.SeparatorControl();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).BeginInit();
     this.galleryControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).BeginInit();
     this.SuspendLayout();
     //
     // galleryControl2
     //
     this.galleryControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.galleryControl2.Controls.Add(this.galleryControlClient2);
     this.galleryControl2.DesignGalleryGroupIndex = 0;
     this.galleryControl2.DesignGalleryItemIndex  = 0;
     //
     //
     //
     this.galleryControl2.Gallery.AllowFilter    = false;
     this.galleryControl2.Gallery.AutoFitColumns = false;
     this.galleryControl2.Gallery.AutoSize       = DevExpress.XtraBars.Ribbon.GallerySizeMode.None;
     this.galleryControl2.Gallery.BackColor      = System.Drawing.SystemColors.GradientInactiveCaption;
     this.galleryControl2.Gallery.CheckDrawMode  = DevExpress.XtraBars.Ribbon.Gallery.CheckDrawMode.OnlyImage;
     this.galleryControl2.Gallery.ColumnCount    = 10;
     this.galleryControl2.Gallery.FixedImageSize = false;
     galleryItemGroup1.Caption       = "DỮ LIỆU";
     galleryItem1.Caption            = "Phiếu mua dịch vụ";
     galleryItem1.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     galleryItem1.Value                                    = 1;
     galleryItem2.Caption                                  = "Phiếu bù trừ công nợ";
     galleryItem2.ImageOptions.Image                       = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
     galleryItem2.Value                                    = 2;
     galleryItem3.Caption                                  = "Phiếu tự động";
     galleryItem3.ImageOptions.SvgImage                    = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     galleryItem3.Value                                    = 3;
     galleryItem4.AppearanceCaption.Normal.Font            = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
     galleryItem4.AppearanceCaption.Normal.Options.UseFont = true;
     galleryItem4.Caption                                  = "Phiếu kế toán khác";
     galleryItem4.ImageOptions.SvgImage                    = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage1")));
     galleryItem4.Value                                    = 0;
     galleryItem5.Caption                                  = "Thanh toán cho các chứng từ";
     galleryItem5.ImageOptions.Image                       = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
     galleryItem6.Caption                                  = "Đánh giá chênh lệch tỉ giá cuối kỳ";
     galleryItem6.ImageOptions.Image                       = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
     galleryItem7.Caption                                  = "Tính chênh lệch tỉ giá bình quân";
     galleryItem7.ImageOptions.Image                       = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
     galleryItem8.Caption                                  = "Bút toán kết chuyển cuối kỳ";
     galleryItem8.ImageOptions.Image                       = ((System.Drawing.Image)(resources.GetObject("resource.Image5")));
     galleryItem8.Tag                 = "ktth.btkc";
     galleryItem9.Caption             = "Lập kế hoạch doanh thu";
     galleryItem9.ImageOptions.Image  = ((System.Drawing.Image)(resources.GetObject("resource.Image6")));
     galleryItem10.Caption            = "Lập kế hoạch chi phí";
     galleryItem10.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image7")));
     galleryItem11.Caption            = "Số dư hạn thanh toán";
     galleryItem11.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image8")));
     galleryItem12.Caption            = "Số dư đầu kỳ kế toán";
     galleryItem12.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image9")));
     galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem1,
         galleryItem2,
         galleryItem3,
         galleryItem4,
         galleryItem5,
         galleryItem6,
         galleryItem7,
         galleryItem8,
         galleryItem9,
         galleryItem10,
         galleryItem11,
         galleryItem12
     });
     galleryItemGroup2.Caption        = "BÁO CÁO";
     galleryItem13.Caption            = "Sổ sách kế toán";
     galleryItem13.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image10")));
     galleryItem13.Value              = 6;
     galleryItem14.Caption            = "Báo cáo thuế";
     galleryItem14.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image11")));
     galleryItem15.Caption            = "Báo cáo chi phí";
     galleryItem15.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image12")));
     galleryItem16.Caption            = "Báo cáo công nợ";
     galleryItem16.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image13")));
     galleryItem17.Caption            = "Báo cáo hợp đồng";
     galleryItem17.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image14")));
     galleryItem18.Caption            = "Báo cáo tài chính";
     galleryItem18.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image15")));
     galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem13,
         galleryItem14,
         galleryItem15,
         galleryItem16,
         galleryItem17,
         galleryItem18
     });
     galleryItemGroup3.Caption        = "DANH MỤC";
     galleryItem19.Caption            = "Danh mục nghiệp vụ";
     galleryItem19.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image16")));
     galleryItem19.Tag     = "DMNVU";
     galleryItem19.Value   = 8;
     galleryItem20.Caption = "Danh muc tài khoản";
     galleryItem20.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage2")));
     galleryItem20.Tag                = "DMTK";
     galleryItem20.Value              = 9;
     galleryItem21.Caption            = "Danh mục đối tượng";
     galleryItem21.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image17")));
     galleryItem21.Tag                = "DMDT";
     galleryItem21.Value              = 12;
     galleryItem22.Caption            = "Danh mục nhóm hợp đồng";
     galleryItem22.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image18")));
     galleryItem22.Tag                = "DMNHHD";
     galleryItem23.Caption            = "Danh mục bộ phận";
     galleryItem23.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image19")));
     galleryItem23.Tag                = "DMBP";
     galleryItem23.Value              = 13;
     galleryItem24.Caption            = "Danh mục nhóm nhân viên";
     galleryItem24.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image20")));
     galleryItem24.Tag                = "DMNHNV";
     galleryItem24.Value              = 15;
     galleryItem25.Caption            = "Danh mục khoản mục";
     galleryItem25.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image21")));
     galleryItem25.Tag                = "DMKM";
     galleryItem25.Value              = 16;
     galleryItem26.Caption            = "Danh mục thuế";
     galleryItem26.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image22")));
     galleryItem26.Tag                = "DMTHUE";
     galleryItem27.Caption            = "Danh mục nhóm sản phẩm";
     galleryItem27.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image23")));
     galleryItem27.Tag                = "DMNHSP";
     galleryItem28.Caption            = "Danh mục phân loại";
     galleryItem28.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image24")));
     galleryItem28.Tag                = "DMPL";
     galleryItem29.Caption            = "Danh mục bảng giá";
     galleryItem29.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image25")));
     galleryItem29.Tag                = "DMBG";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem19,
         galleryItem20,
         galleryItem21,
         galleryItem22,
         galleryItem23,
         galleryItem24,
         galleryItem25,
         galleryItem26,
         galleryItem27,
         galleryItem28,
         galleryItem29
     });
     this.galleryControl2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2,
         galleryItemGroup3
     });
     this.galleryControl2.Gallery.RowCount      = 5;
     this.galleryControl2.Gallery.ShowItemText  = true;
     this.galleryControl2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
     this.galleryControl2.Gallery.ItemClick    += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControl2_Gallery_ItemClick);
     this.galleryControl2.Location = new System.Drawing.Point(0, 50);
     this.galleryControl2.Name     = "galleryControl2";
     this.galleryControl2.Size     = new System.Drawing.Size(954, 498);
     this.galleryControl2.TabIndex = 9;
     this.galleryControl2.Text     = "galleryControl2";
     //
     // galleryControlClient2
     //
     this.galleryControlClient2.GalleryControl = this.galleryControl2;
     this.galleryControlClient2.Location       = new System.Drawing.Point(2, 2);
     this.galleryControlClient2.Size           = new System.Drawing.Size(933, 494);
     //
     // separatorControl1
     //
     this.separatorControl1.Location = new System.Drawing.Point(0, 35);
     this.separatorControl1.Margin   = new System.Windows.Forms.Padding(0);
     this.separatorControl1.Name     = "separatorControl1";
     this.separatorControl1.Padding  = new System.Windows.Forms.Padding(0);
     this.separatorControl1.Size     = new System.Drawing.Size(400, 15);
     this.separatorControl1.TabIndex = 13;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ButtonShadow;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(400, 35);
     this.label1.TabIndex  = 12;
     this.label1.Text      = "KẾ TOÁN TỔNG HỢP";
     //
     // KeToanTongHop
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.separatorControl1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.galleryControl2);
     this.Name = "KeToanTongHop";
     this.Size = new System.Drawing.Size(954, 548);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl2)).EndInit();
     this.galleryControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 53
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.backstageViewControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
            this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.helpControl1 = new DevExpress.ProductsDemo.Win.Controls.HelpControl();
            this.backstageViewClientControl3 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.printControl1 = new DevExpress.ProductsDemo.Win.Controls.PrintControl();
            this.backstageViewClientControl4 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.exportControl1 = new DevExpress.ProductsDemo.Win.Controls.ExportControl();
            this.bvbiSaveAs = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.bvbiSaveAttachment = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.bvtiInfo = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.bvtiPrint = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.bvtiExport = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            this.bvbiExit = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bsiNavigation = new DevExpress.XtraBars.BarSubItem();
            this.bsiInfo = new DevExpress.XtraBars.BarStaticItem();
            this.beiZoom = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.bbiNormal = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReading = new DevExpress.XtraBars.BarButtonItem();
            this.bsiTemp = new DevExpress.XtraBars.BarStaticItem();
            this.bbiManageView = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSaveCurrentView = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiCurrentViewTasks = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.bbiTodayFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiTomorrowFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiThisWeekFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNextWeekFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNoDateFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiCustomFlag = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewDevice = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditDevice = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteDevice = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteContact = new DevExpress.XtraBars.BarButtonItem();
            this.bbiFlipLayout = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiCurrentView = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.biPrintPreview = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReminder = new DevExpress.XtraBars.BarButtonItem();
            this.bbiColorMixer = new DevExpress.XtraBars.BarButtonItem();
            this.bbiLoginHistorySearch = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewSno = new DevExpress.XtraBars.BarButtonItem();
            this.bbiEditSno = new DevExpress.XtraBars.BarButtonItem();
            this.bbiDeleteSno = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewCmp = new DevExpress.XtraBars.BarButtonItem();
            this.bbiNewDon = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.bbiComSetup = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReadingStart = new DevExpress.XtraBars.BarButtonItem();
            this.bbiReadingStop = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.bbiG02I01 = new DevExpress.XtraBars.BarButtonItem();
            this.bbiG02I02 = new DevExpress.XtraBars.BarButtonItem();
            this.bbiG02I03 = new DevExpress.XtraBars.BarButtonItem();
            this.rpContacts = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgContacts = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgCurrentView = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage11 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpTasks = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgTasks = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage12 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPage13 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPage14 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPage10 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage4 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage7 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPage8 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPage9 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpView = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgNavigation = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.prgAppearance = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgPrint = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.repositoryItemDuration1 = new DevExpress.XtraScheduler.UI.RepositoryItemDuration();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup1Item1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item2 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item3 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item4 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item5 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item6 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item7 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item8 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup1Item9 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup2Item1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup2Item4 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup3Item1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup4Item1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup5Item1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup5Item2 = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiGrid = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiSpreadsheet = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiWord = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiSnap = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiReports = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiPivot = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiCharts = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiMaps = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiScheduler = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiGridCardView = new DevExpress.XtraNavBar.NavBarItem();
            this.nbiPdf = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup2Item2 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroup2Item3 = new DevExpress.XtraNavBar.NavBarItem();
            this.pcMain = new DevExpress.XtraEditors.PanelControl();
            this.pmFlagStatus = new DevExpress.XtraBars.PopupMenu(this.components);
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage5 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPage6 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.backstageViewControl1)).BeginInit();
            this.backstageViewControl1.SuspendLayout();
            this.backstageViewClientControl1.SuspendLayout();
            this.backstageViewClientControl3.SuspendLayout();
            this.backstageViewClientControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDuration1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcMain)).BeginInit();
            this.pcMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pmFlagStatus)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.backstageViewControl1;
            this.ribbonControl1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories1"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories2"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories3"))),
            ((DevExpress.XtraBars.BarManagerCategory)(resources.GetObject("ribbonControl1.Categories4")))});
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.rgbiSkins,
            this.bsiNavigation,
            this.bsiInfo,
            this.beiZoom,
            this.bbiNormal,
            this.bbiReading,
            this.bsiTemp,
            this.bbiManageView,
            this.bbiSaveCurrentView,
            this.rgbiCurrentViewTasks,
            this.bbiTodayFlag,
            this.bbiTomorrowFlag,
            this.bbiThisWeekFlag,
            this.bbiNextWeekFlag,
            this.bbiNoDateFlag,
            this.bbiCustomFlag,
            this.bbiNewDevice,
            this.bbiEditDevice,
            this.bbiDeleteDevice,
            this.bbiNewContact,
            this.bbiEditContact,
            this.bbiDeleteContact,
            this.bbiFlipLayout,
            this.rgbiCurrentView,
            this.biPrintPreview,
            this.bbiReminder,
            this.bbiColorMixer,
            this.bbiLoginHistorySearch,
            this.barButtonItem2,
            this.barButtonItem3,
            this.bbiNewSno,
            this.bbiEditSno,
            this.bbiDeleteSno,
            this.barButtonItem7,
            this.barButtonItem8,
            this.barButtonItem9,
            this.bbiNewCmp,
            this.bbiNewDon,
            this.barSubItem1,
            this.bbiComSetup,
            this.bbiReadingStart,
            this.bbiReadingStop,
            this.barButtonItem6,
            this.bbiG02I01,
            this.bbiG02I02,
            this.bbiG02I03});
            resources.ApplyResources(this.ribbonControl1, "ribbonControl1");
            this.ribbonControl1.MaxItemId = 4;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.rpContacts,
            this.ribbonPage1,
            this.ribbonPage2,
            this.ribbonPage3,
            this.ribbonPage11,
            this.rpTasks,
            this.ribbonPage12,
            this.ribbonPage13,
            this.ribbonPage14,
            this.ribbonPage10,
            this.ribbonPage4,
            this.ribbonPage7,
            this.ribbonPage8,
            this.ribbonPage9,
            this.rpView});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemZoomTrackBar1,
            this.repositoryItemSpinEdit1,
            this.repositoryItemDuration1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.TransparentEditors = true;
            this.ribbonControl1.BeforeApplicationButtonContentControlShow += new System.EventHandler(this.ribbonControl1_BeforeApplicationButtonContentControlShow);
            this.ribbonControl1.ShowCustomizationMenu += new DevExpress.XtraBars.Ribbon.RibbonCustomizationMenuEventHandler(this.ribbonControl1_ShowCustomizationMenu);
            // 
            // backstageViewControl1
            // 
            this.backstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl1);
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl3);
            this.backstageViewControl1.Controls.Add(this.backstageViewClientControl4);
            this.backstageViewControl1.Items.Add(this.bvbiSaveAs);
            this.backstageViewControl1.Items.Add(this.bvbiSaveAttachment);
            this.backstageViewControl1.Items.Add(this.bvtiInfo);
            this.backstageViewControl1.Items.Add(this.bvtiPrint);
            this.backstageViewControl1.Items.Add(this.bvtiExport);
            this.backstageViewControl1.Items.Add(this.bvbiExit);
            resources.ApplyResources(this.backstageViewControl1, "backstageViewControl1");
            this.backstageViewControl1.Name = "backstageViewControl1";
            this.backstageViewControl1.Ribbon = this.ribbonControl1;
            this.backstageViewControl1.SelectedTab = this.bvtiInfo;
            this.backstageViewControl1.SelectedTabIndex = 2;
            this.backstageViewControl1.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.backstageViewControl1_ItemClick);
            // 
            // backstageViewClientControl1
            // 
            this.backstageViewClientControl1.Controls.Add(this.helpControl1);
            resources.ApplyResources(this.backstageViewClientControl1, "backstageViewClientControl1");
            this.backstageViewClientControl1.Name = "backstageViewClientControl1";
            // 
            // helpControl1
            // 
            resources.ApplyResources(this.helpControl1, "helpControl1");
            this.helpControl1.ForeColor = System.Drawing.Color.Transparent;
            this.helpControl1.Name = "helpControl1";
            // 
            // backstageViewClientControl3
            // 
            this.backstageViewClientControl3.Controls.Add(this.printControl1);
            resources.ApplyResources(this.backstageViewClientControl3, "backstageViewClientControl3");
            this.backstageViewClientControl3.Name = "backstageViewClientControl3";
            // 
            // printControl1
            // 
            resources.ApplyResources(this.printControl1, "printControl1");
            this.printControl1.ForeColor = System.Drawing.Color.Transparent;
            this.printControl1.Name = "printControl1";
            // 
            // backstageViewClientControl4
            // 
            this.backstageViewClientControl4.Controls.Add(this.exportControl1);
            resources.ApplyResources(this.backstageViewClientControl4, "backstageViewClientControl4");
            this.backstageViewClientControl4.Name = "backstageViewClientControl4";
            // 
            // exportControl1
            // 
            resources.ApplyResources(this.exportControl1, "exportControl1");
            this.exportControl1.ForeColor = System.Drawing.Color.Transparent;
            this.exportControl1.Name = "exportControl1";
            // 
            // bvbiSaveAs
            // 
            resources.ApplyResources(this.bvbiSaveAs, "bvbiSaveAs");
            this.bvbiSaveAs.Name = "bvbiSaveAs";
            // 
            // bvbiSaveAttachment
            // 
            resources.ApplyResources(this.bvbiSaveAttachment, "bvbiSaveAttachment");
            this.bvbiSaveAttachment.Name = "bvbiSaveAttachment";
            // 
            // bvtiInfo
            // 
            resources.ApplyResources(this.bvtiInfo, "bvtiInfo");
            this.bvtiInfo.ContentControl = this.backstageViewClientControl1;
            this.bvtiInfo.Name = "bvtiInfo";
            this.bvtiInfo.Selected = true;
            // 
            // bvtiPrint
            // 
            resources.ApplyResources(this.bvtiPrint, "bvtiPrint");
            this.bvtiPrint.ContentControl = this.backstageViewClientControl3;
            this.bvtiPrint.Name = "bvtiPrint";
            this.bvtiPrint.Selected = false;
            this.bvtiPrint.SelectedChanged += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.bvtiPrint_SelectedChanged);
            // 
            // bvtiExport
            // 
            resources.ApplyResources(this.bvtiExport, "bvtiExport");
            this.bvtiExport.ContentControl = this.backstageViewClientControl4;
            this.bvtiExport.Name = "bvtiExport";
            this.bvtiExport.Selected = false;
            // 
            // bvbiExit
            // 
            resources.ApplyResources(this.bvbiExit, "bvbiExit");
            this.bvbiExit.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Close_16x16;
            this.bvbiExit.Name = "bvbiExit";
            this.bvbiExit.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(this.bvbiExit_ItemClick);
            // 
            // rgbiSkins
            // 
            resources.ApplyResources(this.rgbiSkins, "rgbiSkins");
            this.rgbiSkins.Id = 1;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // bsiNavigation
            // 
            resources.ApplyResources(this.bsiNavigation, "bsiNavigation");
            this.bsiNavigation.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NavigationBar_16x16;
            this.bsiNavigation.Id = 16;
            this.bsiNavigation.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NavigationBar_32x32;
            this.bsiNavigation.Name = "bsiNavigation";
            // 
            // bsiInfo
            // 
            this.bsiInfo.Id = 37;
            this.bsiInfo.Name = "bsiInfo";
            this.bsiInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // beiZoom
            // 
            this.beiZoom.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.beiZoom.Edit = this.repositoryItemZoomTrackBar1;
            this.beiZoom.EditValue = 10;
            this.beiZoom.Id = 38;
            this.beiZoom.Name = "beiZoom";
            resources.ApplyResources(this.beiZoom, "beiZoom");
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.Alignment = DevExpress.Utils.VertAlignment.Center;
            this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemZoomTrackBar1.Maximum = 19;
            this.repositoryItemZoomTrackBar1.Middle = 5;
            this.repositoryItemZoomTrackBar1.Minimum = 1;
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            // 
            // bbiNormal
            // 
            this.bbiNormal.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiNormal.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.bbiNormal.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.normal;
            resources.ApplyResources(this.bbiNormal, "bbiNormal");
            this.bbiNormal.Id = 39;
            this.bbiNormal.Name = "bbiNormal";
            this.bbiNormal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNormal_ItemClick);
            // 
            // bbiReading
            // 
            this.bbiReading.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiReading.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.bbiReading.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.reading;
            resources.ApplyResources(this.bbiReading, "bbiReading");
            this.bbiReading.Id = 40;
            this.bbiReading.Name = "bbiReading";
            this.bbiReading.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiReading_ItemClick);
            // 
            // bsiTemp
            // 
            this.bsiTemp.Id = 41;
            this.bsiTemp.Name = "bsiTemp";
            this.bsiTemp.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // bbiManageView
            // 
            resources.ApplyResources(this.bbiManageView, "bbiManageView");
            this.bbiManageView.Enabled = false;
            this.bbiManageView.Id = 42;
            this.bbiManageView.Name = "bbiManageView";
            // 
            // bbiSaveCurrentView
            // 
            resources.ApplyResources(this.bbiSaveCurrentView, "bbiSaveCurrentView");
            this.bbiSaveCurrentView.Enabled = false;
            this.bbiSaveCurrentView.Id = 43;
            this.bbiSaveCurrentView.Name = "bbiSaveCurrentView";
            // 
            // rgbiCurrentViewTasks
            // 
            resources.ApplyResources(this.rgbiCurrentViewTasks, "rgbiCurrentViewTasks");
            // 
            // 
            // 
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Disabled.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.rgbiCurrentViewTasks.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentViewTasks.Gallery.ColumnCount = 4;
            galleryItem1.Checked = true;
            galleryItem1.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ListByDate_32x32;
            galleryItem1.Tag = "TaskList";
            galleryItem2.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.ToDoList_32x32;
            galleryItem2.Tag = "TaskToDoList";
            galleryItem3.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Completed_32x32;
            galleryItem3.Tag = "TaskCompleted";
            galleryItem4.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Today_32x32;
            galleryItem4.Tag = "TaskToday";
            galleryItem5.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Prioritized_32x32;
            galleryItem5.Tag = "TaskPrioritized";
            galleryItem6.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Overdue_32x32;
            galleryItem6.Tag = "TaskOverdue";
            galleryItem7.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.List_32x32;
            galleryItem7.Tag = "TaskSimpleList";
            galleryItem8.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Deferred_32x32;
            galleryItem8.Tag = "TaskDeferred";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8});
            this.rgbiCurrentViewTasks.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.rgbiCurrentViewTasks.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.rgbiCurrentViewTasks.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.rgbiCurrentViewTasks.Gallery.RowCount = 2;
            this.rgbiCurrentViewTasks.Gallery.ShowItemText = true;
            this.rgbiCurrentViewTasks.Id = 44;
            this.rgbiCurrentViewTasks.Name = "rgbiCurrentViewTasks";
            this.rgbiCurrentViewTasks.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiCurrentViewTasks_GalleryItemClick);
            this.rgbiCurrentViewTasks.GalleryInitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiCurrentView_GalleryInitDropDownGallery);
            // 
            // bbiTodayFlag
            // 
            this.bbiTodayFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiTodayFlag, "bbiTodayFlag");
            this.bbiTodayFlag.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Today_Flag;
            this.bbiTodayFlag.Id = 45;
            this.bbiTodayFlag.Name = "bbiTodayFlag";
            // 
            // bbiTomorrowFlag
            // 
            this.bbiTomorrowFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiTomorrowFlag, "bbiTomorrowFlag");
            this.bbiTomorrowFlag.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Tomorrow_Flag;
            this.bbiTomorrowFlag.Id = 46;
            this.bbiTomorrowFlag.Name = "bbiTomorrowFlag";
            // 
            // bbiThisWeekFlag
            // 
            this.bbiThisWeekFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiThisWeekFlag, "bbiThisWeekFlag");
            this.bbiThisWeekFlag.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.ThisWeek_Flag;
            this.bbiThisWeekFlag.Id = 47;
            this.bbiThisWeekFlag.Name = "bbiThisWeekFlag";
            // 
            // bbiNextWeekFlag
            // 
            this.bbiNextWeekFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiNextWeekFlag, "bbiNextWeekFlag");
            this.bbiNextWeekFlag.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NextWeek_Flag;
            this.bbiNextWeekFlag.Id = 48;
            this.bbiNextWeekFlag.Name = "bbiNextWeekFlag";
            // 
            // bbiNoDateFlag
            // 
            this.bbiNoDateFlag.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            resources.ApplyResources(this.bbiNoDateFlag, "bbiNoDateFlag");
            this.bbiNoDateFlag.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NoDate_Flag;
            this.bbiNoDateFlag.Id = 49;
            this.bbiNoDateFlag.Name = "bbiNoDateFlag";
            // 
            // bbiCustomFlag
            // 
            resources.ApplyResources(this.bbiCustomFlag, "bbiCustomFlag");
            this.bbiCustomFlag.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Custom_Flag;
            this.bbiCustomFlag.Id = 50;
            this.bbiCustomFlag.Name = "bbiCustomFlag";
            // 
            // bbiNewDevice
            // 
            resources.ApplyResources(this.bbiNewDevice, "bbiNewDevice");
            this.bbiNewDevice.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NewTask_16x16;
            this.bbiNewDevice.Id = 54;
            this.bbiNewDevice.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NewTask_32x32;
            this.bbiNewDevice.Name = "bbiNewDevice";
            // 
            // bbiEditDevice
            // 
            resources.ApplyResources(this.bbiEditDevice, "bbiEditDevice");
            this.bbiEditDevice.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.EditTask_16x16;
            this.bbiEditDevice.Id = 55;
            this.bbiEditDevice.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.EditTask_32x32;
            this.bbiEditDevice.Name = "bbiEditDevice";
            // 
            // bbiDeleteDevice
            // 
            resources.ApplyResources(this.bbiDeleteDevice, "bbiDeleteDevice");
            this.bbiDeleteDevice.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteDevice.Id = 56;
            this.bbiDeleteDevice.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteDevice.Name = "bbiDeleteDevice";
            // 
            // bbiNewContact
            // 
            resources.ApplyResources(this.bbiNewContact, "bbiNewContact");
            this.bbiNewContact.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiNewContact.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NewContact_16x16;
            this.bbiNewContact.Id = 97;
            this.bbiNewContact.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.NewContact_32x32;
            this.bbiNewContact.Name = "bbiNewContact";
            // 
            // bbiEditContact
            // 
            resources.ApplyResources(this.bbiEditContact, "bbiEditContact");
            this.bbiEditContact.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiEditContact.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.EditContact_16x16;
            this.bbiEditContact.Id = 98;
            this.bbiEditContact.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.EditContact_32x32;
            this.bbiEditContact.Name = "bbiEditContact";
            // 
            // bbiDeleteContact
            // 
            resources.ApplyResources(this.bbiDeleteContact, "bbiDeleteContact");
            this.bbiDeleteContact.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiDeleteContact.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Delete_16x16;
            this.bbiDeleteContact.Id = 99;
            this.bbiDeleteContact.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.Delete_32x32;
            this.bbiDeleteContact.Name = "bbiDeleteContact";
            // 
            // bbiFlipLayout
            // 
            resources.ApplyResources(this.bbiFlipLayout, "bbiFlipLayout");
            this.bbiFlipLayout.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiFlipLayout.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.LayoutFlip_16x16;
            this.bbiFlipLayout.Id = 100;
            this.bbiFlipLayout.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.LayoutFlip_32x32;
            this.bbiFlipLayout.Name = "bbiFlipLayout";
            // 
            // rgbiCurrentView
            // 
            resources.ApplyResources(this.rgbiCurrentView, "rgbiCurrentView");
            // 
            // 
            // 
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.rgbiCurrentView.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiCurrentView.Gallery.ColumnCount = 4;
            galleryItem9.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.List_32x32;
            galleryItem9.Tag = "List";
            galleryItem10.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.SortAsc_32x32;
            galleryItem10.Tag = "Alphabetical";
            galleryItem11.Checked = true;
            galleryItem11.Image = global::DevExpress.ProductsDemo.Win.Properties.Resources.Card_32x32;
            galleryItem11.Tag = "Card";
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem9,
            galleryItem10,
            galleryItem11});
            this.rgbiCurrentView.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.rgbiCurrentView.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.rgbiCurrentView.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.rgbiCurrentView.Gallery.RowCount = 1;
            this.rgbiCurrentView.Gallery.ShowItemText = true;
            this.rgbiCurrentView.Id = 101;
            this.rgbiCurrentView.Name = "rgbiCurrentView";
            this.rgbiCurrentView.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.rgbiCurrentView.GalleryInitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiCurrentView_GalleryInitDropDownGallery);
            // 
            // biPrintPreview
            // 
            resources.ApplyResources(this.biPrintPreview, "biPrintPreview");
            this.biPrintPreview.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.biPrintPreview.Glyph = ((System.Drawing.Image)(resources.GetObject("biPrintPreview.Glyph")));
            this.biPrintPreview.Id = 102;
            this.biPrintPreview.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("biPrintPreview.LargeGlyph")));
            this.biPrintPreview.Name = "biPrintPreview";
            this.biPrintPreview.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biPrintPreview_ItemClick);
            // 
            // bbiReminder
            // 
            this.bbiReminder.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
            this.bbiReminder.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiReminder.Glyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.reminder;
            this.bbiReminder.Id = 103;
            this.bbiReminder.Name = "bbiReminder";
            this.bbiReminder.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiReminder_ItemClick);
            // 
            // bbiColorMixer
            // 
            resources.ApplyResources(this.bbiColorMixer, "bbiColorMixer");
            this.bbiColorMixer.Id = 104;
            this.bbiColorMixer.LargeGlyph = global::DevExpress.ProductsDemo.Win.Properties.Resources.ColorMixer_32x32;
            this.bbiColorMixer.Name = "bbiColorMixer";
            this.bbiColorMixer.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiColorMixer_ItemClick);
            // 
            // bbiLoginHistorySearch
            // 
            resources.ApplyResources(this.bbiLoginHistorySearch, "bbiLoginHistorySearch");
            this.bbiLoginHistorySearch.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiLoginHistorySearch.Glyph")));
            this.bbiLoginHistorySearch.Id = 105;
            this.bbiLoginHistorySearch.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiLoginHistorySearch.LargeGlyph")));
            this.bbiLoginHistorySearch.Name = "bbiLoginHistorySearch";
            // 
            // barButtonItem2
            // 
            resources.ApplyResources(this.barButtonItem2, "barButtonItem2");
            this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
            this.barButtonItem2.Id = 106;
            this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            resources.ApplyResources(this.barButtonItem3, "barButtonItem3");
            this.barButtonItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
            this.barButtonItem3.Id = 107;
            this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // bbiNewSno
            // 
            resources.ApplyResources(this.bbiNewSno, "bbiNewSno");
            this.bbiNewSno.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNewSno.Glyph")));
            this.bbiNewSno.Id = 108;
            this.bbiNewSno.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiNewSno.LargeGlyph")));
            this.bbiNewSno.Name = "bbiNewSno";
            // 
            // bbiEditSno
            // 
            resources.ApplyResources(this.bbiEditSno, "bbiEditSno");
            this.bbiEditSno.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiEditSno.Glyph")));
            this.bbiEditSno.Id = 109;
            this.bbiEditSno.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiEditSno.LargeGlyph")));
            this.bbiEditSno.Name = "bbiEditSno";
            // 
            // bbiDeleteSno
            // 
            resources.ApplyResources(this.bbiDeleteSno, "bbiDeleteSno");
            this.bbiDeleteSno.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiDeleteSno.Glyph")));
            this.bbiDeleteSno.Id = 110;
            this.bbiDeleteSno.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiDeleteSno.LargeGlyph")));
            this.bbiDeleteSno.Name = "bbiDeleteSno";
            // 
            // barButtonItem7
            // 
            resources.ApplyResources(this.barButtonItem7, "barButtonItem7");
            this.barButtonItem7.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.Glyph")));
            this.barButtonItem7.Id = 111;
            this.barButtonItem7.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.LargeGlyph")));
            this.barButtonItem7.Name = "barButtonItem7";
            // 
            // barButtonItem8
            // 
            resources.ApplyResources(this.barButtonItem8, "barButtonItem8");
            this.barButtonItem8.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.Glyph")));
            this.barButtonItem8.Id = 112;
            this.barButtonItem8.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.LargeGlyph")));
            this.barButtonItem8.Name = "barButtonItem8";
            // 
            // barButtonItem9
            // 
            resources.ApplyResources(this.barButtonItem9, "barButtonItem9");
            this.barButtonItem9.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.Glyph")));
            this.barButtonItem9.Id = 113;
            this.barButtonItem9.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.LargeGlyph")));
            this.barButtonItem9.Name = "barButtonItem9";
            // 
            // bbiNewCmp
            // 
            resources.ApplyResources(this.bbiNewCmp, "bbiNewCmp");
            this.bbiNewCmp.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNewCmp.Glyph")));
            this.bbiNewCmp.Id = 1;
            this.bbiNewCmp.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiNewCmp.LargeGlyph")));
            this.bbiNewCmp.Name = "bbiNewCmp";
            // 
            // bbiNewDon
            // 
            resources.ApplyResources(this.bbiNewDon, "bbiNewDon");
            this.bbiNewDon.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNewDon.Glyph")));
            this.bbiNewDon.Id = 2;
            this.bbiNewDon.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiNewDon.LargeGlyph")));
            this.bbiNewDon.Name = "bbiNewDon";
            // 
            // barSubItem1
            // 
            resources.ApplyResources(this.barSubItem1, "barSubItem1");
            this.barSubItem1.Id = 3;
            this.barSubItem1.Name = "barSubItem1";
            // 
            // bbiComSetup
            // 
            resources.ApplyResources(this.bbiComSetup, "bbiComSetup");
            this.bbiComSetup.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiComSetup.Glyph")));
            this.bbiComSetup.Id = 4;
            this.bbiComSetup.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiComSetup.LargeGlyph")));
            this.bbiComSetup.Name = "bbiComSetup";
            // 
            // bbiReadingStart
            // 
            resources.ApplyResources(this.bbiReadingStart, "bbiReadingStart");
            this.bbiReadingStart.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiReadingStart.Glyph")));
            this.bbiReadingStart.Id = 6;
            this.bbiReadingStart.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiReadingStart.LargeGlyph")));
            this.bbiReadingStart.Name = "bbiReadingStart";
            // 
            // bbiReadingStop
            // 
            resources.ApplyResources(this.bbiReadingStop, "bbiReadingStop");
            this.bbiReadingStop.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiReadingStop.Glyph")));
            this.bbiReadingStop.Id = 7;
            this.bbiReadingStop.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiReadingStop.LargeGlyph")));
            this.bbiReadingStop.Name = "bbiReadingStop";
            // 
            // barButtonItem6
            // 
            resources.ApplyResources(this.barButtonItem6, "barButtonItem6");
            this.barButtonItem6.Id = 8;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // bbiG02I01
            // 
            resources.ApplyResources(this.bbiG02I01, "bbiG02I01");
            this.bbiG02I01.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiG02I01.Glyph")));
            this.bbiG02I01.Id = 1;
            this.bbiG02I01.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiG02I01.LargeGlyph")));
            this.bbiG02I01.Name = "bbiG02I01";
            // 
            // bbiG02I02
            // 
            resources.ApplyResources(this.bbiG02I02, "bbiG02I02");
            this.bbiG02I02.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiG02I02.Glyph")));
            this.bbiG02I02.Id = 2;
            this.bbiG02I02.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiG02I02.LargeGlyph")));
            this.bbiG02I02.Name = "bbiG02I02";
            // 
            // bbiG02I03
            // 
            resources.ApplyResources(this.bbiG02I03, "bbiG02I03");
            this.bbiG02I03.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiG02I03.Glyph")));
            this.bbiG02I03.Id = 3;
            this.bbiG02I03.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiG02I03.LargeGlyph")));
            this.bbiG02I03.Name = "bbiG02I03";
            // 
            // rpContacts
            // 
            this.rpContacts.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgContacts,
            this.rpgCurrentView});
            this.rpContacts.Name = "rpContacts";
            this.rpContacts.Tag = "UserManage";
            resources.ApplyResources(this.rpContacts, "rpContacts");
            // 
            // rpgContacts
            // 
            this.rpgContacts.ItemLinks.Add(this.bbiNewContact);
            this.rpgContacts.ItemLinks.Add(this.bbiEditContact);
            this.rpgContacts.ItemLinks.Add(this.bbiDeleteContact, true);
            this.rpgContacts.Name = "rpgContacts";
            this.rpgContacts.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgContacts, "rpgContacts");
            // 
            // rpgCurrentView
            // 
            this.rpgCurrentView.ItemLinks.Add(this.rgbiCurrentView);
            this.rpgCurrentView.Name = "rpgCurrentView";
            this.rpgCurrentView.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgCurrentView, "rpgCurrentView");
            this.rpgCurrentView.Visible = false;
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Tag = "LoginHistory";
            resources.ApplyResources(this.ribbonPage1, "ribbonPage1");
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.bbiLoginHistorySearch);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem3);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            resources.ApplyResources(this.ribbonPageGroup1, "ribbonPageGroup1");
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup3});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Tag = "AlamHistory";
            resources.ApplyResources(this.ribbonPage2, "ribbonPage2");
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem7);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem8);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem9);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            resources.ApplyResources(this.ribbonPageGroup3, "ribbonPageGroup3");
            // 
            // ribbonPage3
            // 
            this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup2,
            this.ribbonPageGroup4});
            this.ribbonPage3.Name = "ribbonPage3";
            this.ribbonPage3.Tag = "AptManage";
            resources.ApplyResources(this.ribbonPage3, "ribbonPage3");
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.bbiNewSno);
            this.ribbonPageGroup2.ItemLinks.Add(this.bbiEditSno);
            this.ribbonPageGroup2.ItemLinks.Add(this.bbiDeleteSno);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            resources.ApplyResources(this.ribbonPageGroup2, "ribbonPageGroup2");
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.bbiNewCmp);
            this.ribbonPageGroup4.ItemLinks.Add(this.bbiNewDon);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            resources.ApplyResources(this.ribbonPageGroup4, "ribbonPageGroup4");
            // 
            // ribbonPage11
            // 
            this.ribbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup9});
            this.ribbonPage11.Name = "ribbonPage11";
            this.ribbonPage11.Tag = "HnoManage";
            resources.ApplyResources(this.ribbonPage11, "ribbonPage11");
            // 
            // ribbonPageGroup9
            // 
            this.ribbonPageGroup9.Name = "ribbonPageGroup9";
            resources.ApplyResources(this.ribbonPageGroup9, "ribbonPageGroup9");
            // 
            // rpTasks
            // 
            this.rpTasks.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgTasks,
            this.ribbonPageGroup5});
            this.rpTasks.Name = "rpTasks";
            this.rpTasks.Tag = "NetworkManage";
            resources.ApplyResources(this.rpTasks, "rpTasks");
            // 
            // rpgTasks
            // 
            this.rpgTasks.ItemLinks.Add(this.bbiNewDevice);
            this.rpgTasks.ItemLinks.Add(this.bbiEditDevice);
            this.rpgTasks.ItemLinks.Add(this.bbiDeleteDevice, true);
            this.rpgTasks.Name = "rpgTasks";
            this.rpgTasks.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgTasks, "rpgTasks");
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.bbiComSetup);
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            resources.ApplyResources(this.ribbonPageGroup5, "ribbonPageGroup5");
            // 
            // ribbonPage12
            // 
            this.ribbonPage12.Name = "ribbonPage12";
            this.ribbonPage12.Tag = "DBManage";
            resources.ApplyResources(this.ribbonPage12, "ribbonPage12");
            // 
            // ribbonPage13
            // 
            this.ribbonPage13.Name = "ribbonPage13";
            this.ribbonPage13.Tag = "ExternalInterface";
            resources.ApplyResources(this.ribbonPage13, "ribbonPage13");
            // 
            // ribbonPage14
            // 
            this.ribbonPage14.Name = "ribbonPage14";
            this.ribbonPage14.Tag = "SystemMonitoring";
            resources.ApplyResources(this.ribbonPage14, "ribbonPage14");
            // 
            // ribbonPage10
            // 
            this.ribbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup8});
            this.ribbonPage10.Name = "ribbonPage10";
            this.ribbonPage10.Tag = "G02I01Module";
            resources.ApplyResources(this.ribbonPage10, "ribbonPage10");
            // 
            // ribbonPageGroup8
            // 
            this.ribbonPageGroup8.ItemLinks.Add(this.bbiG02I01);
            this.ribbonPageGroup8.ItemLinks.Add(this.bbiG02I02);
            this.ribbonPageGroup8.ItemLinks.Add(this.bbiG02I03);
            this.ribbonPageGroup8.Name = "ribbonPageGroup8";
            resources.ApplyResources(this.ribbonPageGroup8, "ribbonPageGroup8");
            // 
            // ribbonPage4
            // 
            this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup6});
            this.ribbonPage4.Name = "ribbonPage4";
            this.ribbonPage4.Tag = "";
            resources.ApplyResources(this.ribbonPage4, "ribbonPage4");
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.ItemLinks.Add(this.bbiReadingStart);
            this.ribbonPageGroup6.ItemLinks.Add(this.bbiReadingStop);
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            resources.ApplyResources(this.ribbonPageGroup6, "ribbonPageGroup6");
            // 
            // ribbonPage7
            // 
            this.ribbonPage7.Name = "ribbonPage7";
            this.ribbonPage7.Tag = "Sum";
            resources.ApplyResources(this.ribbonPage7, "ribbonPage7");
            // 
            // ribbonPage8
            // 
            this.ribbonPage8.Name = "ribbonPage8";
            this.ribbonPage8.Tag = "SystemManage";
            resources.ApplyResources(this.ribbonPage8, "ribbonPage8");
            // 
            // ribbonPage9
            // 
            this.ribbonPage9.Name = "ribbonPage9";
            this.ribbonPage9.Tag = "Help";
            resources.ApplyResources(this.ribbonPage9, "ribbonPage9");
            // 
            // rpView
            // 
            this.rpView.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgNavigation,
            this.prgAppearance,
            this.rpgPrint});
            this.rpView.Name = "rpView";
            resources.ApplyResources(this.rpView, "rpView");
            // 
            // rpgNavigation
            // 
            this.rpgNavigation.AllowTextClipping = false;
            this.rpgNavigation.ItemLinks.Add(this.bsiNavigation);
            this.rpgNavigation.Name = "rpgNavigation";
            this.rpgNavigation.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgNavigation, "rpgNavigation");
            // 
            // prgAppearance
            // 
            this.prgAppearance.ItemLinks.Add(this.rgbiSkins);
            this.prgAppearance.ItemLinks.Add(this.bbiColorMixer);
            this.prgAppearance.Name = "prgAppearance";
            this.prgAppearance.ShowCaptionButton = false;
            resources.ApplyResources(this.prgAppearance, "prgAppearance");
            // 
            // rpgPrint
            // 
            this.rpgPrint.AllowTextClipping = false;
            this.rpgPrint.ItemLinks.Add(this.biPrintPreview);
            this.rpgPrint.Name = "rpgPrint";
            this.rpgPrint.ShowCaptionButton = false;
            resources.ApplyResources(this.rpgPrint, "rpgPrint");
            // 
            // repositoryItemSpinEdit1
            // 
            resources.ApplyResources(this.repositoryItemSpinEdit1, "repositoryItemSpinEdit1");
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            200,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // repositoryItemDuration1
            // 
            this.repositoryItemDuration1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            resources.ApplyResources(this.repositoryItemDuration1, "repositoryItemDuration1");
            this.repositoryItemDuration1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemDuration1.Buttons"))))});
            this.repositoryItemDuration1.Name = "repositoryItemDuration1";
            this.repositoryItemDuration1.ShowEmptyItem = true;
            this.repositoryItemDuration1.ValidateOnEnterKey = true;
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.bsiInfo);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiNormal);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiReading);
            this.ribbonStatusBar1.ItemLinks.Add(this.beiZoom, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiReminder, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.bsiTemp, true);
            resources.ApplyResources(this.ribbonStatusBar1, "ribbonStatusBar1");
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            resources.ApplyResources(this.navBarControl1, "navBarControl1");
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarGroup1,
            this.navBarGroup2,
            this.navBarGroup3,
            this.navBarGroup4,
            this.navBarGroup5});
            this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
            this.nbiGrid,
            this.nbiSpreadsheet,
            this.nbiWord,
            this.nbiSnap,
            this.nbiReports,
            this.nbiPivot,
            this.nbiCharts,
            this.nbiMaps,
            this.nbiScheduler,
            this.nbiGridCardView,
            this.nbiPdf,
            this.navBarGroup1Item1,
            this.navBarGroup1Item2,
            this.navBarGroup1Item3,
            this.navBarGroup2Item1,
            this.navBarGroup2Item4,
            this.navBarGroup1Item4,
            this.navBarGroup1Item5,
            this.navBarGroup1Item6,
            this.navBarGroup1Item7,
            this.navBarGroup1Item8,
            this.navBarGroup1Item9,
            this.navBarGroup3Item1,
            this.navBarGroup4Item1,
            this.navBarGroup5Item1,
            this.navBarGroup5Item2,
            this.navBarGroup2Item2,
            this.navBarGroup2Item3});
            this.navBarControl1.LinkSelectionMode = DevExpress.XtraNavBar.LinkSelectionModeType.OneInControl;
            this.navBarControl1.MenuManager = this.ribbonControl1;
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.NavigationPaneGroupClientHeight = 320;
            this.navBarControl1.OptionsNavPane.ExpandedWidth = ((int)(resources.GetObject("resource.ExpandedWidth")));
            this.navBarControl1.OptionsNavPane.ShowOverflowButton = false;
            this.navBarControl1.OptionsNavPane.ShowOverflowPanel = false;
            this.navBarControl1.OptionsNavPane.ShowSplitter = false;
            this.navBarControl1.StoreDefaultPaintStyleName = true;
            this.navBarControl1.SelectedLinkChanged += new DevExpress.XtraNavBar.ViewInfo.NavBarSelectedLinkChangedEventHandler(this.navBarControl1_SelectedLinkChanged);
            this.navBarControl1.NavPaneStateChanged += new System.EventHandler(this.navBarControl1_NavPaneStateChanged);
            // 
            // navBarGroup1
            // 
            resources.ApplyResources(this.navBarGroup1, "navBarGroup1");
            this.navBarGroup1.Expanded = true;
            this.navBarGroup1.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item1),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item2),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item3),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item4),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item5),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item6),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item7),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item8),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup1Item9)});
            this.navBarGroup1.Name = "navBarGroup1";
            // 
            // navBarGroup1Item1
            // 
            resources.ApplyResources(this.navBarGroup1Item1, "navBarGroup1Item1");
            this.navBarGroup1Item1.Name = "navBarGroup1Item1";
            // 
            // navBarGroup1Item2
            // 
            resources.ApplyResources(this.navBarGroup1Item2, "navBarGroup1Item2");
            this.navBarGroup1Item2.Name = "navBarGroup1Item2";
            // 
            // navBarGroup1Item3
            // 
            resources.ApplyResources(this.navBarGroup1Item3, "navBarGroup1Item3");
            this.navBarGroup1Item3.Name = "navBarGroup1Item3";
            // 
            // navBarGroup1Item4
            // 
            resources.ApplyResources(this.navBarGroup1Item4, "navBarGroup1Item4");
            this.navBarGroup1Item4.Name = "navBarGroup1Item4";
            // 
            // navBarGroup1Item5
            // 
            resources.ApplyResources(this.navBarGroup1Item5, "navBarGroup1Item5");
            this.navBarGroup1Item5.Name = "navBarGroup1Item5";
            // 
            // navBarGroup1Item6
            // 
            resources.ApplyResources(this.navBarGroup1Item6, "navBarGroup1Item6");
            this.navBarGroup1Item6.Name = "navBarGroup1Item6";
            // 
            // navBarGroup1Item7
            // 
            resources.ApplyResources(this.navBarGroup1Item7, "navBarGroup1Item7");
            this.navBarGroup1Item7.Name = "navBarGroup1Item7";
            // 
            // navBarGroup1Item8
            // 
            resources.ApplyResources(this.navBarGroup1Item8, "navBarGroup1Item8");
            this.navBarGroup1Item8.Name = "navBarGroup1Item8";
            // 
            // navBarGroup1Item9
            // 
            resources.ApplyResources(this.navBarGroup1Item9, "navBarGroup1Item9");
            this.navBarGroup1Item9.Name = "navBarGroup1Item9";
            // 
            // navBarGroup2
            // 
            resources.ApplyResources(this.navBarGroup2, "navBarGroup2");
            this.navBarGroup2.Expanded = true;
            this.navBarGroup2.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.navBarGroup2.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup2Item1),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup2Item4)});
            this.navBarGroup2.Name = "navBarGroup2";
            this.navBarGroup2.SelectedLinkIndex = 3;
            // 
            // navBarGroup2Item1
            // 
            resources.ApplyResources(this.navBarGroup2Item1, "navBarGroup2Item1");
            this.navBarGroup2Item1.Name = "navBarGroup2Item1";
            // 
            // navBarGroup2Item4
            // 
            resources.ApplyResources(this.navBarGroup2Item4, "navBarGroup2Item4");
            this.navBarGroup2Item4.Name = "navBarGroup2Item4";
            // 
            // navBarGroup3
            // 
            resources.ApplyResources(this.navBarGroup3, "navBarGroup3");
            this.navBarGroup3.Expanded = true;
            this.navBarGroup3.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.navBarGroup3.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup3Item1)});
            this.navBarGroup3.Name = "navBarGroup3";
            // 
            // navBarGroup3Item1
            // 
            resources.ApplyResources(this.navBarGroup3Item1, "navBarGroup3Item1");
            this.navBarGroup3Item1.Name = "navBarGroup3Item1";
            // 
            // navBarGroup4
            // 
            resources.ApplyResources(this.navBarGroup4, "navBarGroup4");
            this.navBarGroup4.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.navBarGroup4.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup4Item1)});
            this.navBarGroup4.Name = "navBarGroup4";
            // 
            // navBarGroup4Item1
            // 
            resources.ApplyResources(this.navBarGroup4Item1, "navBarGroup4Item1");
            this.navBarGroup4Item1.Name = "navBarGroup4Item1";
            // 
            // navBarGroup5
            // 
            resources.ApplyResources(this.navBarGroup5, "navBarGroup5");
            this.navBarGroup5.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.navBarGroup5.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.navBarGroup5.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup5Item1),
            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarGroup5Item2)});
            this.navBarGroup5.Name = "navBarGroup5";
            // 
            // navBarGroup5Item1
            // 
            resources.ApplyResources(this.navBarGroup5Item1, "navBarGroup5Item1");
            this.navBarGroup5Item1.Name = "navBarGroup5Item1";
            // 
            // navBarGroup5Item2
            // 
            resources.ApplyResources(this.navBarGroup5Item2, "navBarGroup5Item2");
            this.navBarGroup5Item2.Name = "navBarGroup5Item2";
            // 
            // nbiGrid
            // 
            resources.ApplyResources(this.nbiGrid, "nbiGrid");
            this.nbiGrid.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.GridTasks;
            this.nbiGrid.Name = "nbiGrid";
            // 
            // nbiSpreadsheet
            // 
            resources.ApplyResources(this.nbiSpreadsheet, "nbiSpreadsheet");
            this.nbiSpreadsheet.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.Spreadsheet;
            this.nbiSpreadsheet.Name = "nbiSpreadsheet";
            // 
            // nbiWord
            // 
            resources.ApplyResources(this.nbiWord, "nbiWord");
            this.nbiWord.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.WordProcessing;
            this.nbiWord.Name = "nbiWord";
            // 
            // nbiSnap
            // 
            resources.ApplyResources(this.nbiSnap, "nbiSnap");
            this.nbiSnap.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.WYSIWYGReports;
            this.nbiSnap.Name = "nbiSnap";
            // 
            // nbiReports
            // 
            resources.ApplyResources(this.nbiReports, "nbiReports");
            this.nbiReports.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.BandedReports;
            this.nbiReports.Name = "nbiReports";
            // 
            // nbiPivot
            // 
            resources.ApplyResources(this.nbiPivot, "nbiPivot");
            this.nbiPivot.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.Pivot;
            this.nbiPivot.Name = "nbiPivot";
            // 
            // nbiCharts
            // 
            resources.ApplyResources(this.nbiCharts, "nbiCharts");
            this.nbiCharts.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.Analytics;
            this.nbiCharts.Name = "nbiCharts";
            // 
            // nbiMaps
            // 
            resources.ApplyResources(this.nbiMaps, "nbiMaps");
            this.nbiMaps.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.WeatherMap;
            this.nbiMaps.Name = "nbiMaps";
            // 
            // nbiScheduler
            // 
            resources.ApplyResources(this.nbiScheduler, "nbiScheduler");
            this.nbiScheduler.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.Scheduler;
            this.nbiScheduler.Name = "nbiScheduler";
            // 
            // nbiGridCardView
            // 
            resources.ApplyResources(this.nbiGridCardView, "nbiGridCardView");
            this.nbiGridCardView.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.GridContacts;
            this.nbiGridCardView.Name = "nbiGridCardView";
            // 
            // nbiPdf
            // 
            resources.ApplyResources(this.nbiPdf, "nbiPdf");
            this.nbiPdf.LargeImage = global::DevExpress.ProductsDemo.Win.Properties.Resources.PDFViewer;
            this.nbiPdf.Name = "nbiPdf";
            // 
            // navBarGroup2Item2
            // 
            this.navBarGroup2Item2.Name = "navBarGroup2Item2";
            // 
            // navBarGroup2Item3
            // 
            this.navBarGroup2Item3.Name = "navBarGroup2Item3";
            // 
            // pcMain
            // 
            this.pcMain.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pcMain.Controls.Add(this.backstageViewControl1);
            resources.ApplyResources(this.pcMain, "pcMain");
            this.pcMain.Name = "pcMain";
            this.pcMain.Paint += new System.Windows.Forms.PaintEventHandler(this.pcMain_Paint);
            // 
            // pmFlagStatus
            // 
            this.pmFlagStatus.ItemLinks.Add(this.bbiTodayFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiTomorrowFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiThisWeekFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiNextWeekFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiNoDateFlag);
            this.pmFlagStatus.ItemLinks.Add(this.bbiCustomFlag, true);
            this.pmFlagStatus.Name = "pmFlagStatus";
            this.pmFlagStatus.Ribbon = this.ribbonControl1;
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            resources.ApplyResources(this.ribbonPageGroup7, "ribbonPageGroup7");
            // 
            // ribbonPage5
            // 
            this.ribbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup7});
            this.ribbonPage5.Name = "ribbonPage5";
            resources.ApplyResources(this.ribbonPage5, "ribbonPage5");
            // 
            // ribbonPage6
            // 
            this.ribbonPage6.Name = "ribbonPage6";
            resources.ApplyResources(this.ribbonPage6, "ribbonPage6");
            // 
            // frmMain
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.pcMain);
            this.Controls.Add(this.navBarControl1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.KeyPreview = true;
            this.Name = "frmMain";
            this.Ribbon = this.ribbonControl1;
            this.StatusBar = this.ribbonStatusBar1;
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmMain_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.backstageViewControl1)).EndInit();
            this.backstageViewControl1.ResumeLayout(false);
            this.backstageViewClientControl1.ResumeLayout(false);
            this.backstageViewClientControl3.ResumeLayout(false);
            this.backstageViewClientControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDuration1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcMain)).EndInit();
            this.pcMain.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pmFlagStatus)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }