Beispiel #1
0
        public FormCarStyle()
        {
            InitializeComponent();
            galleryControl1.Gallery.Groups[0].Items[0].Image     = VehicleHelper.Properties.Resources._1565_questionmarkblue;
            galleryControl1.Gallery.Groups[0].Items[0].Image.Tag = null;
            foreach (char item in ABC.ToCharArray())
            {
                DevExpress.XtraBars.Ribbon.GalleryItemGroup temp = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
                temp.Caption = item.ToString();

                galleryControl1.Gallery.Groups.Add(temp);


                LinkLabel linkLabel = new LinkLabel();
                linkLabel.AutoSize = true;
                linkLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
                linkLabel.Location = new System.Drawing.Point(3, 3);
                linkLabel.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 0);
                linkLabel.Size     = new System.Drawing.Size(16, 14);
                linkLabel.TabIndex = 0;
                linkLabel.TabStop  = true;
                linkLabel.Text     = item.ToString();
                linkLabel.Tag      = item.ToString();

                linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);


                flowLayoutPanel1.Controls.Add(linkLabel);
            }
        }
Beispiel #2
0
        private void Gallery_ItemClick(object sender, DevExpress.XtraBars.Ribbon.GalleryItemClickEventArgs e)
        {
            lblFilename.Text   = "...";
            lblAttachId.Text   = "...";
            lblAttachSize.Text = "...";
            lblAttachDate.Text = "...";
            lblUserNo.Text     = "...";
            lblAttachDesc.Text = "...";

            DevExpress.XtraBars.Ribbon.GalleryItemGroup group = galleryControl1.Gallery.Groups[0];
            if (group.Items.Count > 0)
            {
                if (e.Item != null && e.Item.Tag != null)
                {
                    object[] info = (object[])e.Item.Tag;

                    //filename, attachid, attachsize, attachtype, attachdate, attachdesc, userno
                    string   filename   = ISM.Lib.Static.ToStr(info[0]);
                    ulong    attachid   = ISM.Lib.Static.ToULong(info[1]);
                    long     attachsize = ISM.Lib.Static.ToLong(info[2]);
                    int      attachtype = ISM.Lib.Static.ToInt(info[3]);
                    DateTime attachdate = ISM.Lib.Static.ToDate(info[4]);
                    string   attachdesc = ISM.Lib.Static.ToStr(info[5]);
                    int      userno     = ISM.Lib.Static.ToInt(info[6]);

                    lblFilename.Text   = filename;
                    lblAttachId.Text   = Convert.ToString(attachid);
                    lblAttachSize.Text = string.Format("{0, 8:#,##0.0} KB", attachsize / 1024);
                    lblAttachDate.Text = ISM.Lib.Static.ToDateStr(attachdate);
                    lblUserNo.Text     = Convert.ToString(userno);
                    lblAttachDesc.Text = attachdesc;
                }
            }
        }
Beispiel #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 };
        }
 /// <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();
     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();
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // galleryControlGallery1
     //
     galleryItemGroup1.Caption = "Group3";
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Location = new System.Drawing.Point(0, 0);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(743, 574);
     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(722, 570);
     //
     // frmDoigiaodien
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(743, 574);
     this.Controls.Add(this.galleryControl1);
     this.Name = "frmDoigiaodien";
     this.Text = "frmDoigiaodien";
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #5
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()
        {
            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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SheetForm));
            this.stylesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.StylesRibbonPageGroup();
            this.spreadsheetCommandBarSubItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarSubItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            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.spreadsheetCommandBarButtonItem50 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem6 = 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.spreadsheetCommandBarButtonGalleryDropDownItem1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown2 = 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.spreadsheetCommandBarButtonItem14 = 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.spreadsheetControl1 = new DevExpress.XtraSpreadsheet.SpreadsheetControl();
            this.spreadsheetCommandBarButtonItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem16 = 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.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.spreadsheetCommandBarButtonItem29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.changeBorderLineColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeBorderLineColorItem();
            this.changeBorderLineStyleItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeBorderLineStyleItem();
            this.commandBarGalleryDropDown1 = 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.spreadsheetCommandBarButtonItem30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem31 = 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.spreadsheetCommandBarButtonItem32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem34 = 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.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.spreadsheetCommandBarButtonItem41 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.barButtonGroup10 = new DevExpress.XtraBars.BarButtonGroup();
            this.spreadsheetCommandBarButtonItem42 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem43 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem2 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown3 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem3 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown4 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonItem57 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem58 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.galleryFormatAsTableItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryFormatAsTableItem();
            this.commandBarGalleryDropDown5 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.galleryChangeStyleItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryChangeStyleItem();
            this.spreadsheetCommandBarSubItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem59 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem60 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem61 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem62 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem63 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem64 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            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.spreadsheetCommandBarButtonItem69 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            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.spreadsheetCommandBarButtonItem76 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem77 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.changeSheetTabColorItem1 = new DevExpress.XtraSpreadsheet.UI.ChangeSheetTabColorItem();
            this.spreadsheetCommandBarButtonItem78 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem79 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem80 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem81 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem82 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem83 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem84 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem85 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem86 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem87 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem88 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            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.spreadsheetCommandBarButtonItem93 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem94 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem95 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem96 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem97 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem98 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            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.spreadsheetCommandBarButtonItem104 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem105 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem106 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem107 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem108 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown6 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown7 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown8 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown9 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem8 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown10 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown11 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown12 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonItem109 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem110 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem111 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.pageSetupPaperKindItem1 = new DevExpress.XtraSpreadsheet.UI.PageSetupPaperKindItem();
            this.spreadsheetCommandBarSubItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem112 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem113 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem114 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem23 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem115 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem116 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem117 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem118 = 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.spreadsheetCommandBarButtonItem124 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem125 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.definedNameListItem1 = new DevExpress.XtraSpreadsheet.UI.DefinedNameListItem();
            this.spreadsheetCommandBarButtonItem126 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarCheckItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarButtonItem127 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem128 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem25 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem129 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem130 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem131 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem26 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem132 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem133 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem134 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem135 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem136 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem137 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem138 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem139 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem140 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem141 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem142 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem143 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem144 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem145 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem146 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem147 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem148 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem149 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem150 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem151 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem152 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem153 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem154 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem155 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem156 = 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.commandBarGalleryDropDown13 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarSubItem29 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown14 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem13 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown15 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem14 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown16 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem15 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown17 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarSubItem30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem16 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown18 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown19 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarSubItem31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonGalleryDropDownItem18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown20 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem19 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown21 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown22 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown23 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.spreadsheetCommandBarButtonGalleryDropDownItem22 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonGalleryDropDownItem();
            this.commandBarGalleryDropDown24 = 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.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.spreadsheetCommandBarCheckItem33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.galleryTableStylesItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryTableStylesItem();
            this.spreadsheetCommandBarButtonItem157 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem158 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem159 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem160 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem161 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem162 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem163 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem164 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem165 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem166 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem167 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem168 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem169 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarSubItem35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem170 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem171 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem172 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem173 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem174 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem175 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem176 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem177 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem178 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem179 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem180 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem181 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarSubItem38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarSubItem();
            this.spreadsheetCommandBarButtonItem182 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem183 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarCheckItem37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem39 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.spreadsheetCommandBarCheckItem40 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarCheckItem();
            this.galleryPivotStylesItem1 = new DevExpress.XtraSpreadsheet.UI.GalleryPivotStylesItem();
            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.pivotTableToolsRibbonPageCategory1 = new DevExpress.XtraSpreadsheet.UI.PivotTableToolsRibbonPageCategory();
            this.pivotTableAnalyzeRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.PivotTableAnalyzeRibbonPage();
            this.pivotTableAnalyzePivotTableRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableAnalyzePivotTableRibbonPageGroup();
            this.pivotTableAnalyzeActiveFieldRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableAnalyzeActiveFieldRibbonPageGroup();
            this.pivotTableAnalyzeDataRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableAnalyzeDataRibbonPageGroup();
            this.pivotTableAnalyzeActionsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableAnalyzeActionsRibbonPageGroup();
            this.pivotTableAnalyzeShowRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableAnalyzeShowRibbonPageGroup();
            this.pivotTableDesignRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.PivotTableDesignRibbonPage();
            this.pivotTableDesignLayoutRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableDesignLayoutRibbonPageGroup();
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableDesignPivotTableStyleOptionsRibbonPageGroup();
            this.pivotTableDesignPivotTableStylesRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.PivotTableDesignPivotTableStylesRibbonPageGroup();
            this.fileRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.CommonRibbonPageGroup();
            this.infoRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.InfoRibbonPageGroup();
            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.dataToolsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.DataToolsRibbonPageGroup();
            this.outlineRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.OutlineRibbonPageGroup();
            this.reviewRibbonPage1 = new DevExpress.XtraSpreadsheet.UI.ReviewRibbonPage();
            this.commentsRibbonPageGroup1 = new DevExpress.XtraSpreadsheet.UI.CommentsRibbonPageGroup();
            this.changesRibbonPageGroup1 = 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.spreadsheetBarController1 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetBarController();
            this.spreadsheetCommandBarButtonItem119 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem120 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem121 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem122 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            this.spreadsheetCommandBarButtonItem123 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandBarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).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.repositoryItemTextEdit1)).BeginInit();
            ((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 = 76;
            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 = 84;
            this.spreadsheetCommandBarSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            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),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem50)});
            this.spreadsheetCommandBarSubItem5.Name = "spreadsheetCommandBarSubItem5";
            // 
            // spreadsheetCommandBarButtonItem44
            // 
            this.spreadsheetCommandBarButtonItem44.CommandName = "ConditionalFormattingGreaterThanRuleCommand";
            this.spreadsheetCommandBarButtonItem44.Id = 77;
            this.spreadsheetCommandBarButtonItem44.Name = "spreadsheetCommandBarButtonItem44";
            this.spreadsheetCommandBarButtonItem44.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem45
            // 
            this.spreadsheetCommandBarButtonItem45.CommandName = "ConditionalFormattingLessThanRuleCommand";
            this.spreadsheetCommandBarButtonItem45.Id = 78;
            this.spreadsheetCommandBarButtonItem45.Name = "spreadsheetCommandBarButtonItem45";
            this.spreadsheetCommandBarButtonItem45.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem46
            // 
            this.spreadsheetCommandBarButtonItem46.CommandName = "ConditionalFormattingBetweenRuleCommand";
            this.spreadsheetCommandBarButtonItem46.Id = 79;
            this.spreadsheetCommandBarButtonItem46.Name = "spreadsheetCommandBarButtonItem46";
            this.spreadsheetCommandBarButtonItem46.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem47
            // 
            this.spreadsheetCommandBarButtonItem47.CommandName = "ConditionalFormattingEqualToRuleCommand";
            this.spreadsheetCommandBarButtonItem47.Id = 80;
            this.spreadsheetCommandBarButtonItem47.Name = "spreadsheetCommandBarButtonItem47";
            this.spreadsheetCommandBarButtonItem47.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem48
            // 
            this.spreadsheetCommandBarButtonItem48.CommandName = "ConditionalFormattingTextContainsRuleCommand";
            this.spreadsheetCommandBarButtonItem48.Id = 81;
            this.spreadsheetCommandBarButtonItem48.Name = "spreadsheetCommandBarButtonItem48";
            this.spreadsheetCommandBarButtonItem48.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem49
            // 
            this.spreadsheetCommandBarButtonItem49.CommandName = "ConditionalFormattingDateOccurringRuleCommand";
            this.spreadsheetCommandBarButtonItem49.Id = 82;
            this.spreadsheetCommandBarButtonItem49.Name = "spreadsheetCommandBarButtonItem49";
            this.spreadsheetCommandBarButtonItem49.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem50
            // 
            this.spreadsheetCommandBarButtonItem50.CommandName = "ConditionalFormattingDuplicateValuesRuleCommand";
            this.spreadsheetCommandBarButtonItem50.Id = 83;
            this.spreadsheetCommandBarButtonItem50.Name = "spreadsheetCommandBarButtonItem50";
            this.spreadsheetCommandBarButtonItem50.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarSubItem6
            // 
            this.spreadsheetCommandBarSubItem6.CommandName = "ConditionalFormattingTopBottomRuleCommandGroup";
            this.spreadsheetCommandBarSubItem6.Id = 91;
            this.spreadsheetCommandBarSubItem6.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.spreadsheetCommandBarSubItem6.Name = "spreadsheetCommandBarSubItem6";
            // 
            // spreadsheetCommandBarButtonItem51
            // 
            this.spreadsheetCommandBarButtonItem51.CommandName = "ConditionalFormattingTop10RuleCommand";
            this.spreadsheetCommandBarButtonItem51.Id = 85;
            this.spreadsheetCommandBarButtonItem51.Name = "spreadsheetCommandBarButtonItem51";
            this.spreadsheetCommandBarButtonItem51.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem52
            // 
            this.spreadsheetCommandBarButtonItem52.CommandName = "ConditionalFormattingTop10PercentRuleCommand";
            this.spreadsheetCommandBarButtonItem52.Id = 86;
            this.spreadsheetCommandBarButtonItem52.Name = "spreadsheetCommandBarButtonItem52";
            this.spreadsheetCommandBarButtonItem52.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem53
            // 
            this.spreadsheetCommandBarButtonItem53.CommandName = "ConditionalFormattingBottom10RuleCommand";
            this.spreadsheetCommandBarButtonItem53.Id = 87;
            this.spreadsheetCommandBarButtonItem53.Name = "spreadsheetCommandBarButtonItem53";
            this.spreadsheetCommandBarButtonItem53.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem54
            // 
            this.spreadsheetCommandBarButtonItem54.CommandName = "ConditionalFormattingBottom10PercentRuleCommand";
            this.spreadsheetCommandBarButtonItem54.Id = 88;
            this.spreadsheetCommandBarButtonItem54.Name = "spreadsheetCommandBarButtonItem54";
            this.spreadsheetCommandBarButtonItem54.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem55
            // 
            this.spreadsheetCommandBarButtonItem55.CommandName = "ConditionalFormattingAboveAverageRuleCommand";
            this.spreadsheetCommandBarButtonItem55.Id = 89;
            this.spreadsheetCommandBarButtonItem55.Name = "spreadsheetCommandBarButtonItem55";
            this.spreadsheetCommandBarButtonItem55.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem56
            // 
            this.spreadsheetCommandBarButtonItem56.CommandName = "ConditionalFormattingBelowAverageRuleCommand";
            this.spreadsheetCommandBarButtonItem56.Id = 90;
            this.spreadsheetCommandBarButtonItem56.Name = "spreadsheetCommandBarButtonItem56";
            this.spreadsheetCommandBarButtonItem56.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem1
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.CommandName = "ConditionalFormattingDataBarsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.DropDownControl = this.commandBarGalleryDropDown2;
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.Id = 92;
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.Name = "spreadsheetCommandBarButtonGalleryDropDownItem1";
            this.spreadsheetCommandBarButtonGalleryDropDownItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarGalleryDropDown2
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown2.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.commandBarGalleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup1,
            spreadsheetCommandGalleryItemGroup2});
            this.commandBarGalleryDropDown2.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown2.Name = "commandBarGalleryDropDown2";
            this.commandBarGalleryDropDown2.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.spreadsheetCommandBarButtonItem14,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.spreadsheetCommandBarButtonItem15,
            this.spreadsheetCommandBarButtonItem16,
            this.barButtonGroup2,
            this.spreadsheetCommandBarCheckItem1,
            this.spreadsheetCommandBarCheckItem2,
            this.spreadsheetCommandBarCheckItem3,
            this.spreadsheetCommandBarCheckItem4,
            this.barButtonGroup3,
            this.spreadsheetCommandBarSubItem1,
            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.spreadsheetCommandBarButtonItem29,
            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.spreadsheetCommandBarButtonItem30,
            this.spreadsheetCommandBarButtonItem31,
            this.spreadsheetCommandBarCheckItem11,
            this.spreadsheetCommandBarSubItem2,
            this.spreadsheetCommandBarCheckItem12,
            this.spreadsheetCommandBarButtonItem32,
            this.spreadsheetCommandBarButtonItem33,
            this.spreadsheetCommandBarButtonItem34,
            this.barButtonGroup8,
            this.changeNumberFormatItem1,
            this.barButtonGroup9,
            this.spreadsheetCommandBarSubItem3,
            this.spreadsheetCommandBarButtonItem35,
            this.spreadsheetCommandBarButtonItem36,
            this.spreadsheetCommandBarButtonItem37,
            this.spreadsheetCommandBarButtonItem38,
            this.spreadsheetCommandBarButtonItem39,
            this.spreadsheetCommandBarButtonItem40,
            this.spreadsheetCommandBarButtonItem41,
            this.barButtonGroup10,
            this.spreadsheetCommandBarButtonItem42,
            this.spreadsheetCommandBarButtonItem43,
            this.spreadsheetCommandBarSubItem4,
            this.spreadsheetCommandBarButtonItem44,
            this.spreadsheetCommandBarButtonItem45,
            this.spreadsheetCommandBarButtonItem46,
            this.spreadsheetCommandBarButtonItem47,
            this.spreadsheetCommandBarButtonItem48,
            this.spreadsheetCommandBarButtonItem49,
            this.spreadsheetCommandBarButtonItem50,
            this.spreadsheetCommandBarSubItem5,
            this.spreadsheetCommandBarButtonItem51,
            this.spreadsheetCommandBarButtonItem52,
            this.spreadsheetCommandBarButtonItem53,
            this.spreadsheetCommandBarButtonItem54,
            this.spreadsheetCommandBarButtonItem55,
            this.spreadsheetCommandBarButtonItem56,
            this.spreadsheetCommandBarSubItem6,
            this.spreadsheetCommandBarButtonGalleryDropDownItem1,
            this.spreadsheetCommandBarButtonGalleryDropDownItem2,
            this.spreadsheetCommandBarButtonGalleryDropDownItem3,
            this.spreadsheetCommandBarButtonItem57,
            this.spreadsheetCommandBarButtonItem58,
            this.spreadsheetCommandBarSubItem7,
            this.galleryFormatAsTableItem1,
            this.galleryChangeStyleItem1,
            this.spreadsheetCommandBarSubItem8,
            this.spreadsheetCommandBarButtonItem59,
            this.spreadsheetCommandBarButtonItem60,
            this.spreadsheetCommandBarButtonItem61,
            this.spreadsheetCommandBarSubItem9,
            this.spreadsheetCommandBarButtonItem62,
            this.spreadsheetCommandBarButtonItem63,
            this.spreadsheetCommandBarButtonItem64,
            this.spreadsheetCommandBarSubItem10,
            this.spreadsheetCommandBarButtonItem65,
            this.spreadsheetCommandBarButtonItem66,
            this.spreadsheetCommandBarButtonItem67,
            this.spreadsheetCommandBarButtonItem68,
            this.spreadsheetCommandBarButtonItem69,
            this.spreadsheetCommandBarButtonItem70,
            this.spreadsheetCommandBarButtonItem71,
            this.spreadsheetCommandBarButtonItem72,
            this.spreadsheetCommandBarButtonItem73,
            this.spreadsheetCommandBarButtonItem74,
            this.spreadsheetCommandBarButtonItem75,
            this.spreadsheetCommandBarSubItem11,
            this.spreadsheetCommandBarButtonItem76,
            this.spreadsheetCommandBarButtonItem77,
            this.changeSheetTabColorItem1,
            this.spreadsheetCommandBarButtonItem78,
            this.spreadsheetCommandBarCheckItem13,
            this.spreadsheetCommandBarButtonItem79,
            this.spreadsheetCommandBarSubItem12,
            this.spreadsheetCommandBarButtonItem80,
            this.spreadsheetCommandBarButtonItem81,
            this.spreadsheetCommandBarButtonItem82,
            this.spreadsheetCommandBarButtonItem83,
            this.spreadsheetCommandBarButtonItem84,
            this.spreadsheetCommandBarSubItem13,
            this.spreadsheetCommandBarButtonItem85,
            this.spreadsheetCommandBarButtonItem86,
            this.spreadsheetCommandBarButtonItem87,
            this.spreadsheetCommandBarButtonItem88,
            this.spreadsheetCommandBarSubItem14,
            this.spreadsheetCommandBarButtonItem89,
            this.spreadsheetCommandBarButtonItem90,
            this.spreadsheetCommandBarButtonItem91,
            this.spreadsheetCommandBarButtonItem92,
            this.spreadsheetCommandBarButtonItem93,
            this.spreadsheetCommandBarButtonItem94,
            this.spreadsheetCommandBarSubItem15,
            this.spreadsheetCommandBarButtonItem95,
            this.spreadsheetCommandBarButtonItem96,
            this.spreadsheetCommandBarCheckItem14,
            this.spreadsheetCommandBarButtonItem97,
            this.spreadsheetCommandBarButtonItem98,
            this.spreadsheetCommandBarSubItem16,
            this.spreadsheetCommandBarButtonItem99,
            this.spreadsheetCommandBarButtonItem100,
            this.spreadsheetCommandBarButtonItem101,
            this.spreadsheetCommandBarButtonItem102,
            this.spreadsheetCommandBarButtonItem103,
            this.spreadsheetCommandBarButtonItem104,
            this.spreadsheetCommandBarButtonItem105,
            this.spreadsheetCommandBarButtonItem106,
            this.spreadsheetCommandBarButtonItem107,
            this.spreadsheetCommandBarButtonItem108,
            this.spreadsheetCommandBarButtonGalleryDropDownItem4,
            this.spreadsheetCommandBarButtonGalleryDropDownItem5,
            this.spreadsheetCommandBarButtonGalleryDropDownItem6,
            this.spreadsheetCommandBarButtonGalleryDropDownItem7,
            this.spreadsheetCommandBarButtonGalleryDropDownItem8,
            this.spreadsheetCommandBarButtonGalleryDropDownItem9,
            this.spreadsheetCommandBarButtonGalleryDropDownItem10,
            this.spreadsheetCommandBarButtonItem109,
            this.spreadsheetCommandBarButtonItem110,
            this.spreadsheetCommandBarSubItem17,
            this.spreadsheetCommandBarCheckItem15,
            this.spreadsheetCommandBarCheckItem16,
            this.spreadsheetCommandBarCheckItem17,
            this.spreadsheetCommandBarButtonItem111,
            this.spreadsheetCommandBarSubItem18,
            this.spreadsheetCommandBarCheckItem18,
            this.spreadsheetCommandBarCheckItem19,
            this.pageSetupPaperKindItem1,
            this.spreadsheetCommandBarSubItem19,
            this.spreadsheetCommandBarButtonItem112,
            this.spreadsheetCommandBarButtonItem113,
            this.spreadsheetCommandBarButtonItem114,
            this.spreadsheetCommandBarCheckItem20,
            this.spreadsheetCommandBarCheckItem21,
            this.spreadsheetCommandBarCheckItem22,
            this.spreadsheetCommandBarCheckItem23,
            this.spreadsheetCommandBarSubItem20,
            this.spreadsheetCommandBarButtonItem115,
            this.spreadsheetCommandBarButtonItem116,
            this.spreadsheetCommandBarSubItem21,
            this.spreadsheetCommandBarButtonItem117,
            this.spreadsheetCommandBarButtonItem118,
            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.spreadsheetCommandBarButtonItem124,
            this.spreadsheetCommandBarButtonItem125,
            this.definedNameListItem1,
            this.spreadsheetCommandBarButtonItem126,
            this.spreadsheetCommandBarCheckItem24,
            this.spreadsheetCommandBarSubItem24,
            this.spreadsheetCommandBarCheckItem25,
            this.spreadsheetCommandBarCheckItem26,
            this.spreadsheetCommandBarButtonItem127,
            this.spreadsheetCommandBarButtonItem128,
            this.spreadsheetCommandBarSubItem25,
            this.spreadsheetCommandBarButtonItem129,
            this.spreadsheetCommandBarButtonItem130,
            this.spreadsheetCommandBarButtonItem131,
            this.spreadsheetCommandBarSubItem26,
            this.spreadsheetCommandBarButtonItem132,
            this.spreadsheetCommandBarButtonItem133,
            this.spreadsheetCommandBarSubItem27,
            this.spreadsheetCommandBarButtonItem134,
            this.spreadsheetCommandBarButtonItem135,
            this.spreadsheetCommandBarButtonItem136,
            this.spreadsheetCommandBarButtonItem137,
            this.spreadsheetCommandBarButtonItem138,
            this.spreadsheetCommandBarButtonItem139,
            this.spreadsheetCommandBarButtonItem140,
            this.spreadsheetCommandBarButtonItem141,
            this.spreadsheetCommandBarButtonItem142,
            this.spreadsheetCommandBarButtonItem143,
            this.spreadsheetCommandBarButtonItem144,
            this.spreadsheetCommandBarButtonItem145,
            this.spreadsheetCommandBarButtonItem146,
            this.spreadsheetCommandBarButtonItem147,
            this.spreadsheetCommandBarButtonItem148,
            this.spreadsheetCommandBarButtonItem149,
            this.spreadsheetCommandBarSubItem28,
            this.spreadsheetCommandBarButtonItem150,
            this.spreadsheetCommandBarButtonItem151,
            this.spreadsheetCommandBarButtonItem152,
            this.spreadsheetCommandBarButtonItem153,
            this.spreadsheetCommandBarButtonItem154,
            this.spreadsheetCommandBarButtonItem155,
            this.spreadsheetCommandBarButtonItem156,
            this.galleryChartLayoutItem1,
            this.galleryChartStyleItem1,
            this.spreadsheetCommandBarButtonGalleryDropDownItem11,
            this.spreadsheetCommandBarSubItem29,
            this.spreadsheetCommandBarButtonGalleryDropDownItem12,
            this.spreadsheetCommandBarButtonGalleryDropDownItem13,
            this.spreadsheetCommandBarButtonGalleryDropDownItem14,
            this.spreadsheetCommandBarButtonGalleryDropDownItem15,
            this.spreadsheetCommandBarSubItem30,
            this.spreadsheetCommandBarButtonGalleryDropDownItem16,
            this.spreadsheetCommandBarButtonGalleryDropDownItem17,
            this.spreadsheetCommandBarSubItem31,
            this.spreadsheetCommandBarButtonGalleryDropDownItem18,
            this.spreadsheetCommandBarButtonGalleryDropDownItem19,
            this.spreadsheetCommandBarButtonGalleryDropDownItem20,
            this.spreadsheetCommandBarButtonGalleryDropDownItem21,
            this.spreadsheetCommandBarButtonGalleryDropDownItem22,
            this.barStaticItem1,
            this.renameTableItem1,
            this.spreadsheetCommandBarCheckItem27,
            this.spreadsheetCommandBarCheckItem28,
            this.spreadsheetCommandBarCheckItem29,
            this.spreadsheetCommandBarCheckItem30,
            this.spreadsheetCommandBarCheckItem31,
            this.spreadsheetCommandBarCheckItem32,
            this.spreadsheetCommandBarCheckItem33,
            this.galleryTableStylesItem1,
            this.spreadsheetCommandBarButtonItem157,
            this.spreadsheetCommandBarButtonItem158,
            this.spreadsheetCommandBarButtonItem159,
            this.spreadsheetCommandBarButtonItem160,
            this.spreadsheetCommandBarSubItem32,
            this.spreadsheetCommandBarButtonItem161,
            this.spreadsheetCommandBarButtonItem162,
            this.spreadsheetCommandBarButtonItem163,
            this.spreadsheetCommandBarSubItem33,
            this.spreadsheetCommandBarButtonItem164,
            this.spreadsheetCommandBarButtonItem165,
            this.spreadsheetCommandBarSubItem34,
            this.spreadsheetCommandBarButtonItem166,
            this.spreadsheetCommandBarButtonItem167,
            this.spreadsheetCommandBarButtonItem168,
            this.spreadsheetCommandBarButtonItem169,
            this.spreadsheetCommandBarCheckItem34,
            this.spreadsheetCommandBarCheckItem35,
            this.spreadsheetCommandBarCheckItem36,
            this.spreadsheetCommandBarSubItem35,
            this.spreadsheetCommandBarButtonItem170,
            this.spreadsheetCommandBarButtonItem171,
            this.spreadsheetCommandBarButtonItem172,
            this.spreadsheetCommandBarSubItem36,
            this.spreadsheetCommandBarButtonItem173,
            this.spreadsheetCommandBarButtonItem174,
            this.spreadsheetCommandBarButtonItem175,
            this.spreadsheetCommandBarButtonItem176,
            this.spreadsheetCommandBarSubItem37,
            this.spreadsheetCommandBarButtonItem177,
            this.spreadsheetCommandBarButtonItem178,
            this.spreadsheetCommandBarButtonItem179,
            this.spreadsheetCommandBarButtonItem180,
            this.spreadsheetCommandBarButtonItem181,
            this.spreadsheetCommandBarSubItem38,
            this.spreadsheetCommandBarButtonItem182,
            this.spreadsheetCommandBarButtonItem183,
            this.spreadsheetCommandBarCheckItem37,
            this.spreadsheetCommandBarCheckItem38,
            this.spreadsheetCommandBarCheckItem39,
            this.spreadsheetCommandBarCheckItem40,
            this.galleryPivotStylesItem1});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 320;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.chartToolsRibbonPageCategory1,
            this.tableToolsRibbonPageCategory1,
            this.pictureToolsRibbonPageCategory1,
            this.drawingToolsRibbonPageCategory1,
            this.pivotTableToolsRibbonPageCategory1});
            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(917, 145);
            // 
            // 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 = "FileShowDocumentProperties";
            this.spreadsheetCommandBarButtonItem10.Id = 10;
            this.spreadsheetCommandBarButtonItem10.Name = "spreadsheetCommandBarButtonItem10";
            // 
            // spreadsheetCommandBarButtonItem11
            // 
            this.spreadsheetCommandBarButtonItem11.CommandName = "PasteSelection";
            this.spreadsheetCommandBarButtonItem11.Id = 21;
            this.spreadsheetCommandBarButtonItem11.Name = "spreadsheetCommandBarButtonItem11";
            this.spreadsheetCommandBarButtonItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem12
            // 
            this.spreadsheetCommandBarButtonItem12.CommandName = "CutSelection";
            this.spreadsheetCommandBarButtonItem12.Id = 22;
            this.spreadsheetCommandBarButtonItem12.Name = "spreadsheetCommandBarButtonItem12";
            this.spreadsheetCommandBarButtonItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem13
            // 
            this.spreadsheetCommandBarButtonItem13.CommandName = "CopySelection";
            this.spreadsheetCommandBarButtonItem13.Id = 23;
            this.spreadsheetCommandBarButtonItem13.Name = "spreadsheetCommandBarButtonItem13";
            this.spreadsheetCommandBarButtonItem13.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem14
            // 
            this.spreadsheetCommandBarButtonItem14.CommandName = "ShowPasteSpecialForm";
            this.spreadsheetCommandBarButtonItem14.Id = 24;
            this.spreadsheetCommandBarButtonItem14.Name = "spreadsheetCommandBarButtonItem14";
            this.spreadsheetCommandBarButtonItem14.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 11;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem15);
            this.barButtonGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem16);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.EditWidth = 130;
            this.changeFontNameItem1.Id = 25;
            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 = 26;
            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.spreadsheetControl1;
            this.repositoryItemSpreadsheetFontSizeEdit1.Name = "repositoryItemSpreadsheetFontSizeEdit1";
            // 
            // spreadsheetControl1
            // 
            this.spreadsheetControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.spreadsheetControl1.Location = new System.Drawing.Point(0, 145);
            this.spreadsheetControl1.MenuManager = this.ribbonControl1;
            this.spreadsheetControl1.Name = "spreadsheetControl1";
            this.spreadsheetControl1.Size = new System.Drawing.Size(917, 356);
            this.spreadsheetControl1.TabIndex = 0;
            this.spreadsheetControl1.Text = "spreadsheetControl1";
            // 
            // spreadsheetCommandBarButtonItem15
            // 
            this.spreadsheetCommandBarButtonItem15.ButtonGroupTag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            this.spreadsheetCommandBarButtonItem15.CommandName = "FormatIncreaseFontSize";
            this.spreadsheetCommandBarButtonItem15.Id = 27;
            this.spreadsheetCommandBarButtonItem15.Name = "spreadsheetCommandBarButtonItem15";
            this.spreadsheetCommandBarButtonItem15.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem16
            // 
            this.spreadsheetCommandBarButtonItem16.ButtonGroupTag = "{B0CA3FA8-82D6-4BC4-BD31-D9AE56C1D033}";
            this.spreadsheetCommandBarButtonItem16.CommandName = "FormatDecreaseFontSize";
            this.spreadsheetCommandBarButtonItem16.Id = 28;
            this.spreadsheetCommandBarButtonItem16.Name = "spreadsheetCommandBarButtonItem16";
            this.spreadsheetCommandBarButtonItem16.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 12;
            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 = 29;
            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 = 30;
            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 = 31;
            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 = 32;
            this.spreadsheetCommandBarCheckItem4.Name = "spreadsheetCommandBarCheckItem4";
            this.spreadsheetCommandBarCheckItem4.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 13;
            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 = 33;
            this.spreadsheetCommandBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            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.spreadsheetCommandBarButtonItem29),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeBorderLineColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeBorderLineStyleItem1)});
            this.spreadsheetCommandBarSubItem1.Name = "spreadsheetCommandBarSubItem1";
            this.spreadsheetCommandBarSubItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem17
            // 
            this.spreadsheetCommandBarButtonItem17.CommandName = "FormatBottomBorder";
            this.spreadsheetCommandBarButtonItem17.Id = 34;
            this.spreadsheetCommandBarButtonItem17.Name = "spreadsheetCommandBarButtonItem17";
            // 
            // spreadsheetCommandBarButtonItem18
            // 
            this.spreadsheetCommandBarButtonItem18.CommandName = "FormatTopBorder";
            this.spreadsheetCommandBarButtonItem18.Id = 35;
            this.spreadsheetCommandBarButtonItem18.Name = "spreadsheetCommandBarButtonItem18";
            // 
            // spreadsheetCommandBarButtonItem19
            // 
            this.spreadsheetCommandBarButtonItem19.CommandName = "FormatLeftBorder";
            this.spreadsheetCommandBarButtonItem19.Id = 36;
            this.spreadsheetCommandBarButtonItem19.Name = "spreadsheetCommandBarButtonItem19";
            // 
            // spreadsheetCommandBarButtonItem20
            // 
            this.spreadsheetCommandBarButtonItem20.CommandName = "FormatRightBorder";
            this.spreadsheetCommandBarButtonItem20.Id = 37;
            this.spreadsheetCommandBarButtonItem20.Name = "spreadsheetCommandBarButtonItem20";
            // 
            // spreadsheetCommandBarButtonItem21
            // 
            this.spreadsheetCommandBarButtonItem21.CommandName = "FormatNoBorders";
            this.spreadsheetCommandBarButtonItem21.Id = 38;
            this.spreadsheetCommandBarButtonItem21.Name = "spreadsheetCommandBarButtonItem21";
            // 
            // spreadsheetCommandBarButtonItem22
            // 
            this.spreadsheetCommandBarButtonItem22.CommandName = "FormatAllBorders";
            this.spreadsheetCommandBarButtonItem22.Id = 39;
            this.spreadsheetCommandBarButtonItem22.Name = "spreadsheetCommandBarButtonItem22";
            // 
            // spreadsheetCommandBarButtonItem23
            // 
            this.spreadsheetCommandBarButtonItem23.CommandName = "FormatOutsideBorders";
            this.spreadsheetCommandBarButtonItem23.Id = 40;
            this.spreadsheetCommandBarButtonItem23.Name = "spreadsheetCommandBarButtonItem23";
            // 
            // spreadsheetCommandBarButtonItem24
            // 
            this.spreadsheetCommandBarButtonItem24.CommandName = "FormatThickBorder";
            this.spreadsheetCommandBarButtonItem24.Id = 41;
            this.spreadsheetCommandBarButtonItem24.Name = "spreadsheetCommandBarButtonItem24";
            // 
            // spreadsheetCommandBarButtonItem25
            // 
            this.spreadsheetCommandBarButtonItem25.CommandName = "FormatBottomDoubleBorder";
            this.spreadsheetCommandBarButtonItem25.Id = 42;
            this.spreadsheetCommandBarButtonItem25.Name = "spreadsheetCommandBarButtonItem25";
            // 
            // spreadsheetCommandBarButtonItem26
            // 
            this.spreadsheetCommandBarButtonItem26.CommandName = "FormatBottomThickBorder";
            this.spreadsheetCommandBarButtonItem26.Id = 43;
            this.spreadsheetCommandBarButtonItem26.Name = "spreadsheetCommandBarButtonItem26";
            // 
            // spreadsheetCommandBarButtonItem27
            // 
            this.spreadsheetCommandBarButtonItem27.CommandName = "FormatTopAndBottomBorder";
            this.spreadsheetCommandBarButtonItem27.Id = 44;
            this.spreadsheetCommandBarButtonItem27.Name = "spreadsheetCommandBarButtonItem27";
            // 
            // spreadsheetCommandBarButtonItem28
            // 
            this.spreadsheetCommandBarButtonItem28.CommandName = "FormatTopAndThickBottomBorder";
            this.spreadsheetCommandBarButtonItem28.Id = 45;
            this.spreadsheetCommandBarButtonItem28.Name = "spreadsheetCommandBarButtonItem28";
            // 
            // spreadsheetCommandBarButtonItem29
            // 
            this.spreadsheetCommandBarButtonItem29.CommandName = "FormatTopAndDoubleBottomBorder";
            this.spreadsheetCommandBarButtonItem29.Id = 46;
            this.spreadsheetCommandBarButtonItem29.Name = "spreadsheetCommandBarButtonItem29";
            // 
            // changeBorderLineColorItem1
            // 
            this.changeBorderLineColorItem1.ActAsDropDown = true;
            this.changeBorderLineColorItem1.Id = 47;
            this.changeBorderLineColorItem1.Name = "changeBorderLineColorItem1";
            // 
            // changeBorderLineStyleItem1
            // 
            this.changeBorderLineStyleItem1.DropDownControl = this.commandBarGalleryDropDown1;
            this.changeBorderLineStyleItem1.Id = 48;
            this.changeBorderLineStyleItem1.Name = "changeBorderLineStyleItem1";
            // 
            // commandBarGalleryDropDown1
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown1.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown1.Gallery.ColumnCount = 1;
            this.commandBarGalleryDropDown1.Gallery.DrawImageBackground = false;
            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.Name = "commandBarGalleryDropDown1";
            this.commandBarGalleryDropDown1.Ribbon = this.ribbonControl1;
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 14;
            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 = 49;
            this.changeCellFillColorItem1.Name = "changeCellFillColorItem1";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 50;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 15;
            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 = 51;
            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 = 52;
            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 = 53;
            this.spreadsheetCommandBarCheckItem7.Name = "spreadsheetCommandBarCheckItem7";
            this.spreadsheetCommandBarCheckItem7.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 16;
            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 = 54;
            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 = 55;
            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 = 56;
            this.spreadsheetCommandBarCheckItem10.Name = "spreadsheetCommandBarCheckItem10";
            this.spreadsheetCommandBarCheckItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 17;
            this.barButtonGroup7.ItemLinks.Add(this.spreadsheetCommandBarButtonItem30);
            this.barButtonGroup7.ItemLinks.Add(this.spreadsheetCommandBarButtonItem31);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            // 
            // spreadsheetCommandBarButtonItem30
            // 
            this.spreadsheetCommandBarButtonItem30.ButtonGroupTag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            this.spreadsheetCommandBarButtonItem30.CommandName = "FormatDecreaseIndent";
            this.spreadsheetCommandBarButtonItem30.Id = 57;
            this.spreadsheetCommandBarButtonItem30.Name = "spreadsheetCommandBarButtonItem30";
            this.spreadsheetCommandBarButtonItem30.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem31
            // 
            this.spreadsheetCommandBarButtonItem31.ButtonGroupTag = "{A5E37DED-106E-44FC-8044-CE3824C08225}";
            this.spreadsheetCommandBarButtonItem31.CommandName = "FormatIncreaseIndent";
            this.spreadsheetCommandBarButtonItem31.Id = 58;
            this.spreadsheetCommandBarButtonItem31.Name = "spreadsheetCommandBarButtonItem31";
            this.spreadsheetCommandBarButtonItem31.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarCheckItem11
            // 
            this.spreadsheetCommandBarCheckItem11.CommandName = "FormatWrapText";
            this.spreadsheetCommandBarCheckItem11.Id = 59;
            this.spreadsheetCommandBarCheckItem11.Name = "spreadsheetCommandBarCheckItem11";
            this.spreadsheetCommandBarCheckItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarSubItem2
            // 
            this.spreadsheetCommandBarSubItem2.CommandName = "EditingMergeCellsCommandGroup";
            this.spreadsheetCommandBarSubItem2.Id = 60;
            this.spreadsheetCommandBarSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem12),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem32),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem33),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem34)});
            this.spreadsheetCommandBarSubItem2.Name = "spreadsheetCommandBarSubItem2";
            this.spreadsheetCommandBarSubItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem12
            // 
            this.spreadsheetCommandBarCheckItem12.CommandName = "EditingMergeAndCenterCells";
            this.spreadsheetCommandBarCheckItem12.Id = 61;
            this.spreadsheetCommandBarCheckItem12.Name = "spreadsheetCommandBarCheckItem12";
            // 
            // spreadsheetCommandBarButtonItem32
            // 
            this.spreadsheetCommandBarButtonItem32.CommandName = "EditingMergeCellsAcross";
            this.spreadsheetCommandBarButtonItem32.Id = 62;
            this.spreadsheetCommandBarButtonItem32.Name = "spreadsheetCommandBarButtonItem32";
            // 
            // spreadsheetCommandBarButtonItem33
            // 
            this.spreadsheetCommandBarButtonItem33.CommandName = "EditingMergeCells";
            this.spreadsheetCommandBarButtonItem33.Id = 63;
            this.spreadsheetCommandBarButtonItem33.Name = "spreadsheetCommandBarButtonItem33";
            // 
            // spreadsheetCommandBarButtonItem34
            // 
            this.spreadsheetCommandBarButtonItem34.CommandName = "EditingUnmergeCells";
            this.spreadsheetCommandBarButtonItem34.Id = 64;
            this.spreadsheetCommandBarButtonItem34.Name = "spreadsheetCommandBarButtonItem34";
            // 
            // barButtonGroup8
            // 
            this.barButtonGroup8.Id = 18;
            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.EditWidth = 130;
            this.changeNumberFormatItem1.Id = 65;
            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 = 19;
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarSubItem3);
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarButtonItem40);
            this.barButtonGroup9.ItemLinks.Add(this.spreadsheetCommandBarButtonItem41);
            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 = 66;
            this.spreadsheetCommandBarSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem35),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem36),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem37),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem38),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem39)});
            this.spreadsheetCommandBarSubItem3.Name = "spreadsheetCommandBarSubItem3";
            this.spreadsheetCommandBarSubItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem35
            // 
            this.spreadsheetCommandBarButtonItem35.CommandName = "FormatNumberAccountingUS";
            this.spreadsheetCommandBarButtonItem35.Id = 67;
            this.spreadsheetCommandBarButtonItem35.Name = "spreadsheetCommandBarButtonItem35";
            // 
            // spreadsheetCommandBarButtonItem36
            // 
            this.spreadsheetCommandBarButtonItem36.CommandName = "FormatNumberAccountingUK";
            this.spreadsheetCommandBarButtonItem36.Id = 68;
            this.spreadsheetCommandBarButtonItem36.Name = "spreadsheetCommandBarButtonItem36";
            // 
            // spreadsheetCommandBarButtonItem37
            // 
            this.spreadsheetCommandBarButtonItem37.CommandName = "FormatNumberAccountingEuro";
            this.spreadsheetCommandBarButtonItem37.Id = 69;
            this.spreadsheetCommandBarButtonItem37.Name = "spreadsheetCommandBarButtonItem37";
            // 
            // spreadsheetCommandBarButtonItem38
            // 
            this.spreadsheetCommandBarButtonItem38.CommandName = "FormatNumberAccountingPRC";
            this.spreadsheetCommandBarButtonItem38.Id = 70;
            this.spreadsheetCommandBarButtonItem38.Name = "spreadsheetCommandBarButtonItem38";
            // 
            // spreadsheetCommandBarButtonItem39
            // 
            this.spreadsheetCommandBarButtonItem39.CommandName = "FormatNumberAccountingSwiss";
            this.spreadsheetCommandBarButtonItem39.Id = 71;
            this.spreadsheetCommandBarButtonItem39.Name = "spreadsheetCommandBarButtonItem39";
            // 
            // spreadsheetCommandBarButtonItem40
            // 
            this.spreadsheetCommandBarButtonItem40.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarButtonItem40.CommandName = "FormatNumberPercent";
            this.spreadsheetCommandBarButtonItem40.Id = 72;
            this.spreadsheetCommandBarButtonItem40.Name = "spreadsheetCommandBarButtonItem40";
            this.spreadsheetCommandBarButtonItem40.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem41
            // 
            this.spreadsheetCommandBarButtonItem41.ButtonGroupTag = "{508C2CE6-E1C8-4DD1-BA50-6C210FDB31B0}";
            this.spreadsheetCommandBarButtonItem41.CommandName = "FormatNumberAccounting";
            this.spreadsheetCommandBarButtonItem41.Id = 73;
            this.spreadsheetCommandBarButtonItem41.Name = "spreadsheetCommandBarButtonItem41";
            this.spreadsheetCommandBarButtonItem41.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // barButtonGroup10
            // 
            this.barButtonGroup10.Id = 20;
            this.barButtonGroup10.ItemLinks.Add(this.spreadsheetCommandBarButtonItem42);
            this.barButtonGroup10.ItemLinks.Add(this.spreadsheetCommandBarButtonItem43);
            this.barButtonGroup10.Name = "barButtonGroup10";
            this.barButtonGroup10.Tag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            // 
            // spreadsheetCommandBarButtonItem42
            // 
            this.spreadsheetCommandBarButtonItem42.ButtonGroupTag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            this.spreadsheetCommandBarButtonItem42.CommandName = "FormatNumberIncreaseDecimal";
            this.spreadsheetCommandBarButtonItem42.Id = 74;
            this.spreadsheetCommandBarButtonItem42.Name = "spreadsheetCommandBarButtonItem42";
            this.spreadsheetCommandBarButtonItem42.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonItem43
            // 
            this.spreadsheetCommandBarButtonItem43.ButtonGroupTag = "{BBAB348B-BDB2-487A-A883-EFB9982DC698}";
            this.spreadsheetCommandBarButtonItem43.CommandName = "FormatNumberDecreaseDecimal";
            this.spreadsheetCommandBarButtonItem43.Id = 75;
            this.spreadsheetCommandBarButtonItem43.Name = "spreadsheetCommandBarButtonItem43";
            this.spreadsheetCommandBarButtonItem43.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem2
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.CommandName = "ConditionalFormattingColorScalesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.DropDownControl = this.commandBarGalleryDropDown3;
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.Id = 93;
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.Name = "spreadsheetCommandBarButtonGalleryDropDownItem2";
            this.spreadsheetCommandBarButtonGalleryDropDownItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarGalleryDropDown3
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown3.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.commandBarGalleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup3});
            this.commandBarGalleryDropDown3.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown3.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown3.Name = "commandBarGalleryDropDown3";
            this.commandBarGalleryDropDown3.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem3
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.CommandName = "ConditionalFormattingIconSetsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.DropDownControl = this.commandBarGalleryDropDown4;
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.Id = 94;
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.Name = "spreadsheetCommandBarButtonGalleryDropDownItem3";
            this.spreadsheetCommandBarButtonGalleryDropDownItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarGalleryDropDown4
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown4.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.commandBarGalleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup4,
            spreadsheetCommandGalleryItemGroup5,
            spreadsheetCommandGalleryItemGroup6,
            spreadsheetCommandGalleryItemGroup7});
            this.commandBarGalleryDropDown4.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown4.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown4.Name = "commandBarGalleryDropDown4";
            this.commandBarGalleryDropDown4.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonItem57
            // 
            this.spreadsheetCommandBarButtonItem57.CommandName = "ConditionalFormattingRemoveFromSheet";
            this.spreadsheetCommandBarButtonItem57.Id = 95;
            this.spreadsheetCommandBarButtonItem57.Name = "spreadsheetCommandBarButtonItem57";
            // 
            // spreadsheetCommandBarButtonItem58
            // 
            this.spreadsheetCommandBarButtonItem58.CommandName = "ConditionalFormattingRemove";
            this.spreadsheetCommandBarButtonItem58.Id = 96;
            this.spreadsheetCommandBarButtonItem58.Name = "spreadsheetCommandBarButtonItem58";
            // 
            // spreadsheetCommandBarSubItem7
            // 
            this.spreadsheetCommandBarSubItem7.CommandName = "ConditionalFormattingRemoveCommandGroup";
            this.spreadsheetCommandBarSubItem7.Id = 97;
            this.spreadsheetCommandBarSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem57),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem58)});
            this.spreadsheetCommandBarSubItem7.Name = "spreadsheetCommandBarSubItem7";
            // 
            // galleryFormatAsTableItem1
            // 
            this.galleryFormatAsTableItem1.DropDownControl = this.commandBarGalleryDropDown5;
            this.galleryFormatAsTableItem1.Id = 98;
            this.galleryFormatAsTableItem1.Name = "galleryFormatAsTableItem1";
            // 
            // 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.Name = "commandBarGalleryDropDown5";
            this.commandBarGalleryDropDown5.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 = 99;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // spreadsheetCommandBarSubItem8
            // 
            this.spreadsheetCommandBarSubItem8.CommandName = "InsertCellsCommandGroup";
            this.spreadsheetCommandBarSubItem8.Id = 100;
            this.spreadsheetCommandBarSubItem8.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem59),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem60),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem61)});
            this.spreadsheetCommandBarSubItem8.Name = "spreadsheetCommandBarSubItem8";
            // 
            // spreadsheetCommandBarButtonItem59
            // 
            this.spreadsheetCommandBarButtonItem59.CommandName = "InsertSheetRows";
            this.spreadsheetCommandBarButtonItem59.Id = 101;
            this.spreadsheetCommandBarButtonItem59.Name = "spreadsheetCommandBarButtonItem59";
            // 
            // spreadsheetCommandBarButtonItem60
            // 
            this.spreadsheetCommandBarButtonItem60.CommandName = "InsertSheetColumns";
            this.spreadsheetCommandBarButtonItem60.Id = 102;
            this.spreadsheetCommandBarButtonItem60.Name = "spreadsheetCommandBarButtonItem60";
            // 
            // spreadsheetCommandBarButtonItem61
            // 
            this.spreadsheetCommandBarButtonItem61.CommandName = "InsertSheet";
            this.spreadsheetCommandBarButtonItem61.Id = 103;
            this.spreadsheetCommandBarButtonItem61.Name = "spreadsheetCommandBarButtonItem61";
            // 
            // spreadsheetCommandBarSubItem9
            // 
            this.spreadsheetCommandBarSubItem9.CommandName = "RemoveCellsCommandGroup";
            this.spreadsheetCommandBarSubItem9.Id = 104;
            this.spreadsheetCommandBarSubItem9.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem62),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem63),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem64)});
            this.spreadsheetCommandBarSubItem9.Name = "spreadsheetCommandBarSubItem9";
            // 
            // spreadsheetCommandBarButtonItem62
            // 
            this.spreadsheetCommandBarButtonItem62.CommandName = "RemoveSheetRows";
            this.spreadsheetCommandBarButtonItem62.Id = 105;
            this.spreadsheetCommandBarButtonItem62.Name = "spreadsheetCommandBarButtonItem62";
            // 
            // spreadsheetCommandBarButtonItem63
            // 
            this.spreadsheetCommandBarButtonItem63.CommandName = "RemoveSheetColumns";
            this.spreadsheetCommandBarButtonItem63.Id = 106;
            this.spreadsheetCommandBarButtonItem63.Name = "spreadsheetCommandBarButtonItem63";
            // 
            // spreadsheetCommandBarButtonItem64
            // 
            this.spreadsheetCommandBarButtonItem64.CommandName = "RemoveSheet";
            this.spreadsheetCommandBarButtonItem64.Id = 107;
            this.spreadsheetCommandBarButtonItem64.Name = "spreadsheetCommandBarButtonItem64";
            // 
            // spreadsheetCommandBarSubItem10
            // 
            this.spreadsheetCommandBarSubItem10.CommandName = "FormatCommandGroup";
            this.spreadsheetCommandBarSubItem10.Id = 108;
            this.spreadsheetCommandBarSubItem10.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            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.spreadsheetCommandBarButtonItem69),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarSubItem11),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem76),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem77),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeSheetTabColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem78),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem13),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem79)});
            this.spreadsheetCommandBarSubItem10.Name = "spreadsheetCommandBarSubItem10";
            // 
            // spreadsheetCommandBarButtonItem65
            // 
            this.spreadsheetCommandBarButtonItem65.CommandName = "FormatRowHeight";
            this.spreadsheetCommandBarButtonItem65.Id = 109;
            this.spreadsheetCommandBarButtonItem65.Name = "spreadsheetCommandBarButtonItem65";
            // 
            // spreadsheetCommandBarButtonItem66
            // 
            this.spreadsheetCommandBarButtonItem66.CommandName = "FormatAutoFitRowHeight";
            this.spreadsheetCommandBarButtonItem66.Id = 110;
            this.spreadsheetCommandBarButtonItem66.Name = "spreadsheetCommandBarButtonItem66";
            // 
            // spreadsheetCommandBarButtonItem67
            // 
            this.spreadsheetCommandBarButtonItem67.CommandName = "FormatColumnWidth";
            this.spreadsheetCommandBarButtonItem67.Id = 111;
            this.spreadsheetCommandBarButtonItem67.Name = "spreadsheetCommandBarButtonItem67";
            // 
            // spreadsheetCommandBarButtonItem68
            // 
            this.spreadsheetCommandBarButtonItem68.CommandName = "FormatAutoFitColumnWidth";
            this.spreadsheetCommandBarButtonItem68.Id = 112;
            this.spreadsheetCommandBarButtonItem68.Name = "spreadsheetCommandBarButtonItem68";
            // 
            // spreadsheetCommandBarButtonItem69
            // 
            this.spreadsheetCommandBarButtonItem69.CommandName = "FormatDefaultColumnWidth";
            this.spreadsheetCommandBarButtonItem69.Id = 113;
            this.spreadsheetCommandBarButtonItem69.Name = "spreadsheetCommandBarButtonItem69";
            // 
            // spreadsheetCommandBarSubItem11
            // 
            this.spreadsheetCommandBarSubItem11.CommandName = "HideAndUnhideCommandGroup";
            this.spreadsheetCommandBarSubItem11.Id = 120;
            this.spreadsheetCommandBarSubItem11.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            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),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem75)});
            this.spreadsheetCommandBarSubItem11.Name = "spreadsheetCommandBarSubItem11";
            // 
            // spreadsheetCommandBarButtonItem70
            // 
            this.spreadsheetCommandBarButtonItem70.CommandName = "HideRows";
            this.spreadsheetCommandBarButtonItem70.Id = 114;
            this.spreadsheetCommandBarButtonItem70.Name = "spreadsheetCommandBarButtonItem70";
            // 
            // spreadsheetCommandBarButtonItem71
            // 
            this.spreadsheetCommandBarButtonItem71.CommandName = "HideColumns";
            this.spreadsheetCommandBarButtonItem71.Id = 115;
            this.spreadsheetCommandBarButtonItem71.Name = "spreadsheetCommandBarButtonItem71";
            // 
            // spreadsheetCommandBarButtonItem72
            // 
            this.spreadsheetCommandBarButtonItem72.CommandName = "HideSheet";
            this.spreadsheetCommandBarButtonItem72.Id = 116;
            this.spreadsheetCommandBarButtonItem72.Name = "spreadsheetCommandBarButtonItem72";
            // 
            // spreadsheetCommandBarButtonItem73
            // 
            this.spreadsheetCommandBarButtonItem73.CommandName = "UnhideRows";
            this.spreadsheetCommandBarButtonItem73.Id = 117;
            this.spreadsheetCommandBarButtonItem73.Name = "spreadsheetCommandBarButtonItem73";
            // 
            // spreadsheetCommandBarButtonItem74
            // 
            this.spreadsheetCommandBarButtonItem74.CommandName = "UnhideColumns";
            this.spreadsheetCommandBarButtonItem74.Id = 118;
            this.spreadsheetCommandBarButtonItem74.Name = "spreadsheetCommandBarButtonItem74";
            // 
            // spreadsheetCommandBarButtonItem75
            // 
            this.spreadsheetCommandBarButtonItem75.CommandName = "UnhideSheet";
            this.spreadsheetCommandBarButtonItem75.Id = 119;
            this.spreadsheetCommandBarButtonItem75.Name = "spreadsheetCommandBarButtonItem75";
            // 
            // spreadsheetCommandBarButtonItem76
            // 
            this.spreadsheetCommandBarButtonItem76.CommandName = "RenameSheet";
            this.spreadsheetCommandBarButtonItem76.Id = 121;
            this.spreadsheetCommandBarButtonItem76.Name = "spreadsheetCommandBarButtonItem76";
            // 
            // spreadsheetCommandBarButtonItem77
            // 
            this.spreadsheetCommandBarButtonItem77.CommandName = "MoveOrCopySheet";
            this.spreadsheetCommandBarButtonItem77.Id = 122;
            this.spreadsheetCommandBarButtonItem77.Name = "spreadsheetCommandBarButtonItem77";
            // 
            // changeSheetTabColorItem1
            // 
            this.changeSheetTabColorItem1.ActAsDropDown = true;
            this.changeSheetTabColorItem1.Id = 123;
            this.changeSheetTabColorItem1.Name = "changeSheetTabColorItem1";
            // 
            // spreadsheetCommandBarButtonItem78
            // 
            this.spreadsheetCommandBarButtonItem78.CommandName = "ReviewProtectSheet";
            this.spreadsheetCommandBarButtonItem78.Id = 124;
            this.spreadsheetCommandBarButtonItem78.Name = "spreadsheetCommandBarButtonItem78";
            // 
            // spreadsheetCommandBarCheckItem13
            // 
            this.spreadsheetCommandBarCheckItem13.CommandName = "FormatCellLocked";
            this.spreadsheetCommandBarCheckItem13.Id = 125;
            this.spreadsheetCommandBarCheckItem13.Name = "spreadsheetCommandBarCheckItem13";
            // 
            // spreadsheetCommandBarButtonItem79
            // 
            this.spreadsheetCommandBarButtonItem79.CommandName = "FormatCellsContextMenuItem";
            this.spreadsheetCommandBarButtonItem79.Id = 126;
            this.spreadsheetCommandBarButtonItem79.Name = "spreadsheetCommandBarButtonItem79";
            // 
            // spreadsheetCommandBarSubItem12
            // 
            this.spreadsheetCommandBarSubItem12.CommandName = "EditingAutoSumCommandGroup";
            this.spreadsheetCommandBarSubItem12.Id = 127;
            this.spreadsheetCommandBarSubItem12.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem80),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem81),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem82),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem83),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem84)});
            this.spreadsheetCommandBarSubItem12.Name = "spreadsheetCommandBarSubItem12";
            this.spreadsheetCommandBarSubItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem80
            // 
            this.spreadsheetCommandBarButtonItem80.CommandName = "FunctionsInsertSum";
            this.spreadsheetCommandBarButtonItem80.Id = 128;
            this.spreadsheetCommandBarButtonItem80.Name = "spreadsheetCommandBarButtonItem80";
            // 
            // spreadsheetCommandBarButtonItem81
            // 
            this.spreadsheetCommandBarButtonItem81.CommandName = "FunctionsInsertAverage";
            this.spreadsheetCommandBarButtonItem81.Id = 129;
            this.spreadsheetCommandBarButtonItem81.Name = "spreadsheetCommandBarButtonItem81";
            // 
            // spreadsheetCommandBarButtonItem82
            // 
            this.spreadsheetCommandBarButtonItem82.CommandName = "FunctionsInsertCountNumbers";
            this.spreadsheetCommandBarButtonItem82.Id = 130;
            this.spreadsheetCommandBarButtonItem82.Name = "spreadsheetCommandBarButtonItem82";
            // 
            // spreadsheetCommandBarButtonItem83
            // 
            this.spreadsheetCommandBarButtonItem83.CommandName = "FunctionsInsertMax";
            this.spreadsheetCommandBarButtonItem83.Id = 131;
            this.spreadsheetCommandBarButtonItem83.Name = "spreadsheetCommandBarButtonItem83";
            // 
            // spreadsheetCommandBarButtonItem84
            // 
            this.spreadsheetCommandBarButtonItem84.CommandName = "FunctionsInsertMin";
            this.spreadsheetCommandBarButtonItem84.Id = 132;
            this.spreadsheetCommandBarButtonItem84.Name = "spreadsheetCommandBarButtonItem84";
            // 
            // spreadsheetCommandBarSubItem13
            // 
            this.spreadsheetCommandBarSubItem13.CommandName = "EditingFillCommandGroup";
            this.spreadsheetCommandBarSubItem13.Id = 133;
            this.spreadsheetCommandBarSubItem13.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem85),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem86),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem87),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem88)});
            this.spreadsheetCommandBarSubItem13.Name = "spreadsheetCommandBarSubItem13";
            this.spreadsheetCommandBarSubItem13.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem85
            // 
            this.spreadsheetCommandBarButtonItem85.CommandName = "EditingFillDown";
            this.spreadsheetCommandBarButtonItem85.Id = 134;
            this.spreadsheetCommandBarButtonItem85.Name = "spreadsheetCommandBarButtonItem85";
            // 
            // spreadsheetCommandBarButtonItem86
            // 
            this.spreadsheetCommandBarButtonItem86.CommandName = "EditingFillRight";
            this.spreadsheetCommandBarButtonItem86.Id = 135;
            this.spreadsheetCommandBarButtonItem86.Name = "spreadsheetCommandBarButtonItem86";
            // 
            // spreadsheetCommandBarButtonItem87
            // 
            this.spreadsheetCommandBarButtonItem87.CommandName = "EditingFillUp";
            this.spreadsheetCommandBarButtonItem87.Id = 136;
            this.spreadsheetCommandBarButtonItem87.Name = "spreadsheetCommandBarButtonItem87";
            // 
            // spreadsheetCommandBarButtonItem88
            // 
            this.spreadsheetCommandBarButtonItem88.CommandName = "EditingFillLeft";
            this.spreadsheetCommandBarButtonItem88.Id = 137;
            this.spreadsheetCommandBarButtonItem88.Name = "spreadsheetCommandBarButtonItem88";
            // 
            // spreadsheetCommandBarSubItem14
            // 
            this.spreadsheetCommandBarSubItem14.CommandName = "FormatClearCommandGroup";
            this.spreadsheetCommandBarSubItem14.Id = 138;
            this.spreadsheetCommandBarSubItem14.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem89),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem90),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem91),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem92),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem93),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem94)});
            this.spreadsheetCommandBarSubItem14.Name = "spreadsheetCommandBarSubItem14";
            this.spreadsheetCommandBarSubItem14.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem89
            // 
            this.spreadsheetCommandBarButtonItem89.CommandName = "FormatClearAll";
            this.spreadsheetCommandBarButtonItem89.Id = 139;
            this.spreadsheetCommandBarButtonItem89.Name = "spreadsheetCommandBarButtonItem89";
            // 
            // spreadsheetCommandBarButtonItem90
            // 
            this.spreadsheetCommandBarButtonItem90.CommandName = "FormatClearFormats";
            this.spreadsheetCommandBarButtonItem90.Id = 140;
            this.spreadsheetCommandBarButtonItem90.Name = "spreadsheetCommandBarButtonItem90";
            // 
            // spreadsheetCommandBarButtonItem91
            // 
            this.spreadsheetCommandBarButtonItem91.CommandName = "FormatClearContents";
            this.spreadsheetCommandBarButtonItem91.Id = 141;
            this.spreadsheetCommandBarButtonItem91.Name = "spreadsheetCommandBarButtonItem91";
            // 
            // spreadsheetCommandBarButtonItem92
            // 
            this.spreadsheetCommandBarButtonItem92.CommandName = "FormatClearComments";
            this.spreadsheetCommandBarButtonItem92.Id = 142;
            this.spreadsheetCommandBarButtonItem92.Name = "spreadsheetCommandBarButtonItem92";
            // 
            // spreadsheetCommandBarButtonItem93
            // 
            this.spreadsheetCommandBarButtonItem93.CommandName = "FormatClearHyperlinks";
            this.spreadsheetCommandBarButtonItem93.Id = 143;
            this.spreadsheetCommandBarButtonItem93.Name = "spreadsheetCommandBarButtonItem93";
            // 
            // spreadsheetCommandBarButtonItem94
            // 
            this.spreadsheetCommandBarButtonItem94.CommandName = "FormatRemoveHyperlinks";
            this.spreadsheetCommandBarButtonItem94.Id = 144;
            this.spreadsheetCommandBarButtonItem94.Name = "spreadsheetCommandBarButtonItem94";
            // 
            // spreadsheetCommandBarSubItem15
            // 
            this.spreadsheetCommandBarSubItem15.CommandName = "EditingSortAndFilterCommandGroup";
            this.spreadsheetCommandBarSubItem15.Id = 145;
            this.spreadsheetCommandBarSubItem15.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem95),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem96),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem14),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem97),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem98)});
            this.spreadsheetCommandBarSubItem15.Name = "spreadsheetCommandBarSubItem15";
            // 
            // spreadsheetCommandBarButtonItem95
            // 
            this.spreadsheetCommandBarButtonItem95.CommandName = "DataSortAscending";
            this.spreadsheetCommandBarButtonItem95.Id = 146;
            this.spreadsheetCommandBarButtonItem95.Name = "spreadsheetCommandBarButtonItem95";
            // 
            // spreadsheetCommandBarButtonItem96
            // 
            this.spreadsheetCommandBarButtonItem96.CommandName = "DataSortDescending";
            this.spreadsheetCommandBarButtonItem96.Id = 147;
            this.spreadsheetCommandBarButtonItem96.Name = "spreadsheetCommandBarButtonItem96";
            // 
            // spreadsheetCommandBarCheckItem14
            // 
            this.spreadsheetCommandBarCheckItem14.CommandName = "DataFilterToggle";
            this.spreadsheetCommandBarCheckItem14.Id = 148;
            this.spreadsheetCommandBarCheckItem14.Name = "spreadsheetCommandBarCheckItem14";
            // 
            // spreadsheetCommandBarButtonItem97
            // 
            this.spreadsheetCommandBarButtonItem97.CommandName = "DataFilterClear";
            this.spreadsheetCommandBarButtonItem97.Id = 149;
            this.spreadsheetCommandBarButtonItem97.Name = "spreadsheetCommandBarButtonItem97";
            // 
            // spreadsheetCommandBarButtonItem98
            // 
            this.spreadsheetCommandBarButtonItem98.CommandName = "DataFilterReApply";
            this.spreadsheetCommandBarButtonItem98.Id = 150;
            this.spreadsheetCommandBarButtonItem98.Name = "spreadsheetCommandBarButtonItem98";
            // 
            // spreadsheetCommandBarSubItem16
            // 
            this.spreadsheetCommandBarSubItem16.CommandName = "EditingFindAndSelectCommandGroup";
            this.spreadsheetCommandBarSubItem16.Id = 151;
            this.spreadsheetCommandBarSubItem16.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem99),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem100),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem101),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem102),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem103),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem104),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem105)});
            this.spreadsheetCommandBarSubItem16.Name = "spreadsheetCommandBarSubItem16";
            // 
            // spreadsheetCommandBarButtonItem99
            // 
            this.spreadsheetCommandBarButtonItem99.CommandName = "EditingFind";
            this.spreadsheetCommandBarButtonItem99.Id = 152;
            this.spreadsheetCommandBarButtonItem99.Name = "spreadsheetCommandBarButtonItem99";
            // 
            // spreadsheetCommandBarButtonItem100
            // 
            this.spreadsheetCommandBarButtonItem100.CommandName = "EditingReplace";
            this.spreadsheetCommandBarButtonItem100.Id = 153;
            this.spreadsheetCommandBarButtonItem100.Name = "spreadsheetCommandBarButtonItem100";
            // 
            // spreadsheetCommandBarButtonItem101
            // 
            this.spreadsheetCommandBarButtonItem101.CommandName = "EditingSelectFormulas";
            this.spreadsheetCommandBarButtonItem101.Id = 154;
            this.spreadsheetCommandBarButtonItem101.Name = "spreadsheetCommandBarButtonItem101";
            // 
            // spreadsheetCommandBarButtonItem102
            // 
            this.spreadsheetCommandBarButtonItem102.CommandName = "EditingSelectComments";
            this.spreadsheetCommandBarButtonItem102.Id = 155;
            this.spreadsheetCommandBarButtonItem102.Name = "spreadsheetCommandBarButtonItem102";
            // 
            // spreadsheetCommandBarButtonItem103
            // 
            this.spreadsheetCommandBarButtonItem103.CommandName = "EditingSelectConditionalFormatting";
            this.spreadsheetCommandBarButtonItem103.Id = 156;
            this.spreadsheetCommandBarButtonItem103.Name = "spreadsheetCommandBarButtonItem103";
            // 
            // spreadsheetCommandBarButtonItem104
            // 
            this.spreadsheetCommandBarButtonItem104.CommandName = "EditingSelectConstants";
            this.spreadsheetCommandBarButtonItem104.Id = 157;
            this.spreadsheetCommandBarButtonItem104.Name = "spreadsheetCommandBarButtonItem104";
            // 
            // spreadsheetCommandBarButtonItem105
            // 
            this.spreadsheetCommandBarButtonItem105.CommandName = "EditingSelectDataValidation";
            this.spreadsheetCommandBarButtonItem105.Id = 158;
            this.spreadsheetCommandBarButtonItem105.Name = "spreadsheetCommandBarButtonItem105";
            // 
            // spreadsheetCommandBarButtonItem106
            // 
            this.spreadsheetCommandBarButtonItem106.CommandName = "InsertPivotTable";
            this.spreadsheetCommandBarButtonItem106.Id = 159;
            this.spreadsheetCommandBarButtonItem106.Name = "spreadsheetCommandBarButtonItem106";
            // 
            // spreadsheetCommandBarButtonItem107
            // 
            this.spreadsheetCommandBarButtonItem107.CommandName = "InsertTable";
            this.spreadsheetCommandBarButtonItem107.Id = 160;
            this.spreadsheetCommandBarButtonItem107.Name = "spreadsheetCommandBarButtonItem107";
            // 
            // spreadsheetCommandBarButtonItem108
            // 
            this.spreadsheetCommandBarButtonItem108.CommandName = "InsertPicture";
            this.spreadsheetCommandBarButtonItem108.Id = 161;
            this.spreadsheetCommandBarButtonItem108.Name = "spreadsheetCommandBarButtonItem108";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem4
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.CommandName = "InsertChartColumnCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.DropDownControl = this.commandBarGalleryDropDown6;
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.Id = 162;
            this.spreadsheetCommandBarButtonGalleryDropDownItem4.Name = "spreadsheetCommandBarButtonGalleryDropDownItem4";
            // 
            // commandBarGalleryDropDown6
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown6.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.commandBarGalleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup8,
            spreadsheetCommandGalleryItemGroup9,
            spreadsheetCommandGalleryItemGroup10,
            spreadsheetCommandGalleryItemGroup11,
            spreadsheetCommandGalleryItemGroup12});
            this.commandBarGalleryDropDown6.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown6.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown6.Name = "commandBarGalleryDropDown6";
            this.commandBarGalleryDropDown6.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem5
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.CommandName = "InsertChartLineCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.DropDownControl = this.commandBarGalleryDropDown7;
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.Id = 163;
            this.spreadsheetCommandBarButtonGalleryDropDownItem5.Name = "spreadsheetCommandBarButtonGalleryDropDownItem5";
            // 
            // commandBarGalleryDropDown7
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown7.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.commandBarGalleryDropDown7.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup13,
            spreadsheetCommandGalleryItemGroup14});
            this.commandBarGalleryDropDown7.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown7.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown7.Name = "commandBarGalleryDropDown7";
            this.commandBarGalleryDropDown7.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem6
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.CommandName = "InsertChartPieCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.DropDownControl = this.commandBarGalleryDropDown8;
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.Id = 164;
            this.spreadsheetCommandBarButtonGalleryDropDownItem6.Name = "spreadsheetCommandBarButtonGalleryDropDownItem6";
            // 
            // commandBarGalleryDropDown8
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown8.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.commandBarGalleryDropDown8.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup15,
            spreadsheetCommandGalleryItemGroup16,
            spreadsheetCommandGalleryItemGroup17});
            this.commandBarGalleryDropDown8.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown8.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown8.Name = "commandBarGalleryDropDown8";
            this.commandBarGalleryDropDown8.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem7
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.CommandName = "InsertChartBarCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.DropDownControl = this.commandBarGalleryDropDown9;
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.Id = 165;
            this.spreadsheetCommandBarButtonGalleryDropDownItem7.Name = "spreadsheetCommandBarButtonGalleryDropDownItem7";
            // 
            // commandBarGalleryDropDown9
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown9.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.commandBarGalleryDropDown9.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup18,
            spreadsheetCommandGalleryItemGroup19,
            spreadsheetCommandGalleryItemGroup20,
            spreadsheetCommandGalleryItemGroup21,
            spreadsheetCommandGalleryItemGroup22});
            this.commandBarGalleryDropDown9.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown9.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown9.Name = "commandBarGalleryDropDown9";
            this.commandBarGalleryDropDown9.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem8
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.CommandName = "InsertChartAreaCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.DropDownControl = this.commandBarGalleryDropDown10;
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.Id = 166;
            this.spreadsheetCommandBarButtonGalleryDropDownItem8.Name = "spreadsheetCommandBarButtonGalleryDropDownItem8";
            // 
            // commandBarGalleryDropDown10
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown10.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.commandBarGalleryDropDown10.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup23,
            spreadsheetCommandGalleryItemGroup24});
            this.commandBarGalleryDropDown10.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown10.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown10.Name = "commandBarGalleryDropDown10";
            this.commandBarGalleryDropDown10.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem9
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.CommandName = "InsertChartScatterCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.DropDownControl = this.commandBarGalleryDropDown11;
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.Id = 167;
            this.spreadsheetCommandBarButtonGalleryDropDownItem9.Name = "spreadsheetCommandBarButtonGalleryDropDownItem9";
            // 
            // commandBarGalleryDropDown11
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown11.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.commandBarGalleryDropDown11.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup25,
            spreadsheetCommandGalleryItemGroup26});
            this.commandBarGalleryDropDown11.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown11.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown11.Name = "commandBarGalleryDropDown11";
            this.commandBarGalleryDropDown11.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem10
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.CommandName = "InsertChartOtherCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.DropDownControl = this.commandBarGalleryDropDown12;
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.Id = 168;
            this.spreadsheetCommandBarButtonGalleryDropDownItem10.Name = "spreadsheetCommandBarButtonGalleryDropDownItem10";
            // 
            // commandBarGalleryDropDown12
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown12.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.commandBarGalleryDropDown12.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup27,
            spreadsheetCommandGalleryItemGroup28});
            this.commandBarGalleryDropDown12.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown12.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown12.Name = "commandBarGalleryDropDown12";
            this.commandBarGalleryDropDown12.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonItem109
            // 
            this.spreadsheetCommandBarButtonItem109.CommandName = "InsertHyperlink";
            this.spreadsheetCommandBarButtonItem109.Id = 169;
            this.spreadsheetCommandBarButtonItem109.Name = "spreadsheetCommandBarButtonItem109";
            // 
            // spreadsheetCommandBarButtonItem110
            // 
            this.spreadsheetCommandBarButtonItem110.CommandName = "InsertSymbol";
            this.spreadsheetCommandBarButtonItem110.Id = 170;
            this.spreadsheetCommandBarButtonItem110.Name = "spreadsheetCommandBarButtonItem110";
            // 
            // spreadsheetCommandBarSubItem17
            // 
            this.spreadsheetCommandBarSubItem17.CommandName = "PageSetupMarginsCommandGroup";
            this.spreadsheetCommandBarSubItem17.Id = 171;
            this.spreadsheetCommandBarSubItem17.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem15),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem17),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem111)});
            this.spreadsheetCommandBarSubItem17.Name = "spreadsheetCommandBarSubItem17";
            // 
            // spreadsheetCommandBarCheckItem15
            // 
            this.spreadsheetCommandBarCheckItem15.CaptionDependOnUnits = true;
            this.spreadsheetCommandBarCheckItem15.CommandName = "PageSetupMarginsNormal";
            this.spreadsheetCommandBarCheckItem15.Id = 172;
            this.spreadsheetCommandBarCheckItem15.Name = "spreadsheetCommandBarCheckItem15";
            // 
            // spreadsheetCommandBarCheckItem16
            // 
            this.spreadsheetCommandBarCheckItem16.CaptionDependOnUnits = true;
            this.spreadsheetCommandBarCheckItem16.CommandName = "PageSetupMarginsWide";
            this.spreadsheetCommandBarCheckItem16.Id = 173;
            this.spreadsheetCommandBarCheckItem16.Name = "spreadsheetCommandBarCheckItem16";
            // 
            // spreadsheetCommandBarCheckItem17
            // 
            this.spreadsheetCommandBarCheckItem17.CaptionDependOnUnits = true;
            this.spreadsheetCommandBarCheckItem17.CommandName = "PageSetupMarginsNarrow";
            this.spreadsheetCommandBarCheckItem17.Id = 174;
            this.spreadsheetCommandBarCheckItem17.Name = "spreadsheetCommandBarCheckItem17";
            // 
            // spreadsheetCommandBarButtonItem111
            // 
            this.spreadsheetCommandBarButtonItem111.CommandName = "PageSetupCustomMargins";
            this.spreadsheetCommandBarButtonItem111.Id = 175;
            this.spreadsheetCommandBarButtonItem111.Name = "spreadsheetCommandBarButtonItem111";
            // 
            // spreadsheetCommandBarSubItem18
            // 
            this.spreadsheetCommandBarSubItem18.CommandName = "PageSetupOrientationCommandGroup";
            this.spreadsheetCommandBarSubItem18.Id = 176;
            this.spreadsheetCommandBarSubItem18.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem18),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem19)});
            this.spreadsheetCommandBarSubItem18.Name = "spreadsheetCommandBarSubItem18";
            // 
            // spreadsheetCommandBarCheckItem18
            // 
            this.spreadsheetCommandBarCheckItem18.CommandName = "PageSetupOrientationPortrait";
            this.spreadsheetCommandBarCheckItem18.Id = 177;
            this.spreadsheetCommandBarCheckItem18.Name = "spreadsheetCommandBarCheckItem18";
            // 
            // spreadsheetCommandBarCheckItem19
            // 
            this.spreadsheetCommandBarCheckItem19.CommandName = "PageSetupOrientationLandscape";
            this.spreadsheetCommandBarCheckItem19.Id = 178;
            this.spreadsheetCommandBarCheckItem19.Name = "spreadsheetCommandBarCheckItem19";
            // 
            // pageSetupPaperKindItem1
            // 
            this.pageSetupPaperKindItem1.Id = 179;
            this.pageSetupPaperKindItem1.Name = "pageSetupPaperKindItem1";
            // 
            // spreadsheetCommandBarSubItem19
            // 
            this.spreadsheetCommandBarSubItem19.CommandName = "PageSetupPrintAreaCommandGroup";
            this.spreadsheetCommandBarSubItem19.Id = 180;
            this.spreadsheetCommandBarSubItem19.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem112),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem113),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem114)});
            this.spreadsheetCommandBarSubItem19.Name = "spreadsheetCommandBarSubItem19";
            // 
            // spreadsheetCommandBarButtonItem112
            // 
            this.spreadsheetCommandBarButtonItem112.CommandName = "PageSetupSetPrintArea";
            this.spreadsheetCommandBarButtonItem112.Id = 181;
            this.spreadsheetCommandBarButtonItem112.Name = "spreadsheetCommandBarButtonItem112";
            // 
            // spreadsheetCommandBarButtonItem113
            // 
            this.spreadsheetCommandBarButtonItem113.CommandName = "PageSetupClearPrintArea";
            this.spreadsheetCommandBarButtonItem113.Id = 182;
            this.spreadsheetCommandBarButtonItem113.Name = "spreadsheetCommandBarButtonItem113";
            // 
            // spreadsheetCommandBarButtonItem114
            // 
            this.spreadsheetCommandBarButtonItem114.CommandName = "PageSetupAddPrintArea";
            this.spreadsheetCommandBarButtonItem114.Id = 183;
            this.spreadsheetCommandBarButtonItem114.Name = "spreadsheetCommandBarButtonItem114";
            // 
            // spreadsheetCommandBarCheckItem20
            // 
            this.spreadsheetCommandBarCheckItem20.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem20.CommandName = "ViewShowGridlines";
            this.spreadsheetCommandBarCheckItem20.Id = 184;
            this.spreadsheetCommandBarCheckItem20.Name = "spreadsheetCommandBarCheckItem20";
            // 
            // spreadsheetCommandBarCheckItem21
            // 
            this.spreadsheetCommandBarCheckItem21.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem21.CommandName = "ViewShowHeadings";
            this.spreadsheetCommandBarCheckItem21.Id = 185;
            this.spreadsheetCommandBarCheckItem21.Name = "spreadsheetCommandBarCheckItem21";
            // 
            // spreadsheetCommandBarCheckItem22
            // 
            this.spreadsheetCommandBarCheckItem22.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem22.CommandName = "PageSetupPrintGridlines";
            this.spreadsheetCommandBarCheckItem22.Id = 186;
            this.spreadsheetCommandBarCheckItem22.Name = "spreadsheetCommandBarCheckItem22";
            // 
            // spreadsheetCommandBarCheckItem23
            // 
            this.spreadsheetCommandBarCheckItem23.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem23.CommandName = "PageSetupPrintHeadings";
            this.spreadsheetCommandBarCheckItem23.Id = 187;
            this.spreadsheetCommandBarCheckItem23.Name = "spreadsheetCommandBarCheckItem23";
            // 
            // spreadsheetCommandBarSubItem20
            // 
            this.spreadsheetCommandBarSubItem20.CommandName = "ArrangeBringForwardCommandGroup";
            this.spreadsheetCommandBarSubItem20.Id = 188;
            this.spreadsheetCommandBarSubItem20.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem115),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem116)});
            this.spreadsheetCommandBarSubItem20.Name = "spreadsheetCommandBarSubItem20";
            // 
            // spreadsheetCommandBarButtonItem115
            // 
            this.spreadsheetCommandBarButtonItem115.CommandName = "ArrangeBringForward";
            this.spreadsheetCommandBarButtonItem115.Id = 189;
            this.spreadsheetCommandBarButtonItem115.Name = "spreadsheetCommandBarButtonItem115";
            // 
            // spreadsheetCommandBarButtonItem116
            // 
            this.spreadsheetCommandBarButtonItem116.CommandName = "ArrangeBringToFront";
            this.spreadsheetCommandBarButtonItem116.Id = 190;
            this.spreadsheetCommandBarButtonItem116.Name = "spreadsheetCommandBarButtonItem116";
            // 
            // spreadsheetCommandBarSubItem21
            // 
            this.spreadsheetCommandBarSubItem21.CommandName = "ArrangeSendBackwardCommandGroup";
            this.spreadsheetCommandBarSubItem21.Id = 191;
            this.spreadsheetCommandBarSubItem21.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem117),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem118)});
            this.spreadsheetCommandBarSubItem21.Name = "spreadsheetCommandBarSubItem21";
            // 
            // spreadsheetCommandBarButtonItem117
            // 
            this.spreadsheetCommandBarButtonItem117.CommandName = "ArrangeSendBackward";
            this.spreadsheetCommandBarButtonItem117.Id = 192;
            this.spreadsheetCommandBarButtonItem117.Name = "spreadsheetCommandBarButtonItem117";
            // 
            // spreadsheetCommandBarButtonItem118
            // 
            this.spreadsheetCommandBarButtonItem118.CommandName = "ArrangeSendToBack";
            this.spreadsheetCommandBarButtonItem118.Id = 193;
            this.spreadsheetCommandBarButtonItem118.Name = "spreadsheetCommandBarButtonItem118";
            // 
            // spreadsheetCommandBarSubItem22
            // 
            this.spreadsheetCommandBarSubItem22.CommandName = "FunctionsAutoSumCommandGroup";
            this.spreadsheetCommandBarSubItem22.Id = 194;
            this.spreadsheetCommandBarSubItem22.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem80),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem81),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem82),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem83),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem84)});
            this.spreadsheetCommandBarSubItem22.Name = "spreadsheetCommandBarSubItem22";
            // 
            // functionsFinancialItem1
            // 
            this.functionsFinancialItem1.Id = 195;
            this.functionsFinancialItem1.Name = "functionsFinancialItem1";
            // 
            // functionsLogicalItem1
            // 
            this.functionsLogicalItem1.Id = 196;
            this.functionsLogicalItem1.Name = "functionsLogicalItem1";
            // 
            // functionsTextItem1
            // 
            this.functionsTextItem1.Id = 197;
            this.functionsTextItem1.Name = "functionsTextItem1";
            // 
            // functionsDateAndTimeItem1
            // 
            this.functionsDateAndTimeItem1.Id = 198;
            this.functionsDateAndTimeItem1.Name = "functionsDateAndTimeItem1";
            // 
            // functionsLookupAndReferenceItem1
            // 
            this.functionsLookupAndReferenceItem1.Id = 199;
            this.functionsLookupAndReferenceItem1.Name = "functionsLookupAndReferenceItem1";
            // 
            // functionsMathAndTrigonometryItem1
            // 
            this.functionsMathAndTrigonometryItem1.Id = 200;
            this.functionsMathAndTrigonometryItem1.Name = "functionsMathAndTrigonometryItem1";
            // 
            // spreadsheetCommandBarSubItem23
            // 
            this.spreadsheetCommandBarSubItem23.CommandName = "FunctionsMoreCommandGroup";
            this.spreadsheetCommandBarSubItem23.Id = 201;
            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 = 202;
            this.functionsStatisticalItem1.Name = "functionsStatisticalItem1";
            // 
            // functionsEngineeringItem1
            // 
            this.functionsEngineeringItem1.Id = 203;
            this.functionsEngineeringItem1.Name = "functionsEngineeringItem1";
            // 
            // functionsInformationItem1
            // 
            this.functionsInformationItem1.Id = 204;
            this.functionsInformationItem1.Name = "functionsInformationItem1";
            // 
            // functionsCompatibilityItem1
            // 
            this.functionsCompatibilityItem1.Id = 205;
            this.functionsCompatibilityItem1.Name = "functionsCompatibilityItem1";
            // 
            // functionsWebItem1
            // 
            this.functionsWebItem1.Id = 206;
            this.functionsWebItem1.Name = "functionsWebItem1";
            // 
            // spreadsheetCommandBarButtonItem124
            // 
            this.spreadsheetCommandBarButtonItem124.CommandName = "FormulasShowNameManager";
            this.spreadsheetCommandBarButtonItem124.Id = 207;
            this.spreadsheetCommandBarButtonItem124.Name = "spreadsheetCommandBarButtonItem124";
            // 
            // spreadsheetCommandBarButtonItem125
            // 
            this.spreadsheetCommandBarButtonItem125.CommandName = "FormulasDefineNameCommand";
            this.spreadsheetCommandBarButtonItem125.Id = 208;
            this.spreadsheetCommandBarButtonItem125.Name = "spreadsheetCommandBarButtonItem125";
            this.spreadsheetCommandBarButtonItem125.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // definedNameListItem1
            // 
            this.definedNameListItem1.Id = 209;
            this.definedNameListItem1.Name = "definedNameListItem1";
            this.definedNameListItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem126
            // 
            this.spreadsheetCommandBarButtonItem126.CommandName = "FormulasCreateDefinedNamesFromSelection";
            this.spreadsheetCommandBarButtonItem126.Id = 210;
            this.spreadsheetCommandBarButtonItem126.Name = "spreadsheetCommandBarButtonItem126";
            this.spreadsheetCommandBarButtonItem126.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem24
            // 
            this.spreadsheetCommandBarCheckItem24.CommandName = "ViewShowFormulas";
            this.spreadsheetCommandBarCheckItem24.Id = 211;
            this.spreadsheetCommandBarCheckItem24.Name = "spreadsheetCommandBarCheckItem24";
            // 
            // spreadsheetCommandBarSubItem24
            // 
            this.spreadsheetCommandBarSubItem24.CommandName = "FormulasCalculationOptionsCommandGroup";
            this.spreadsheetCommandBarSubItem24.Id = 212;
            this.spreadsheetCommandBarSubItem24.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem25),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarCheckItem26)});
            this.spreadsheetCommandBarSubItem24.Name = "spreadsheetCommandBarSubItem24";
            // 
            // spreadsheetCommandBarCheckItem25
            // 
            this.spreadsheetCommandBarCheckItem25.CommandName = "FormulasCalculationModeAutomatic";
            this.spreadsheetCommandBarCheckItem25.Id = 213;
            this.spreadsheetCommandBarCheckItem25.Name = "spreadsheetCommandBarCheckItem25";
            // 
            // spreadsheetCommandBarCheckItem26
            // 
            this.spreadsheetCommandBarCheckItem26.CommandName = "FormulasCalculationModeManual";
            this.spreadsheetCommandBarCheckItem26.Id = 214;
            this.spreadsheetCommandBarCheckItem26.Name = "spreadsheetCommandBarCheckItem26";
            // 
            // spreadsheetCommandBarButtonItem127
            // 
            this.spreadsheetCommandBarButtonItem127.CommandName = "FormulasCalculateNow";
            this.spreadsheetCommandBarButtonItem127.Id = 215;
            this.spreadsheetCommandBarButtonItem127.Name = "spreadsheetCommandBarButtonItem127";
            this.spreadsheetCommandBarButtonItem127.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem128
            // 
            this.spreadsheetCommandBarButtonItem128.CommandName = "FormulasCalculateSheet";
            this.spreadsheetCommandBarButtonItem128.Id = 216;
            this.spreadsheetCommandBarButtonItem128.Name = "spreadsheetCommandBarButtonItem128";
            this.spreadsheetCommandBarButtonItem128.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarSubItem25
            // 
            this.spreadsheetCommandBarSubItem25.CommandName = "DataToolsDataValidationCommandGroup";
            this.spreadsheetCommandBarSubItem25.Id = 217;
            this.spreadsheetCommandBarSubItem25.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem129),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem130),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem131)});
            this.spreadsheetCommandBarSubItem25.Name = "spreadsheetCommandBarSubItem25";
            // 
            // spreadsheetCommandBarButtonItem129
            // 
            this.spreadsheetCommandBarButtonItem129.CommandName = "DataToolsDataValidation";
            this.spreadsheetCommandBarButtonItem129.Id = 218;
            this.spreadsheetCommandBarButtonItem129.Name = "spreadsheetCommandBarButtonItem129";
            // 
            // spreadsheetCommandBarButtonItem130
            // 
            this.spreadsheetCommandBarButtonItem130.CommandName = "DataToolsCircleInvalidData";
            this.spreadsheetCommandBarButtonItem130.Id = 219;
            this.spreadsheetCommandBarButtonItem130.Name = "spreadsheetCommandBarButtonItem130";
            // 
            // spreadsheetCommandBarButtonItem131
            // 
            this.spreadsheetCommandBarButtonItem131.CommandName = "DataToolsClearValidationCircles";
            this.spreadsheetCommandBarButtonItem131.Id = 220;
            this.spreadsheetCommandBarButtonItem131.Name = "spreadsheetCommandBarButtonItem131";
            // 
            // spreadsheetCommandBarSubItem26
            // 
            this.spreadsheetCommandBarSubItem26.CommandName = "OutlineGroupCommandGroup";
            this.spreadsheetCommandBarSubItem26.Id = 221;
            this.spreadsheetCommandBarSubItem26.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem132),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem133)});
            this.spreadsheetCommandBarSubItem26.Name = "spreadsheetCommandBarSubItem26";
            this.spreadsheetCommandBarSubItem26.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem132
            // 
            this.spreadsheetCommandBarButtonItem132.CommandName = "GroupOutline";
            this.spreadsheetCommandBarButtonItem132.Id = 222;
            this.spreadsheetCommandBarButtonItem132.Name = "spreadsheetCommandBarButtonItem132";
            // 
            // spreadsheetCommandBarButtonItem133
            // 
            this.spreadsheetCommandBarButtonItem133.CommandName = "AutoOutline";
            this.spreadsheetCommandBarButtonItem133.Id = 223;
            this.spreadsheetCommandBarButtonItem133.Name = "spreadsheetCommandBarButtonItem133";
            // 
            // spreadsheetCommandBarSubItem27
            // 
            this.spreadsheetCommandBarSubItem27.CommandName = "OutlineUngroupCommandGroup";
            this.spreadsheetCommandBarSubItem27.Id = 224;
            this.spreadsheetCommandBarSubItem27.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem134),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem135)});
            this.spreadsheetCommandBarSubItem27.Name = "spreadsheetCommandBarSubItem27";
            this.spreadsheetCommandBarSubItem27.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem134
            // 
            this.spreadsheetCommandBarButtonItem134.CommandName = "UngroupOutline";
            this.spreadsheetCommandBarButtonItem134.Id = 225;
            this.spreadsheetCommandBarButtonItem134.Name = "spreadsheetCommandBarButtonItem134";
            // 
            // spreadsheetCommandBarButtonItem135
            // 
            this.spreadsheetCommandBarButtonItem135.CommandName = "ClearOutline";
            this.spreadsheetCommandBarButtonItem135.Id = 226;
            this.spreadsheetCommandBarButtonItem135.Name = "spreadsheetCommandBarButtonItem135";
            // 
            // spreadsheetCommandBarButtonItem136
            // 
            this.spreadsheetCommandBarButtonItem136.CommandName = "Subtotal";
            this.spreadsheetCommandBarButtonItem136.Id = 227;
            this.spreadsheetCommandBarButtonItem136.Name = "spreadsheetCommandBarButtonItem136";
            this.spreadsheetCommandBarButtonItem136.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem137
            // 
            this.spreadsheetCommandBarButtonItem137.CommandName = "ShowDetail";
            this.spreadsheetCommandBarButtonItem137.Id = 228;
            this.spreadsheetCommandBarButtonItem137.Name = "spreadsheetCommandBarButtonItem137";
            this.spreadsheetCommandBarButtonItem137.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem138
            // 
            this.spreadsheetCommandBarButtonItem138.CommandName = "HideDetail";
            this.spreadsheetCommandBarButtonItem138.Id = 229;
            this.spreadsheetCommandBarButtonItem138.Name = "spreadsheetCommandBarButtonItem138";
            this.spreadsheetCommandBarButtonItem138.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem139
            // 
            this.spreadsheetCommandBarButtonItem139.CommandName = "ReviewInsertComment";
            this.spreadsheetCommandBarButtonItem139.Id = 230;
            this.spreadsheetCommandBarButtonItem139.Name = "spreadsheetCommandBarButtonItem139";
            // 
            // spreadsheetCommandBarButtonItem140
            // 
            this.spreadsheetCommandBarButtonItem140.CommandName = "ReviewEditComment";
            this.spreadsheetCommandBarButtonItem140.Id = 231;
            this.spreadsheetCommandBarButtonItem140.Name = "spreadsheetCommandBarButtonItem140";
            // 
            // spreadsheetCommandBarButtonItem141
            // 
            this.spreadsheetCommandBarButtonItem141.CommandName = "ReviewDeleteComment";
            this.spreadsheetCommandBarButtonItem141.Id = 232;
            this.spreadsheetCommandBarButtonItem141.Name = "spreadsheetCommandBarButtonItem141";
            // 
            // spreadsheetCommandBarButtonItem142
            // 
            this.spreadsheetCommandBarButtonItem142.CommandName = "ReviewShowHideComment";
            this.spreadsheetCommandBarButtonItem142.Id = 233;
            this.spreadsheetCommandBarButtonItem142.Name = "spreadsheetCommandBarButtonItem142";
            this.spreadsheetCommandBarButtonItem142.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem143
            // 
            this.spreadsheetCommandBarButtonItem143.CommandName = "ReviewUnprotectSheet";
            this.spreadsheetCommandBarButtonItem143.Id = 234;
            this.spreadsheetCommandBarButtonItem143.Name = "spreadsheetCommandBarButtonItem143";
            // 
            // spreadsheetCommandBarButtonItem144
            // 
            this.spreadsheetCommandBarButtonItem144.CommandName = "ReviewProtectWorkbook";
            this.spreadsheetCommandBarButtonItem144.Id = 235;
            this.spreadsheetCommandBarButtonItem144.Name = "spreadsheetCommandBarButtonItem144";
            // 
            // spreadsheetCommandBarButtonItem145
            // 
            this.spreadsheetCommandBarButtonItem145.CommandName = "ReviewUnprotectWorkbook";
            this.spreadsheetCommandBarButtonItem145.Id = 236;
            this.spreadsheetCommandBarButtonItem145.Name = "spreadsheetCommandBarButtonItem145";
            // 
            // spreadsheetCommandBarButtonItem146
            // 
            this.spreadsheetCommandBarButtonItem146.CommandName = "ReviewShowProtectedRangeManager";
            this.spreadsheetCommandBarButtonItem146.Id = 237;
            this.spreadsheetCommandBarButtonItem146.Name = "spreadsheetCommandBarButtonItem146";
            // 
            // spreadsheetCommandBarButtonItem147
            // 
            this.spreadsheetCommandBarButtonItem147.CommandName = "ViewZoomOut";
            this.spreadsheetCommandBarButtonItem147.Id = 238;
            this.spreadsheetCommandBarButtonItem147.Name = "spreadsheetCommandBarButtonItem147";
            // 
            // spreadsheetCommandBarButtonItem148
            // 
            this.spreadsheetCommandBarButtonItem148.CommandName = "ViewZoomIn";
            this.spreadsheetCommandBarButtonItem148.Id = 239;
            this.spreadsheetCommandBarButtonItem148.Name = "spreadsheetCommandBarButtonItem148";
            // 
            // spreadsheetCommandBarButtonItem149
            // 
            this.spreadsheetCommandBarButtonItem149.CommandName = "ViewZoom100Percent";
            this.spreadsheetCommandBarButtonItem149.Id = 240;
            this.spreadsheetCommandBarButtonItem149.Name = "spreadsheetCommandBarButtonItem149";
            // 
            // spreadsheetCommandBarSubItem28
            // 
            this.spreadsheetCommandBarSubItem28.CommandName = "ViewFreezePanesCommandGroup";
            this.spreadsheetCommandBarSubItem28.Id = 241;
            this.spreadsheetCommandBarSubItem28.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem150),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem151),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem152),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem153)});
            this.spreadsheetCommandBarSubItem28.Name = "spreadsheetCommandBarSubItem28";
            // 
            // spreadsheetCommandBarButtonItem150
            // 
            this.spreadsheetCommandBarButtonItem150.CommandName = "ViewFreezePanes";
            this.spreadsheetCommandBarButtonItem150.Id = 242;
            this.spreadsheetCommandBarButtonItem150.Name = "spreadsheetCommandBarButtonItem150";
            // 
            // spreadsheetCommandBarButtonItem151
            // 
            this.spreadsheetCommandBarButtonItem151.CommandName = "ViewUnfreezePanes";
            this.spreadsheetCommandBarButtonItem151.Id = 243;
            this.spreadsheetCommandBarButtonItem151.Name = "spreadsheetCommandBarButtonItem151";
            // 
            // spreadsheetCommandBarButtonItem152
            // 
            this.spreadsheetCommandBarButtonItem152.CommandName = "ViewFreezeTopRow";
            this.spreadsheetCommandBarButtonItem152.Id = 244;
            this.spreadsheetCommandBarButtonItem152.Name = "spreadsheetCommandBarButtonItem152";
            // 
            // spreadsheetCommandBarButtonItem153
            // 
            this.spreadsheetCommandBarButtonItem153.CommandName = "ViewFreezeFirstColumn";
            this.spreadsheetCommandBarButtonItem153.Id = 245;
            this.spreadsheetCommandBarButtonItem153.Name = "spreadsheetCommandBarButtonItem153";
            // 
            // spreadsheetCommandBarButtonItem154
            // 
            this.spreadsheetCommandBarButtonItem154.CommandName = "ChartChangeType";
            this.spreadsheetCommandBarButtonItem154.Id = 246;
            this.spreadsheetCommandBarButtonItem154.Name = "spreadsheetCommandBarButtonItem154";
            // 
            // spreadsheetCommandBarButtonItem155
            // 
            this.spreadsheetCommandBarButtonItem155.CommandName = "ChartSwitchRowColumn";
            this.spreadsheetCommandBarButtonItem155.Id = 247;
            this.spreadsheetCommandBarButtonItem155.Name = "spreadsheetCommandBarButtonItem155";
            // 
            // spreadsheetCommandBarButtonItem156
            // 
            this.spreadsheetCommandBarButtonItem156.CommandName = "ChartSelectData";
            this.spreadsheetCommandBarButtonItem156.Id = 248;
            this.spreadsheetCommandBarButtonItem156.Name = "spreadsheetCommandBarButtonItem156";
            // 
            // 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 = 249;
            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 = 250;
            this.galleryChartStyleItem1.Name = "galleryChartStyleItem1";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem11
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.CommandName = "ChartTitleCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.DropDownControl = this.commandBarGalleryDropDown13;
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.Id = 251;
            this.spreadsheetCommandBarButtonGalleryDropDownItem11.Name = "spreadsheetCommandBarButtonGalleryDropDownItem11";
            // 
            // commandBarGalleryDropDown13
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown13.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown13.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.commandBarGalleryDropDown13.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup29});
            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.Name = "commandBarGalleryDropDown13";
            this.commandBarGalleryDropDown13.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarSubItem29
            // 
            this.spreadsheetCommandBarSubItem29.CommandName = "ChartAxisTitlesCommandGroup";
            this.spreadsheetCommandBarSubItem29.Id = 252;
            this.spreadsheetCommandBarSubItem29.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem12),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem13)});
            this.spreadsheetCommandBarSubItem29.Name = "spreadsheetCommandBarSubItem29";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem12
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.CommandName = "ChartPrimaryHorizontalAxisTitleCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.DropDownControl = this.commandBarGalleryDropDown14;
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.Id = 253;
            this.spreadsheetCommandBarButtonGalleryDropDownItem12.Name = "spreadsheetCommandBarButtonGalleryDropDownItem12";
            // 
            // commandBarGalleryDropDown14
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown14.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown14.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.commandBarGalleryDropDown14.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup30});
            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.Name = "commandBarGalleryDropDown14";
            this.commandBarGalleryDropDown14.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem13
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.CommandName = "ChartPrimaryVerticalAxisTitleCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.DropDownControl = this.commandBarGalleryDropDown15;
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.Id = 254;
            this.spreadsheetCommandBarButtonGalleryDropDownItem13.Name = "spreadsheetCommandBarButtonGalleryDropDownItem13";
            // 
            // commandBarGalleryDropDown15
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown15.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown15.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.commandBarGalleryDropDown15.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup31});
            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.Name = "commandBarGalleryDropDown15";
            this.commandBarGalleryDropDown15.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem14
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.CommandName = "ChartLegendCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.DropDownControl = this.commandBarGalleryDropDown16;
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.Id = 255;
            this.spreadsheetCommandBarButtonGalleryDropDownItem14.Name = "spreadsheetCommandBarButtonGalleryDropDownItem14";
            // 
            // commandBarGalleryDropDown16
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown16.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown16.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.commandBarGalleryDropDown16.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup32});
            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.Name = "commandBarGalleryDropDown16";
            this.commandBarGalleryDropDown16.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem15
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.CommandName = "ChartDataLabelsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.DropDownControl = this.commandBarGalleryDropDown17;
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.Id = 256;
            this.spreadsheetCommandBarButtonGalleryDropDownItem15.Name = "spreadsheetCommandBarButtonGalleryDropDownItem15";
            // 
            // commandBarGalleryDropDown17
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown17.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown17.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.commandBarGalleryDropDown17.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup33});
            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.Name = "commandBarGalleryDropDown17";
            this.commandBarGalleryDropDown17.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarSubItem30
            // 
            this.spreadsheetCommandBarSubItem30.CommandName = "ChartAxesCommandGroup";
            this.spreadsheetCommandBarSubItem30.Id = 257;
            this.spreadsheetCommandBarSubItem30.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem17)});
            this.spreadsheetCommandBarSubItem30.Name = "spreadsheetCommandBarSubItem30";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem16
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.CommandName = "ChartPrimaryHorizontalAxisCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.DropDownControl = this.commandBarGalleryDropDown18;
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.Id = 258;
            this.spreadsheetCommandBarButtonGalleryDropDownItem16.Name = "spreadsheetCommandBarButtonGalleryDropDownItem16";
            // 
            // commandBarGalleryDropDown18
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown18.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown18.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.commandBarGalleryDropDown18.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup34});
            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.Name = "commandBarGalleryDropDown18";
            this.commandBarGalleryDropDown18.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem17
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.CommandName = "ChartPrimaryVerticalAxisCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.DropDownControl = this.commandBarGalleryDropDown19;
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.Id = 259;
            this.spreadsheetCommandBarButtonGalleryDropDownItem17.Name = "spreadsheetCommandBarButtonGalleryDropDownItem17";
            // 
            // commandBarGalleryDropDown19
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown19.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown19.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.commandBarGalleryDropDown19.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup35});
            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.Name = "commandBarGalleryDropDown19";
            this.commandBarGalleryDropDown19.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarSubItem31
            // 
            this.spreadsheetCommandBarSubItem31.CommandName = "ChartGridlinesCommandGroup";
            this.spreadsheetCommandBarSubItem31.Id = 260;
            this.spreadsheetCommandBarSubItem31.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem18),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonGalleryDropDownItem19)});
            this.spreadsheetCommandBarSubItem31.Name = "spreadsheetCommandBarSubItem31";
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem18
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.CommandName = "ChartPrimaryHorizontalGridlinesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.DropDownControl = this.commandBarGalleryDropDown20;
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.Id = 261;
            this.spreadsheetCommandBarButtonGalleryDropDownItem18.Name = "spreadsheetCommandBarButtonGalleryDropDownItem18";
            // 
            // commandBarGalleryDropDown20
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown20.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown20.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.commandBarGalleryDropDown20.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup36});
            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.Name = "commandBarGalleryDropDown20";
            this.commandBarGalleryDropDown20.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem19
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.CommandName = "ChartPrimaryVerticalGridlinesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.DropDownControl = this.commandBarGalleryDropDown21;
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.Id = 262;
            this.spreadsheetCommandBarButtonGalleryDropDownItem19.Name = "spreadsheetCommandBarButtonGalleryDropDownItem19";
            // 
            // commandBarGalleryDropDown21
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown21.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown21.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.commandBarGalleryDropDown21.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup37});
            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.Name = "commandBarGalleryDropDown21";
            this.commandBarGalleryDropDown21.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem20
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.CommandName = "ChartLinesCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.DropDownControl = this.commandBarGalleryDropDown22;
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.Id = 263;
            this.spreadsheetCommandBarButtonGalleryDropDownItem20.Name = "spreadsheetCommandBarButtonGalleryDropDownItem20";
            // 
            // commandBarGalleryDropDown22
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown22.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown22.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.commandBarGalleryDropDown22.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup38});
            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.Name = "commandBarGalleryDropDown22";
            this.commandBarGalleryDropDown22.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem21
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.CommandName = "ChartUpDownBarsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.DropDownControl = this.commandBarGalleryDropDown23;
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.Id = 264;
            this.spreadsheetCommandBarButtonGalleryDropDownItem21.Name = "spreadsheetCommandBarButtonGalleryDropDownItem21";
            // 
            // commandBarGalleryDropDown23
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown23.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown23.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.commandBarGalleryDropDown23.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup39});
            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.Name = "commandBarGalleryDropDown23";
            this.commandBarGalleryDropDown23.Ribbon = this.ribbonControl1;
            // 
            // spreadsheetCommandBarButtonGalleryDropDownItem22
            // 
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.CommandName = "ChartErrorBarsCommandGroup";
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.DropDownControl = this.commandBarGalleryDropDown24;
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.Id = 265;
            this.spreadsheetCommandBarButtonGalleryDropDownItem22.Name = "spreadsheetCommandBarButtonGalleryDropDownItem22";
            // 
            // commandBarGalleryDropDown24
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown24.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown24.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.commandBarGalleryDropDown24.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup40});
            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.Name = "commandBarGalleryDropDown24";
            this.commandBarGalleryDropDown24.Ribbon = this.ribbonControl1;
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "Table Name:";
            this.barStaticItem1.Id = 266;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // renameTableItem1
            // 
            this.renameTableItem1.Edit = this.repositoryItemTextEdit1;
            this.renameTableItem1.EditWidth = 80;
            this.renameTableItem1.Id = 267;
            this.renameTableItem1.Name = "renameTableItem1";
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // spreadsheetCommandBarCheckItem27
            // 
            this.spreadsheetCommandBarCheckItem27.CommandName = "TableToolsConvertToRange";
            this.spreadsheetCommandBarCheckItem27.Id = 268;
            this.spreadsheetCommandBarCheckItem27.Name = "spreadsheetCommandBarCheckItem27";
            this.spreadsheetCommandBarCheckItem27.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarCheckItem28
            // 
            this.spreadsheetCommandBarCheckItem28.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem28.CommandName = "TableToolsToggleHeaderRow";
            this.spreadsheetCommandBarCheckItem28.Id = 269;
            this.spreadsheetCommandBarCheckItem28.Name = "spreadsheetCommandBarCheckItem28";
            // 
            // spreadsheetCommandBarCheckItem29
            // 
            this.spreadsheetCommandBarCheckItem29.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem29.CommandName = "TableToolsToggleTotalRow";
            this.spreadsheetCommandBarCheckItem29.Id = 270;
            this.spreadsheetCommandBarCheckItem29.Name = "spreadsheetCommandBarCheckItem29";
            // 
            // spreadsheetCommandBarCheckItem30
            // 
            this.spreadsheetCommandBarCheckItem30.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem30.CommandName = "TableToolsToggleBandedColumns";
            this.spreadsheetCommandBarCheckItem30.Id = 271;
            this.spreadsheetCommandBarCheckItem30.Name = "spreadsheetCommandBarCheckItem30";
            // 
            // spreadsheetCommandBarCheckItem31
            // 
            this.spreadsheetCommandBarCheckItem31.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem31.CommandName = "TableToolsToggleFirstColumn";
            this.spreadsheetCommandBarCheckItem31.Id = 272;
            this.spreadsheetCommandBarCheckItem31.Name = "spreadsheetCommandBarCheckItem31";
            // 
            // spreadsheetCommandBarCheckItem32
            // 
            this.spreadsheetCommandBarCheckItem32.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem32.CommandName = "TableToolsToggleLastColumn";
            this.spreadsheetCommandBarCheckItem32.Id = 273;
            this.spreadsheetCommandBarCheckItem32.Name = "spreadsheetCommandBarCheckItem32";
            // 
            // spreadsheetCommandBarCheckItem33
            // 
            this.spreadsheetCommandBarCheckItem33.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem33.CommandName = "TableToolsToggleBandedRows";
            this.spreadsheetCommandBarCheckItem33.Id = 274;
            this.spreadsheetCommandBarCheckItem33.Name = "spreadsheetCommandBarCheckItem33";
            // 
            // 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 = 275;
            this.galleryTableStylesItem1.Name = "galleryTableStylesItem1";
            // 
            // spreadsheetCommandBarButtonItem157
            // 
            this.spreadsheetCommandBarButtonItem157.CommandName = "OptionsPivotTable";
            this.spreadsheetCommandBarButtonItem157.Id = 276;
            this.spreadsheetCommandBarButtonItem157.Name = "spreadsheetCommandBarButtonItem157";
            // 
            // spreadsheetCommandBarButtonItem158
            // 
            this.spreadsheetCommandBarButtonItem158.CommandName = "SelectFieldTypePivotTable";
            this.spreadsheetCommandBarButtonItem158.Id = 277;
            this.spreadsheetCommandBarButtonItem158.Name = "spreadsheetCommandBarButtonItem158";
            // 
            // spreadsheetCommandBarButtonItem159
            // 
            this.spreadsheetCommandBarButtonItem159.CommandName = "PivotTableExpandField";
            this.spreadsheetCommandBarButtonItem159.Id = 278;
            this.spreadsheetCommandBarButtonItem159.Name = "spreadsheetCommandBarButtonItem159";
            this.spreadsheetCommandBarButtonItem159.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarButtonItem160
            // 
            this.spreadsheetCommandBarButtonItem160.CommandName = "PivotTableCollapseField";
            this.spreadsheetCommandBarButtonItem160.Id = 279;
            this.spreadsheetCommandBarButtonItem160.Name = "spreadsheetCommandBarButtonItem160";
            this.spreadsheetCommandBarButtonItem160.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // spreadsheetCommandBarSubItem32
            // 
            this.spreadsheetCommandBarSubItem32.CommandName = "PivotTableDataRefreshGroup";
            this.spreadsheetCommandBarSubItem32.Id = 280;
            this.spreadsheetCommandBarSubItem32.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem161),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem162)});
            this.spreadsheetCommandBarSubItem32.Name = "spreadsheetCommandBarSubItem32";
            // 
            // spreadsheetCommandBarButtonItem161
            // 
            this.spreadsheetCommandBarButtonItem161.CommandName = "RefreshPivotTable";
            this.spreadsheetCommandBarButtonItem161.Id = 281;
            this.spreadsheetCommandBarButtonItem161.Name = "spreadsheetCommandBarButtonItem161";
            // 
            // spreadsheetCommandBarButtonItem162
            // 
            this.spreadsheetCommandBarButtonItem162.CommandName = "RefreshAllPivotTable";
            this.spreadsheetCommandBarButtonItem162.Id = 282;
            this.spreadsheetCommandBarButtonItem162.Name = "spreadsheetCommandBarButtonItem162";
            // 
            // spreadsheetCommandBarButtonItem163
            // 
            this.spreadsheetCommandBarButtonItem163.CommandName = "ChangeDataSourcePivotTable";
            this.spreadsheetCommandBarButtonItem163.Id = 283;
            this.spreadsheetCommandBarButtonItem163.Name = "spreadsheetCommandBarButtonItem163";
            // 
            // spreadsheetCommandBarSubItem33
            // 
            this.spreadsheetCommandBarSubItem33.CommandName = "PivotTableActionsClearGroup";
            this.spreadsheetCommandBarSubItem33.Id = 284;
            this.spreadsheetCommandBarSubItem33.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem164),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem165)});
            this.spreadsheetCommandBarSubItem33.Name = "spreadsheetCommandBarSubItem33";
            // 
            // spreadsheetCommandBarButtonItem164
            // 
            this.spreadsheetCommandBarButtonItem164.CommandName = "ClearAllPivotTable";
            this.spreadsheetCommandBarButtonItem164.Id = 285;
            this.spreadsheetCommandBarButtonItem164.Name = "spreadsheetCommandBarButtonItem164";
            // 
            // spreadsheetCommandBarButtonItem165
            // 
            this.spreadsheetCommandBarButtonItem165.CommandName = "ClearFiltersPivotTable";
            this.spreadsheetCommandBarButtonItem165.Id = 286;
            this.spreadsheetCommandBarButtonItem165.Name = "spreadsheetCommandBarButtonItem165";
            // 
            // spreadsheetCommandBarSubItem34
            // 
            this.spreadsheetCommandBarSubItem34.CommandName = "PivotTableActionsSelectGroup";
            this.spreadsheetCommandBarSubItem34.Id = 287;
            this.spreadsheetCommandBarSubItem34.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem166),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem167),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem168)});
            this.spreadsheetCommandBarSubItem34.Name = "spreadsheetCommandBarSubItem34";
            // 
            // spreadsheetCommandBarButtonItem166
            // 
            this.spreadsheetCommandBarButtonItem166.CommandName = "SelectValuesPivotTable";
            this.spreadsheetCommandBarButtonItem166.Id = 288;
            this.spreadsheetCommandBarButtonItem166.Name = "spreadsheetCommandBarButtonItem166";
            // 
            // spreadsheetCommandBarButtonItem167
            // 
            this.spreadsheetCommandBarButtonItem167.CommandName = "SelectLabelsPivotTable";
            this.spreadsheetCommandBarButtonItem167.Id = 289;
            this.spreadsheetCommandBarButtonItem167.Name = "spreadsheetCommandBarButtonItem167";
            // 
            // spreadsheetCommandBarButtonItem168
            // 
            this.spreadsheetCommandBarButtonItem168.CommandName = "SelectEntirePivotTable";
            this.spreadsheetCommandBarButtonItem168.Id = 290;
            this.spreadsheetCommandBarButtonItem168.Name = "spreadsheetCommandBarButtonItem168";
            // 
            // spreadsheetCommandBarButtonItem169
            // 
            this.spreadsheetCommandBarButtonItem169.CommandName = "MovePivotTable";
            this.spreadsheetCommandBarButtonItem169.Id = 291;
            this.spreadsheetCommandBarButtonItem169.Name = "spreadsheetCommandBarButtonItem169";
            // 
            // spreadsheetCommandBarCheckItem34
            // 
            this.spreadsheetCommandBarCheckItem34.CommandName = "FieldListPanelPivotTable";
            this.spreadsheetCommandBarCheckItem34.Id = 292;
            this.spreadsheetCommandBarCheckItem34.Name = "spreadsheetCommandBarCheckItem34";
            // 
            // spreadsheetCommandBarCheckItem35
            // 
            this.spreadsheetCommandBarCheckItem35.CommandName = "ShowPivotTableExpandCollapseButtons";
            this.spreadsheetCommandBarCheckItem35.Id = 293;
            this.spreadsheetCommandBarCheckItem35.Name = "spreadsheetCommandBarCheckItem35";
            // 
            // spreadsheetCommandBarCheckItem36
            // 
            this.spreadsheetCommandBarCheckItem36.CommandName = "ShowPivotTableFieldHeaders";
            this.spreadsheetCommandBarCheckItem36.Id = 294;
            this.spreadsheetCommandBarCheckItem36.Name = "spreadsheetCommandBarCheckItem36";
            // 
            // spreadsheetCommandBarSubItem35
            // 
            this.spreadsheetCommandBarSubItem35.CommandName = "PivotTableLayoutSubtotalsGroup";
            this.spreadsheetCommandBarSubItem35.Id = 295;
            this.spreadsheetCommandBarSubItem35.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem170),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem171),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem172)});
            this.spreadsheetCommandBarSubItem35.Name = "spreadsheetCommandBarSubItem35";
            // 
            // spreadsheetCommandBarButtonItem170
            // 
            this.spreadsheetCommandBarButtonItem170.CommandName = "PivotTableDoNotShowSubtotals";
            this.spreadsheetCommandBarButtonItem170.Id = 296;
            this.spreadsheetCommandBarButtonItem170.Name = "spreadsheetCommandBarButtonItem170";
            this.spreadsheetCommandBarButtonItem170.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem171
            // 
            this.spreadsheetCommandBarButtonItem171.CommandName = "PivotTableShowAllSubtotalsAtBottom";
            this.spreadsheetCommandBarButtonItem171.Id = 297;
            this.spreadsheetCommandBarButtonItem171.Name = "spreadsheetCommandBarButtonItem171";
            this.spreadsheetCommandBarButtonItem171.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem172
            // 
            this.spreadsheetCommandBarButtonItem172.CommandName = "PivotTableShowAllSubtotalsAtTop";
            this.spreadsheetCommandBarButtonItem172.Id = 298;
            this.spreadsheetCommandBarButtonItem172.Name = "spreadsheetCommandBarButtonItem172";
            this.spreadsheetCommandBarButtonItem172.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarSubItem36
            // 
            this.spreadsheetCommandBarSubItem36.CommandName = "PivotTableLayoutGrandTotalsGroup";
            this.spreadsheetCommandBarSubItem36.Id = 299;
            this.spreadsheetCommandBarSubItem36.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem173),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem174),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem175),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem176)});
            this.spreadsheetCommandBarSubItem36.Name = "spreadsheetCommandBarSubItem36";
            // 
            // spreadsheetCommandBarButtonItem173
            // 
            this.spreadsheetCommandBarButtonItem173.CommandName = "PivotTableGrandTotalsOffRowsColumns";
            this.spreadsheetCommandBarButtonItem173.Id = 300;
            this.spreadsheetCommandBarButtonItem173.Name = "spreadsheetCommandBarButtonItem173";
            this.spreadsheetCommandBarButtonItem173.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem174
            // 
            this.spreadsheetCommandBarButtonItem174.CommandName = "PivotTableGrandTotalsOnRowsColumns";
            this.spreadsheetCommandBarButtonItem174.Id = 301;
            this.spreadsheetCommandBarButtonItem174.Name = "spreadsheetCommandBarButtonItem174";
            this.spreadsheetCommandBarButtonItem174.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem175
            // 
            this.spreadsheetCommandBarButtonItem175.CommandName = "PivotTableGrandTotalsOnRowsOnly";
            this.spreadsheetCommandBarButtonItem175.Id = 302;
            this.spreadsheetCommandBarButtonItem175.Name = "spreadsheetCommandBarButtonItem175";
            this.spreadsheetCommandBarButtonItem175.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem176
            // 
            this.spreadsheetCommandBarButtonItem176.CommandName = "PivotTableGrandTotalsOnColumnsOnly";
            this.spreadsheetCommandBarButtonItem176.Id = 303;
            this.spreadsheetCommandBarButtonItem176.Name = "spreadsheetCommandBarButtonItem176";
            this.spreadsheetCommandBarButtonItem176.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarSubItem37
            // 
            this.spreadsheetCommandBarSubItem37.CommandName = "PivotTableLayoutReportLayoutGroup";
            this.spreadsheetCommandBarSubItem37.Id = 304;
            this.spreadsheetCommandBarSubItem37.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem177),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem178),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem179),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem180),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem181)});
            this.spreadsheetCommandBarSubItem37.Name = "spreadsheetCommandBarSubItem37";
            // 
            // spreadsheetCommandBarButtonItem177
            // 
            this.spreadsheetCommandBarButtonItem177.CommandName = "PivotTableShowCompactForm";
            this.spreadsheetCommandBarButtonItem177.Id = 305;
            this.spreadsheetCommandBarButtonItem177.Name = "spreadsheetCommandBarButtonItem177";
            this.spreadsheetCommandBarButtonItem177.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem178
            // 
            this.spreadsheetCommandBarButtonItem178.CommandName = "PivotTableShowOutlineForm";
            this.spreadsheetCommandBarButtonItem178.Id = 306;
            this.spreadsheetCommandBarButtonItem178.Name = "spreadsheetCommandBarButtonItem178";
            this.spreadsheetCommandBarButtonItem178.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem179
            // 
            this.spreadsheetCommandBarButtonItem179.CommandName = "PivotTableShowTabularForm";
            this.spreadsheetCommandBarButtonItem179.Id = 307;
            this.spreadsheetCommandBarButtonItem179.Name = "spreadsheetCommandBarButtonItem179";
            this.spreadsheetCommandBarButtonItem179.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem180
            // 
            this.spreadsheetCommandBarButtonItem180.CommandName = "PivotTableRepeatAllItemLabels";
            this.spreadsheetCommandBarButtonItem180.Id = 308;
            this.spreadsheetCommandBarButtonItem180.Name = "spreadsheetCommandBarButtonItem180";
            this.spreadsheetCommandBarButtonItem180.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem181
            // 
            this.spreadsheetCommandBarButtonItem181.CommandName = "PivotTableDoNotRepeatItemLabels";
            this.spreadsheetCommandBarButtonItem181.Id = 309;
            this.spreadsheetCommandBarButtonItem181.Name = "spreadsheetCommandBarButtonItem181";
            this.spreadsheetCommandBarButtonItem181.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarSubItem38
            // 
            this.spreadsheetCommandBarSubItem38.CommandName = "PivotTableLayoutBlankRowsGroup";
            this.spreadsheetCommandBarSubItem38.Id = 310;
            this.spreadsheetCommandBarSubItem38.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem182),
            new DevExpress.XtraBars.LinkPersistInfo(this.spreadsheetCommandBarButtonItem183)});
            this.spreadsheetCommandBarSubItem38.Name = "spreadsheetCommandBarSubItem38";
            // 
            // spreadsheetCommandBarButtonItem182
            // 
            this.spreadsheetCommandBarButtonItem182.CommandName = "PivotTableInsertBlankLineEachItem";
            this.spreadsheetCommandBarButtonItem182.Id = 311;
            this.spreadsheetCommandBarButtonItem182.Name = "spreadsheetCommandBarButtonItem182";
            this.spreadsheetCommandBarButtonItem182.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarButtonItem183
            // 
            this.spreadsheetCommandBarButtonItem183.CommandName = "PivotTableRemoveBlankLineEachItem";
            this.spreadsheetCommandBarButtonItem183.Id = 312;
            this.spreadsheetCommandBarButtonItem183.Name = "spreadsheetCommandBarButtonItem183";
            this.spreadsheetCommandBarButtonItem183.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // spreadsheetCommandBarCheckItem37
            // 
            this.spreadsheetCommandBarCheckItem37.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem37.CommandName = "PivotTableToggleRowHeaders";
            this.spreadsheetCommandBarCheckItem37.Id = 313;
            this.spreadsheetCommandBarCheckItem37.Name = "spreadsheetCommandBarCheckItem37";
            // 
            // spreadsheetCommandBarCheckItem38
            // 
            this.spreadsheetCommandBarCheckItem38.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem38.CommandName = "PivotTableToggleColumnHeaders";
            this.spreadsheetCommandBarCheckItem38.Id = 314;
            this.spreadsheetCommandBarCheckItem38.Name = "spreadsheetCommandBarCheckItem38";
            // 
            // spreadsheetCommandBarCheckItem39
            // 
            this.spreadsheetCommandBarCheckItem39.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem39.CommandName = "PivotTableToggleBandedRows";
            this.spreadsheetCommandBarCheckItem39.Id = 315;
            this.spreadsheetCommandBarCheckItem39.Name = "spreadsheetCommandBarCheckItem39";
            // 
            // spreadsheetCommandBarCheckItem40
            // 
            this.spreadsheetCommandBarCheckItem40.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.spreadsheetCommandBarCheckItem40.CommandName = "PivotTableToggleBandedColumns";
            this.spreadsheetCommandBarCheckItem40.Id = 316;
            this.spreadsheetCommandBarCheckItem40.Name = "spreadsheetCommandBarCheckItem40";
            // 
            // galleryPivotStylesItem1
            // 
            // 
            // 
            // 
            this.galleryPivotStylesItem1.Gallery.ColumnCount = 7;
            this.galleryPivotStylesItem1.Gallery.DrawImageBackground = false;
            this.galleryPivotStylesItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryPivotStylesItem1.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.galleryPivotStylesItem1.Gallery.ItemSize = new System.Drawing.Size(73, 61);
            this.galleryPivotStylesItem1.Gallery.RowCount = 10;
            this.galleryPivotStylesItem1.Id = 317;
            this.galleryPivotStylesItem1.Name = "galleryPivotStylesItem1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.spreadsheetControl1;
            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.spreadsheetCommandBarButtonItem154);
            this.chartsDesignTypeRibbonPageGroup1.Name = "chartsDesignTypeRibbonPageGroup1";
            // 
            // chartsDesignDataRibbonPageGroup1
            // 
            this.chartsDesignDataRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem155);
            this.chartsDesignDataRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem156);
            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.spreadsheetCommandBarSubItem29);
            this.chartsLayoutLabelsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem14);
            this.chartsLayoutLabelsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem15);
            this.chartsLayoutLabelsRibbonPageGroup1.Name = "chartsLayoutLabelsRibbonPageGroup1";
            // 
            // chartsLayoutAxesRibbonPageGroup1
            // 
            this.chartsLayoutAxesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem30);
            this.chartsLayoutAxesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem31);
            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.spreadsheetControl1;
            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.spreadsheetCommandBarCheckItem27);
            this.tableToolsRibbonPageGroup1.Name = "tableToolsRibbonPageGroup1";
            // 
            // tableStyleOptionsRibbonPageGroup1
            // 
            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.ItemLinks.Add(this.spreadsheetCommandBarCheckItem33);
            this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
            // 
            // tableStylesRibbonPageGroup1
            // 
            this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryTableStylesItem1);
            this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
            // 
            // pictureToolsRibbonPageCategory1
            // 
            this.pictureToolsRibbonPageCategory1.Control = this.spreadsheetControl1;
            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.spreadsheetControl1;
            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";
            // 
            // pivotTableToolsRibbonPageCategory1
            // 
            this.pivotTableToolsRibbonPageCategory1.Control = this.spreadsheetControl1;
            this.pivotTableToolsRibbonPageCategory1.Name = "pivotTableToolsRibbonPageCategory1";
            this.pivotTableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.pivotTableAnalyzeRibbonPage1,
            this.pivotTableDesignRibbonPage1});
            this.pivotTableToolsRibbonPageCategory1.Visible = false;
            // 
            // pivotTableAnalyzeRibbonPage1
            // 
            this.pivotTableAnalyzeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pivotTableAnalyzePivotTableRibbonPageGroup1,
            this.pivotTableAnalyzeActiveFieldRibbonPageGroup1,
            this.pivotTableAnalyzeDataRibbonPageGroup1,
            this.pivotTableAnalyzeActionsRibbonPageGroup1,
            this.pivotTableAnalyzeShowRibbonPageGroup1});
            this.pivotTableAnalyzeRibbonPage1.Name = "pivotTableAnalyzeRibbonPage1";
            this.pivotTableAnalyzeRibbonPage1.Visible = false;
            // 
            // pivotTableAnalyzePivotTableRibbonPageGroup1
            // 
            this.pivotTableAnalyzePivotTableRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem157);
            this.pivotTableAnalyzePivotTableRibbonPageGroup1.Name = "pivotTableAnalyzePivotTableRibbonPageGroup1";
            // 
            // pivotTableAnalyzeActiveFieldRibbonPageGroup1
            // 
            this.pivotTableAnalyzeActiveFieldRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem158);
            this.pivotTableAnalyzeActiveFieldRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem159);
            this.pivotTableAnalyzeActiveFieldRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem160);
            this.pivotTableAnalyzeActiveFieldRibbonPageGroup1.Name = "pivotTableAnalyzeActiveFieldRibbonPageGroup1";
            // 
            // pivotTableAnalyzeDataRibbonPageGroup1
            // 
            this.pivotTableAnalyzeDataRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem32);
            this.pivotTableAnalyzeDataRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem163);
            this.pivotTableAnalyzeDataRibbonPageGroup1.Name = "pivotTableAnalyzeDataRibbonPageGroup1";
            // 
            // pivotTableAnalyzeActionsRibbonPageGroup1
            // 
            this.pivotTableAnalyzeActionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem33);
            this.pivotTableAnalyzeActionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem34);
            this.pivotTableAnalyzeActionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem169);
            this.pivotTableAnalyzeActionsRibbonPageGroup1.Name = "pivotTableAnalyzeActionsRibbonPageGroup1";
            // 
            // pivotTableAnalyzeShowRibbonPageGroup1
            // 
            this.pivotTableAnalyzeShowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem34);
            this.pivotTableAnalyzeShowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem35);
            this.pivotTableAnalyzeShowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem36);
            this.pivotTableAnalyzeShowRibbonPageGroup1.Name = "pivotTableAnalyzeShowRibbonPageGroup1";
            // 
            // pivotTableDesignRibbonPage1
            // 
            this.pivotTableDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pivotTableDesignLayoutRibbonPageGroup1,
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1,
            this.pivotTableDesignPivotTableStylesRibbonPageGroup1});
            this.pivotTableDesignRibbonPage1.Name = "pivotTableDesignRibbonPage1";
            this.pivotTableDesignRibbonPage1.Visible = false;
            // 
            // pivotTableDesignLayoutRibbonPageGroup1
            // 
            this.pivotTableDesignLayoutRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem35);
            this.pivotTableDesignLayoutRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem36);
            this.pivotTableDesignLayoutRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem37);
            this.pivotTableDesignLayoutRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem38);
            this.pivotTableDesignLayoutRibbonPageGroup1.Name = "pivotTableDesignLayoutRibbonPageGroup1";
            // 
            // pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1
            // 
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem37);
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem38);
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem39);
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem40);
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1.ItemsLayout = DevExpress.XtraBars.Ribbon.RibbonPageGroupItemsLayout.TwoRows;
            this.pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1.Name = "pivotTableDesignPivotTableStyleOptionsRibbonPageGroup1";
            // 
            // pivotTableDesignPivotTableStylesRibbonPageGroup1
            // 
            this.pivotTableDesignPivotTableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryPivotStylesItem1);
            this.pivotTableDesignPivotTableStylesRibbonPageGroup1.Name = "pivotTableDesignPivotTableStylesRibbonPageGroup1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1,
            this.infoRibbonPageGroup1});
            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";
            // 
            // infoRibbonPageGroup1
            // 
            this.infoRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem10);
            this.infoRibbonPageGroup1.Name = "infoRibbonPageGroup1";
            // 
            // 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.spreadsheetCommandBarButtonItem11);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem12);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem13);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem14);
            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.spreadsheetCommandBarButtonItem106);
            this.tablesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem107);
            this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem108);
            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.spreadsheetCommandBarButtonItem109);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // symbolsRibbonPageGroup1
            // 
            this.symbolsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem110);
            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.spreadsheetCommandBarCheckItem20);
            this.pageSetupShowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem21);
            this.pageSetupShowRibbonPageGroup1.Name = "pageSetupShowRibbonPageGroup1";
            // 
            // pageSetupPrintRibbonPageGroup1
            // 
            this.pageSetupPrintRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem22);
            this.pageSetupPrintRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem23);
            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.spreadsheetCommandBarButtonItem124);
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem125);
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.definedNameListItem1);
            this.formulaDefinedNamesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem126);
            this.formulaDefinedNamesRibbonPageGroup1.Name = "formulaDefinedNamesRibbonPageGroup1";
            // 
            // formulaAuditingRibbonPageGroup1
            // 
            this.formulaAuditingRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem24);
            this.formulaAuditingRibbonPageGroup1.Name = "formulaAuditingRibbonPageGroup1";
            // 
            // formulaCalculationRibbonPageGroup1
            // 
            this.formulaCalculationRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem24);
            this.formulaCalculationRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem127);
            this.formulaCalculationRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem128);
            this.formulaCalculationRibbonPageGroup1.Name = "formulaCalculationRibbonPageGroup1";
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.sortAndFilterRibbonPageGroup1,
            this.dataToolsRibbonPageGroup1,
            this.outlineRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            // 
            // sortAndFilterRibbonPageGroup1
            // 
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem95);
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem96);
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem14);
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem97);
            this.sortAndFilterRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem98);
            this.sortAndFilterRibbonPageGroup1.Name = "sortAndFilterRibbonPageGroup1";
            // 
            // dataToolsRibbonPageGroup1
            // 
            this.dataToolsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem25);
            this.dataToolsRibbonPageGroup1.Name = "dataToolsRibbonPageGroup1";
            // 
            // outlineRibbonPageGroup1
            // 
            this.outlineRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem26);
            this.outlineRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem27);
            this.outlineRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem136);
            this.outlineRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem137);
            this.outlineRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem138);
            this.outlineRibbonPageGroup1.Name = "outlineRibbonPageGroup1";
            // 
            // reviewRibbonPage1
            // 
            this.reviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commentsRibbonPageGroup1,
            this.changesRibbonPageGroup1});
            this.reviewRibbonPage1.Name = "reviewRibbonPage1";
            // 
            // commentsRibbonPageGroup1
            // 
            this.commentsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem139);
            this.commentsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem140);
            this.commentsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem141);
            this.commentsRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem142);
            this.commentsRibbonPageGroup1.Name = "commentsRibbonPageGroup1";
            // 
            // changesRibbonPageGroup1
            // 
            this.changesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem78);
            this.changesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem143);
            this.changesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem144);
            this.changesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem145);
            this.changesRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem146);
            this.changesRibbonPageGroup1.Name = "changesRibbonPageGroup1";
            // 
            // 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.spreadsheetCommandBarCheckItem20);
            this.showRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarCheckItem21);
            this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
            // 
            // zoomRibbonPageGroup1
            // 
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem147);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem148);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarButtonItem149);
            this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
            // 
            // windowRibbonPageGroup1
            // 
            this.windowRibbonPageGroup1.ItemLinks.Add(this.spreadsheetCommandBarSubItem28);
            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.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.spreadsheetCommandBarButtonItem14);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontNameItem1);
            this.spreadsheetBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem16);
            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.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.spreadsheetCommandBarButtonItem29);
            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.spreadsheetCommandBarButtonItem30);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem31);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem32);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem33);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem34);
            this.spreadsheetBarController1.BarItems.Add(this.changeNumberFormatItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem3);
            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.spreadsheetCommandBarButtonItem43);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem4);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem5);
            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.spreadsheetCommandBarButtonItem50);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem6);
            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.spreadsheetCommandBarButtonGalleryDropDownItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem2);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem3);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem7);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem57);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem58);
            this.spreadsheetBarController1.BarItems.Add(this.galleryFormatAsTableItem1);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem8);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem59);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem60);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem61);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem9);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem62);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem63);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem64);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem10);
            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.spreadsheetCommandBarButtonItem69);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem11);
            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.spreadsheetCommandBarButtonItem76);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem77);
            this.spreadsheetBarController1.BarItems.Add(this.changeSheetTabColorItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem78);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem79);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem12);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem80);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem81);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem82);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem83);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem84);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem13);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem85);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem86);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem87);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem88);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem14);
            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.spreadsheetCommandBarButtonItem93);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem94);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem95);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem96);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem14);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem97);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem98);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem16);
            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.spreadsheetCommandBarButtonItem104);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem105);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem106);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem107);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem108);
            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.spreadsheetCommandBarButtonItem109);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem110);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem15);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem111);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem18);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem19);
            this.spreadsheetBarController1.BarItems.Add(this.pageSetupPaperKindItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem19);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem112);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem113);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem114);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem22);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem23);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem20);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem115);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem116);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem21);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem117);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem118);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem22);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem119);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem120);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem121);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem122);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem123);
            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.spreadsheetCommandBarButtonItem124);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem125);
            this.spreadsheetBarController1.BarItems.Add(this.definedNameListItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem126);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem24);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem24);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem25);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem26);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem127);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem128);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem25);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem129);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem130);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem131);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem26);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem132);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem133);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem27);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem134);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem135);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem136);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem137);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem138);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem139);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem140);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem141);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem142);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem143);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem144);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem145);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem146);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem147);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem148);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem149);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem28);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem150);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem151);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem152);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem153);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem154);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem155);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem156);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChartLayoutItem1);
            this.spreadsheetBarController1.BarItems.Add(this.galleryChartStyleItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem11);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem29);
            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.spreadsheetCommandBarSubItem30);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem16);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonGalleryDropDownItem17);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem31);
            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.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.spreadsheetCommandBarCheckItem33);
            this.spreadsheetBarController1.BarItems.Add(this.galleryTableStylesItem1);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem157);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem158);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem159);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem160);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem32);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem161);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem162);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem163);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem33);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem164);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem165);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem34);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem166);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem167);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem168);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem169);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem34);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem35);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem36);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem35);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem170);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem171);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem172);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem36);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem173);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem174);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem175);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem176);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem37);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem177);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem178);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem179);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem180);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem181);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarSubItem38);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem182);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarButtonItem183);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem37);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem38);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem39);
            this.spreadsheetBarController1.BarItems.Add(this.spreadsheetCommandBarCheckItem40);
            this.spreadsheetBarController1.BarItems.Add(this.galleryPivotStylesItem1);
            this.spreadsheetBarController1.Control = this.spreadsheetControl1;
            // 
            // spreadsheetCommandBarButtonItem119
            // 
            this.spreadsheetCommandBarButtonItem119.CommandName = "FunctionsInsertSum";
            this.spreadsheetCommandBarButtonItem119.Id = -1;
            this.spreadsheetCommandBarButtonItem119.Name = "spreadsheetCommandBarButtonItem119";
            // 
            // spreadsheetCommandBarButtonItem120
            // 
            this.spreadsheetCommandBarButtonItem120.CommandName = "FunctionsInsertAverage";
            this.spreadsheetCommandBarButtonItem120.Id = -1;
            this.spreadsheetCommandBarButtonItem120.Name = "spreadsheetCommandBarButtonItem120";
            // 
            // spreadsheetCommandBarButtonItem121
            // 
            this.spreadsheetCommandBarButtonItem121.CommandName = "FunctionsInsertCountNumbers";
            this.spreadsheetCommandBarButtonItem121.Id = -1;
            this.spreadsheetCommandBarButtonItem121.Name = "spreadsheetCommandBarButtonItem121";
            // 
            // spreadsheetCommandBarButtonItem122
            // 
            this.spreadsheetCommandBarButtonItem122.CommandName = "FunctionsInsertMax";
            this.spreadsheetCommandBarButtonItem122.Id = -1;
            this.spreadsheetCommandBarButtonItem122.Name = "spreadsheetCommandBarButtonItem122";
            // 
            // spreadsheetCommandBarButtonItem123
            // 
            this.spreadsheetCommandBarButtonItem123.CommandName = "FunctionsInsertMin";
            this.spreadsheetCommandBarButtonItem123.Id = -1;
            this.spreadsheetCommandBarButtonItem123.Name = "spreadsheetCommandBarButtonItem123";
            // 
            // SheetForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(917, 501);
            this.Controls.Add(this.spreadsheetControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "SheetForm";
            this.Text = "SheetForm";
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).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.repositoryItemTextEdit1)).EndInit();
            ((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(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);
 }
Beispiel #8
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();

        }
Beispiel #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(XtraRibbonMdiMainForm));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     this.ribbonPage2                = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonControl1             = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.imageSmall                 = new DevExpress.Utils.ImageCollection(this.components);
     this.bButAddNew                 = new DevExpress.XtraBars.BarButtonItem();
     this.bButOpen                   = new DevExpress.XtraBars.BarButtonItem();
     this.bButDelete                 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4             = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5             = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6             = new DevExpress.XtraBars.BarButtonItem();
     this.bButAbout                  = new DevExpress.XtraBars.BarButtonItem();
     this.bButFilter                 = new DevExpress.XtraBars.BarButtonItem();
     this.bButAdvanceFilter          = new DevExpress.XtraBars.BarButtonItem();
     this.bButCalc                   = new DevExpress.XtraBars.BarButtonItem();
     this.bButFunctionTree           = new DevExpress.XtraBars.BarButtonItem();
     this.bButOnlineMessage          = new DevExpress.XtraBars.BarButtonItem();
     this.bButExit                   = new DevExpress.XtraBars.BarButtonItem();
     this.rgbiSkins                  = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.bButSave                   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem15            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16            = new DevExpress.XtraBars.BarButtonItem();
     this.bButImport                 = new DevExpress.XtraBars.BarButtonItem();
     this.bButExport                 = new DevExpress.XtraBars.BarButtonItem();
     this.bButPrintPreview           = new DevExpress.XtraBars.BarButtonItem();
     this.bButRefresh                = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItemTime          = new DevExpress.XtraBars.BarStaticItem();
     this.bStaticItemUserName        = new DevExpress.XtraBars.BarStaticItem();
     this.bButLayout                 = new DevExpress.XtraBars.BarButtonItem();
     this.bButModuleTree             = new DevExpress.XtraBars.BarButtonItem();
     this.subItemFunctionFlow        = new DevExpress.XtraBars.BarSubItem();
     this.butFlowDesign              = new DevExpress.XtraBars.BarButtonItem();
     this.butFlowRuning              = new DevExpress.XtraBars.BarButtonItem();
     this.BarButFlowDesign           = new DevExpress.XtraBars.BarButtonItem();
     this.subItemPersonalFavorites   = new DevExpress.XtraBars.BarSubItem();
     this.barButItemFavoritesSet     = new DevExpress.XtraBars.BarButtonItem();
     this.barButItemViewFavorites    = new DevExpress.XtraBars.BarButtonItem();
     this.bButDynamicGroupSetting    = new DevExpress.XtraBars.BarButtonItem();
     this.imageLarge                 = new DevExpress.Utils.ImageCollection(this.components);
     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.ribbonPageGroup4           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3                = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup6           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage4                = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup5           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage5                = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonStatusBar1           = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.dockManagerMain            = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanelPersonalFavorites = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1          = new DevExpress.XtraBars.Docking.ControlContainer();
     this.trvFavorites               = new DevExpress.XtraTreeList.TreeList();
     this.dockPanelFunctionTree      = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container       = new DevExpress.XtraBars.Docking.ControlContainer();
     this.trvListMain                = new DevExpress.XtraTreeList.TreeList();
     this.panel1                    = new System.Windows.Forms.Panel();
     this.butOpenModule             = new MB.WinBase.Ctls.MyButton();
     this.cobModuleFilter           = new System.Windows.Forms.ComboBox();
     this.defaultLookAndFeel1       = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.xtraTabbedMdiManager1     = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.defaultToolTipController1 = new DevExpress.Utils.DefaultToolTipController(this.components);
     this.barSubItem1               = new DevExpress.XtraBars.BarSubItem();
     this.myNullValueProvider1      = new MB.WinBase.Design.MyNullValueProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageSmall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageLarge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.dockPanelPersonalFavorites.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trvFavorites)).BeginInit();
     this.dockPanelFunctionTree.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trvListMain)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonPage2
     //
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "ribbonPage2";
     //
     // ribbonControl1
     //
     this.ribbonControl1.ApplicationButtonText = null;
     this.ribbonControl1.ApplicationIcon       = ((System.Drawing.Bitmap)(resources.GetObject("ribbonControl1.ApplicationIcon")));
     this.ribbonControl1.Images = this.imageSmall;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.bButAddNew,
         this.bButOpen,
         this.bButDelete,
         this.barButtonItem4,
         this.barButtonItem5,
         this.barButtonItem6,
         this.bButAbout,
         this.bButFilter,
         this.bButAdvanceFilter,
         this.bButCalc,
         this.bButFunctionTree,
         this.bButOnlineMessage,
         this.bButExit,
         this.rgbiSkins,
         this.bButSave,
         this.barButtonItem15,
         this.barButtonItem16,
         this.bButImport,
         this.bButExport,
         this.bButPrintPreview,
         this.bButRefresh,
         this.barStaticItemTime,
         this.bStaticItemUserName,
         this.bButLayout,
         this.bButModuleTree,
         this.subItemFunctionFlow,
         this.BarButFlowDesign,
         this.butFlowDesign,
         this.butFlowRuning,
         this.subItemPersonalFavorites,
         this.barButItemFavoritesSet,
         this.barButItemViewFavorites,
         this.bButDynamicGroupSetting
     });
     this.ribbonControl1.LargeImages = this.imageLarge;
     this.ribbonControl1.Location    = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId   = 46;
     this.ribbonControl1.Name        = "ribbonControl1";
     this.ribbonControl1.PageHeaderItemLinks.Add(this.bButAbout);
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage3,
         this.ribbonPage4,
         this.ribbonPage5
     });
     this.ribbonControl1.SelectedPage             = this.ribbonPage1;
     this.ribbonControl1.ShowCategoryInCaption    = false;
     this.ribbonControl1.ShowPageHeadersMode      = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Show;
     this.ribbonControl1.ShowToolbarCustomizeItem = false;
     this.ribbonControl1.Size      = new System.Drawing.Size(885, 152);
     this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
     this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem4);
     this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem5);
     this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem6);
     this.ribbonControl1.Toolbar.ItemLinks.Add(this.bButModuleTree);
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     //
     // imageSmall
     //
     this.imageSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageSmall.ImageStream")));
     this.imageSmall.Images.SetKeyName(0, "AddNew.ico");
     this.imageSmall.Images.SetKeyName(1, "AdvanceFilter.ico");
     this.imageSmall.Images.SetKeyName(2, "Close.ico");
     this.imageSmall.Images.SetKeyName(3, "Delete.ico");
     this.imageSmall.Images.SetKeyName(4, "Function.ico");
     this.imageSmall.Images.SetKeyName(5, "ModelQuery.ICO");
     this.imageSmall.Images.SetKeyName(6, "Open.ICO");
     this.imageSmall.Images.SetKeyName(7, "Print.ico");
     this.imageSmall.Images.SetKeyName(8, "Query.ico");
     this.imageSmall.Images.SetKeyName(9, "Refresh.ico");
     this.imageSmall.Images.SetKeyName(10, "Save.ico");
     this.imageSmall.Images.SetKeyName(11, "Submit.ICO");
     this.imageSmall.Images.SetKeyName(12, "导出.ICO");
     this.imageSmall.Images.SetKeyName(13, "导入.ico");
     this.imageSmall.Images.SetKeyName(14, "Calculator.ico");
     this.imageSmall.Images.SetKeyName(15, "Message.ICO");
     this.imageSmall.Images.SetKeyName(40, "12930B92340-34K6.png");
     this.imageSmall.Images.SetKeyName(41, "2012080809432424_easyicon_cn_48.ico");
     this.imageSmall.Images.SetKeyName(42, "XtraCharts.png");
     this.imageSmall.Images.SetKeyName(43, "DynamicGroupSetting.ico");
     //
     // bButAddNew
     //
     this.bButAddNew.Caption         = "新增(&A)...";
     this.bButAddNew.Id              = 0;
     this.bButAddNew.LargeImageIndex = 0;
     this.bButAddNew.Name            = "bButAddNew";
     this.bButAddNew.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButAddNew_ItemClick);
     //
     // bButOpen
     //
     this.bButOpen.Caption    = "打开(&O)...";
     this.bButOpen.Id         = 1;
     this.bButOpen.ImageIndex = 1;
     this.bButOpen.Name       = "bButOpen";
     this.bButOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButOpen_ItemClick);
     //
     // bButDelete
     //
     this.bButDelete.Caption    = "删除(&D)";
     this.bButDelete.Id         = 2;
     this.bButDelete.ImageIndex = 13;
     this.bButDelete.Name       = "bButDelete";
     this.bButDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButDelete_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption    = "新增";
     this.barButtonItem4.Id         = 3;
     this.barButtonItem4.ImageIndex = 6;
     this.barButtonItem4.Name       = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButAddNew_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption    = "保存";
     this.barButtonItem5.Enabled    = false;
     this.barButtonItem5.Id         = 4;
     this.barButtonItem5.ImageIndex = 10;
     this.barButtonItem5.Name       = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption    = "barButtonItem6";
     this.barButtonItem6.Enabled    = false;
     this.barButtonItem6.Id         = 5;
     this.barButtonItem6.ImageIndex = 11;
     this.barButtonItem6.Name       = "barButtonItem6";
     //
     // bButAbout
     //
     this.bButAbout.Caption    = "barButtonItem8";
     this.bButAbout.Id         = 7;
     this.bButAbout.ImageIndex = 28;
     this.bButAbout.Name       = "bButAbout";
     this.bButAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButAbout_ItemClick);
     //
     // bButFilter
     //
     this.bButFilter.Caption         = "查询(&F)...";
     this.bButFilter.Id              = 8;
     this.bButFilter.LargeImageIndex = 4;
     this.bButFilter.Name            = "bButFilter";
     this.bButFilter.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButFilter_ItemClick);
     //
     // bButAdvanceFilter
     //
     this.bButAdvanceFilter.Caption    = "高级查询(&A)...";
     this.bButAdvanceFilter.Id         = 9;
     this.bButAdvanceFilter.ImageIndex = 4;
     this.bButAdvanceFilter.Name       = "bButAdvanceFilter";
     this.bButAdvanceFilter.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButAdvanceFilter_ItemClick);
     //
     // bButCalc
     //
     this.bButCalc.Caption    = "计算器";
     this.bButCalc.Id         = 14;
     this.bButCalc.ImageIndex = 14;
     this.bButCalc.Name       = "bButCalc";
     this.bButCalc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButCalc_ItemClick);
     //
     // bButFunctionTree
     //
     this.bButFunctionTree.Caption         = "功能模块树";
     this.bButFunctionTree.Id              = 15;
     this.bButFunctionTree.ImageIndex      = 33;
     this.bButFunctionTree.LargeImageIndex = 3;
     this.bButFunctionTree.Name            = "bButFunctionTree";
     this.bButFunctionTree.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButFunctionTree_ItemClick);
     //
     // bButOnlineMessage
     //
     this.bButOnlineMessage.Caption    = "信息互动";
     this.bButOnlineMessage.Enabled    = false;
     this.bButOnlineMessage.Id         = 16;
     this.bButOnlineMessage.ImageIndex = 30;
     this.bButOnlineMessage.Name       = "bButOnlineMessage";
     this.bButOnlineMessage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButOnlineMessage_ItemClick);
     //
     // bButExit
     //
     this.bButExit.Caption         = "退出(&E)";
     this.bButExit.Id              = 17;
     this.bButExit.LargeImageIndex = 12;
     this.bButExit.Name            = "bButExit";
     this.bButExit.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButExit_ItemClick);
     //
     // rgbiSkins
     //
     this.rgbiSkins.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     this.rgbiSkins.Gallery.AllowHoverImages = true;
     this.rgbiSkins.Gallery.Appearance.ItemDescription.Options.UseFont        = true;
     this.rgbiSkins.Gallery.Appearance.ItemDescription.Options.UseTextOptions = true;
     this.rgbiSkins.Gallery.Appearance.ItemDescription.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.rgbiSkins.Gallery.ColumnCount         = 4;
     this.rgbiSkins.Gallery.FixedHoverImageSize = false;
     galleryItemGroup1.Caption = "Main Skins";
     galleryItemGroup2.Caption = "Office Skins";
     this.rgbiSkins.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1,
         galleryItemGroup2
     });
     this.rgbiSkins.Gallery.ImageSize            = new System.Drawing.Size(32, 17);
     this.rgbiSkins.Gallery.ItemImageLocation    = DevExpress.Utils.Locations.Top;
     this.rgbiSkins.Gallery.InitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiSkins_Gallery_InitDropDownGallery);
     this.rgbiSkins.Gallery.ItemClick           += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiSkins_Gallery_ItemClick);
     this.rgbiSkins.Id   = 18;
     this.rgbiSkins.Name = "rgbiSkins";
     //
     // bButSave
     //
     this.bButSave.Caption         = "保存(&S)";
     this.bButSave.Enabled         = false;
     this.bButSave.Id              = 19;
     this.bButSave.LargeImageIndex = 2;
     this.bButSave.Name            = "bButSave";
     this.bButSave.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButSave_ItemClick);
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption         = "关闭(&E)";
     this.barButtonItem15.Id              = 20;
     this.barButtonItem15.LargeImageIndex = 1;
     this.barButtonItem15.Name            = "barButtonItem15";
     this.barButtonItem15.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButExit_ItemClick);
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption    = "模板查询(&M)";
     this.barButtonItem16.Enabled    = false;
     this.barButtonItem16.Id         = 22;
     this.barButtonItem16.ImageIndex = 39;
     this.barButtonItem16.Name       = "barButtonItem16";
     //
     // bButImport
     //
     this.bButImport.Caption    = "导入(&I)";
     this.bButImport.Id         = 24;
     this.bButImport.ImageIndex = 37;
     this.bButImport.Name       = "bButImport";
     this.bButImport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButImport_ItemClick);
     //
     // bButExport
     //
     this.bButExport.Caption    = "导出(&E)";
     this.bButExport.Id         = 25;
     this.bButExport.ImageIndex = 38;
     this.bButExport.Name       = "bButExport";
     this.bButExport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButExport_ItemClick);
     //
     // bButPrintPreview
     //
     this.bButPrintPreview.Caption    = "打印预览(&P)";
     this.bButPrintPreview.Id         = 26;
     this.bButPrintPreview.ImageIndex = 9;
     this.bButPrintPreview.Name       = "bButPrintPreview";
     this.bButPrintPreview.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButPrintPreview_ItemClick);
     //
     // bButRefresh
     //
     this.bButRefresh.Caption    = "刷新(&R)";
     this.bButRefresh.Id         = 27;
     this.bButRefresh.ImageIndex = 32;
     this.bButRefresh.Name       = "bButRefresh";
     this.bButRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButRefresh_ItemClick);
     //
     // barStaticItemTime
     //
     this.barStaticItemTime.Alignment     = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItemTime.Id            = 28;
     this.barStaticItemTime.Name          = "barStaticItemTime";
     this.barStaticItemTime.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // bStaticItemUserName
     //
     this.bStaticItemUserName.Id            = 29;
     this.bStaticItemUserName.Name          = "bStaticItemUserName";
     this.bStaticItemUserName.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // bButLayout
     //
     this.bButLayout.Caption         = "保存布局";
     this.bButLayout.Id              = 30;
     this.bButLayout.LargeImageIndex = 13;
     this.bButLayout.Name            = "bButLayout";
     this.bButLayout.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.bButLayout_ItemClick);
     //
     // bButModuleTree
     //
     this.bButModuleTree.Caption    = "编辑系统模块树";
     this.bButModuleTree.Id         = 31;
     this.bButModuleTree.Name       = "bButModuleTree";
     this.bButModuleTree.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButModuleTree_ItemClick);
     //
     // subItemFunctionFlow
     //
     this.subItemFunctionFlow.Caption         = "功能流程";
     this.subItemFunctionFlow.Id              = 35;
     this.subItemFunctionFlow.LargeImageIndex = 14;
     this.subItemFunctionFlow.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.butFlowDesign),
         new DevExpress.XtraBars.LinkPersistInfo(this.butFlowRuning)
     });
     this.subItemFunctionFlow.Name = "subItemFunctionFlow";
     //
     // butFlowDesign
     //
     this.butFlowDesign.Caption    = "设计";
     this.butFlowDesign.Id         = 37;
     this.butFlowDesign.Name       = "butFlowDesign";
     this.butFlowDesign.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.butFlowDesign_ItemClick);
     //
     // butFlowRuning
     //
     this.butFlowRuning.Caption    = "运行";
     this.butFlowRuning.Id         = 38;
     this.butFlowRuning.Name       = "butFlowRuning";
     this.butFlowRuning.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.butFlowRuning_ItemClick);
     //
     // BarButFlowDesign
     //
     this.BarButFlowDesign.Caption = "设计";
     this.BarButFlowDesign.Id      = 36;
     this.BarButFlowDesign.Name    = "BarButFlowDesign";
     //
     // subItemPersonalFavorites
     //
     this.subItemPersonalFavorites.Caption         = "个人收藏夹";
     this.subItemPersonalFavorites.Enabled         = false;
     this.subItemPersonalFavorites.Id              = 41;
     this.subItemPersonalFavorites.ImageIndex      = 40;
     this.subItemPersonalFavorites.LargeImageIndex = 15;
     this.subItemPersonalFavorites.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButItemFavoritesSet),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButItemViewFavorites)
     });
     this.subItemPersonalFavorites.Name = "subItemPersonalFavorites";
     //
     // barButItemFavoritesSet
     //
     this.barButItemFavoritesSet.Caption         = "整理收藏夹";
     this.barButItemFavoritesSet.Id              = 42;
     this.barButItemFavoritesSet.ImageIndex      = 41;
     this.barButItemFavoritesSet.LargeImageIndex = 16;
     this.barButItemFavoritesSet.Name            = "barButItemFavoritesSet";
     this.barButItemFavoritesSet.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.barButItemFavoritesSet_ItemClick);
     //
     // barButItemViewFavorites
     //
     this.barButItemViewFavorites.Caption         = "查看收藏夹";
     this.barButItemViewFavorites.Id              = 43;
     this.barButItemViewFavorites.ImageIndex      = 3;
     this.barButItemViewFavorites.LargeImageIndex = 4;
     this.barButItemViewFavorites.Name            = "barButItemViewFavorites";
     this.barButItemViewFavorites.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.barButItemViewFavorites_ItemClick);
     //
     // bButDynamicGroupSetting
     //
     this.bButDynamicGroupSetting.Caption    = "聚组设定";
     this.bButDynamicGroupSetting.Enabled    = false;
     this.bButDynamicGroupSetting.Id         = 45;
     this.bButDynamicGroupSetting.ImageIndex = 43;
     this.bButDynamicGroupSetting.Name       = "bButDynamicGroupSetting";
     this.bButDynamicGroupSetting.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bButDynamicGroupSetting_ItemClick);
     //
     // imageLarge
     //
     this.imageLarge.ImageSize   = new System.Drawing.Size(32, 32);
     this.imageLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageLarge.ImageStream")));
     this.imageLarge.Images.SetKeyName(0, "AddNew.ico");
     this.imageLarge.Images.SetKeyName(1, "Close.ico");
     this.imageLarge.Images.SetKeyName(2, "Function.ico");
     this.imageLarge.Images.SetKeyName(3, "Query.ico");
     this.imageLarge.Images.SetKeyName(4, "Submit.ICO");
     this.imageLarge.Images.SetKeyName(5, "Save.ico");
     this.imageLarge.Images.SetKeyName(6, "Close.ico");
     this.imageLarge.Images.SetKeyName(15, "12930B92340-34K6.png");
     this.imageLarge.Images.SetKeyName(16, "2012080809432424_easyicon_cn_48.ico");
     this.imageLarge.Images.SetKeyName(17, "XtraCharts.png");
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2,
         this.ribbonPageGroup3,
         this.ribbonPageGroup4
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "开始";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bButAddNew);
     this.ribbonPageGroup1.ItemLinks.Add(this.bButOpen);
     this.ribbonPageGroup1.ItemLinks.Add(this.bButDelete);
     this.ribbonPageGroup1.ItemLinks.Add(this.bButSave);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "编辑";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.bButFilter);
     this.ribbonPageGroup2.ItemLinks.Add(this.bButAdvanceFilter);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem16);
     this.ribbonPageGroup2.ItemLinks.Add(this.bButRefresh);
     this.ribbonPageGroup2.ItemLinks.Add(this.bButImport);
     this.ribbonPageGroup2.ItemLinks.Add(this.bButExport);
     this.ribbonPageGroup2.ItemLinks.Add(this.bButPrintPreview);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.ShowCaptionButton = false;
     this.ribbonPageGroup2.Text = "数据";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.bButCalc);
     this.ribbonPageGroup3.ItemLinks.Add(this.bButOnlineMessage);
     this.ribbonPageGroup3.ItemLinks.Add(this.bButDynamicGroupSetting);
     this.ribbonPageGroup3.ItemLinks.Add(this.bButFunctionTree);
     this.ribbonPageGroup3.ItemLinks.Add(this.subItemFunctionFlow);
     this.ribbonPageGroup3.ItemLinks.Add(this.subItemPersonalFavorites);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.ShowCaptionButton = false;
     this.ribbonPageGroup3.Text = "工具";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.bButExit);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.ShowCaptionButton = false;
     this.ribbonPageGroup4.Text = "退出";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup6
     });
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "系统";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItem15);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.ShowCaptionButton = false;
     this.ribbonPageGroup6.Text = "退出";
     //
     // ribbonPage4
     //
     this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5
     });
     this.ribbonPage4.Name = "ribbonPage4";
     this.ribbonPage4.Text = "样式";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.rgbiSkins);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.ShowCaptionButton = false;
     this.ribbonPageGroup5.Text = "样式";
     //
     // ribbonPage5
     //
     this.ribbonPage5.Name = "ribbonPage5";
     this.ribbonPage5.Text = "帮助";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItemTime);
     this.ribbonStatusBar1.ItemLinks.Add(this.bStaticItemUserName);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 584);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(885, 24);
     //
     // dockManagerMain
     //
     this.dockManagerMain.Form = this;
     this.dockManagerMain.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
         this.dockPanelPersonalFavorites
     });
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
         this.dockPanelFunctionTree
     });
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
         "DevExpress.XtraBars.BarDockControl",
         "System.Windows.Forms.StatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonControl"
     });
     //
     // dockPanelPersonalFavorites
     //
     this.dockPanelPersonalFavorites.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.dockPanelPersonalFavorites.Appearance.Options.UseBackColor = true;
     this.dockPanelPersonalFavorites.Controls.Add(this.controlContainer1);
     this.dockPanelPersonalFavorites.Dock          = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.dockPanelPersonalFavorites.FloatVertical = true;
     this.dockPanelPersonalFavorites.ID            = new System.Guid("c3479515-1949-4c61-8cb7-0ab1b8f7c6dc");
     this.dockPanelPersonalFavorites.Location      = new System.Drawing.Point(0, 216);
     this.dockPanelPersonalFavorites.Name          = "dockPanelPersonalFavorites";
     this.dockPanelPersonalFavorites.OriginalSize  = new System.Drawing.Size(218, 200);
     this.dockPanelPersonalFavorites.SavedDock     = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.dockPanelPersonalFavorites.SavedIndex    = 1;
     this.dockPanelPersonalFavorites.SavedParent   = this.dockPanelFunctionTree;
     this.dockPanelPersonalFavorites.Size          = new System.Drawing.Size(200, 216);
     this.dockPanelPersonalFavorites.Text          = "个人收藏夹";
     this.dockPanelPersonalFavorites.Visibility    = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer1
     //
     this.defaultToolTipController1.SetAllowHtmlText(this.controlContainer1, DevExpress.Utils.DefaultBoolean.Default);
     this.controlContainer1.Controls.Add(this.trvFavorites);
     this.controlContainer1.Location = new System.Drawing.Point(3, 29);
     this.controlContainer1.Name     = "controlContainer1";
     this.controlContainer1.Size     = new System.Drawing.Size(194, 184);
     this.controlContainer1.TabIndex = 0;
     //
     // trvFavorites
     //
     this.trvFavorites.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.trvFavorites.Location = new System.Drawing.Point(0, 0);
     this.trvFavorites.Name     = "trvFavorites";
     this.trvFavorites.OptionsView.ShowColumns   = false;
     this.trvFavorites.OptionsView.ShowHorzLines = false;
     this.trvFavorites.OptionsView.ShowIndicator = false;
     this.trvFavorites.OptionsView.ShowRoot      = false;
     this.trvFavorites.OptionsView.ShowVertLines = false;
     this.trvFavorites.Size         = new System.Drawing.Size(194, 184);
     this.trvFavorites.TabIndex     = 4;
     this.trvFavorites.DoubleClick += new System.EventHandler(this.trvFavorites_DoubleClick);
     //
     // dockPanelFunctionTree
     //
     this.dockPanelFunctionTree.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.dockPanelFunctionTree.Appearance.Options.UseBackColor = true;
     this.dockPanelFunctionTree.Controls.Add(this.dockPanel1_Container);
     this.dockPanelFunctionTree.Dock         = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelFunctionTree.ID           = new System.Guid("6240c083-4cf3-42ec-a989-ab6ed8654065");
     this.dockPanelFunctionTree.Location     = new System.Drawing.Point(0, 152);
     this.dockPanelFunctionTree.Name         = "dockPanelFunctionTree";
     this.dockPanelFunctionTree.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelFunctionTree.Size         = new System.Drawing.Size(200, 432);
     this.dockPanelFunctionTree.Text         = "功能模块树";
     //
     // dockPanel1_Container
     //
     this.defaultToolTipController1.SetAllowHtmlText(this.dockPanel1_Container, DevExpress.Utils.DefaultBoolean.Default);
     this.dockPanel1_Container.Controls.Add(this.trvListMain);
     this.dockPanel1_Container.Controls.Add(this.panel1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 29);
     this.dockPanel1_Container.Name     = "dockPanel1_Container";
     this.dockPanel1_Container.Size     = new System.Drawing.Size(194, 400);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // trvListMain
     //
     this.trvListMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.trvListMain.Location = new System.Drawing.Point(0, 31);
     this.trvListMain.Name     = "trvListMain";
     this.trvListMain.OptionsView.ShowColumns   = false;
     this.trvListMain.OptionsView.ShowHorzLines = false;
     this.trvListMain.OptionsView.ShowIndicator = false;
     this.trvListMain.OptionsView.ShowVertLines = false;
     this.trvListMain.Size         = new System.Drawing.Size(194, 369);
     this.trvListMain.TabIndex     = 1;
     this.trvListMain.DoubleClick += new System.EventHandler(this.trvListMain_DoubleClick);
     //
     // panel1
     //
     this.defaultToolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.Default);
     this.panel1.BackColor   = System.Drawing.Color.Transparent;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.butOpenModule);
     this.panel1.Controls.Add(this.cobModuleFilter);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(194, 31);
     this.panel1.TabIndex = 0;
     //
     // butOpenModule
     //
     this.butOpenModule.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butOpenModule.Image    = ((System.Drawing.Image)(resources.GetObject("butOpenModule.Image")));
     this.butOpenModule.Location = new System.Drawing.Point(146, 4);
     this.butOpenModule.Name     = "butOpenModule";
     this.butOpenModule.Size     = new System.Drawing.Size(45, 23);
     this.butOpenModule.TabIndex = 3;
     this.butOpenModule.Text     = "GO";
     this.butOpenModule.Click   += new System.EventHandler(this.butOpenModule_Click);
     //
     // cobModuleFilter
     //
     this.defaultToolTipController1.SetAllowHtmlText(this.cobModuleFilter, DevExpress.Utils.DefaultBoolean.Default);
     this.cobModuleFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.cobModuleFilter.ForeColor         = System.Drawing.Color.Gray;
     this.cobModuleFilter.FormattingEnabled = true;
     this.cobModuleFilter.Location          = new System.Drawing.Point(2, 4);
     this.cobModuleFilter.Name = "cobModuleFilter";
     this.myNullValueProvider1.SetNullValueDescription(this.cobModuleFilter, "<请输入模块编码>");
     this.cobModuleFilter.Size      = new System.Drawing.Size(142, 22);
     this.cobModuleFilter.TabIndex  = 2;
     this.cobModuleFilter.Text      = "<请输入模块编码>";
     this.cobModuleFilter.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cobModuleFilter_KeyPress);
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Black";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.MdiParent         = this;
     this.xtraTabbedMdiManager1.ToolTipController = this.defaultToolTipController1.DefaultController;
     //
     // defaultToolTipController1
     //
     //
     //
     //
     this.defaultToolTipController1.DefaultController.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.defaultToolTipController1_DefaultController_GetActiveObjectInfo);
     //
     // barSubItem1
     //
     this.barSubItem1.Caption    = "模板查询(&M)...";
     this.barSubItem1.Id         = 13;
     this.barSubItem1.ImageIndex = 31;
     this.barSubItem1.Name       = "barSubItem1";
     //
     // XtraRibbonMdiMainForm
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
     this.defaultToolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.Default);
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(885, 608);
     this.Controls.Add(this.dockPanelFunctionTree);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Icon              = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer    = true;
     this.Name              = "XtraRibbonMdiMainForm";
     this.Ribbon            = this.ribbonControl1;
     this.StartPosition     = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar         = this.ribbonStatusBar1;
     this.Text              = "美特斯邦威资源管理平台";
     this.WindowState       = System.Windows.Forms.FormWindowState.Maximized;
     this.Load             += new System.EventHandler(this.RibbonMdiMainForm_Load);
     this.MdiChildActivate += new System.EventHandler(this.RibbonMdiMainForm_MdiChildActivate);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageSmall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageLarge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.dockPanelPersonalFavorites.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trvFavorites)).EndInit();
     this.dockPanelFunctionTree.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trvListMain)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #10
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();
     this.ribbonStatusBar           = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.xtraTabbedMdiManager1     = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ribbonPage1               = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemTimeEdit1   = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.barBtnStokKarti           = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnStokListe           = new DevExpress.XtraBars.BarButtonItem();
     this.barnBtnStokGrup           = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnStokHareket         = new DevExpress.XtraBars.BarButtonItem();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 433);
     this.ribbonStatusBar.Name     = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon   = this.ribbon;
     this.ribbonStatusBar.Size     = new System.Drawing.Size(743, 31);
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Stok";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barBtnStokKarti);
     this.ribbonPageGroup1.ItemLinks.Add(this.barBtnStokListe);
     this.ribbonPageGroup1.ItemLinks.Add(this.barnBtnStokGrup);
     this.ribbonPageGroup1.ItemLinks.Add(this.barBtnStokHareket);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Stok İşlemleri";
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // barBtnStokKarti
     //
     this.barBtnStokKarti.Caption = "Stok Kartı";
     this.barBtnStokKarti.Id      = 1;
     this.barBtnStokKarti.ImageOptions.LargeImage = global::iStokTakip.FormApp.Properties.Resources.Stok_Kartı32x32;
     this.barBtnStokKarti.Name       = "barBtnStokKarti";
     this.barBtnStokKarti.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnStokKarti_ItemClick);
     //
     // barBtnStokListe
     //
     this.barBtnStokListe.Caption = "Stok Listesi";
     this.barBtnStokListe.Id      = 2;
     this.barBtnStokListe.ImageOptions.LargeImage = global::iStokTakip.FormApp.Properties.Resources.Stok_Liste32x32;
     this.barBtnStokListe.Name       = "barBtnStokListe";
     this.barBtnStokListe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnStokListe_ItemClick);
     //
     // barnBtnStokGrup
     //
     this.barnBtnStokGrup.Caption = "Stok Grupları";
     this.barnBtnStokGrup.Id      = 3;
     this.barnBtnStokGrup.ImageOptions.LargeImage = global::iStokTakip.FormApp.Properties.Resources.Stok_Grup32x32;
     this.barnBtnStokGrup.Name       = "barnBtnStokGrup";
     this.barnBtnStokGrup.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barnBtnStokGrup_ItemClick);
     //
     // barBtnStokHareket
     //
     this.barBtnStokHareket.Caption = "Stok Hareketleri";
     this.barBtnStokHareket.Id      = 4;
     this.barBtnStokHareket.ImageOptions.LargeImage = global::iStokTakip.FormApp.Properties.Resources.Stok_Hareket32x32;
     this.barBtnStokHareket.Name       = "barBtnStokHareket";
     this.barBtnStokHareket.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnStokHareket_ItemClick);
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "Temalar";
     //
     //
     //
     galleryItemGroup1.Caption = "Group1";
     this.skinRibbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.skinRibbonGalleryBarItem1.Id   = 5;
     this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
     //
     // ribbon
     //
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.barBtnStokKarti,
         this.barBtnStokListe,
         this.barnBtnStokGrup,
         this.barBtnStokHareket,
         this.skinRibbonGalleryBarItem1
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 9;
     this.ribbon.Name      = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbon.QuickToolbarItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemTimeEdit1
     });
     this.ribbon.Size      = new System.Drawing.Size(743, 143);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // AnaForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(743, 464);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.IsMdiContainer  = true;
     this.Name            = "AnaForm";
     this.Ribbon          = this.ribbon;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar       = this.ribbonStatusBar;
     this.Text            = "Stok Takip v1.0";
     this.Load           += new System.EventHandler(this.AnaForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #11
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);
 }
 /// <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);
 }
		/// <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);

		}
Beispiel #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.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();

        }
Beispiel #15
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> 
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RichViewerControl));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraRichEdit.Model.BorderInfo borderInfo1 = new DevExpress.XtraRichEdit.Model.BorderInfo();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.bar3 = new DevExpress.XtraBars.Bar();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barProcess = new DevExpress.XtraBars.BarStaticItem();
            this.barPage1 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
            this.barPageAll = new DevExpress.XtraBars.BarStaticItem();
            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.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.richEditControl1 = new DevExpress.XtraRichEdit.RichEditControl();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            this.barButtonGroup8 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup9 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup10 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup11 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup12 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup13 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup14 = new DevExpress.XtraBars.BarButtonGroup();
            this.insertPageBreakItem21 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem2();
            this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
            this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
            this.insertFloatingPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertFloatingPictureItem();
            this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
            this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
            this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
            this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
            this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
            this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
            this.insertTextBoxItem1 = new DevExpress.XtraRichEdit.UI.InsertTextBoxItem();
            this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
            this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
            this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
            this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
            this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
            this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
            this.showPageMarginsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowPageMarginsSetupFormItem();
            this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
            this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
            this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
            this.changeSectionPaperKindItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPaperKindItem();
            this.changeSectionColumnsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionColumnsItem();
            this.setSectionOneColumnItem1 = new DevExpress.XtraRichEdit.UI.SetSectionOneColumnItem();
            this.setSectionTwoColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionTwoColumnsItem();
            this.setSectionThreeColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionThreeColumnsItem();
            this.showColumnsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowColumnsSetupFormItem();
            this.insertBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertBreakItem();
            this.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
            this.insertColumnBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertColumnBreakItem();
            this.insertSectionBreakNextPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakNextPageItem();
            this.insertSectionBreakEvenPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakEvenPageItem();
            this.insertSectionBreakOddPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakOddPageItem();
            this.changeSectionLineNumberingItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionLineNumberingItem();
            this.setSectionLineNumberingNoneItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingNoneItem();
            this.setSectionLineNumberingContinuousItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingContinuousItem();
            this.setSectionLineNumberingRestartNewPageItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewPageItem();
            this.setSectionLineNumberingRestartNewSectionItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewSectionItem();
            this.toggleParagraphSuppressLineNumbersItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphSuppressLineNumbersItem();
            this.showLineNumberingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineNumberingFormItem();
            this.changePageColorItem1 = new DevExpress.XtraRichEdit.UI.ChangePageColorItem();
            this.insertTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfContentsItem();
            this.updateTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfContentsItem();
            this.addParagraphsToTableOfContentItem1 = new DevExpress.XtraRichEdit.UI.AddParagraphsToTableOfContentItem();
            this.setParagraphHeadingLevelItem1 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem2 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem3 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem4 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem5 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem6 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem7 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem8 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem9 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem10 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.insertCaptionPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertCaptionPlaceholderItem();
            this.insertFiguresCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertFiguresCaptionItems();
            this.insertTablesCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertTablesCaptionItems();
            this.insertEquationsCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertEquationsCaptionItems();
            this.insertTableOfFiguresPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresPlaceholderItem();
            this.insertTableOfFiguresItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresItems();
            this.insertTableOfTablesItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfTablesItems();
            this.insertTableOfEquationsItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfEquationsItems();
            this.updateTableOfFiguresItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfFiguresItem();
            this.insertMergeFieldItem1 = new DevExpress.XtraRichEdit.UI.InsertMergeFieldItem();
            this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
            this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
            this.toggleViewMergedDataItem1 = new DevExpress.XtraRichEdit.UI.ToggleViewMergedDataItem();
            this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
            this.changeLanguageItem1 = new DevExpress.XtraRichEdit.UI.ChangeLanguageItem();
            this.protectDocumentItem1 = new DevExpress.XtraRichEdit.UI.ProtectDocumentItem();
            this.changeRangeEditingPermissionsItem1 = new DevExpress.XtraRichEdit.UI.ChangeRangeEditingPermissionsItem();
            this.unprotectDocumentItem1 = new DevExpress.XtraRichEdit.UI.UnprotectDocumentItem();
            this.changeCommentItem1 = new DevExpress.XtraRichEdit.UI.ChangeCommentItem();
            this.reviewersItem1 = new DevExpress.XtraRichEdit.UI.ReviewersItem();
            this.reviewingPaneItem1 = new DevExpress.XtraRichEdit.UI.ReviewingPaneItem();
            this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
            this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
            this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
            this.toggleShowHorizontalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowHorizontalRulerItem();
            this.toggleShowVerticalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowVerticalRulerItem();
            this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
            this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
            this.goToPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.GoToPageHeaderItem();
            this.goToPageFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPageFooterItem();
            this.goToNextHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToNextHeaderFooterItem();
            this.goToPreviousHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPreviousHeaderFooterItem();
            this.toggleLinkToPreviousItem1 = new DevExpress.XtraRichEdit.UI.ToggleLinkToPreviousItem();
            this.toggleDifferentFirstPageItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentFirstPageItem();
            this.toggleDifferentOddAndEvenPagesItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentOddAndEvenPagesItem();
            this.closePageHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.ClosePageHeaderFooterItem();
            this.toggleFirstRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstRowItem();
            this.toggleLastRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastRowItem();
            this.toggleBandedRowsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedRowsItem();
            this.toggleFirstColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstColumnItem();
            this.toggleLastColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastColumnItem();
            this.toggleBandedColumnsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedColumnsItem();
            this.galleryChangeTableStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeTableStyleItem();
            this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
            this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
            this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
            this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
            this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
            this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
            this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
            this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
            this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
            this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
            this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
            this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
            this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
            this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
            this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
            this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
            this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
            this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
            this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
            this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
            this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
            this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
            this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
            this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
            this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
            this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
            this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
            this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
            this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
            this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
            this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
            this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
            this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
            this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
            this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
            this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
            this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
            this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
            this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
            this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
            this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
            this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
            this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
            this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
            this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
            this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
            this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
            this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
            this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
            this.showTableOptionsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTableOptionsFormItem();
            this.changeFloatingObjectFillColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectFillColorItem();
            this.changeFloatingObjectOutlineColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineColorItem();
            this.changeFloatingObjectOutlineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineWeightItem();
            this.repositoryItemFloatingObjectOutlineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemFloatingObjectOutlineWeight();
            this.changeFloatingObjectTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectTextWrapTypeItem();
            this.setFloatingObjectSquareTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectSquareTextWrapTypeItem();
            this.setFloatingObjectTightTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTightTextWrapTypeItem();
            this.setFloatingObjectThroughTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectThroughTextWrapTypeItem();
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopAndBottomTextWrapTypeItem();
            this.setFloatingObjectBehindTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBehindTextWrapTypeItem();
            this.setFloatingObjectInFrontOfTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectInFrontOfTextWrapTypeItem();
            this.changeFloatingObjectAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectAlignmentItem();
            this.setFloatingObjectTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopLeftAlignmentItem();
            this.setFloatingObjectTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopCenterAlignmentItem();
            this.setFloatingObjectTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopRightAlignmentItem();
            this.setFloatingObjectMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleLeftAlignmentItem();
            this.setFloatingObjectMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleCenterAlignmentItem();
            this.setFloatingObjectMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleRightAlignmentItem();
            this.setFloatingObjectBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomLeftAlignmentItem();
            this.setFloatingObjectBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomCenterAlignmentItem();
            this.setFloatingObjectBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomRightAlignmentItem();
            this.floatingObjectBringForwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardSubItem();
            this.floatingObjectBringForwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardItem();
            this.floatingObjectBringToFrontItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringToFrontItem();
            this.floatingObjectBringInFrontOfTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringInFrontOfTextItem();
            this.floatingObjectSendBackwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardSubItem();
            this.floatingObjectSendBackwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardItem();
            this.floatingObjectSendToBackItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendToBackItem();
            this.floatingObjectSendBehindTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBehindTextItem();
            this.headerFooterToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsRibbonPageCategory();
            this.headerFooterToolsDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignRibbonPage();
            this.headerFooterToolsDesignNavigationRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignNavigationRibbonPageGroup();
            this.headerFooterToolsDesignOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignOptionsRibbonPageGroup();
            this.headerFooterToolsDesignCloseRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignCloseRibbonPageGroup();
            this.tableToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.TableToolsRibbonPageCategory();
            this.tableDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableDesignRibbonPage();
            this.tableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStyleOptionsRibbonPageGroup();
            this.tableStylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStylesRibbonPageGroup();
            this.tableDrawBordersRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableDrawBordersRibbonPageGroup();
            this.tableLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableLayoutRibbonPage();
            this.tableTableRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableTableRibbonPageGroup();
            this.tableRowsAndColumnsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableRowsAndColumnsRibbonPageGroup();
            this.tableMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableMergeRibbonPageGroup();
            this.tableCellSizeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableCellSizeRibbonPageGroup();
            this.tableAlignmentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableAlignmentRibbonPageGroup();
            this.floatingPictureToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsRibbonPageCategory();
            this.floatingPictureToolsFormatPage1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsFormatPage();
            this.floatingPictureToolsShapeStylesPageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsShapeStylesPageGroup();
            this.floatingPictureToolsArrangePageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsArrangePageGroup();
            this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.insertRibbonPage1 = new DevExpress.XtraRichEdit.UI.InsertRibbonPage();
            this.pagesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PagesRibbonPageGroup();
            this.tablesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TablesRibbonPageGroup();
            this.illustrationsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.IllustrationsRibbonPageGroup();
            this.linksRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.LinksRibbonPageGroup();
            this.headerFooterRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterRibbonPageGroup();
            this.textRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TextRibbonPageGroup();
            this.symbolsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.SymbolsRibbonPageGroup();
            this.pageLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.PageLayoutRibbonPage();
            this.pageSetupRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageSetupRibbonPageGroup();
            this.pageBackgroundRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageBackgroundRibbonPageGroup();
            this.referencesRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReferencesRibbonPage();
            this.tableOfContentsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableOfContentsRibbonPageGroup();
            this.captionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CaptionsRibbonPageGroup();
            this.mailingsRibbonPage1 = new DevExpress.XtraRichEdit.UI.MailingsRibbonPage();
            this.mailMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.MailMergeRibbonPageGroup();
            this.reviewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReviewRibbonPage();
            this.documentProofingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProofingRibbonPageGroup();
            this.documentProtectionRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProtectionRibbonPageGroup();
            this.documentCommentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentCommentRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ViewRibbonPage();
            this.documentViewsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentViewsRibbonPageGroup();
            this.showRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ShowRibbonPageGroup();
            this.zoomRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ZoomRibbonPageGroup();
            this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 52;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // barManager1
            // 
            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.barStaticItem1,
            this.barProcess,
            this.barPage1,
            this.barStaticItem3,
            this.barPageAll});
            this.barManager1.MaxItemId = 6;
            this.barManager1.StatusBar = this.bar3;
            // 
            // 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.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.barProcess),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.barPage1, false),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.barStaticItem3, false),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.barPageAll, false)});
            this.bar3.OptionsBar.AllowQuickCustomization = false;
            this.bar3.OptionsBar.DrawDragBorder = false;
            this.bar3.OptionsBar.UseWholeRow = true;
            this.bar3.Text = "Status bar";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "进度:";
            this.barStaticItem1.Id = 0;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barProcess
            // 
            this.barProcess.Caption = "100%";
            this.barProcess.Id = 1;
            this.barProcess.Name = "barProcess";
            this.barProcess.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barPage1
            // 
            this.barPage1.Caption = "1";
            this.barPage1.Id = 2;
            this.barPage1.Name = "barPage1";
            this.barPage1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem3
            // 
            this.barStaticItem3.Caption = "/";
            this.barStaticItem3.Id = 3;
            this.barStaticItem3.Name = "barStaticItem3";
            this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barPageAll
            // 
            this.barPageAll.Caption = "1";
            this.barPageAll.Id = 4;
            this.barPageAll.Name = "barPageAll";
            this.barPageAll.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(372, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 260);
            this.barDockControlBottom.Size = new System.Drawing.Size(372, 27);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 260);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(372, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 260);
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.undoItem1,
            this.redoItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1,
            this.barButtonGroup8,
            this.barButtonGroup9,
            this.barButtonGroup10,
            this.barButtonGroup11,
            this.barButtonGroup12,
            this.barButtonGroup13,
            this.barButtonGroup14,
            this.insertPageBreakItem21,
            this.insertTableItem1,
            this.insertPictureItem1,
            this.insertFloatingPictureItem1,
            this.insertBookmarkItem1,
            this.insertHyperlinkItem1,
            this.editPageHeaderItem1,
            this.editPageFooterItem1,
            this.insertPageNumberItem1,
            this.insertPageCountItem1,
            this.insertTextBoxItem1,
            this.insertSymbolItem1,
            this.changeSectionPageMarginsItem1,
            this.setNormalSectionPageMarginsItem1,
            this.setNarrowSectionPageMarginsItem1,
            this.setModerateSectionPageMarginsItem1,
            this.setWideSectionPageMarginsItem1,
            this.showPageMarginsSetupFormItem1,
            this.changeSectionPageOrientationItem1,
            this.setPortraitPageOrientationItem1,
            this.setLandscapePageOrientationItem1,
            this.changeSectionPaperKindItem1,
            this.changeSectionColumnsItem1,
            this.setSectionOneColumnItem1,
            this.setSectionTwoColumnsItem1,
            this.setSectionThreeColumnsItem1,
            this.showColumnsSetupFormItem1,
            this.insertBreakItem1,
            this.insertPageBreakItem1,
            this.insertColumnBreakItem1,
            this.insertSectionBreakNextPageItem1,
            this.insertSectionBreakEvenPageItem1,
            this.insertSectionBreakOddPageItem1,
            this.changeSectionLineNumberingItem1,
            this.setSectionLineNumberingNoneItem1,
            this.setSectionLineNumberingContinuousItem1,
            this.setSectionLineNumberingRestartNewPageItem1,
            this.setSectionLineNumberingRestartNewSectionItem1,
            this.toggleParagraphSuppressLineNumbersItem1,
            this.showLineNumberingFormItem1,
            this.changePageColorItem1,
            this.insertTableOfContentsItem1,
            this.updateTableOfContentsItem1,
            this.addParagraphsToTableOfContentItem1,
            this.setParagraphHeadingLevelItem1,
            this.setParagraphHeadingLevelItem2,
            this.setParagraphHeadingLevelItem3,
            this.setParagraphHeadingLevelItem4,
            this.setParagraphHeadingLevelItem5,
            this.setParagraphHeadingLevelItem6,
            this.setParagraphHeadingLevelItem7,
            this.setParagraphHeadingLevelItem8,
            this.setParagraphHeadingLevelItem9,
            this.setParagraphHeadingLevelItem10,
            this.insertCaptionPlaceholderItem1,
            this.insertFiguresCaptionItems1,
            this.insertTablesCaptionItems1,
            this.insertEquationsCaptionItems1,
            this.insertTableOfFiguresPlaceholderItem1,
            this.insertTableOfFiguresItems1,
            this.insertTableOfTablesItems1,
            this.insertTableOfEquationsItems1,
            this.updateTableOfFiguresItem1,
            this.insertMergeFieldItem1,
            this.showAllFieldCodesItem1,
            this.showAllFieldResultsItem1,
            this.toggleViewMergedDataItem1,
            this.checkSpellingItem1,
            this.changeLanguageItem1,
            this.protectDocumentItem1,
            this.changeRangeEditingPermissionsItem1,
            this.unprotectDocumentItem1,
            this.changeCommentItem1,
            this.reviewersItem1,
            this.reviewingPaneItem1,
            this.switchToSimpleViewItem1,
            this.switchToDraftViewItem1,
            this.switchToPrintLayoutViewItem1,
            this.toggleShowHorizontalRulerItem1,
            this.toggleShowVerticalRulerItem1,
            this.zoomOutItem1,
            this.zoomInItem1,
            this.goToPageHeaderItem1,
            this.goToPageFooterItem1,
            this.goToNextHeaderFooterItem1,
            this.goToPreviousHeaderFooterItem1,
            this.toggleLinkToPreviousItem1,
            this.toggleDifferentFirstPageItem1,
            this.toggleDifferentOddAndEvenPagesItem1,
            this.closePageHeaderFooterItem1,
            this.toggleFirstRowItem1,
            this.toggleLastRowItem1,
            this.toggleBandedRowsItem1,
            this.toggleFirstColumnItem1,
            this.toggleLastColumnItem1,
            this.toggleBandedColumnsItem1,
            this.galleryChangeTableStyleItem1,
            this.changeTableBorderLineStyleItem1,
            this.changeTableBorderLineWeightItem1,
            this.changeTableBorderColorItem1,
            this.changeTableBordersItem1,
            this.toggleTableCellsBottomBorderItem1,
            this.toggleTableCellsTopBorderItem1,
            this.toggleTableCellsLeftBorderItem1,
            this.toggleTableCellsRightBorderItem1,
            this.resetTableCellsAllBordersItem1,
            this.toggleTableCellsAllBordersItem1,
            this.toggleTableCellsOutsideBorderItem1,
            this.toggleTableCellsInsideBorderItem1,
            this.toggleTableCellsInsideHorizontalBorderItem1,
            this.toggleTableCellsInsideVerticalBorderItem1,
            this.toggleShowTableGridLinesItem1,
            this.changeTableCellsShadingItem1,
            this.selectTableElementsItem1,
            this.selectTableCellItem1,
            this.selectTableColumnItem1,
            this.selectTableRowItem1,
            this.selectTableItem1,
            this.showTablePropertiesFormItem1,
            this.deleteTableElementsItem1,
            this.showDeleteTableCellsFormItem1,
            this.deleteTableColumnsItem1,
            this.deleteTableRowsItem1,
            this.deleteTableItem1,
            this.insertTableRowAboveItem1,
            this.insertTableRowBelowItem1,
            this.insertTableColumnToLeftItem1,
            this.insertTableColumnToRightItem1,
            this.mergeTableCellsItem1,
            this.showSplitTableCellsForm1,
            this.splitTableItem1,
            this.toggleTableAutoFitItem1,
            this.toggleTableAutoFitContentsItem1,
            this.toggleTableAutoFitWindowItem1,
            this.toggleTableFixedColumnWidthItem1,
            this.toggleTableCellsTopLeftAlignmentItem1,
            this.toggleTableCellsMiddleLeftAlignmentItem1,
            this.toggleTableCellsBottomLeftAlignmentItem1,
            this.toggleTableCellsTopCenterAlignmentItem1,
            this.toggleTableCellsMiddleCenterAlignmentItem1,
            this.toggleTableCellsBottomCenterAlignmentItem1,
            this.toggleTableCellsTopRightAlignmentItem1,
            this.toggleTableCellsMiddleRightAlignmentItem1,
            this.toggleTableCellsBottomRightAlignmentItem1,
            this.showTableOptionsFormItem1,
            this.changeFloatingObjectFillColorItem1,
            this.changeFloatingObjectOutlineColorItem1,
            this.changeFloatingObjectOutlineWeightItem1,
            this.changeFloatingObjectTextWrapTypeItem1,
            this.setFloatingObjectSquareTextWrapTypeItem1,
            this.setFloatingObjectTightTextWrapTypeItem1,
            this.setFloatingObjectThroughTextWrapTypeItem1,
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1,
            this.setFloatingObjectBehindTextWrapTypeItem1,
            this.setFloatingObjectInFrontOfTextWrapTypeItem1,
            this.changeFloatingObjectAlignmentItem1,
            this.setFloatingObjectTopLeftAlignmentItem1,
            this.setFloatingObjectTopCenterAlignmentItem1,
            this.setFloatingObjectTopRightAlignmentItem1,
            this.setFloatingObjectMiddleLeftAlignmentItem1,
            this.setFloatingObjectMiddleCenterAlignmentItem1,
            this.setFloatingObjectMiddleRightAlignmentItem1,
            this.setFloatingObjectBottomLeftAlignmentItem1,
            this.setFloatingObjectBottomCenterAlignmentItem1,
            this.setFloatingObjectBottomRightAlignmentItem1,
            this.floatingObjectBringForwardSubItem1,
            this.floatingObjectBringForwardItem1,
            this.floatingObjectBringToFrontItem1,
            this.floatingObjectBringInFrontOfTextItem1,
            this.floatingObjectSendBackwardSubItem1,
            this.floatingObjectSendBackwardItem1,
            this.floatingObjectSendToBackItem1,
            this.floatingObjectSendBehindTextItem1});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 244;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.headerFooterToolsRibbonPageCategory1,
            this.tableToolsRibbonPageCategory1,
            this.floatingPictureToolsRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.insertRibbonPage1,
            this.pageLayoutRibbonPage1,
            this.referencesRibbonPage1,
            this.mailingsRibbonPage1,
            this.reviewRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1,
            this.repositoryItemBorderLineStyle1,
            this.repositoryItemBorderLineWeight1,
            this.repositoryItemFloatingObjectOutlineWeight1});
            this.ribbonControl1.Size = new System.Drawing.Size(372, 145);
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 8;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 9;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 10;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 11;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 1;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 12;
            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.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 13;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.richEditControl1;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // richEditControl1
            // 
            this.richEditControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.richEditControl1.EnableToolTips = true;
            this.richEditControl1.Location = new System.Drawing.Point(0, 145);
            this.richEditControl1.MenuManager = this.barManager1;
            this.richEditControl1.Name = "richEditControl1";
            this.richEditControl1.Options.CopyPaste.MaintainDocumentSectionSettings = false;
            this.richEditControl1.Options.Fields.UseCurrentCultureDateTimeFormat = false;
            this.richEditControl1.Options.MailMerge.KeepLastParagraph = false;
            this.richEditControl1.Size = new System.Drawing.Size(372, 115);
            this.richEditControl1.TabIndex = 5;
            this.richEditControl1.Text = "richEditControl1";
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 14;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 15;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 2;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 16;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 17;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 18;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 19;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 20;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 21;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 22;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 23;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 3;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 24;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 25;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 26;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 27;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 28;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 29;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 30;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 31;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 4;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 32;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 33;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 34;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 5;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 35;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 36;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 41;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 6;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 37;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 38;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 39;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 40;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 7;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 42;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 43;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 44;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 45;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 46;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 47;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 48;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 49;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 50;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 51;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 53;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 54;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // undoItem1
            // 
            this.undoItem1.Id = 55;
            this.undoItem1.Name = "undoItem1";
            // 
            // redoItem1
            // 
            this.redoItem1.Id = 56;
            this.redoItem1.Name = "redoItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Id = 57;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Id = 58;
            this.fileOpenItem1.Name = "fileOpenItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 59;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Id = 60;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Id = 61;
            this.quickPrintItem1.Name = "quickPrintItem1";
            // 
            // printItem1
            // 
            this.printItem1.Id = 62;
            this.printItem1.Name = "printItem1";
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 63;
            this.printPreviewItem1.Name = "printPreviewItem1";
            // 
            // barButtonGroup8
            // 
            this.barButtonGroup8.Id = 64;
            this.barButtonGroup8.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup8.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup8.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup8.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup8.Name = "barButtonGroup8";
            this.barButtonGroup8.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // barButtonGroup9
            // 
            this.barButtonGroup9.Id = 65;
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup9.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup9.Name = "barButtonGroup9";
            this.barButtonGroup9.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // barButtonGroup10
            // 
            this.barButtonGroup10.Id = 66;
            this.barButtonGroup10.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup10.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup10.Name = "barButtonGroup10";
            this.barButtonGroup10.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // barButtonGroup11
            // 
            this.barButtonGroup11.Id = 67;
            this.barButtonGroup11.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup11.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup11.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup11.Name = "barButtonGroup11";
            this.barButtonGroup11.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // barButtonGroup12
            // 
            this.barButtonGroup12.Id = 68;
            this.barButtonGroup12.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup12.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup12.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup12.Name = "barButtonGroup12";
            this.barButtonGroup12.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // barButtonGroup13
            // 
            this.barButtonGroup13.Id = 69;
            this.barButtonGroup13.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup13.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup13.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup13.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup13.Name = "barButtonGroup13";
            this.barButtonGroup13.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // barButtonGroup14
            // 
            this.barButtonGroup14.Id = 70;
            this.barButtonGroup14.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup14.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup14.Name = "barButtonGroup14";
            this.barButtonGroup14.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // insertPageBreakItem21
            // 
            this.insertPageBreakItem21.Id = 71;
            this.insertPageBreakItem21.Name = "insertPageBreakItem21";
            // 
            // insertTableItem1
            // 
            this.insertTableItem1.Id = 72;
            this.insertTableItem1.Name = "insertTableItem1";
            // 
            // insertPictureItem1
            // 
            this.insertPictureItem1.Id = 73;
            this.insertPictureItem1.Name = "insertPictureItem1";
            // 
            // insertFloatingPictureItem1
            // 
            this.insertFloatingPictureItem1.Id = 74;
            this.insertFloatingPictureItem1.Name = "insertFloatingPictureItem1";
            // 
            // insertBookmarkItem1
            // 
            this.insertBookmarkItem1.Id = 75;
            this.insertBookmarkItem1.Name = "insertBookmarkItem1";
            // 
            // insertHyperlinkItem1
            // 
            this.insertHyperlinkItem1.Id = 76;
            this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
            // 
            // editPageHeaderItem1
            // 
            this.editPageHeaderItem1.Id = 77;
            this.editPageHeaderItem1.Name = "editPageHeaderItem1";
            // 
            // editPageFooterItem1
            // 
            this.editPageFooterItem1.Id = 78;
            this.editPageFooterItem1.Name = "editPageFooterItem1";
            // 
            // insertPageNumberItem1
            // 
            this.insertPageNumberItem1.Id = 79;
            this.insertPageNumberItem1.Name = "insertPageNumberItem1";
            // 
            // insertPageCountItem1
            // 
            this.insertPageCountItem1.Id = 80;
            this.insertPageCountItem1.Name = "insertPageCountItem1";
            // 
            // insertTextBoxItem1
            // 
            this.insertTextBoxItem1.Id = 81;
            this.insertTextBoxItem1.Name = "insertTextBoxItem1";
            // 
            // insertSymbolItem1
            // 
            this.insertSymbolItem1.Id = 82;
            this.insertSymbolItem1.Name = "insertSymbolItem1";
            // 
            // changeSectionPageMarginsItem1
            // 
            this.changeSectionPageMarginsItem1.Id = 83;
            this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showPageMarginsSetupFormItem1, true)});
            this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
            // 
            // setNormalSectionPageMarginsItem1
            // 
            this.setNormalSectionPageMarginsItem1.Id = 84;
            this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
            // 
            // setNarrowSectionPageMarginsItem1
            // 
            this.setNarrowSectionPageMarginsItem1.Id = 85;
            this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
            // 
            // setModerateSectionPageMarginsItem1
            // 
            this.setModerateSectionPageMarginsItem1.Id = 86;
            this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
            // 
            // setWideSectionPageMarginsItem1
            // 
            this.setWideSectionPageMarginsItem1.Id = 87;
            this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
            // 
            // showPageMarginsSetupFormItem1
            // 
            this.showPageMarginsSetupFormItem1.Id = 88;
            this.showPageMarginsSetupFormItem1.Name = "showPageMarginsSetupFormItem1";
            // 
            // changeSectionPageOrientationItem1
            // 
            this.changeSectionPageOrientationItem1.Id = 89;
            this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
            this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
            // 
            // setPortraitPageOrientationItem1
            // 
            this.setPortraitPageOrientationItem1.Id = 90;
            this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
            // 
            // setLandscapePageOrientationItem1
            // 
            this.setLandscapePageOrientationItem1.Id = 91;
            this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
            // 
            // changeSectionPaperKindItem1
            // 
            this.changeSectionPaperKindItem1.Id = 92;
            this.changeSectionPaperKindItem1.Name = "changeSectionPaperKindItem1";
            // 
            // changeSectionColumnsItem1
            // 
            this.changeSectionColumnsItem1.Id = 93;
            this.changeSectionColumnsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionOneColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionTwoColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionThreeColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showColumnsSetupFormItem1, true)});
            this.changeSectionColumnsItem1.Name = "changeSectionColumnsItem1";
            // 
            // setSectionOneColumnItem1
            // 
            this.setSectionOneColumnItem1.Id = 94;
            this.setSectionOneColumnItem1.Name = "setSectionOneColumnItem1";
            // 
            // setSectionTwoColumnsItem1
            // 
            this.setSectionTwoColumnsItem1.Id = 95;
            this.setSectionTwoColumnsItem1.Name = "setSectionTwoColumnsItem1";
            // 
            // setSectionThreeColumnsItem1
            // 
            this.setSectionThreeColumnsItem1.Id = 96;
            this.setSectionThreeColumnsItem1.Name = "setSectionThreeColumnsItem1";
            // 
            // showColumnsSetupFormItem1
            // 
            this.showColumnsSetupFormItem1.Id = 97;
            this.showColumnsSetupFormItem1.Name = "showColumnsSetupFormItem1";
            // 
            // insertBreakItem1
            // 
            this.insertBreakItem1.Id = 98;
            this.insertBreakItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPageBreakItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertColumnBreakItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakNextPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakEvenPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakOddPageItem1)});
            this.insertBreakItem1.Name = "insertBreakItem1";
            // 
            // insertPageBreakItem1
            // 
            this.insertPageBreakItem1.Id = 99;
            this.insertPageBreakItem1.Name = "insertPageBreakItem1";
            // 
            // insertColumnBreakItem1
            // 
            this.insertColumnBreakItem1.Id = 100;
            this.insertColumnBreakItem1.Name = "insertColumnBreakItem1";
            // 
            // insertSectionBreakNextPageItem1
            // 
            this.insertSectionBreakNextPageItem1.Id = 101;
            this.insertSectionBreakNextPageItem1.Name = "insertSectionBreakNextPageItem1";
            // 
            // insertSectionBreakEvenPageItem1
            // 
            this.insertSectionBreakEvenPageItem1.Id = 102;
            this.insertSectionBreakEvenPageItem1.Name = "insertSectionBreakEvenPageItem1";
            // 
            // insertSectionBreakOddPageItem1
            // 
            this.insertSectionBreakOddPageItem1.Id = 103;
            this.insertSectionBreakOddPageItem1.Name = "insertSectionBreakOddPageItem1";
            // 
            // changeSectionLineNumberingItem1
            // 
            this.changeSectionLineNumberingItem1.Id = 104;
            this.changeSectionLineNumberingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingNoneItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingContinuousItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewSectionItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphSuppressLineNumbersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineNumberingFormItem1, true)});
            this.changeSectionLineNumberingItem1.Name = "changeSectionLineNumberingItem1";
            // 
            // setSectionLineNumberingNoneItem1
            // 
            this.setSectionLineNumberingNoneItem1.Id = 105;
            this.setSectionLineNumberingNoneItem1.Name = "setSectionLineNumberingNoneItem1";
            // 
            // setSectionLineNumberingContinuousItem1
            // 
            this.setSectionLineNumberingContinuousItem1.Id = 106;
            this.setSectionLineNumberingContinuousItem1.Name = "setSectionLineNumberingContinuousItem1";
            // 
            // setSectionLineNumberingRestartNewPageItem1
            // 
            this.setSectionLineNumberingRestartNewPageItem1.Id = 107;
            this.setSectionLineNumberingRestartNewPageItem1.Name = "setSectionLineNumberingRestartNewPageItem1";
            // 
            // setSectionLineNumberingRestartNewSectionItem1
            // 
            this.setSectionLineNumberingRestartNewSectionItem1.Id = 108;
            this.setSectionLineNumberingRestartNewSectionItem1.Name = "setSectionLineNumberingRestartNewSectionItem1";
            // 
            // toggleParagraphSuppressLineNumbersItem1
            // 
            this.toggleParagraphSuppressLineNumbersItem1.Id = 109;
            this.toggleParagraphSuppressLineNumbersItem1.Name = "toggleParagraphSuppressLineNumbersItem1";
            // 
            // showLineNumberingFormItem1
            // 
            this.showLineNumberingFormItem1.Id = 110;
            this.showLineNumberingFormItem1.Name = "showLineNumberingFormItem1";
            // 
            // changePageColorItem1
            // 
            this.changePageColorItem1.Id = 111;
            this.changePageColorItem1.Name = "changePageColorItem1";
            // 
            // insertTableOfContentsItem1
            // 
            this.insertTableOfContentsItem1.Id = 112;
            this.insertTableOfContentsItem1.Name = "insertTableOfContentsItem1";
            // 
            // updateTableOfContentsItem1
            // 
            this.updateTableOfContentsItem1.Id = 113;
            this.updateTableOfContentsItem1.Name = "updateTableOfContentsItem1";
            // 
            // addParagraphsToTableOfContentItem1
            // 
            this.addParagraphsToTableOfContentItem1.Id = 114;
            this.addParagraphsToTableOfContentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem4),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem6),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem7),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem8),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem9),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem10)});
            this.addParagraphsToTableOfContentItem1.Name = "addParagraphsToTableOfContentItem1";
            // 
            // setParagraphHeadingLevelItem1
            // 
            this.setParagraphHeadingLevelItem1.Id = 115;
            this.setParagraphHeadingLevelItem1.Name = "setParagraphHeadingLevelItem1";
            this.setParagraphHeadingLevelItem1.OutlineLevel = 0;
            // 
            // setParagraphHeadingLevelItem2
            // 
            this.setParagraphHeadingLevelItem2.Id = 116;
            this.setParagraphHeadingLevelItem2.Name = "setParagraphHeadingLevelItem2";
            this.setParagraphHeadingLevelItem2.OutlineLevel = 1;
            // 
            // setParagraphHeadingLevelItem3
            // 
            this.setParagraphHeadingLevelItem3.Id = 117;
            this.setParagraphHeadingLevelItem3.Name = "setParagraphHeadingLevelItem3";
            this.setParagraphHeadingLevelItem3.OutlineLevel = 2;
            // 
            // setParagraphHeadingLevelItem4
            // 
            this.setParagraphHeadingLevelItem4.Id = 118;
            this.setParagraphHeadingLevelItem4.Name = "setParagraphHeadingLevelItem4";
            this.setParagraphHeadingLevelItem4.OutlineLevel = 3;
            // 
            // setParagraphHeadingLevelItem5
            // 
            this.setParagraphHeadingLevelItem5.Id = 119;
            this.setParagraphHeadingLevelItem5.Name = "setParagraphHeadingLevelItem5";
            this.setParagraphHeadingLevelItem5.OutlineLevel = 4;
            // 
            // setParagraphHeadingLevelItem6
            // 
            this.setParagraphHeadingLevelItem6.Id = 120;
            this.setParagraphHeadingLevelItem6.Name = "setParagraphHeadingLevelItem6";
            this.setParagraphHeadingLevelItem6.OutlineLevel = 5;
            // 
            // setParagraphHeadingLevelItem7
            // 
            this.setParagraphHeadingLevelItem7.Id = 121;
            this.setParagraphHeadingLevelItem7.Name = "setParagraphHeadingLevelItem7";
            this.setParagraphHeadingLevelItem7.OutlineLevel = 6;
            // 
            // setParagraphHeadingLevelItem8
            // 
            this.setParagraphHeadingLevelItem8.Id = 122;
            this.setParagraphHeadingLevelItem8.Name = "setParagraphHeadingLevelItem8";
            this.setParagraphHeadingLevelItem8.OutlineLevel = 7;
            // 
            // setParagraphHeadingLevelItem9
            // 
            this.setParagraphHeadingLevelItem9.Id = 123;
            this.setParagraphHeadingLevelItem9.Name = "setParagraphHeadingLevelItem9";
            this.setParagraphHeadingLevelItem9.OutlineLevel = 8;
            // 
            // setParagraphHeadingLevelItem10
            // 
            this.setParagraphHeadingLevelItem10.Id = 124;
            this.setParagraphHeadingLevelItem10.Name = "setParagraphHeadingLevelItem10";
            this.setParagraphHeadingLevelItem10.OutlineLevel = 9;
            // 
            // insertCaptionPlaceholderItem1
            // 
            this.insertCaptionPlaceholderItem1.Id = 125;
            this.insertCaptionPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertFiguresCaptionItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTablesCaptionItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertEquationsCaptionItems1)});
            this.insertCaptionPlaceholderItem1.Name = "insertCaptionPlaceholderItem1";
            // 
            // insertFiguresCaptionItems1
            // 
            this.insertFiguresCaptionItems1.Id = 126;
            this.insertFiguresCaptionItems1.Name = "insertFiguresCaptionItems1";
            // 
            // insertTablesCaptionItems1
            // 
            this.insertTablesCaptionItems1.Id = 127;
            this.insertTablesCaptionItems1.Name = "insertTablesCaptionItems1";
            // 
            // insertEquationsCaptionItems1
            // 
            this.insertEquationsCaptionItems1.Id = 128;
            this.insertEquationsCaptionItems1.Name = "insertEquationsCaptionItems1";
            // 
            // insertTableOfFiguresPlaceholderItem1
            // 
            this.insertTableOfFiguresPlaceholderItem1.Id = 129;
            this.insertTableOfFiguresPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfFiguresItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfTablesItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfEquationsItems1)});
            this.insertTableOfFiguresPlaceholderItem1.Name = "insertTableOfFiguresPlaceholderItem1";
            // 
            // insertTableOfFiguresItems1
            // 
            this.insertTableOfFiguresItems1.Id = 130;
            this.insertTableOfFiguresItems1.Name = "insertTableOfFiguresItems1";
            // 
            // insertTableOfTablesItems1
            // 
            this.insertTableOfTablesItems1.Id = 131;
            this.insertTableOfTablesItems1.Name = "insertTableOfTablesItems1";
            // 
            // insertTableOfEquationsItems1
            // 
            this.insertTableOfEquationsItems1.Id = 132;
            this.insertTableOfEquationsItems1.Name = "insertTableOfEquationsItems1";
            // 
            // updateTableOfFiguresItem1
            // 
            this.updateTableOfFiguresItem1.Id = 133;
            this.updateTableOfFiguresItem1.Name = "updateTableOfFiguresItem1";
            // 
            // insertMergeFieldItem1
            // 
            this.insertMergeFieldItem1.Id = 134;
            this.insertMergeFieldItem1.Name = "insertMergeFieldItem1";
            // 
            // showAllFieldCodesItem1
            // 
            this.showAllFieldCodesItem1.Id = 135;
            this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
            // 
            // showAllFieldResultsItem1
            // 
            this.showAllFieldResultsItem1.Id = 136;
            this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
            // 
            // toggleViewMergedDataItem1
            // 
            this.toggleViewMergedDataItem1.Id = 137;
            this.toggleViewMergedDataItem1.Name = "toggleViewMergedDataItem1";
            // 
            // checkSpellingItem1
            // 
            this.checkSpellingItem1.Id = 138;
            this.checkSpellingItem1.Name = "checkSpellingItem1";
            // 
            // changeLanguageItem1
            // 
            this.changeLanguageItem1.Id = 139;
            this.changeLanguageItem1.Name = "changeLanguageItem1";
            // 
            // protectDocumentItem1
            // 
            this.protectDocumentItem1.Id = 140;
            this.protectDocumentItem1.Name = "protectDocumentItem1";
            // 
            // changeRangeEditingPermissionsItem1
            // 
            this.changeRangeEditingPermissionsItem1.Id = 141;
            this.changeRangeEditingPermissionsItem1.Name = "changeRangeEditingPermissionsItem1";
            // 
            // unprotectDocumentItem1
            // 
            this.unprotectDocumentItem1.Id = 142;
            this.unprotectDocumentItem1.Name = "unprotectDocumentItem1";
            // 
            // changeCommentItem1
            // 
            this.changeCommentItem1.Id = 143;
            this.changeCommentItem1.Name = "changeCommentItem1";
            // 
            // reviewersItem1
            // 
            this.reviewersItem1.Id = 144;
            this.reviewersItem1.Name = "reviewersItem1";
            // 
            // reviewingPaneItem1
            // 
            this.reviewingPaneItem1.Id = 145;
            this.reviewingPaneItem1.Name = "reviewingPaneItem1";
            // 
            // switchToSimpleViewItem1
            // 
            this.switchToSimpleViewItem1.Id = 146;
            this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
            // 
            // switchToDraftViewItem1
            // 
            this.switchToDraftViewItem1.Id = 147;
            this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
            // 
            // switchToPrintLayoutViewItem1
            // 
            this.switchToPrintLayoutViewItem1.Id = 148;
            this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
            // 
            // toggleShowHorizontalRulerItem1
            // 
            this.toggleShowHorizontalRulerItem1.Id = 149;
            this.toggleShowHorizontalRulerItem1.Name = "toggleShowHorizontalRulerItem1";
            // 
            // toggleShowVerticalRulerItem1
            // 
            this.toggleShowVerticalRulerItem1.Id = 150;
            this.toggleShowVerticalRulerItem1.Name = "toggleShowVerticalRulerItem1";
            // 
            // zoomOutItem1
            // 
            this.zoomOutItem1.Id = 151;
            this.zoomOutItem1.Name = "zoomOutItem1";
            // 
            // zoomInItem1
            // 
            this.zoomInItem1.Id = 152;
            this.zoomInItem1.Name = "zoomInItem1";
            // 
            // goToPageHeaderItem1
            // 
            this.goToPageHeaderItem1.Id = 153;
            this.goToPageHeaderItem1.Name = "goToPageHeaderItem1";
            // 
            // goToPageFooterItem1
            // 
            this.goToPageFooterItem1.Id = 154;
            this.goToPageFooterItem1.Name = "goToPageFooterItem1";
            // 
            // goToNextHeaderFooterItem1
            // 
            this.goToNextHeaderFooterItem1.Id = 155;
            this.goToNextHeaderFooterItem1.Name = "goToNextHeaderFooterItem1";
            // 
            // goToPreviousHeaderFooterItem1
            // 
            this.goToPreviousHeaderFooterItem1.Id = 156;
            this.goToPreviousHeaderFooterItem1.Name = "goToPreviousHeaderFooterItem1";
            // 
            // toggleLinkToPreviousItem1
            // 
            this.toggleLinkToPreviousItem1.Id = 157;
            this.toggleLinkToPreviousItem1.Name = "toggleLinkToPreviousItem1";
            // 
            // toggleDifferentFirstPageItem1
            // 
            this.toggleDifferentFirstPageItem1.Id = 158;
            this.toggleDifferentFirstPageItem1.Name = "toggleDifferentFirstPageItem1";
            // 
            // toggleDifferentOddAndEvenPagesItem1
            // 
            this.toggleDifferentOddAndEvenPagesItem1.Id = 159;
            this.toggleDifferentOddAndEvenPagesItem1.Name = "toggleDifferentOddAndEvenPagesItem1";
            // 
            // closePageHeaderFooterItem1
            // 
            this.closePageHeaderFooterItem1.Id = 160;
            this.closePageHeaderFooterItem1.Name = "closePageHeaderFooterItem1";
            // 
            // toggleFirstRowItem1
            // 
            this.toggleFirstRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstRowItem1.Id = 161;
            this.toggleFirstRowItem1.Name = "toggleFirstRowItem1";
            // 
            // toggleLastRowItem1
            // 
            this.toggleLastRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastRowItem1.Id = 162;
            this.toggleLastRowItem1.Name = "toggleLastRowItem1";
            // 
            // toggleBandedRowsItem1
            // 
            this.toggleBandedRowsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedRowsItem1.Id = 163;
            this.toggleBandedRowsItem1.Name = "toggleBandedRowsItem1";
            // 
            // toggleFirstColumnItem1
            // 
            this.toggleFirstColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstColumnItem1.Id = 164;
            this.toggleFirstColumnItem1.Name = "toggleFirstColumnItem1";
            // 
            // toggleLastColumnItem1
            // 
            this.toggleLastColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastColumnItem1.Id = 165;
            this.toggleLastColumnItem1.Name = "toggleLastColumnItem1";
            // 
            // toggleBandedColumnsItem1
            // 
            this.toggleBandedColumnsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedColumnsItem1.Id = 166;
            this.toggleBandedColumnsItem1.Name = "toggleBandedColumnsItem1";
            // 
            // galleryChangeTableStyleItem1
            // 
            this.galleryChangeTableStyleItem1.CurrentItem = null;
            this.galleryChangeTableStyleItem1.CurrentItemStyle = null;
            this.galleryChangeTableStyleItem1.CurrentStyle = null;
            this.galleryChangeTableStyleItem1.DeleteItemLink = null;
            // 
            // 
            // 
            this.galleryChangeTableStyleItem1.Gallery.ColumnCount = 3;
            this.galleryChangeTableStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.galleryChangeTableStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeTableStyleItem1.Id = 167;
            this.galleryChangeTableStyleItem1.ModifyItemLink = null;
            this.galleryChangeTableStyleItem1.Name = "galleryChangeTableStyleItem1";
            this.galleryChangeTableStyleItem1.NewItemLink = null;
            this.galleryChangeTableStyleItem1.PopupGallery = null;
            // 
            // changeTableBorderLineStyleItem1
            // 
            this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
            borderInfo1.Color = System.Drawing.Color.Black;
            borderInfo1.Frame = false;
            borderInfo1.Offset = 0;
            borderInfo1.Shadow = false;
            borderInfo1.Style = DevExpress.XtraRichEdit.Model.BorderLineStyle.Single;
            borderInfo1.Width = 10;
            this.changeTableBorderLineStyleItem1.EditValue = borderInfo1;
            this.changeTableBorderLineStyleItem1.Id = 168;
            this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
            // 
            // repositoryItemBorderLineStyle1
            // 
            this.repositoryItemBorderLineStyle1.AutoHeight = false;
            this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineStyle1.Control = this.richEditControl1;
            this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
            // 
            // changeTableBorderLineWeightItem1
            // 
            this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
            this.changeTableBorderLineWeightItem1.EditValue = 20;
            this.changeTableBorderLineWeightItem1.Id = 169;
            this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
            // 
            // repositoryItemBorderLineWeight1
            // 
            this.repositoryItemBorderLineWeight1.AutoHeight = false;
            this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineWeight1.Control = this.richEditControl1;
            this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
            // 
            // changeTableBorderColorItem1
            // 
            this.changeTableBorderColorItem1.Id = 170;
            this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
            // 
            // changeTableBordersItem1
            // 
            this.changeTableBordersItem1.Id = 171;
            this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1, true)});
            this.changeTableBordersItem1.Name = "changeTableBordersItem1";
            // 
            // toggleTableCellsBottomBorderItem1
            // 
            this.toggleTableCellsBottomBorderItem1.Id = 172;
            this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
            // 
            // toggleTableCellsTopBorderItem1
            // 
            this.toggleTableCellsTopBorderItem1.Id = 173;
            this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
            // 
            // toggleTableCellsLeftBorderItem1
            // 
            this.toggleTableCellsLeftBorderItem1.Id = 174;
            this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
            // 
            // toggleTableCellsRightBorderItem1
            // 
            this.toggleTableCellsRightBorderItem1.Id = 175;
            this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
            // 
            // resetTableCellsAllBordersItem1
            // 
            this.resetTableCellsAllBordersItem1.Id = 176;
            this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
            // 
            // toggleTableCellsAllBordersItem1
            // 
            this.toggleTableCellsAllBordersItem1.Id = 177;
            this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
            // 
            // toggleTableCellsOutsideBorderItem1
            // 
            this.toggleTableCellsOutsideBorderItem1.Id = 178;
            this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
            // 
            // toggleTableCellsInsideBorderItem1
            // 
            this.toggleTableCellsInsideBorderItem1.Id = 179;
            this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
            // 
            // toggleTableCellsInsideHorizontalBorderItem1
            // 
            this.toggleTableCellsInsideHorizontalBorderItem1.Id = 180;
            this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
            // 
            // toggleTableCellsInsideVerticalBorderItem1
            // 
            this.toggleTableCellsInsideVerticalBorderItem1.Id = 181;
            this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
            // 
            // toggleShowTableGridLinesItem1
            // 
            this.toggleShowTableGridLinesItem1.Id = 182;
            this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
            // 
            // changeTableCellsShadingItem1
            // 
            this.changeTableCellsShadingItem1.Id = 183;
            this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
            // 
            // selectTableElementsItem1
            // 
            this.selectTableElementsItem1.Id = 184;
            this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
            this.selectTableElementsItem1.Name = "selectTableElementsItem1";
            // 
            // selectTableCellItem1
            // 
            this.selectTableCellItem1.Id = 185;
            this.selectTableCellItem1.Name = "selectTableCellItem1";
            // 
            // selectTableColumnItem1
            // 
            this.selectTableColumnItem1.Id = 186;
            this.selectTableColumnItem1.Name = "selectTableColumnItem1";
            // 
            // selectTableRowItem1
            // 
            this.selectTableRowItem1.Id = 187;
            this.selectTableRowItem1.Name = "selectTableRowItem1";
            // 
            // selectTableItem1
            // 
            this.selectTableItem1.Id = 188;
            this.selectTableItem1.Name = "selectTableItem1";
            // 
            // showTablePropertiesFormItem1
            // 
            this.showTablePropertiesFormItem1.Id = 189;
            this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
            // 
            // deleteTableElementsItem1
            // 
            this.deleteTableElementsItem1.Id = 190;
            this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
            this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
            // 
            // showDeleteTableCellsFormItem1
            // 
            this.showDeleteTableCellsFormItem1.Id = 191;
            this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
            // 
            // deleteTableColumnsItem1
            // 
            this.deleteTableColumnsItem1.Id = 192;
            this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
            // 
            // deleteTableRowsItem1
            // 
            this.deleteTableRowsItem1.Id = 193;
            this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
            // 
            // deleteTableItem1
            // 
            this.deleteTableItem1.Id = 194;
            this.deleteTableItem1.Name = "deleteTableItem1";
            // 
            // insertTableRowAboveItem1
            // 
            this.insertTableRowAboveItem1.Id = 195;
            this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
            // 
            // insertTableRowBelowItem1
            // 
            this.insertTableRowBelowItem1.Id = 196;
            this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
            // 
            // insertTableColumnToLeftItem1
            // 
            this.insertTableColumnToLeftItem1.Id = 197;
            this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
            // 
            // insertTableColumnToRightItem1
            // 
            this.insertTableColumnToRightItem1.Id = 198;
            this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
            // 
            // mergeTableCellsItem1
            // 
            this.mergeTableCellsItem1.Id = 199;
            this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
            // 
            // showSplitTableCellsForm1
            // 
            this.showSplitTableCellsForm1.Id = 200;
            this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
            // 
            // splitTableItem1
            // 
            this.splitTableItem1.Id = 201;
            this.splitTableItem1.Name = "splitTableItem1";
            // 
            // toggleTableAutoFitItem1
            // 
            this.toggleTableAutoFitItem1.Id = 202;
            this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
            this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
            // 
            // toggleTableAutoFitContentsItem1
            // 
            this.toggleTableAutoFitContentsItem1.Id = 203;
            this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
            // 
            // toggleTableAutoFitWindowItem1
            // 
            this.toggleTableAutoFitWindowItem1.Id = 204;
            this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
            // 
            // toggleTableFixedColumnWidthItem1
            // 
            this.toggleTableFixedColumnWidthItem1.Id = 205;
            this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
            // 
            // toggleTableCellsTopLeftAlignmentItem1
            // 
            this.toggleTableCellsTopLeftAlignmentItem1.Id = 206;
            this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
            // 
            // toggleTableCellsMiddleLeftAlignmentItem1
            // 
            this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 207;
            this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
            // 
            // toggleTableCellsBottomLeftAlignmentItem1
            // 
            this.toggleTableCellsBottomLeftAlignmentItem1.Id = 208;
            this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
            // 
            // toggleTableCellsTopCenterAlignmentItem1
            // 
            this.toggleTableCellsTopCenterAlignmentItem1.Id = 209;
            this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
            // 
            // toggleTableCellsMiddleCenterAlignmentItem1
            // 
            this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 210;
            this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
            // 
            // toggleTableCellsBottomCenterAlignmentItem1
            // 
            this.toggleTableCellsBottomCenterAlignmentItem1.Id = 211;
            this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
            // 
            // toggleTableCellsTopRightAlignmentItem1
            // 
            this.toggleTableCellsTopRightAlignmentItem1.Id = 212;
            this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
            // 
            // toggleTableCellsMiddleRightAlignmentItem1
            // 
            this.toggleTableCellsMiddleRightAlignmentItem1.Id = 213;
            this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
            // 
            // toggleTableCellsBottomRightAlignmentItem1
            // 
            this.toggleTableCellsBottomRightAlignmentItem1.Id = 214;
            this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
            // 
            // showTableOptionsFormItem1
            // 
            this.showTableOptionsFormItem1.Id = 215;
            this.showTableOptionsFormItem1.Name = "showTableOptionsFormItem1";
            // 
            // changeFloatingObjectFillColorItem1
            // 
            this.changeFloatingObjectFillColorItem1.Id = 216;
            this.changeFloatingObjectFillColorItem1.Name = "changeFloatingObjectFillColorItem1";
            // 
            // changeFloatingObjectOutlineColorItem1
            // 
            this.changeFloatingObjectOutlineColorItem1.Id = 217;
            this.changeFloatingObjectOutlineColorItem1.Name = "changeFloatingObjectOutlineColorItem1";
            // 
            // changeFloatingObjectOutlineWeightItem1
            // 
            this.changeFloatingObjectOutlineWeightItem1.Edit = this.repositoryItemFloatingObjectOutlineWeight1;
            this.changeFloatingObjectOutlineWeightItem1.EditValue = 20;
            this.changeFloatingObjectOutlineWeightItem1.Id = 218;
            this.changeFloatingObjectOutlineWeightItem1.Name = "changeFloatingObjectOutlineWeightItem1";
            // 
            // repositoryItemFloatingObjectOutlineWeight1
            // 
            this.repositoryItemFloatingObjectOutlineWeight1.AutoHeight = false;
            this.repositoryItemFloatingObjectOutlineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemFloatingObjectOutlineWeight1.Control = this.richEditControl1;
            this.repositoryItemFloatingObjectOutlineWeight1.Name = "repositoryItemFloatingObjectOutlineWeight1";
            // 
            // changeFloatingObjectTextWrapTypeItem1
            // 
            this.changeFloatingObjectTextWrapTypeItem1.Id = 219;
            this.changeFloatingObjectTextWrapTypeItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectSquareTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTightTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectThroughTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopAndBottomTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBehindTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectInFrontOfTextWrapTypeItem1)});
            this.changeFloatingObjectTextWrapTypeItem1.Name = "changeFloatingObjectTextWrapTypeItem1";
            // 
            // setFloatingObjectSquareTextWrapTypeItem1
            // 
            this.setFloatingObjectSquareTextWrapTypeItem1.Id = 220;
            this.setFloatingObjectSquareTextWrapTypeItem1.Name = "setFloatingObjectSquareTextWrapTypeItem1";
            // 
            // setFloatingObjectTightTextWrapTypeItem1
            // 
            this.setFloatingObjectTightTextWrapTypeItem1.Id = 221;
            this.setFloatingObjectTightTextWrapTypeItem1.Name = "setFloatingObjectTightTextWrapTypeItem1";
            // 
            // setFloatingObjectThroughTextWrapTypeItem1
            // 
            this.setFloatingObjectThroughTextWrapTypeItem1.Id = 222;
            this.setFloatingObjectThroughTextWrapTypeItem1.Name = "setFloatingObjectThroughTextWrapTypeItem1";
            // 
            // setFloatingObjectTopAndBottomTextWrapTypeItem1
            // 
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Id = 223;
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Name = "setFloatingObjectTopAndBottomTextWrapTypeItem1";
            // 
            // setFloatingObjectBehindTextWrapTypeItem1
            // 
            this.setFloatingObjectBehindTextWrapTypeItem1.Id = 224;
            this.setFloatingObjectBehindTextWrapTypeItem1.Name = "setFloatingObjectBehindTextWrapTypeItem1";
            // 
            // setFloatingObjectInFrontOfTextWrapTypeItem1
            // 
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Id = 225;
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Name = "setFloatingObjectInFrontOfTextWrapTypeItem1";
            // 
            // changeFloatingObjectAlignmentItem1
            // 
            this.changeFloatingObjectAlignmentItem1.Id = 226;
            this.changeFloatingObjectAlignmentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomRightAlignmentItem1)});
            this.changeFloatingObjectAlignmentItem1.Name = "changeFloatingObjectAlignmentItem1";
            // 
            // setFloatingObjectTopLeftAlignmentItem1
            // 
            this.setFloatingObjectTopLeftAlignmentItem1.Id = 227;
            this.setFloatingObjectTopLeftAlignmentItem1.Name = "setFloatingObjectTopLeftAlignmentItem1";
            // 
            // setFloatingObjectTopCenterAlignmentItem1
            // 
            this.setFloatingObjectTopCenterAlignmentItem1.Id = 228;
            this.setFloatingObjectTopCenterAlignmentItem1.Name = "setFloatingObjectTopCenterAlignmentItem1";
            // 
            // setFloatingObjectTopRightAlignmentItem1
            // 
            this.setFloatingObjectTopRightAlignmentItem1.Id = 229;
            this.setFloatingObjectTopRightAlignmentItem1.Name = "setFloatingObjectTopRightAlignmentItem1";
            // 
            // setFloatingObjectMiddleLeftAlignmentItem1
            // 
            this.setFloatingObjectMiddleLeftAlignmentItem1.Id = 230;
            this.setFloatingObjectMiddleLeftAlignmentItem1.Name = "setFloatingObjectMiddleLeftAlignmentItem1";
            // 
            // setFloatingObjectMiddleCenterAlignmentItem1
            // 
            this.setFloatingObjectMiddleCenterAlignmentItem1.Id = 231;
            this.setFloatingObjectMiddleCenterAlignmentItem1.Name = "setFloatingObjectMiddleCenterAlignmentItem1";
            // 
            // setFloatingObjectMiddleRightAlignmentItem1
            // 
            this.setFloatingObjectMiddleRightAlignmentItem1.Id = 232;
            this.setFloatingObjectMiddleRightAlignmentItem1.Name = "setFloatingObjectMiddleRightAlignmentItem1";
            // 
            // setFloatingObjectBottomLeftAlignmentItem1
            // 
            this.setFloatingObjectBottomLeftAlignmentItem1.Id = 233;
            this.setFloatingObjectBottomLeftAlignmentItem1.Name = "setFloatingObjectBottomLeftAlignmentItem1";
            // 
            // setFloatingObjectBottomCenterAlignmentItem1
            // 
            this.setFloatingObjectBottomCenterAlignmentItem1.Id = 234;
            this.setFloatingObjectBottomCenterAlignmentItem1.Name = "setFloatingObjectBottomCenterAlignmentItem1";
            // 
            // setFloatingObjectBottomRightAlignmentItem1
            // 
            this.setFloatingObjectBottomRightAlignmentItem1.Id = 235;
            this.setFloatingObjectBottomRightAlignmentItem1.Name = "setFloatingObjectBottomRightAlignmentItem1";
            // 
            // floatingObjectBringForwardSubItem1
            // 
            this.floatingObjectBringForwardSubItem1.Id = 236;
            this.floatingObjectBringForwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringForwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringToFrontItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringInFrontOfTextItem1)});
            this.floatingObjectBringForwardSubItem1.Name = "floatingObjectBringForwardSubItem1";
            // 
            // floatingObjectBringForwardItem1
            // 
            this.floatingObjectBringForwardItem1.Id = 237;
            this.floatingObjectBringForwardItem1.Name = "floatingObjectBringForwardItem1";
            // 
            // floatingObjectBringToFrontItem1
            // 
            this.floatingObjectBringToFrontItem1.Id = 238;
            this.floatingObjectBringToFrontItem1.Name = "floatingObjectBringToFrontItem1";
            // 
            // floatingObjectBringInFrontOfTextItem1
            // 
            this.floatingObjectBringInFrontOfTextItem1.Id = 239;
            this.floatingObjectBringInFrontOfTextItem1.Name = "floatingObjectBringInFrontOfTextItem1";
            // 
            // floatingObjectSendBackwardSubItem1
            // 
            this.floatingObjectSendBackwardSubItem1.Id = 240;
            this.floatingObjectSendBackwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBackwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendToBackItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBehindTextItem1)});
            this.floatingObjectSendBackwardSubItem1.Name = "floatingObjectSendBackwardSubItem1";
            // 
            // floatingObjectSendBackwardItem1
            // 
            this.floatingObjectSendBackwardItem1.Id = 241;
            this.floatingObjectSendBackwardItem1.Name = "floatingObjectSendBackwardItem1";
            // 
            // floatingObjectSendToBackItem1
            // 
            this.floatingObjectSendToBackItem1.Id = 242;
            this.floatingObjectSendToBackItem1.Name = "floatingObjectSendToBackItem1";
            // 
            // floatingObjectSendBehindTextItem1
            // 
            this.floatingObjectSendBehindTextItem1.Id = 243;
            this.floatingObjectSendBehindTextItem1.Name = "floatingObjectSendBehindTextItem1";
            // 
            // headerFooterToolsRibbonPageCategory1
            // 
            this.headerFooterToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(176)))), ((int)(((byte)(35)))));
            this.headerFooterToolsRibbonPageCategory1.Control = this.richEditControl1;
            this.headerFooterToolsRibbonPageCategory1.Name = "headerFooterToolsRibbonPageCategory1";
            this.headerFooterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.headerFooterToolsDesignRibbonPage1});
            // 
            // headerFooterToolsDesignRibbonPage1
            // 
            this.headerFooterToolsDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.headerFooterToolsDesignNavigationRibbonPageGroup1,
            this.headerFooterToolsDesignOptionsRibbonPageGroup1,
            this.headerFooterToolsDesignCloseRibbonPageGroup1});
            this.headerFooterToolsDesignRibbonPage1.Name = "headerFooterToolsDesignRibbonPage1";
            // 
            // headerFooterToolsDesignNavigationRibbonPageGroup1
            // 
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageHeaderItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToNextHeaderFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPreviousHeaderFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.toggleLinkToPreviousItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.Name = "headerFooterToolsDesignNavigationRibbonPageGroup1";
            // 
            // headerFooterToolsDesignOptionsRibbonPageGroup1
            // 
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentFirstPageItem1);
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentOddAndEvenPagesItem1);
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.Name = "headerFooterToolsDesignOptionsRibbonPageGroup1";
            // 
            // headerFooterToolsDesignCloseRibbonPageGroup1
            // 
            this.headerFooterToolsDesignCloseRibbonPageGroup1.ItemLinks.Add(this.closePageHeaderFooterItem1);
            this.headerFooterToolsDesignCloseRibbonPageGroup1.Name = "headerFooterToolsDesignCloseRibbonPageGroup1";
            // 
            // tableToolsRibbonPageCategory1
            // 
            this.tableToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(233)))), ((int)(((byte)(20)))));
            this.tableToolsRibbonPageCategory1.Control = this.richEditControl1;
            this.tableToolsRibbonPageCategory1.Name = "tableToolsRibbonPageCategory1";
            this.tableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.tableDesignRibbonPage1,
            this.tableLayoutRibbonPage1});
            // 
            // tableDesignRibbonPage1
            // 
            this.tableDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableStyleOptionsRibbonPageGroup1,
            this.tableStylesRibbonPageGroup1,
            this.tableDrawBordersRibbonPageGroup1});
            this.tableDesignRibbonPage1.Name = "tableDesignRibbonPage1";
            // 
            // tableStyleOptionsRibbonPageGroup1
            // 
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedRowsItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedColumnsItem1);
            this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
            // 
            // tableStylesRibbonPageGroup1
            // 
            this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableStyleItem1);
            this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
            // 
            // tableDrawBordersRibbonPageGroup1
            // 
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineStyleItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineWeightItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderColorItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBordersItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableCellsShadingItem1);
            this.tableDrawBordersRibbonPageGroup1.Name = "tableDrawBordersRibbonPageGroup1";
            // 
            // tableLayoutRibbonPage1
            // 
            this.tableLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableTableRibbonPageGroup1,
            this.tableRowsAndColumnsRibbonPageGroup1,
            this.tableMergeRibbonPageGroup1,
            this.tableCellSizeRibbonPageGroup1,
            this.tableAlignmentRibbonPageGroup1});
            this.tableLayoutRibbonPage1.Name = "tableLayoutRibbonPage1";
            // 
            // tableTableRibbonPageGroup1
            // 
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.selectTableElementsItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.toggleShowTableGridLinesItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.showTablePropertiesFormItem1);
            this.tableTableRibbonPageGroup1.Name = "tableTableRibbonPageGroup1";
            // 
            // tableRowsAndColumnsRibbonPageGroup1
            // 
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.deleteTableElementsItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowAboveItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowBelowItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToLeftItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToRightItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.Name = "tableRowsAndColumnsRibbonPageGroup1";
            // 
            // tableMergeRibbonPageGroup1
            // 
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.mergeTableCellsItem1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.showSplitTableCellsForm1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.splitTableItem1);
            this.tableMergeRibbonPageGroup1.Name = "tableMergeRibbonPageGroup1";
            // 
            // tableCellSizeRibbonPageGroup1
            // 
            this.tableCellSizeRibbonPageGroup1.AllowTextClipping = false;
            this.tableCellSizeRibbonPageGroup1.ItemLinks.Add(this.toggleTableAutoFitItem1);
            this.tableCellSizeRibbonPageGroup1.Name = "tableCellSizeRibbonPageGroup1";
            // 
            // tableAlignmentRibbonPageGroup1
            // 
            this.tableAlignmentRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("tableAlignmentRibbonPageGroup1.Glyph")));
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.showTableOptionsFormItem1);
            this.tableAlignmentRibbonPageGroup1.Name = "tableAlignmentRibbonPageGroup1";
            // 
            // floatingPictureToolsRibbonPageCategory1
            // 
            this.floatingPictureToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(0)))), ((int)(((byte)(119)))));
            this.floatingPictureToolsRibbonPageCategory1.Control = this.richEditControl1;
            this.floatingPictureToolsRibbonPageCategory1.Name = "floatingPictureToolsRibbonPageCategory1";
            this.floatingPictureToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.floatingPictureToolsFormatPage1});
            // 
            // floatingPictureToolsFormatPage1
            // 
            this.floatingPictureToolsFormatPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.floatingPictureToolsShapeStylesPageGroup1,
            this.floatingPictureToolsArrangePageGroup1});
            this.floatingPictureToolsFormatPage1.Name = "floatingPictureToolsFormatPage1";
            // 
            // floatingPictureToolsShapeStylesPageGroup1
            // 
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectFillColorItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineColorItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.Name = "floatingPictureToolsShapeStylesPageGroup1";
            // 
            // floatingPictureToolsArrangePageGroup1
            // 
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectAlignmentItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectBringForwardSubItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectSendBackwardSubItem1);
            this.floatingPictureToolsArrangePageGroup1.Name = "floatingPictureToolsArrangePageGroup1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            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.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
            // 
            // fontRibbonPageGroup1
            // 
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup8);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup9);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup10);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup11);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup12);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup13);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup14);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // insertRibbonPage1
            // 
            this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pagesRibbonPageGroup1,
            this.tablesRibbonPageGroup1,
            this.illustrationsRibbonPageGroup1,
            this.linksRibbonPageGroup1,
            this.headerFooterRibbonPageGroup1,
            this.textRibbonPageGroup1,
            this.symbolsRibbonPageGroup1});
            this.insertRibbonPage1.Name = "insertRibbonPage1";
            // 
            // pagesRibbonPageGroup1
            // 
            this.pagesRibbonPageGroup1.AllowTextClipping = false;
            this.pagesRibbonPageGroup1.ItemLinks.Add(this.insertPageBreakItem21);
            this.pagesRibbonPageGroup1.Name = "pagesRibbonPageGroup1";
            // 
            // tablesRibbonPageGroup1
            // 
            this.tablesRibbonPageGroup1.AllowTextClipping = false;
            this.tablesRibbonPageGroup1.ItemLinks.Add(this.insertTableItem1);
            this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertPictureItem1);
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertFloatingPictureItem1);
            this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
            // 
            // linksRibbonPageGroup1
            // 
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertBookmarkItem1);
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertHyperlinkItem1);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // headerFooterRibbonPageGroup1
            // 
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageHeaderItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageFooterItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageNumberItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageCountItem1);
            this.headerFooterRibbonPageGroup1.Name = "headerFooterRibbonPageGroup1";
            // 
            // textRibbonPageGroup1
            // 
            this.textRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("textRibbonPageGroup1.Glyph")));
            this.textRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxItem1);
            this.textRibbonPageGroup1.Name = "textRibbonPageGroup1";
            // 
            // symbolsRibbonPageGroup1
            // 
            this.symbolsRibbonPageGroup1.AllowTextClipping = false;
            this.symbolsRibbonPageGroup1.ItemLinks.Add(this.insertSymbolItem1);
            this.symbolsRibbonPageGroup1.Name = "symbolsRibbonPageGroup1";
            // 
            // pageLayoutRibbonPage1
            // 
            this.pageLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pageSetupRibbonPageGroup1,
            this.pageBackgroundRibbonPageGroup1});
            this.pageLayoutRibbonPage1.Name = "pageLayoutRibbonPage1";
            // 
            // pageSetupRibbonPageGroup1
            // 
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageMarginsItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageOrientationItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPaperKindItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionColumnsItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.insertBreakItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionLineNumberingItem1);
            this.pageSetupRibbonPageGroup1.Name = "pageSetupRibbonPageGroup1";
            // 
            // pageBackgroundRibbonPageGroup1
            // 
            this.pageBackgroundRibbonPageGroup1.AllowTextClipping = false;
            this.pageBackgroundRibbonPageGroup1.ItemLinks.Add(this.changePageColorItem1);
            this.pageBackgroundRibbonPageGroup1.Name = "pageBackgroundRibbonPageGroup1";
            // 
            // referencesRibbonPage1
            // 
            this.referencesRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableOfContentsRibbonPageGroup1,
            this.captionsRibbonPageGroup1});
            this.referencesRibbonPage1.Name = "referencesRibbonPage1";
            // 
            // tableOfContentsRibbonPageGroup1
            // 
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfContentsItem1);
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfContentsItem1);
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.addParagraphsToTableOfContentItem1);
            this.tableOfContentsRibbonPageGroup1.Name = "tableOfContentsRibbonPageGroup1";
            // 
            // captionsRibbonPageGroup1
            // 
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertCaptionPlaceholderItem1);
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfFiguresPlaceholderItem1);
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfFiguresItem1);
            this.captionsRibbonPageGroup1.Name = "captionsRibbonPageGroup1";
            // 
            // mailingsRibbonPage1
            // 
            this.mailingsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.mailMergeRibbonPageGroup1});
            this.mailingsRibbonPage1.Name = "mailingsRibbonPage1";
            // 
            // mailMergeRibbonPageGroup1
            // 
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.insertMergeFieldItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.toggleViewMergedDataItem1);
            this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
            // 
            // reviewRibbonPage1
            // 
            this.reviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.documentProofingRibbonPageGroup1,
            this.documentProtectionRibbonPageGroup1,
            this.documentCommentRibbonPageGroup1});
            this.reviewRibbonPage1.Name = "reviewRibbonPage1";
            // 
            // documentProofingRibbonPageGroup1
            // 
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.checkSpellingItem1);
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.changeLanguageItem1);
            this.documentProofingRibbonPageGroup1.Name = "documentProofingRibbonPageGroup1";
            // 
            // documentProtectionRibbonPageGroup1
            // 
            this.documentProtectionRibbonPageGroup1.ItemLinks.Add(this.protectDocumentItem1);
            this.documentProtectionRibbonPageGroup1.ItemLinks.Add(this.changeRangeEditingPermissionsItem1);
            this.documentProtectionRibbonPageGroup1.ItemLinks.Add(this.unprotectDocumentItem1);
            this.documentProtectionRibbonPageGroup1.Name = "documentProtectionRibbonPageGroup1";
            // 
            // documentCommentRibbonPageGroup1
            // 
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.changeCommentItem1);
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.reviewersItem1);
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.reviewingPaneItem1);
            this.documentCommentRibbonPageGroup1.Name = "documentCommentRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.documentViewsRibbonPageGroup1,
            this.showRibbonPageGroup1,
            this.zoomRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // documentViewsRibbonPageGroup1
            // 
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToSimpleViewItem1);
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToDraftViewItem1);
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToPrintLayoutViewItem1);
            this.documentViewsRibbonPageGroup1.Name = "documentViewsRibbonPageGroup1";
            // 
            // showRibbonPageGroup1
            // 
            this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowHorizontalRulerItem1);
            this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowVerticalRulerItem1);
            this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
            // 
            // zoomRibbonPageGroup1
            // 
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomOutItem1);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomInItem1);
            this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
            // 
            // richEditBarController1
            // 
            this.richEditBarController1.BarItems.Add(this.pasteItem1);
            this.richEditBarController1.BarItems.Add(this.cutItem1);
            this.richEditBarController1.BarItems.Add(this.copyItem1);
            this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.richEditBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.richEditBarController1.BarItems.Add(this.findItem1);
            this.richEditBarController1.BarItems.Add(this.replaceItem1);
            this.richEditBarController1.BarItems.Add(this.undoItem1);
            this.richEditBarController1.BarItems.Add(this.redoItem1);
            this.richEditBarController1.BarItems.Add(this.fileNewItem1);
            this.richEditBarController1.BarItems.Add(this.fileOpenItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.richEditBarController1.BarItems.Add(this.quickPrintItem1);
            this.richEditBarController1.BarItems.Add(this.printItem1);
            this.richEditBarController1.BarItems.Add(this.printPreviewItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageBreakItem21);
            this.richEditBarController1.BarItems.Add(this.insertTableItem1);
            this.richEditBarController1.BarItems.Add(this.insertPictureItem1);
            this.richEditBarController1.BarItems.Add(this.insertFloatingPictureItem1);
            this.richEditBarController1.BarItems.Add(this.insertBookmarkItem1);
            this.richEditBarController1.BarItems.Add(this.insertHyperlinkItem1);
            this.richEditBarController1.BarItems.Add(this.editPageHeaderItem1);
            this.richEditBarController1.BarItems.Add(this.editPageFooterItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageNumberItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageCountItem1);
            this.richEditBarController1.BarItems.Add(this.insertTextBoxItem1);
            this.richEditBarController1.BarItems.Add(this.insertSymbolItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.showPageMarginsSetupFormItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
            this.richEditBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
            this.richEditBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionPaperKindItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionOneColumnItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionTwoColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionThreeColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.showColumnsSetupFormItem1);
            this.richEditBarController1.BarItems.Add(this.insertBreakItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageBreakItem1);
            this.richEditBarController1.BarItems.Add(this.insertColumnBreakItem1);
            this.richEditBarController1.BarItems.Add(this.insertSectionBreakNextPageItem1);
            this.richEditBarController1.BarItems.Add(this.insertSectionBreakEvenPageItem1);
            this.richEditBarController1.BarItems.Add(this.insertSectionBreakOddPageItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionLineNumberingItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingNoneItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingContinuousItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewPageItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewSectionItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphSuppressLineNumbersItem1);
            this.richEditBarController1.BarItems.Add(this.showLineNumberingFormItem1);
            this.richEditBarController1.BarItems.Add(this.changePageColorItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfContentsItem1);
            this.richEditBarController1.BarItems.Add(this.updateTableOfContentsItem1);
            this.richEditBarController1.BarItems.Add(this.addParagraphsToTableOfContentItem1);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem1);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem2);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem3);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem4);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem5);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem6);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem7);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem8);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem9);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem10);
            this.richEditBarController1.BarItems.Add(this.insertCaptionPlaceholderItem1);
            this.richEditBarController1.BarItems.Add(this.insertFiguresCaptionItems1);
            this.richEditBarController1.BarItems.Add(this.insertTablesCaptionItems1);
            this.richEditBarController1.BarItems.Add(this.insertEquationsCaptionItems1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfFiguresPlaceholderItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfFiguresItems1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfTablesItems1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfEquationsItems1);
            this.richEditBarController1.BarItems.Add(this.updateTableOfFiguresItem1);
            this.richEditBarController1.BarItems.Add(this.insertMergeFieldItem1);
            this.richEditBarController1.BarItems.Add(this.showAllFieldCodesItem1);
            this.richEditBarController1.BarItems.Add(this.showAllFieldResultsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleViewMergedDataItem1);
            this.richEditBarController1.BarItems.Add(this.checkSpellingItem1);
            this.richEditBarController1.BarItems.Add(this.changeLanguageItem1);
            this.richEditBarController1.BarItems.Add(this.protectDocumentItem1);
            this.richEditBarController1.BarItems.Add(this.changeRangeEditingPermissionsItem1);
            this.richEditBarController1.BarItems.Add(this.unprotectDocumentItem1);
            this.richEditBarController1.BarItems.Add(this.changeCommentItem1);
            this.richEditBarController1.BarItems.Add(this.reviewersItem1);
            this.richEditBarController1.BarItems.Add(this.reviewingPaneItem1);
            this.richEditBarController1.BarItems.Add(this.switchToSimpleViewItem1);
            this.richEditBarController1.BarItems.Add(this.switchToDraftViewItem1);
            this.richEditBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowHorizontalRulerItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowVerticalRulerItem1);
            this.richEditBarController1.BarItems.Add(this.zoomOutItem1);
            this.richEditBarController1.BarItems.Add(this.zoomInItem1);
            this.richEditBarController1.BarItems.Add(this.goToPageHeaderItem1);
            this.richEditBarController1.BarItems.Add(this.goToPageFooterItem1);
            this.richEditBarController1.BarItems.Add(this.goToNextHeaderFooterItem1);
            this.richEditBarController1.BarItems.Add(this.goToPreviousHeaderFooterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLinkToPreviousItem1);
            this.richEditBarController1.BarItems.Add(this.toggleDifferentFirstPageItem1);
            this.richEditBarController1.BarItems.Add(this.toggleDifferentOddAndEvenPagesItem1);
            this.richEditBarController1.BarItems.Add(this.closePageHeaderFooterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFirstRowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLastRowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBandedRowsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFirstColumnItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLastColumnItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBandedColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeTableStyleItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
            this.richEditBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableElementsItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableCellItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableColumnItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableRowItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableItem1);
            this.richEditBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableElementsItem1);
            this.richEditBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableRowsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableRowAboveItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableRowBelowItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
            this.richEditBarController1.BarItems.Add(this.mergeTableCellsItem1);
            this.richEditBarController1.BarItems.Add(this.showSplitTableCellsForm1);
            this.richEditBarController1.BarItems.Add(this.splitTableItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.showTableOptionsFormItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectFillColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectOutlineColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectSquareTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTightTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectThroughTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopAndBottomTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBehindTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectInFrontOfTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringForwardSubItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringForwardItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringToFrontItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringInFrontOfTextItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBackwardSubItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBackwardItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendToBackItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBehindTextItem1);
            this.richEditBarController1.Control = this.richEditControl1;
            // 
            // RichViewerControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.richEditControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "RichViewerControl";
            this.Size = new System.Drawing.Size(372, 287);
            this.Load += new System.EventHandler(this.RichViewerControl_Load);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).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();
            this.btn_Guihua = new DevExpress.XtraEditors.SimpleButton();
            this.btn_Fenxi = new DevExpress.XtraEditors.SimpleButton();
            this.btn_Xianzhuang = new DevExpress.XtraEditors.SimpleButton();
            this.panel1 = new System.Windows.Forms.Panel();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            this.SuspendLayout();
            // 
            // btn_Guihua
            // 
            this.btn_Guihua.Appearance.BackColor = System.Drawing.Color.White;
            this.btn_Guihua.Appearance.Options.UseBackColor = true;
            this.btn_Guihua.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btn_Guihua.Location = new System.Drawing.Point(36, 25);
            this.btn_Guihua.Name = "btn_Guihua";
            this.btn_Guihua.Size = new System.Drawing.Size(92, 36);
            this.btn_Guihua.TabIndex = 0;
            this.btn_Guihua.Text = "规划图";
            this.btn_Guihua.Click += new System.EventHandler(this.btn_Guihua_Click);
            // 
            // btn_Fenxi
            // 
            this.btn_Fenxi.Appearance.BackColor = System.Drawing.Color.Silver;
            this.btn_Fenxi.Appearance.Options.UseBackColor = true;
            this.btn_Fenxi.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btn_Fenxi.Location = new System.Drawing.Point(134, 25);
            this.btn_Fenxi.Name = "btn_Fenxi";
            this.btn_Fenxi.Size = new System.Drawing.Size(92, 36);
            this.btn_Fenxi.TabIndex = 0;
            this.btn_Fenxi.Text = "分析图";
            this.btn_Fenxi.Click += new System.EventHandler(this.btn_Fenxi_Click);
            // 
            // btn_Xianzhuang
            // 
            this.btn_Xianzhuang.Appearance.BackColor = System.Drawing.Color.Silver;
            this.btn_Xianzhuang.Appearance.Options.UseBackColor = true;
            this.btn_Xianzhuang.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btn_Xianzhuang.Location = new System.Drawing.Point(232, 25);
            this.btn_Xianzhuang.Name = "btn_Xianzhuang";
            this.btn_Xianzhuang.Size = new System.Drawing.Size(92, 36);
            this.btn_Xianzhuang.TabIndex = 0;
            this.btn_Xianzhuang.Text = "现状图";
            this.btn_Xianzhuang.Click += new System.EventHandler(this.btn_Xianzhuang_Click);
            // 
            // panel1
            // 
            this.panel1.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.panel1.Controls.Add(this.galleryControl1);
            this.panel1.Location = new System.Drawing.Point(2, 67);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(879, 549);
            this.panel1.TabIndex = 1;
            // 
            // 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;
            galleryItemGroup1.Caption = "Group1";
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControl1.Gallery.HoverImageSize = new System.Drawing.Size(250, 200);
            this.galleryControl1.Gallery.ImageSize = new System.Drawing.Size(150, 120);
            this.galleryControl1.Gallery.ShowItemText = true;
            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(879, 549);
            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(858, 545);
            // 
            // frmMain2
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(886, 616);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.btn_Xianzhuang);
            this.Controls.Add(this.btn_Fenxi);
            this.Controls.Add(this.btn_Guihua);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
            this.Name = "frmMain2";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "沈阳经济区";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain2_FormClosed);
            this.Load += new System.EventHandler(this.frmMain2_Load);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Beispiel #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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainApp));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.pictureBox4 = new System.Windows.Forms.PictureBox();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.alwaysOnTopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.chooseSkinToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.settingsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.registerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.updateToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.submitChannelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.playYoutubeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.tmAdvMoving = new System.Windows.Forms.Timer(this.components);
            this.lbRegisterText = new System.Windows.Forms.Label();
            this.lbErrorPlayer = new System.Windows.Forms.Label();
            this.tmAutoPlay = new System.Windows.Forms.Timer(this.components);
            this.lbMini = new System.Windows.Forms.Label();
            this.pbErrorBG = new System.Windows.Forms.PictureBox();
            this.pictureBoxStop = new System.Windows.Forms.PictureBox();
            this.pictureBoxPause = new System.Windows.Forms.PictureBox();
            this.pictureBoxPlay = new System.Windows.Forms.PictureBox();
            this.lbStream = new System.Windows.Forms.Label();
            this.lbWeb = new System.Windows.Forms.Label();
            this.lbCountStream = new System.Windows.Forms.Label();
            this.lbCountWeb = new System.Windows.Forms.Label();
            this.txtSearch = new System.Windows.Forms.TextBox();
            this.pbStartSearch = new System.Windows.Forms.PictureBox();
            this.pbStopSearch = new System.Windows.Forms.PictureBox();
            this.barText = new System.Windows.Forms.Label();
            this.barProgress = new System.Windows.Forms.PictureBox();
            this.iconClose = new System.Windows.Forms.PictureBox();
            this.iconMaximize = new System.Windows.Forms.PictureBox();
            this.iconMinimize = new System.Windows.Forms.PictureBox();
            this.labelFavorites = new System.Windows.Forms.Label();
            this.labelUsa = new System.Windows.Forms.Label();
            this.labelIndia = new System.Windows.Forms.Label();
            this.labelUk = new System.Windows.Forms.Label();
            this.labelCanada = new System.Windows.Forms.Label();
            this.labelChina = new System.Windows.Forms.Label();
            this.labelGermany = new System.Windows.Forms.Label();
            this.labelRussia = new System.Windows.Forms.Label();
            this.pnStatus = new System.Windows.Forms.Panel();
            this.lbLeftDays = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.contextChannels = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnSetToDefault = new System.Windows.Forms.ToolStripMenuItem();
            this.setAsDefaultCountryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mnAddFavorites = new System.Windows.Forms.ToolStripMenuItem();
            this.mnRemoveFromFav = new System.Windows.Forms.ToolStripMenuItem();
            this.removeDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.lbListTitle = new System.Windows.Forms.Label();
            this.tmBandwidth = new System.Windows.Forms.Timer(this.components);
            this.pbBandwidth = new System.Windows.Forms.PictureBox();
            this.pbDivider = new System.Windows.Forms.PictureBox();
            this.label9 = new System.Windows.Forms.Label();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.tmPlaying = new System.Windows.Forms.Timer(this.components);
            this.barTrialHours = new System.Windows.Forms.ProgressBar();
            this.labelReportViolation = new System.Windows.Forms.Label();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.timerRightBanner = new System.Windows.Forms.Timer(this.components);
            this.labelOnlineUser = new System.Windows.Forms.Label();
            this.labelInstalledUser = new System.Windows.Forms.Label();
            this.timerSystemUser = new System.Windows.Forms.Timer(this.components);
            this.labelTotalUser = new System.Windows.Forms.Label();
            this.pictureBoxCopyRight = new System.Windows.Forms.PictureBox();
            this.pictureBoxError = new System.Windows.Forms.PictureBox();
            this.pictureBoxEmail = new System.Windows.Forms.PictureBox();
            this.pictureBoxYoutube = new System.Windows.Forms.PictureBox();
            this.pictureBox11 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.labelVersion = new TVKing2.TVKLabel();
            this.webBrowser1 = new System.Windows.Forms.WebBrowser();
            this.cbCategory = new TVKing2.TVKComboBox();
            this.cbCountry = new TVKing2.TVKComboBox();
            this.tvkTrialScreen1 = new TVKing2.TVKTrialScreen();
            this.tvkLabel2 = new TVKing2.TVKLabel();
            this.tvkLabel1 = new TVKing2.TVKLabel();
            this.tvkPictureBox2 = new TVKing2.TVKPictureBox();
            this.tvkPictureBox1 = new TVKing2.TVKPictureBox();
            this.txtTitle = new TVKing2.TVKLabel();
            this.pbFullScreen = new TVKing2.TVKPictureBox();
            this.pbRevFav = new TVKing2.TVKPictureBox();
            this.pbAddFav = new TVKing2.TVKPictureBox();
            this.pbMinimize = new TVKing2.TVKPictureBox();
            this.trVolume = new TVKing2.TVKVolume();
            this.lvStream = new TVKing2.TVKList();
            this.lvWeb = new TVKing2.TVKList();
            this.pnInfo = new TVKing2.TVKInfo();
            this.player_flash = new AxShockwaveFlashObjects.AxShockwaveFlash();
            this.dragBar = new TVKing2.TVKPictureBox();
            this.player_wmp = new AxWMPLib.AxWindowsMediaPlayer();
            this.buttonBackYoutube = new DevExpress.XtraEditors.SimpleButton();
            this.buttonNextYoutube = new DevExpress.XtraEditors.SimpleButton();
            this.adsMain2 = new TVKing2.ctlAdvertisement2();
            this.galleryControlYoutube = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.timerFixWplayerBug = new System.Windows.Forms.Timer(this.components);
            this.timerSeeking = new System.Windows.Forms.Timer(this.components);
            this.tvkSeeking = new TVKing2.TVKVolume();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbErrorBG)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxStop)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPause)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPlay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbStartSearch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbStopSearch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barProgress)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconClose)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconMaximize)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconMinimize)).BeginInit();
            this.pnStatus.SuspendLayout();
            this.contextChannels.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbBandwidth)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbDivider)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCopyRight)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxError)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxEmail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxYoutube)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.player_flash)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.player_wmp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControlYoutube)).BeginInit();
            this.galleryControlYoutube.SuspendLayout();
            this.SuspendLayout();
            // 
            // pictureBox4
            // 
            this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox4.BackgroundImage = global::TVKing2.Properties.Resources.logo_text_tvking;
            this.pictureBox4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox4.Location = new System.Drawing.Point(16, 53);
            this.pictureBox4.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBox4.Name = "pictureBox4";
            this.pictureBox4.Size = new System.Drawing.Size(161, 45);
            this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox4.TabIndex = 10;
            this.pictureBox4.TabStop = false;
            this.pictureBox4.Click += new System.EventHandler(this.pictureBox4_Click);
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.alwaysOnTopToolStripMenuItem,
            this.settingsToolStripMenuItem,
            this.registerToolStripMenuItem,
            this.updateToolStripMenuItem,
            this.exitToolStripMenuItem1});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "File";
            // 
            // alwaysOnTopToolStripMenuItem
            // 
            this.alwaysOnTopToolStripMenuItem.CheckOnClick = true;
            this.alwaysOnTopToolStripMenuItem.Name = "alwaysOnTopToolStripMenuItem";
            this.alwaysOnTopToolStripMenuItem.Size = new System.Drawing.Size(172, 24);
            this.alwaysOnTopToolStripMenuItem.Text = "Always on top";
            this.alwaysOnTopToolStripMenuItem.Click += new System.EventHandler(this.alwaysOnTopToolStripMenuItem_Click);
            // 
            // settingsToolStripMenuItem
            // 
            this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
            this.settingsToolStripMenuItem.Size = new System.Drawing.Size(172, 24);
            this.settingsToolStripMenuItem.Text = "Settings";
            this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
            // 
            // registerToolStripMenuItem
            // 
            this.registerToolStripMenuItem.Name = "registerToolStripMenuItem";
            this.registerToolStripMenuItem.Size = new System.Drawing.Size(172, 24);
            this.registerToolStripMenuItem.Text = "Register";
            this.registerToolStripMenuItem.Click += new System.EventHandler(this.registerToolStripMenuItem_Click);
            // 
            // updateToolStripMenuItem
            // 
            this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
            this.updateToolStripMenuItem.Size = new System.Drawing.Size(172, 24);
            this.updateToolStripMenuItem.Text = "Update";
            this.updateToolStripMenuItem.Click += new System.EventHandler(this.updateToolStripMenuItem_Click);
            // 
            // exitToolStripMenuItem1
            // 
            this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
            this.exitToolStripMenuItem1.Size = new System.Drawing.Size(172, 24);
            this.exitToolStripMenuItem1.Text = "Exit";
            this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem1_Click);
            // 
            // chooseSkinToolStripMenuItem
            // 
            this.chooseSkinToolStripMenuItem.Name = "chooseSkinToolStripMenuItem";
            this.chooseSkinToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.chooseSkinToolStripMenuItem.Text = "Choose Skin";
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.exitToolStripMenuItem.Text = "Exit";
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
            this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
            this.notifyIcon1.Text = "TVKing Player";
            this.notifyIcon1.Visible = true;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem3,
            this.settingsToolStripMenuItem1,
            this.registerToolStripMenuItem1,
            this.updateToolStripMenuItem1,
            this.submitChannelToolStripMenuItem,
            this.playYoutubeToolStripMenuItem,
            this.toolStripMenuItem2});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(181, 194);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.CheckOnClick = true;
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(180, 24);
            this.toolStripMenuItem3.Text = "Always on top";
            this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
            // 
            // settingsToolStripMenuItem1
            // 
            this.settingsToolStripMenuItem1.Name = "settingsToolStripMenuItem1";
            this.settingsToolStripMenuItem1.Size = new System.Drawing.Size(180, 24);
            this.settingsToolStripMenuItem1.Text = "Settings";
            this.settingsToolStripMenuItem1.Click += new System.EventHandler(this.settingsToolStripMenuItem1_Click);
            // 
            // registerToolStripMenuItem1
            // 
            this.registerToolStripMenuItem1.Name = "registerToolStripMenuItem1";
            this.registerToolStripMenuItem1.Size = new System.Drawing.Size(180, 24);
            this.registerToolStripMenuItem1.Text = "Register";
            this.registerToolStripMenuItem1.Visible = false;
            this.registerToolStripMenuItem1.Click += new System.EventHandler(this.registerToolStripMenuItem1_Click);
            // 
            // updateToolStripMenuItem1
            // 
            this.updateToolStripMenuItem1.Name = "updateToolStripMenuItem1";
            this.updateToolStripMenuItem1.Size = new System.Drawing.Size(180, 24);
            this.updateToolStripMenuItem1.Text = "Update";
            this.updateToolStripMenuItem1.Click += new System.EventHandler(this.updateToolStripMenuItem1_Click);
            // 
            // submitChannelToolStripMenuItem
            // 
            this.submitChannelToolStripMenuItem.Name = "submitChannelToolStripMenuItem";
            this.submitChannelToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
            this.submitChannelToolStripMenuItem.Text = "Submit channel";
            this.submitChannelToolStripMenuItem.Click += new System.EventHandler(this.submitChannelToolStripMenuItem_Click);
            // 
            // playYoutubeToolStripMenuItem
            // 
            this.playYoutubeToolStripMenuItem.Name = "playYoutubeToolStripMenuItem";
            this.playYoutubeToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
            this.playYoutubeToolStripMenuItem.Text = "Play Youtube";
            this.playYoutubeToolStripMenuItem.Click += new System.EventHandler(this.playYoutubeToolStripMenuItem_Click);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(180, 24);
            this.toolStripMenuItem2.Text = "Exit";
            this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
            // 
            // tmAdvMoving
            // 
            this.tmAdvMoving.Interval = 500;
            this.tmAdvMoving.Tick += new System.EventHandler(this.tmAdvMoving_Tick);
            // 
            // lbRegisterText
            // 
            this.lbRegisterText.AutoSize = true;
            this.lbRegisterText.BackColor = System.Drawing.Color.Transparent;
            this.lbRegisterText.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.lbRegisterText.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbRegisterText.ForeColor = System.Drawing.Color.DarkGray;
            this.lbRegisterText.Location = new System.Drawing.Point(279, 761);
            this.lbRegisterText.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbRegisterText.Name = "lbRegisterText";
            this.lbRegisterText.Size = new System.Drawing.Size(184, 18);
            this.lbRegisterText.TabIndex = 21;
            this.lbRegisterText.Text = "You are using Trial Version";
            // 
            // lbErrorPlayer
            // 
            this.lbErrorPlayer.AutoSize = true;
            this.lbErrorPlayer.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.lbErrorPlayer.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbErrorPlayer.ForeColor = System.Drawing.SystemColors.ButtonFace;
            this.lbErrorPlayer.Location = new System.Drawing.Point(595, 727);
            this.lbErrorPlayer.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbErrorPlayer.Name = "lbErrorPlayer";
            this.lbErrorPlayer.Size = new System.Drawing.Size(234, 25);
            this.lbErrorPlayer.TabIndex = 23;
            this.lbErrorPlayer.Text = "Cannot open this channel";
            this.lbErrorPlayer.Visible = false;
            // 
            // tmAutoPlay
            // 
            this.tmAutoPlay.Interval = 1000;
            this.tmAutoPlay.Tick += new System.EventHandler(this.tmAutoPlay_Tick);
            // 
            // lbMini
            // 
            this.lbMini.AutoSize = true;
            this.lbMini.BackColor = System.Drawing.Color.Transparent;
            this.lbMini.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lbMini.ForeColor = System.Drawing.Color.DodgerBlue;
            this.lbMini.Location = new System.Drawing.Point(264, 39);
            this.lbMini.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbMini.Name = "lbMini";
            this.lbMini.Size = new System.Drawing.Size(166, 17);
            this.lbMini.TabIndex = 26;
            this.lbMini.Text = "TVKing - Exit Small Mode";
            this.lbMini.Visible = false;
            this.lbMini.Click += new System.EventHandler(this.lbMini_Click);
            // 
            // pbErrorBG
            // 
            this.pbErrorBG.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.pbErrorBG.BackgroundImage = global::TVKing2.Properties.Resources.blackbg;
            this.pbErrorBG.ErrorImage = null;
            this.pbErrorBG.Image = global::TVKing2.Properties.Resources.message_screen;
            this.pbErrorBG.Location = new System.Drawing.Point(533, 438);
            this.pbErrorBG.Margin = new System.Windows.Forms.Padding(4);
            this.pbErrorBG.Name = "pbErrorBG";
            this.pbErrorBG.Size = new System.Drawing.Size(127, 276);
            this.pbErrorBG.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pbErrorBG.TabIndex = 22;
            this.pbErrorBG.TabStop = false;
            this.pbErrorBG.Visible = false;
            // 
            // pictureBoxStop
            // 
            this.pictureBoxStop.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxStop.BackgroundImage = global::TVKing2.Properties.Resources.psd_05a;
            this.pictureBoxStop.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxStop.Location = new System.Drawing.Point(829, 601);
            this.pictureBoxStop.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxStop.Name = "pictureBoxStop";
            this.pictureBoxStop.Size = new System.Drawing.Size(38, 47);
            this.pictureBoxStop.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBoxStop.TabIndex = 13;
            this.pictureBoxStop.TabStop = false;
            this.pictureBoxStop.Click += new System.EventHandler(this.pictureBox7_Click);
            // 
            // pictureBoxPause
            // 
            this.pictureBoxPause.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxPause.BackgroundImage = global::TVKing2.Properties.Resources.psd_03a;
            this.pictureBoxPause.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxPause.Location = new System.Drawing.Point(731, 601);
            this.pictureBoxPause.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxPause.Name = "pictureBoxPause";
            this.pictureBoxPause.Size = new System.Drawing.Size(38, 47);
            this.pictureBoxPause.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBoxPause.TabIndex = 11;
            this.pictureBoxPause.TabStop = false;
            this.pictureBoxPause.Click += new System.EventHandler(this.pictureBox5_Click);
            // 
            // pictureBoxPlay
            // 
            this.pictureBoxPlay.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxPlay.BackgroundImage = global::TVKing2.Properties.Resources.psd_04;
            this.pictureBoxPlay.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxPlay.Location = new System.Drawing.Point(773, 602);
            this.pictureBoxPlay.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxPlay.Name = "pictureBoxPlay";
            this.pictureBoxPlay.Size = new System.Drawing.Size(47, 47);
            this.pictureBoxPlay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBoxPlay.TabIndex = 12;
            this.pictureBoxPlay.TabStop = false;
            this.pictureBoxPlay.Click += new System.EventHandler(this.pictureBox6_Click);
            // 
            // lbStream
            // 
            this.lbStream.AutoSize = true;
            this.lbStream.BackColor = System.Drawing.Color.Transparent;
            this.lbStream.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lbStream.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbStream.ForeColor = System.Drawing.Color.DodgerBlue;
            this.lbStream.Location = new System.Drawing.Point(13, 222);
            this.lbStream.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbStream.Name = "lbStream";
            this.lbStream.Size = new System.Drawing.Size(71, 18);
            this.lbStream.TabIndex = 28;
            this.lbStream.Text = "Streams";
            this.lbStream.Click += new System.EventHandler(this.label1_Click);
            // 
            // lbWeb
            // 
            this.lbWeb.AutoSize = true;
            this.lbWeb.BackColor = System.Drawing.Color.Transparent;
            this.lbWeb.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lbWeb.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbWeb.ForeColor = System.Drawing.Color.SlateGray;
            this.lbWeb.Location = new System.Drawing.Point(125, 222);
            this.lbWeb.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbWeb.Name = "lbWeb";
            this.lbWeb.Size = new System.Drawing.Size(87, 18);
            this.lbWeb.TabIndex = 29;
            this.lbWeb.Text = "Web Links";
            this.lbWeb.Click += new System.EventHandler(this.label2_Click);
            // 
            // lbCountStream
            // 
            this.lbCountStream.AutoSize = true;
            this.lbCountStream.BackColor = System.Drawing.Color.Transparent;
            this.lbCountStream.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbCountStream.ForeColor = System.Drawing.Color.OrangeRed;
            this.lbCountStream.Location = new System.Drawing.Point(89, 222);
            this.lbCountStream.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbCountStream.Name = "lbCountStream";
            this.lbCountStream.Size = new System.Drawing.Size(26, 18);
            this.lbCountStream.TabIndex = 30;
            this.lbCountStream.Text = "00";
            // 
            // lbCountWeb
            // 
            this.lbCountWeb.AutoSize = true;
            this.lbCountWeb.BackColor = System.Drawing.Color.Transparent;
            this.lbCountWeb.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbCountWeb.ForeColor = System.Drawing.Color.OrangeRed;
            this.lbCountWeb.Location = new System.Drawing.Point(220, 222);
            this.lbCountWeb.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbCountWeb.Name = "lbCountWeb";
            this.lbCountWeb.Size = new System.Drawing.Size(26, 18);
            this.lbCountWeb.TabIndex = 31;
            this.lbCountWeb.Text = "00";
            // 
            // txtSearch
            // 
            this.txtSearch.BackColor = System.Drawing.SystemColors.MenuText;
            this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSearch.ForeColor = System.Drawing.Color.DarkGray;
            this.txtSearch.Location = new System.Drawing.Point(17, 117);
            this.txtSearch.Margin = new System.Windows.Forms.Padding(4);
            this.txtSearch.Name = "txtSearch";
            this.txtSearch.Size = new System.Drawing.Size(185, 23);
            this.txtSearch.TabIndex = 0;
            this.txtSearch.Text = "Search";
            this.txtSearch.MouseClick += new System.Windows.Forms.MouseEventHandler(this.txtSearch_MouseClick);
            this.txtSearch.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSearch_KeyPress);
            // 
            // pbStartSearch
            // 
            this.pbStartSearch.BackColor = System.Drawing.Color.Transparent;
            this.pbStartSearch.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbStartSearch.Image = global::TVKing2.Properties.Resources.search;
            this.pbStartSearch.Location = new System.Drawing.Point(212, 116);
            this.pbStartSearch.Margin = new System.Windows.Forms.Padding(4);
            this.pbStartSearch.Name = "pbStartSearch";
            this.pbStartSearch.Size = new System.Drawing.Size(24, 24);
            this.pbStartSearch.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pbStartSearch.TabIndex = 7;
            this.pbStartSearch.TabStop = false;
            this.pbStartSearch.Click += new System.EventHandler(this.pictureBox2_Click);
            // 
            // pbStopSearch
            // 
            this.pbStopSearch.BackColor = System.Drawing.Color.Transparent;
            this.pbStopSearch.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbStopSearch.Image = global::TVKing2.Properties.Resources.stop_button;
            this.pbStopSearch.Location = new System.Drawing.Point(245, 98);
            this.pbStopSearch.Margin = new System.Windows.Forms.Padding(4);
            this.pbStopSearch.Name = "pbStopSearch";
            this.pbStopSearch.Size = new System.Drawing.Size(24, 24);
            this.pbStopSearch.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pbStopSearch.TabIndex = 7;
            this.pbStopSearch.TabStop = false;
            this.pbStopSearch.Click += new System.EventHandler(this.pbStopSearch_Click);
            // 
            // barText
            // 
            this.barText.AutoSize = true;
            this.barText.BackColor = System.Drawing.Color.Transparent;
            this.barText.ForeColor = System.Drawing.Color.Gray;
            this.barText.Location = new System.Drawing.Point(8, 7);
            this.barText.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.barText.Name = "barText";
            this.barText.Size = new System.Drawing.Size(46, 17);
            this.barText.TabIndex = 33;
            this.barText.Text = "label1";
            this.barText.Visible = false;
            // 
            // barProgress
            // 
            this.barProgress.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
            this.barProgress.Image = global::TVKing2.Properties.Resources.animation_loading;
            this.barProgress.Location = new System.Drawing.Point(360, 10);
            this.barProgress.Margin = new System.Windows.Forms.Padding(4);
            this.barProgress.Name = "barProgress";
            this.barProgress.Size = new System.Drawing.Size(121, 9);
            this.barProgress.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.barProgress.TabIndex = 40;
            this.barProgress.TabStop = false;
            // 
            // iconClose
            // 
            this.iconClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.iconClose.BackColor = System.Drawing.Color.Transparent;
            this.iconClose.Cursor = System.Windows.Forms.Cursors.Hand;
            this.iconClose.Image = global::TVKing2.Properties.Resources.icon_close_n;
            this.iconClose.Location = new System.Drawing.Point(1152, 14);
            this.iconClose.Margin = new System.Windows.Forms.Padding(4);
            this.iconClose.Name = "iconClose";
            this.iconClose.Size = new System.Drawing.Size(14, 15);
            this.iconClose.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.iconClose.TabIndex = 41;
            this.iconClose.TabStop = false;
            this.iconClose.Click += new System.EventHandler(this.iconClose_Click);
            this.iconClose.MouseLeave += new System.EventHandler(this.iconClose_MouseLeave);
            this.iconClose.MouseHover += new System.EventHandler(this.iconClose_MouseHover);
            // 
            // iconMaximize
            // 
            this.iconMaximize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.iconMaximize.BackColor = System.Drawing.Color.Transparent;
            this.iconMaximize.Cursor = System.Windows.Forms.Cursors.Hand;
            this.iconMaximize.Image = global::TVKing2.Properties.Resources.icon_maximize;
            this.iconMaximize.Location = new System.Drawing.Point(1125, 14);
            this.iconMaximize.Margin = new System.Windows.Forms.Padding(4);
            this.iconMaximize.Name = "iconMaximize";
            this.iconMaximize.Size = new System.Drawing.Size(14, 15);
            this.iconMaximize.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.iconMaximize.TabIndex = 42;
            this.iconMaximize.TabStop = false;
            this.iconMaximize.Click += new System.EventHandler(this.iconMaximize_Click);
            this.iconMaximize.MouseLeave += new System.EventHandler(this.iconMaximize_MouseLeave);
            this.iconMaximize.MouseHover += new System.EventHandler(this.iconMaximize_MouseHover);
            // 
            // iconMinimize
            // 
            this.iconMinimize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.iconMinimize.BackColor = System.Drawing.Color.Transparent;
            this.iconMinimize.Cursor = System.Windows.Forms.Cursors.Hand;
            this.iconMinimize.Image = global::TVKing2.Properties.Resources.icon_minimize_n;
            this.iconMinimize.Location = new System.Drawing.Point(1099, 14);
            this.iconMinimize.Margin = new System.Windows.Forms.Padding(4);
            this.iconMinimize.Name = "iconMinimize";
            this.iconMinimize.Size = new System.Drawing.Size(14, 15);
            this.iconMinimize.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.iconMinimize.TabIndex = 43;
            this.iconMinimize.TabStop = false;
            this.iconMinimize.Click += new System.EventHandler(this.pictureBox3_Click_1);
            this.iconMinimize.MouseLeave += new System.EventHandler(this.iconMinimize_MouseLeave);
            this.iconMinimize.MouseHover += new System.EventHandler(this.iconMinimize_MouseHover);
            // 
            // labelFavorites
            // 
            this.labelFavorites.AutoSize = true;
            this.labelFavorites.BackColor = System.Drawing.Color.Transparent;
            this.labelFavorites.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelFavorites.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelFavorites.ForeColor = System.Drawing.Color.DarkGray;
            this.labelFavorites.Location = new System.Drawing.Point(328, 78);
            this.labelFavorites.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelFavorites.Name = "labelFavorites";
            this.labelFavorites.Size = new System.Drawing.Size(69, 18);
            this.labelFavorites.TabIndex = 45;
            this.labelFavorites.Text = "Favorites";
            this.labelFavorites.Click += new System.EventHandler(this.label1_Click_1);
            // 
            // labelUsa
            // 
            this.labelUsa.AutoSize = true;
            this.labelUsa.BackColor = System.Drawing.Color.Transparent;
            this.labelUsa.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelUsa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelUsa.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelUsa.Location = new System.Drawing.Point(483, 78);
            this.labelUsa.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelUsa.Name = "labelUsa";
            this.labelUsa.Size = new System.Drawing.Size(38, 18);
            this.labelUsa.TabIndex = 46;
            this.labelUsa.Text = "USA";
            this.labelUsa.Click += new System.EventHandler(this.label2_Click_1);
            // 
            // labelIndia
            // 
            this.labelIndia.AutoSize = true;
            this.labelIndia.BackColor = System.Drawing.Color.Transparent;
            this.labelIndia.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelIndia.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelIndia.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelIndia.Location = new System.Drawing.Point(417, 78);
            this.labelIndia.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelIndia.Name = "labelIndia";
            this.labelIndia.Size = new System.Drawing.Size(45, 18);
            this.labelIndia.TabIndex = 47;
            this.labelIndia.Text = "INDIA";
            this.labelIndia.Click += new System.EventHandler(this.label3_Click);
            // 
            // labelUk
            // 
            this.labelUk.AutoSize = true;
            this.labelUk.BackColor = System.Drawing.Color.Transparent;
            this.labelUk.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelUk.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelUk.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelUk.Location = new System.Drawing.Point(539, 78);
            this.labelUk.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelUk.Name = "labelUk";
            this.labelUk.Size = new System.Drawing.Size(29, 18);
            this.labelUk.TabIndex = 49;
            this.labelUk.Text = "UK";
            this.labelUk.Click += new System.EventHandler(this.label4_Click);
            // 
            // labelCanada
            // 
            this.labelCanada.AutoSize = true;
            this.labelCanada.BackColor = System.Drawing.Color.Transparent;
            this.labelCanada.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelCanada.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelCanada.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelCanada.Location = new System.Drawing.Point(588, 78);
            this.labelCanada.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelCanada.Name = "labelCanada";
            this.labelCanada.Size = new System.Drawing.Size(68, 18);
            this.labelCanada.TabIndex = 48;
            this.labelCanada.Text = "CANADA";
            this.labelCanada.Click += new System.EventHandler(this.label5_Click);
            // 
            // labelChina
            // 
            this.labelChina.AutoSize = true;
            this.labelChina.BackColor = System.Drawing.Color.Transparent;
            this.labelChina.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelChina.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelChina.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelChina.Location = new System.Drawing.Point(675, 78);
            this.labelChina.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelChina.Name = "labelChina";
            this.labelChina.Size = new System.Drawing.Size(53, 18);
            this.labelChina.TabIndex = 51;
            this.labelChina.Text = "CHINA";
            this.labelChina.Click += new System.EventHandler(this.label6_Click);
            // 
            // labelGermany
            // 
            this.labelGermany.AutoSize = true;
            this.labelGermany.BackColor = System.Drawing.Color.Transparent;
            this.labelGermany.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelGermany.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelGermany.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelGermany.Location = new System.Drawing.Point(747, 78);
            this.labelGermany.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelGermany.Name = "labelGermany";
            this.labelGermany.Size = new System.Drawing.Size(83, 18);
            this.labelGermany.TabIndex = 50;
            this.labelGermany.Text = "GERMANY";
            this.labelGermany.Click += new System.EventHandler(this.label7_Click);
            // 
            // labelRussia
            // 
            this.labelRussia.AutoSize = true;
            this.labelRussia.BackColor = System.Drawing.Color.Transparent;
            this.labelRussia.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelRussia.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelRussia.ForeColor = System.Drawing.SystemColors.ButtonShadow;
            this.labelRussia.Location = new System.Drawing.Point(851, 78);
            this.labelRussia.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelRussia.Name = "labelRussia";
            this.labelRussia.Size = new System.Drawing.Size(62, 18);
            this.labelRussia.TabIndex = 52;
            this.labelRussia.Text = "RUSSIA";
            this.labelRussia.Click += new System.EventHandler(this.label8_Click);
            // 
            // pnStatus
            // 
            this.pnStatus.BackColor = System.Drawing.Color.Black;
            this.pnStatus.Controls.Add(this.barText);
            this.pnStatus.Controls.Add(this.barProgress);
            this.pnStatus.Location = new System.Drawing.Point(288, 795);
            this.pnStatus.Margin = new System.Windows.Forms.Padding(4);
            this.pnStatus.Name = "pnStatus";
            this.pnStatus.Size = new System.Drawing.Size(884, 31);
            this.pnStatus.TabIndex = 63;
            // 
            // lbLeftDays
            // 
            this.lbLeftDays.AutoSize = true;
            this.lbLeftDays.BackColor = System.Drawing.Color.Transparent;
            this.lbLeftDays.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.lbLeftDays.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbLeftDays.ForeColor = System.Drawing.Color.OrangeRed;
            this.lbLeftDays.Location = new System.Drawing.Point(491, 761);
            this.lbLeftDays.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbLeftDays.Name = "lbLeftDays";
            this.lbLeftDays.Size = new System.Drawing.Size(54, 18);
            this.lbLeftDays.TabIndex = 64;
            this.lbLeftDays.Text = "7 Days";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.BackColor = System.Drawing.Color.Transparent;
            this.label10.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.ForeColor = System.Drawing.Color.DarkGray;
            this.label10.Location = new System.Drawing.Point(328, 687);
            this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(82, 18);
            this.label10.TabIndex = 65;
            this.label10.Text = "Remaining.";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.BackColor = System.Drawing.Color.Transparent;
            this.label11.Cursor = System.Windows.Forms.Cursors.Hand;
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label11.Location = new System.Drawing.Point(387, 705);
            this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(98, 18);
            this.label11.TabIndex = 66;
            this.label11.Text = "Register Now";
            this.label11.Click += new System.EventHandler(this.lbRegisterText_Click);
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.Transparent;
            this.panel1.Cursor = System.Windows.Forms.Cursors.SizeNWSE;
            this.panel1.Location = new System.Drawing.Point(1165, 900);
            this.panel1.Margin = new System.Windows.Forms.Padding(4);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(23, 20);
            this.panel1.TabIndex = 71;
            this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
            this.panel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseMove);
            this.panel1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseUp);
            // 
            // contextChannels
            // 
            this.contextChannels.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnSetToDefault,
            this.setAsDefaultCountryToolStripMenuItem,
            this.mnAddFavorites,
            this.mnRemoveFromFav,
            this.removeDefaultToolStripMenuItem});
            this.contextChannels.Name = "contextChannels";
            this.contextChannels.Size = new System.Drawing.Size(232, 124);
            this.contextChannels.Opening += new System.ComponentModel.CancelEventHandler(this.contextChannels_Opening);
            // 
            // mnSetToDefault
            // 
            this.mnSetToDefault.Name = "mnSetToDefault";
            this.mnSetToDefault.Size = new System.Drawing.Size(231, 24);
            this.mnSetToDefault.Text = "Set As Default Channel";
            this.mnSetToDefault.Click += new System.EventHandler(this.mnSetToDefault_Click);
            // 
            // setAsDefaultCountryToolStripMenuItem
            // 
            this.setAsDefaultCountryToolStripMenuItem.Name = "setAsDefaultCountryToolStripMenuItem";
            this.setAsDefaultCountryToolStripMenuItem.Size = new System.Drawing.Size(231, 24);
            this.setAsDefaultCountryToolStripMenuItem.Text = "Set As Default Country";
            this.setAsDefaultCountryToolStripMenuItem.Click += new System.EventHandler(this.setAsDefaultCountryToolStripMenuItem_Click);
            // 
            // mnAddFavorites
            // 
            this.mnAddFavorites.Name = "mnAddFavorites";
            this.mnAddFavorites.Size = new System.Drawing.Size(231, 24);
            this.mnAddFavorites.Text = "Add to Favorites";
            this.mnAddFavorites.Click += new System.EventHandler(this.mnAddFavorites_Click);
            // 
            // mnRemoveFromFav
            // 
            this.mnRemoveFromFav.Name = "mnRemoveFromFav";
            this.mnRemoveFromFav.Size = new System.Drawing.Size(231, 24);
            this.mnRemoveFromFav.Text = "Remove from Favorites";
            this.mnRemoveFromFav.Click += new System.EventHandler(this.mnRemoveFromFav_Click);
            // 
            // removeDefaultToolStripMenuItem
            // 
            this.removeDefaultToolStripMenuItem.Name = "removeDefaultToolStripMenuItem";
            this.removeDefaultToolStripMenuItem.Size = new System.Drawing.Size(231, 24);
            this.removeDefaultToolStripMenuItem.Text = "Remove Default";
            this.removeDefaultToolStripMenuItem.Click += new System.EventHandler(this.removeDefaultToolStripMenuItem_Click);
            // 
            // lbListTitle
            // 
            this.lbListTitle.AutoSize = true;
            this.lbListTitle.BackColor = System.Drawing.Color.Transparent;
            this.lbListTitle.ForeColor = System.Drawing.Color.OrangeRed;
            this.lbListTitle.Location = new System.Drawing.Point(100, 186);
            this.lbListTitle.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lbListTitle.Name = "lbListTitle";
            this.lbListTitle.Size = new System.Drawing.Size(46, 17);
            this.lbListTitle.TabIndex = 76;
            this.lbListTitle.Text = "label9";
            // 
            // tmBandwidth
            // 
            this.tmBandwidth.Interval = 1000;
            this.tmBandwidth.Tick += new System.EventHandler(this.tmBandwidth_Tick);
            // 
            // pbBandwidth
            // 
            this.pbBandwidth.Location = new System.Drawing.Point(304, 146);
            this.pbBandwidth.Margin = new System.Windows.Forms.Padding(4);
            this.pbBandwidth.Name = "pbBandwidth";
            this.pbBandwidth.Size = new System.Drawing.Size(57, 14);
            this.pbBandwidth.TabIndex = 77;
            this.pbBandwidth.TabStop = false;
            this.pbBandwidth.Visible = false;
            // 
            // pbDivider
            // 
            this.pbDivider.BackgroundImage = global::TVKing2.Properties.Resources.divider;
            this.pbDivider.Location = new System.Drawing.Point(31, 207);
            this.pbDivider.Margin = new System.Windows.Forms.Padding(4);
            this.pbDivider.Name = "pbDivider";
            this.pbDivider.Size = new System.Drawing.Size(25, 15);
            this.pbDivider.TabIndex = 78;
            this.pbDivider.TabStop = false;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.BackColor = System.Drawing.Color.Transparent;
            this.label9.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label9.Location = new System.Drawing.Point(15, 185);
            this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(89, 17);
            this.label9.TabIndex = 79;
            this.label9.Text = "Current List: ";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::TVKing2.Properties.Resources.fav_icon;
            this.pictureBox1.Location = new System.Drawing.Point(304, 80);
            this.pictureBox1.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(17, 13);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox1.TabIndex = 80;
            this.pictureBox1.TabStop = false;
            // 
            // tmPlaying
            // 
            this.tmPlaying.Enabled = true;
            this.tmPlaying.Interval = 10000;
            this.tmPlaying.Tick += new System.EventHandler(this.tmPlaying_Tick);
            // 
            // barTrialHours
            // 
            this.barTrialHours.Location = new System.Drawing.Point(299, 737);
            this.barTrialHours.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.barTrialHours.Name = "barTrialHours";
            this.barTrialHours.Size = new System.Drawing.Size(263, 15);
            this.barTrialHours.TabIndex = 82;
            // 
            // labelReportViolation
            // 
            this.labelReportViolation.AutoSize = true;
            this.labelReportViolation.BackColor = System.Drawing.Color.Transparent;
            this.labelReportViolation.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelReportViolation.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelReportViolation.ForeColor = System.Drawing.Color.DodgerBlue;
            this.labelReportViolation.Location = new System.Drawing.Point(953, 706);
            this.labelReportViolation.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.labelReportViolation.Name = "labelReportViolation";
            this.labelReportViolation.Size = new System.Drawing.Size(120, 18);
            this.labelReportViolation.TabIndex = 83;
            this.labelReportViolation.Text = "Report Copyright";
            this.labelReportViolation.Visible = false;
            this.labelReportViolation.Click += new System.EventHandler(this.labelReportViolation_Click);
            // 
            // pictureBox2
            // 
            this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox2.Image = global::TVKing2.Properties.Resources.refresh;
            this.pictureBox2.Location = new System.Drawing.Point(257, 220);
            this.pictureBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(21, 20);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 85;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click_2);
            // 
            // timerRightBanner
            // 
            this.timerRightBanner.Interval = 500;
            this.timerRightBanner.Tick += new System.EventHandler(this.timerRightBanner_Tick);
            // 
            // labelOnlineUser
            // 
            this.labelOnlineUser.AutoSize = true;
            this.labelOnlineUser.BackColor = System.Drawing.Color.Transparent;
            this.labelOnlineUser.ForeColor = System.Drawing.Color.LightSlateGray;
            this.labelOnlineUser.Location = new System.Drawing.Point(797, 548);
            this.labelOnlineUser.Name = "labelOnlineUser";
            this.labelOnlineUser.Size = new System.Drawing.Size(24, 17);
            this.labelOnlineUser.TabIndex = 86;
            this.labelOnlineUser.Text = "10";
            this.labelOnlineUser.Visible = false;
            // 
            // labelInstalledUser
            // 
            this.labelInstalledUser.AutoSize = true;
            this.labelInstalledUser.BackColor = System.Drawing.Color.Transparent;
            this.labelInstalledUser.ForeColor = System.Drawing.Color.LightSlateGray;
            this.labelInstalledUser.Location = new System.Drawing.Point(797, 564);
            this.labelInstalledUser.Name = "labelInstalledUser";
            this.labelInstalledUser.Size = new System.Drawing.Size(24, 17);
            this.labelInstalledUser.TabIndex = 87;
            this.labelInstalledUser.Text = "10";
            this.labelInstalledUser.Visible = false;
            // 
            // timerSystemUser
            // 
            this.timerSystemUser.Interval = 300000;
            this.timerSystemUser.Tick += new System.EventHandler(this.timerSystemUser_Tick);
            // 
            // labelTotalUser
            // 
            this.labelTotalUser.AutoSize = true;
            this.labelTotalUser.BackColor = System.Drawing.Color.Transparent;
            this.labelTotalUser.ForeColor = System.Drawing.Color.LightSlateGray;
            this.labelTotalUser.Location = new System.Drawing.Point(797, 581);
            this.labelTotalUser.Name = "labelTotalUser";
            this.labelTotalUser.Size = new System.Drawing.Size(24, 17);
            this.labelTotalUser.TabIndex = 89;
            this.labelTotalUser.Text = "10";
            this.labelTotalUser.Visible = false;
            // 
            // pictureBoxCopyRight
            // 
            this.pictureBoxCopyRight.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxCopyRight.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxCopyRight.Image = global::TVKing2.Properties.Resources.Copyright;
            this.pictureBoxCopyRight.Location = new System.Drawing.Point(1117, 834);
            this.pictureBoxCopyRight.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxCopyRight.Name = "pictureBoxCopyRight";
            this.pictureBoxCopyRight.Size = new System.Drawing.Size(27, 26);
            this.pictureBoxCopyRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBoxCopyRight.TabIndex = 90;
            this.pictureBoxCopyRight.TabStop = false;
            this.pictureBoxCopyRight.Click += new System.EventHandler(this.pictureBox3_Click_2);
            // 
            // pictureBoxError
            // 
            this.pictureBoxError.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxError.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxError.Image = global::TVKing2.Properties.Resources.broken_link;
            this.pictureBoxError.Location = new System.Drawing.Point(1147, 834);
            this.pictureBoxError.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxError.Name = "pictureBoxError";
            this.pictureBoxError.Size = new System.Drawing.Size(27, 26);
            this.pictureBoxError.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBoxError.TabIndex = 91;
            this.pictureBoxError.TabStop = false;
            this.pictureBoxError.Click += new System.EventHandler(this.pictureBox8_Click);
            // 
            // pictureBoxEmail
            // 
            this.pictureBoxEmail.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxEmail.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxEmail.Image = global::TVKing2.Properties.Resources.tell_friend;
            this.pictureBoxEmail.Location = new System.Drawing.Point(1087, 834);
            this.pictureBoxEmail.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxEmail.Name = "pictureBoxEmail";
            this.pictureBoxEmail.Size = new System.Drawing.Size(27, 26);
            this.pictureBoxEmail.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBoxEmail.TabIndex = 93;
            this.pictureBoxEmail.TabStop = false;
            this.pictureBoxEmail.Click += new System.EventHandler(this.pictureBox9_Click);
            // 
            // pictureBoxYoutube
            // 
            this.pictureBoxYoutube.BackColor = System.Drawing.Color.Transparent;
            this.pictureBoxYoutube.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxYoutube.Image = global::TVKing2.Properties.Resources.icon_youtube_on;
            this.pictureBoxYoutube.Location = new System.Drawing.Point(1115, 76);
            this.pictureBoxYoutube.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBoxYoutube.Name = "pictureBoxYoutube";
            this.pictureBoxYoutube.Size = new System.Drawing.Size(29, 30);
            this.pictureBoxYoutube.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBoxYoutube.TabIndex = 94;
            this.pictureBoxYoutube.TabStop = false;
            this.pictureBoxYoutube.Click += new System.EventHandler(this.pictureBox10_Click);
            // 
            // pictureBox11
            // 
            this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox11.Image = global::TVKing2.Properties.Resources.icon_users;
            this.pictureBox11.Location = new System.Drawing.Point(716, 560);
            this.pictureBox11.Margin = new System.Windows.Forms.Padding(4);
            this.pictureBox11.Name = "pictureBox11";
            this.pictureBox11.Size = new System.Drawing.Size(24, 24);
            this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox11.TabIndex = 98;
            this.pictureBox11.TabStop = false;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label1.Location = new System.Drawing.Point(747, 562);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(46, 17);
            this.label1.TabIndex = 99;
            this.label1.Text = "Active";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label2.Location = new System.Drawing.Point(747, 546);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(49, 17);
            this.label2.TabIndex = 100;
            this.label2.Text = "Online";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label3.Location = new System.Drawing.Point(747, 580);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(40, 17);
            this.label3.TabIndex = 101;
            this.label3.Text = "Total";
            // 
            // labelVersion
            // 
            this.labelVersion.Cursor = System.Windows.Forms.Cursors.Hand;
            this.labelVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelVersion.ForeColor = System.Drawing.Color.DarkGray;
            this.labelVersion.Location = new System.Drawing.Point(123, 14);
            this.labelVersion.Margin = new System.Windows.Forms.Padding(4);
            this.labelVersion.Name = "labelVersion";
            this.labelVersion.Size = new System.Drawing.Size(133, 25);
            this.labelVersion.TabIndex = 84;
            this.labelVersion.TabStop = false;
            this.labelVersion.Text = "Version Text";
            this.labelVersion.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            // 
            // webBrowser1
            // 
            this.webBrowser1.AllowNavigation = false;
            this.webBrowser1.AllowWebBrowserDrop = false;
            this.webBrowser1.IsWebBrowserContextMenuEnabled = false;
            this.webBrowser1.Location = new System.Drawing.Point(172, 860);
            this.webBrowser1.Margin = new System.Windows.Forms.Padding(4);
            this.webBrowser1.MinimumSize = new System.Drawing.Size(27, 25);
            this.webBrowser1.Name = "webBrowser1";
            this.webBrowser1.ScrollBarsEnabled = false;
            this.webBrowser1.Size = new System.Drawing.Size(436, 46);
            this.webBrowser1.TabIndex = 92;
            this.webBrowser1.Url = new System.Uri("http://tvking.tv/facebook_like_for_tvking.php", System.UriKind.Absolute);
            // 
            // cbCategory
            // 
            this.cbCategory.Location = new System.Drawing.Point(17, 150);
            this.cbCategory.Margin = new System.Windows.Forms.Padding(4);
            this.cbCategory.Name = "cbCategory";
            this.cbCategory.SelectedIndex = -1;
            this.cbCategory.Size = new System.Drawing.Size(260, 25);
            this.cbCategory.TabIndex = 75;
            // 
            // cbCountry
            // 
            this.cbCountry.Location = new System.Drawing.Point(949, 76);
            this.cbCountry.Margin = new System.Windows.Forms.Padding(4);
            this.cbCountry.Name = "cbCountry";
            this.cbCountry.SelectedIndex = -1;
            this.cbCountry.Size = new System.Drawing.Size(161, 25);
            this.cbCountry.TabIndex = 74;
            // 
            // tvkTrialScreen1
            // 
            this.tvkTrialScreen1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.tvkTrialScreen1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tvkTrialScreen1.BackgroundImage")));
            this.tvkTrialScreen1.Location = new System.Drawing.Point(625, 207);
            this.tvkTrialScreen1.Margin = new System.Windows.Forms.Padding(5);
            this.tvkTrialScreen1.Name = "tvkTrialScreen1";
            this.tvkTrialScreen1.Size = new System.Drawing.Size(101, 78);
            this.tvkTrialScreen1.TabIndex = 68;
            this.tvkTrialScreen1.Visible = false;
            this.tvkTrialScreen1.Load += new System.EventHandler(this.tvkTrialScreen1_Load);
            // 
            // tvkLabel2
            // 
            this.tvkLabel2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.tvkLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tvkLabel2.ForeColor = System.Drawing.Color.DarkGray;
            this.tvkLabel2.Location = new System.Drawing.Point(192, 14);
            this.tvkLabel2.Margin = new System.Windows.Forms.Padding(4);
            this.tvkLabel2.Name = "tvkLabel2";
            this.tvkLabel2.Size = new System.Drawing.Size(88, 25);
            this.tvkLabel2.TabIndex = 62;
            this.tvkLabel2.TabStop = false;
            this.tvkLabel2.Text = "Register";
            this.tvkLabel2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            this.tvkLabel2.Click += new System.EventHandler(this.tvkLabel2_Click);
            this.tvkLabel2.MouseLeave += new System.EventHandler(this.tvkLabel2_MouseLeave);
            this.tvkLabel2.MouseHover += new System.EventHandler(this.tvkLabel2_MouseHover);
            // 
            // tvkLabel1
            // 
            this.tvkLabel1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.tvkLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tvkLabel1.ForeColor = System.Drawing.Color.DarkGray;
            this.tvkLabel1.Location = new System.Drawing.Point(53, 14);
            this.tvkLabel1.Margin = new System.Windows.Forms.Padding(4);
            this.tvkLabel1.Name = "tvkLabel1";
            this.tvkLabel1.Size = new System.Drawing.Size(73, 25);
            this.tvkLabel1.TabIndex = 61;
            this.tvkLabel1.TabStop = false;
            this.tvkLabel1.Text = "Settings";
            this.tvkLabel1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            this.tvkLabel1.Click += new System.EventHandler(this.tvkLabel1_Click);
            this.tvkLabel1.MouseLeave += new System.EventHandler(this.tvkLabel1_MouseLeave);
            this.tvkLabel1.MouseHover += new System.EventHandler(this.tvkLabel1_MouseHover);
            // 
            // tvkPictureBox2
            // 
            this.tvkPictureBox2.BackColor = System.Drawing.Color.Transparent;
            this.tvkPictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.tvkPictureBox2.Image = global::TVKing2.Properties.Resources.icon_key;
            this.tvkPictureBox2.Location = new System.Drawing.Point(155, 9);
            this.tvkPictureBox2.Margin = new System.Windows.Forms.Padding(4);
            this.tvkPictureBox2.Name = "tvkPictureBox2";
            this.tvkPictureBox2.Size = new System.Drawing.Size(29, 31);
            this.tvkPictureBox2.TabIndex = 60;
            this.tvkPictureBox2.Text = "tvkPictureBox3";
            this.tvkPictureBox2.Click += new System.EventHandler(this.tvkPictureBox2_Click);
            // 
            // tvkPictureBox1
            // 
            this.tvkPictureBox1.BackColor = System.Drawing.Color.Transparent;
            this.tvkPictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.tvkPictureBox1.Image = global::TVKing2.Properties.Resources.icon_config;
            this.tvkPictureBox1.Location = new System.Drawing.Point(16, 9);
            this.tvkPictureBox1.Margin = new System.Windows.Forms.Padding(4);
            this.tvkPictureBox1.Name = "tvkPictureBox1";
            this.tvkPictureBox1.Size = new System.Drawing.Size(29, 31);
            this.tvkPictureBox1.TabIndex = 59;
            this.tvkPictureBox1.Text = "tvkPictureBox3";
            this.tvkPictureBox1.Click += new System.EventHandler(this.tvkPictureBox1_Click);
            // 
            // txtTitle
            // 
            this.txtTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTitle.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtTitle.Location = new System.Drawing.Point(301, 103);
            this.txtTitle.Margin = new System.Windows.Forms.Padding(4);
            this.txtTitle.Name = "txtTitle";
            this.txtTitle.Size = new System.Drawing.Size(857, 36);
            this.txtTitle.TabIndex = 53;
            this.txtTitle.TabStop = false;
            this.txtTitle.Text = "title";
            this.txtTitle.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            // 
            // pbFullScreen
            // 
            this.pbFullScreen.BackColor = System.Drawing.Color.Transparent;
            this.pbFullScreen.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbFullScreen.Image = global::TVKing2.Properties.Resources.full;
            this.pbFullScreen.Location = new System.Drawing.Point(300, 176);
            this.pbFullScreen.Margin = new System.Windows.Forms.Padding(4);
            this.pbFullScreen.Name = "pbFullScreen";
            this.pbFullScreen.Size = new System.Drawing.Size(112, 25);
            this.pbFullScreen.TabIndex = 58;
            this.pbFullScreen.Text = "tvkPictureBox3";
            this.pbFullScreen.Click += new System.EventHandler(this.pictureBox3_Click);
            // 
            // pbRevFav
            // 
            this.pbRevFav.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.pbRevFav.BackColor = System.Drawing.Color.Transparent;
            this.pbRevFav.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbRevFav.Image = global::TVKing2.Properties.Resources.remove_fav;
            this.pbRevFav.Location = new System.Drawing.Point(908, 142);
            this.pbRevFav.Margin = new System.Windows.Forms.Padding(4);
            this.pbRevFav.Name = "pbRevFav";
            this.pbRevFav.Size = new System.Drawing.Size(113, 37);
            this.pbRevFav.TabIndex = 55;
            this.pbRevFav.Text = "tvkPictureBox1";
            this.pbRevFav.Click += new System.EventHandler(this.pictureBox2_Click_1);
            // 
            // pbAddFav
            // 
            this.pbAddFav.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.pbAddFav.BackColor = System.Drawing.Color.Transparent;
            this.pbAddFav.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbAddFav.Image = global::TVKing2.Properties.Resources.add_to_fav;
            this.pbAddFav.Location = new System.Drawing.Point(1045, 142);
            this.pbAddFav.Margin = new System.Windows.Forms.Padding(4);
            this.pbAddFav.Name = "pbAddFav";
            this.pbAddFav.Size = new System.Drawing.Size(113, 37);
            this.pbAddFav.TabIndex = 54;
            this.pbAddFav.Text = "tvkPictureBox1";
            this.pbAddFav.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // pbMinimize
            // 
            this.pbMinimize.BackColor = System.Drawing.Color.Transparent;
            this.pbMinimize.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbMinimize.Image = global::TVKing2.Properties.Resources.button_small_mode;
            this.pbMinimize.Location = new System.Drawing.Point(431, 176);
            this.pbMinimize.Margin = new System.Windows.Forms.Padding(4);
            this.pbMinimize.Name = "pbMinimize";
            this.pbMinimize.Size = new System.Drawing.Size(112, 25);
            this.pbMinimize.TabIndex = 57;
            this.pbMinimize.Text = "tvkPictureBox2";
            this.pbMinimize.Click += new System.EventHandler(this.pictureBox1_Click_1);
            // 
            // trVolume
            // 
            this.trVolume.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("trVolume.BackgroundImage")));
            this.trVolume.Location = new System.Drawing.Point(625, 834);
            this.trVolume.Margin = new System.Windows.Forms.Padding(4);
            this.trVolume.Name = "trVolume";
            this.trVolume.Size = new System.Drawing.Size(131, 33);
            this.trVolume.TabIndex = 39;
            // 
            // lvStream
            // 
            this.lvStream.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvStream.BackgroundImage")));
            this.lvStream.ContextMenuStrip = this.contextChannels;
            this.lvStream.Location = new System.Drawing.Point(20, 244);
            this.lvStream.Margin = new System.Windows.Forms.Padding(5);
            this.lvStream.Name = "lvStream";
            this.lvStream.Size = new System.Drawing.Size(260, 582);
            this.lvStream.TabIndex = 37;
            this.lvStream.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvStream_MouseDoubleClick);
            // 
            // lvWeb
            // 
            this.lvWeb.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvWeb.BackgroundImage")));
            this.lvWeb.Location = new System.Drawing.Point(300, 357);
            this.lvWeb.Margin = new System.Windows.Forms.Padding(5);
            this.lvWeb.Name = "lvWeb";
            this.lvWeb.Size = new System.Drawing.Size(88, 314);
            this.lvWeb.TabIndex = 38;
            this.lvWeb.Visible = false;
            this.lvWeb.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvWeb_MouseDoubleClick);
            // 
            // pnInfo
            // 
            this.pnInfo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnInfo.BackgroundImage")));
            this.pnInfo.Location = new System.Drawing.Point(288, 58);
            this.pnInfo.Margin = new System.Windows.Forms.Padding(5);
            this.pnInfo.Name = "pnInfo";
            this.pnInfo.Size = new System.Drawing.Size(883, 148);
            this.pnInfo.TabIndex = 44;
            // 
            // player_flash
            // 
            this.player_flash.Enabled = true;
            this.player_flash.Location = new System.Drawing.Point(365, 225);
            this.player_flash.Margin = new System.Windows.Forms.Padding(4);
            this.player_flash.Name = "player_flash";
            this.player_flash.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("player_flash.OcxState")));
            this.player_flash.Size = new System.Drawing.Size(47, 224);
            this.player_flash.TabIndex = 20;
            this.player_flash.Visible = false;
            this.player_flash.OnReadyStateChange += new AxShockwaveFlashObjects._IShockwaveFlashEvents_OnReadyStateChangeEventHandler(this.flash_OnReadyStateChange);
            // 
            // dragBar
            // 
            this.dragBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.dragBar.BackColor = System.Drawing.Color.Transparent;
            this.dragBar.Cursor = System.Windows.Forms.Cursors.SizeAll;
            this.dragBar.Image = null;
            this.dragBar.Location = new System.Drawing.Point(268, 0);
            this.dragBar.Margin = new System.Windows.Forms.Padding(4);
            this.dragBar.Name = "dragBar";
            this.dragBar.Size = new System.Drawing.Size(804, 46);
            this.dragBar.TabIndex = 70;
            this.dragBar.Text = "tvkPictureBox3";
            this.dragBar.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.tvkPictureBox3_MouseDoubleClick);
            this.dragBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.MainApp_MouseDown);
            this.dragBar.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MainApp_MouseMove);
            this.dragBar.MouseUp += new System.Windows.Forms.MouseEventHandler(this.MainApp_MouseUp);
            // 
            // player_wmp
            // 
            this.player_wmp.Enabled = true;
            this.player_wmp.Location = new System.Drawing.Point(476, 266);
            this.player_wmp.Margin = new System.Windows.Forms.Padding(4);
            this.player_wmp.Name = "player_wmp";
            this.player_wmp.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("player_wmp.OcxState")));
            this.player_wmp.Size = new System.Drawing.Size(69, 262);
            this.player_wmp.TabIndex = 24;
            this.player_wmp.StatusChange += new System.EventHandler(this.wplayer_StatusChange);
            this.player_wmp.MediaError += new AxWMPLib._WMPOCXEvents_MediaErrorEventHandler(this.wplayer_MediaError);
            // 
            // buttonBackYoutube
            // 
            this.buttonBackYoutube.Location = new System.Drawing.Point(819, 874);
            this.buttonBackYoutube.LookAndFeel.SkinName = "TVKingSkin";
            this.buttonBackYoutube.LookAndFeel.UseDefaultLookAndFeel = false;
            this.buttonBackYoutube.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.buttonBackYoutube.Name = "buttonBackYoutube";
            this.buttonBackYoutube.Size = new System.Drawing.Size(113, 22);
            this.buttonBackYoutube.TabIndex = 103;
            this.buttonBackYoutube.Text = "Previous Video";
            this.buttonBackYoutube.Visible = false;
            this.buttonBackYoutube.Click += new System.EventHandler(this.button1_Click_1);
            // 
            // buttonNextYoutube
            // 
            this.buttonNextYoutube.Location = new System.Drawing.Point(939, 874);
            this.buttonNextYoutube.LookAndFeel.SkinName = "TVKingSkin";
            this.buttonNextYoutube.LookAndFeel.UseDefaultLookAndFeel = false;
            this.buttonNextYoutube.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.buttonNextYoutube.Name = "buttonNextYoutube";
            this.buttonNextYoutube.Size = new System.Drawing.Size(93, 22);
            this.buttonNextYoutube.TabIndex = 104;
            this.buttonNextYoutube.Text = "Next Video";
            this.buttonNextYoutube.Visible = false;
            this.buttonNextYoutube.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // adsMain2
            // 
            this.adsMain2.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.adsMain2.Location = new System.Drawing.Point(431, 356);
            this.adsMain2.Margin = new System.Windows.Forms.Padding(5);
            this.adsMain2.Name = "adsMain2";
            this.adsMain2.Size = new System.Drawing.Size(131, 103);
            this.adsMain2.TabIndex = 81;
            this.adsMain2.Visible = false;
            // 
            // galleryControlYoutube
            // 
            this.galleryControlYoutube.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.galleryControlYoutube.Controls.Add(this.galleryControlClient1);
            this.galleryControlYoutube.Cursor = System.Windows.Forms.Cursors.Hand;
            this.galleryControlYoutube.DesignGalleryGroupIndex = 0;
            this.galleryControlYoutube.DesignGalleryItemIndex = 0;
            // 
            // galleryControlGallery1
            // 
            this.galleryControlYoutube.Gallery.Appearance.ItemCaption.ForeColor = System.Drawing.Color.DodgerBlue;
            this.galleryControlYoutube.Gallery.Appearance.ItemCaption.Options.UseForeColor = true;
            this.galleryControlYoutube.Gallery.Appearance.ItemCaption.Options.UseTextOptions = true;
            this.galleryControlYoutube.Gallery.Appearance.ItemCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.galleryControlYoutube.Gallery.Appearance.ItemDescription.ForeColor = System.Drawing.Color.DodgerBlue;
            this.galleryControlYoutube.Gallery.Appearance.ItemDescription.Options.UseForeColor = true;
            this.galleryControlYoutube.Gallery.Appearance.ItemDescription.Options.UseTextOptions = true;
            this.galleryControlYoutube.Gallery.Appearance.ItemDescription.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.galleryControlYoutube.Gallery.BackColor = System.Drawing.Color.Black;
            galleryItemGroup1.Caption = "Group1";
            this.galleryControlYoutube.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControlYoutube.Gallery.ImageSize = new System.Drawing.Size(120, 90);
            this.galleryControlYoutube.Gallery.ShowGroupCaption = false;
            this.galleryControlYoutube.Gallery.ShowItemText = true;
            this.galleryControlYoutube.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemClick);
            this.galleryControlYoutube.Location = new System.Drawing.Point(1031, 207);
            this.galleryControlYoutube.LookAndFeel.SkinName = "TVKingSkin";
            this.galleryControlYoutube.LookAndFeel.UseDefaultLookAndFeel = false;
            this.galleryControlYoutube.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.galleryControlYoutube.Name = "galleryControlYoutube";
            this.galleryControlYoutube.Size = new System.Drawing.Size(108, 276);
            this.galleryControlYoutube.TabIndex = 105;
            this.galleryControlYoutube.Text = "galleryControl1";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControlYoutube;
            this.galleryControlClient1.Location = new System.Drawing.Point(1, 1);
            this.galleryControlClient1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.galleryControlClient1.Size = new System.Drawing.Size(89, 274);
            // 
            // timerFixWplayerBug
            // 
            this.timerFixWplayerBug.Interval = 1000;
            this.timerFixWplayerBug.Tick += new System.EventHandler(this.timerFixWplayerBug_Tick);
            // 
            // timerSeeking
            // 
            this.timerSeeking.Interval = 1000;
            this.timerSeeking.Tick += new System.EventHandler(this.timerSeeking_Tick);
            // 
            // tvkSeeking
            // 
            this.tvkSeeking.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tvkSeeking.BackgroundImage")));
            this.tvkSeeking.Location = new System.Drawing.Point(781, 834);
            this.tvkSeeking.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.tvkSeeking.Name = "tvkSeeking";
            this.tvkSeeking.Size = new System.Drawing.Size(291, 22);
            this.tvkSeeking.TabIndex = 106;
            this.tvkSeeking.Visible = false;
            // 
            // MainApp
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.BackgroundImage = global::TVKing2.Properties.Resources.background1;
            this.ClientSize = new System.Drawing.Size(1188, 919);
            this.Controls.Add(this.buttonBackYoutube);
            this.Controls.Add(this.buttonNextYoutube);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.galleryControlYoutube);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.labelVersion);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox11);
            this.Controls.Add(this.pictureBoxCopyRight);
            this.Controls.Add(this.pictureBoxError);
            this.Controls.Add(this.labelTotalUser);
            this.Controls.Add(this.pictureBoxEmail);
            this.Controls.Add(this.adsMain2);
            this.Controls.Add(this.labelInstalledUser);
            this.Controls.Add(this.pictureBoxYoutube);
            this.Controls.Add(this.pictureBox2);
            this.Controls.Add(this.labelOnlineUser);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.lbMini);
            this.Controls.Add(this.cbCategory);
            this.Controls.Add(this.cbCountry);
            this.Controls.Add(this.lbErrorPlayer);
            this.Controls.Add(this.barTrialHours);
            this.Controls.Add(this.pnStatus);
            this.Controls.Add(this.labelReportViolation);
            this.Controls.Add(this.pbErrorBG);
            this.Controls.Add(this.tvkLabel2);
            this.Controls.Add(this.tvkLabel1);
            this.Controls.Add(this.tvkTrialScreen1);
            this.Controls.Add(this.label11);
            this.Controls.Add(this.tvkPictureBox2);
            this.Controls.Add(this.tvkPictureBox1);
            this.Controls.Add(this.label10);
            this.Controls.Add(this.lbLeftDays);
            this.Controls.Add(this.labelRussia);
            this.Controls.Add(this.labelChina);
            this.Controls.Add(this.txtTitle);
            this.Controls.Add(this.labelGermany);
            this.Controls.Add(this.labelUk);
            this.Controls.Add(this.pbFullScreen);
            this.Controls.Add(this.labelCanada);
            this.Controls.Add(this.pbRevFav);
            this.Controls.Add(this.labelIndia);
            this.Controls.Add(this.pbAddFav);
            this.Controls.Add(this.labelUsa);
            this.Controls.Add(this.labelFavorites);
            this.Controls.Add(this.iconMinimize);
            this.Controls.Add(this.iconMaximize);
            this.Controls.Add(this.iconClose);
            this.Controls.Add(this.pictureBox4);
            this.Controls.Add(this.pbMinimize);
            this.Controls.Add(this.pbStartSearch);
            this.Controls.Add(this.pictureBoxPause);
            this.Controls.Add(this.pictureBoxStop);
            this.Controls.Add(this.pictureBoxPlay);
            this.Controls.Add(this.trVolume);
            this.Controls.Add(this.lbRegisterText);
            this.Controls.Add(this.lbCountWeb);
            this.Controls.Add(this.pbStopSearch);
            this.Controls.Add(this.lbCountStream);
            this.Controls.Add(this.txtSearch);
            this.Controls.Add(this.lbWeb);
            this.Controls.Add(this.lbStream);
            this.Controls.Add(this.lvStream);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.pbDivider);
            this.Controls.Add(this.lvWeb);
            this.Controls.Add(this.lbListTitle);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.pbBandwidth);
            this.Controls.Add(this.pnInfo);
            this.Controls.Add(this.player_flash);
            this.Controls.Add(this.dragBar);
            this.Controls.Add(this.player_wmp);
            this.Controls.Add(this.tvkSeeking);
            this.Controls.Add(this.webBrowser1);
            this.Cursor = System.Windows.Forms.Cursors.Default;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.MinimumSize = new System.Drawing.Size(1188, 738);
            this.Name = "MainApp";
            this.Text = "TVKing";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainApp_FormClosing);
            this.Load += new System.EventHandler(this.Form1_Load);
            this.Move += new System.EventHandler(this.MainApp_Move);
            this.Resize += new System.EventHandler(this.MainApp_Resize);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
            this.contextMenuStrip1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbErrorBG)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxStop)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPause)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPlay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbStartSearch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbStopSearch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barProgress)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconClose)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconMaximize)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.iconMinimize)).EndInit();
            this.pnStatus.ResumeLayout(false);
            this.pnStatus.PerformLayout();
            this.contextChannels.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbBandwidth)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbDivider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCopyRight)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxError)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxEmail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxYoutube)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.player_flash)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.player_wmp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControlYoutube)).EndInit();
            this.galleryControlYoutube.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();
            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);

        }
Beispiel #20
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);
 }
Beispiel #21
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();

        }
        /// <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(fMain));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.btnExportExcel = new DevExpress.XtraBars.BarButtonItem();
            this.btnExportCSV = new DevExpress.XtraBars.BarButtonItem();
            this.btnExportJson = new DevExpress.XtraBars.BarButtonItem();
            this.btnExportHtml = new DevExpress.XtraBars.BarButtonItem();
            this.btnExportText = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonMainMenu = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.btnRun = new DevExpress.XtraBars.BarButtonItem();
            this.gallerySources = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.chkDBpedia = new DevExpress.XtraBars.BarCheckItem();
            this.barToggleSwitchItem1 = new DevExpress.XtraBars.BarToggleSwitchItem();
            this.chkIMDB = new DevExpress.XtraBars.BarCheckItem();
            this.chkGeoData = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.chkEurostat = new DevExpress.XtraBars.BarCheckItem();
            this.ribbonPageMain = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageMainGroupSource = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageMainGroupActivities = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageMainGroupExport = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.txtQuery = new System.Windows.Forms.RichTextBox();
            this.grdData = new DevExpress.XtraGrid.GridControl();
            this.grdvwData = new DevExpress.XtraGrid.Views.Grid.GridView();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonMainMenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdvwData)).BeginInit();
            this.SuspendLayout();
            // 
            // btnExportExcel
            // 
            this.btnExportExcel.Caption = "Excel";
            this.btnExportExcel.Glyph = ((System.Drawing.Image)(resources.GetObject("btnExportExcel.Glyph")));
            this.btnExportExcel.Id = 2;
            this.btnExportExcel.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnExportExcel.LargeGlyph")));
            this.btnExportExcel.Name = "btnExportExcel";
            this.btnExportExcel.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnExportExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExportExcel_ItemClick);
            // 
            // btnExportCSV
            // 
            this.btnExportCSV.Caption = "CSV";
            this.btnExportCSV.Glyph = ((System.Drawing.Image)(resources.GetObject("btnExportCSV.Glyph")));
            this.btnExportCSV.Id = 5;
            this.btnExportCSV.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnExportCSV.LargeGlyph")));
            this.btnExportCSV.Name = "btnExportCSV";
            this.btnExportCSV.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExportCSV_ItemClick);
            // 
            // btnExportJson
            // 
            this.btnExportJson.Caption = "JSON";
            this.btnExportJson.Glyph = ((System.Drawing.Image)(resources.GetObject("btnExportJson.Glyph")));
            this.btnExportJson.Id = 3;
            this.btnExportJson.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnExportJson.LargeGlyph")));
            this.btnExportJson.Name = "btnExportJson";
            this.btnExportJson.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnExportJson.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExportJson_ItemClick);
            // 
            // btnExportHtml
            // 
            this.btnExportHtml.Caption = "HTML";
            this.btnExportHtml.Glyph = ((System.Drawing.Image)(resources.GetObject("btnExportHtml.Glyph")));
            this.btnExportHtml.Id = 4;
            this.btnExportHtml.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnExportHtml.LargeGlyph")));
            this.btnExportHtml.Name = "btnExportHtml";
            this.btnExportHtml.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExportHtml_ItemClick);
            // 
            // btnExportText
            // 
            this.btnExportText.Caption = "Text";
            this.btnExportText.Glyph = ((System.Drawing.Image)(resources.GetObject("btnExportText.Glyph")));
            this.btnExportText.Id = 6;
            this.btnExportText.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnExportText.LargeGlyph")));
            this.btnExportText.Name = "btnExportText";
            this.btnExportText.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExportText_ItemClick);
            // 
            // ribbonMainMenu
            // 
            this.ribbonMainMenu.ExpandCollapseItem.Id = 0;
            this.ribbonMainMenu.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonMainMenu.ExpandCollapseItem,
            this.btnRun,
            this.gallerySources,
            this.chkDBpedia,
            this.barToggleSwitchItem1,
            this.chkIMDB,
            this.chkGeoData,
            this.barButtonItem1,
            this.chkEurostat});
            this.ribbonMainMenu.Location = new System.Drawing.Point(0, 0);
            this.ribbonMainMenu.Margin = new System.Windows.Forms.Padding(4);
            this.ribbonMainMenu.MaxItemId = 9;
            this.ribbonMainMenu.Name = "ribbonMainMenu";
            this.ribbonMainMenu.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPageMain});
            this.ribbonMainMenu.Size = new System.Drawing.Size(1356, 162);
            // 
            // btnRun
            // 
            this.btnRun.Caption = "Run SPARQL";
            this.btnRun.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRun.Glyph")));
            this.btnRun.Id = 8;
            this.btnRun.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnRun.LargeGlyph")));
            this.btnRun.Name = "btnRun";
            this.btnRun.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnRun.Tag = "http://www.dbpedia.org/sparql";
            this.btnRun.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRun_ItemClick);
            // 
            // gallerySources
            // 
            this.gallerySources.Caption = "gallerySources";
            // 
            // 
            // 
            this.gallerySources.Gallery.AllowHoverImages = true;
            this.gallerySources.Gallery.ColumnCount = 3;
            galleryItemGroup1.Caption = "galleryGroupSources";
            this.gallerySources.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.gallerySources.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.Vertical;
            this.gallerySources.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.gallerySources.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.TopCenter;
            this.gallerySources.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.gallerySources.Gallery.ItemSize = new System.Drawing.Size(100, 60);
            this.gallerySources.Gallery.ShowItemText = true;
            this.gallerySources.Id = 1;
            this.gallerySources.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Immediate;
            this.gallerySources.Name = "gallerySources";
            // 
            // chkDBpedia
            // 
            this.chkDBpedia.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.False;
            this.chkDBpedia.BindableChecked = true;
            this.chkDBpedia.Caption = "DBpedia";
            this.chkDBpedia.Checked = true;
            this.chkDBpedia.CheckStyle = DevExpress.XtraBars.BarCheckStyles.Radio;
            this.chkDBpedia.Glyph = ((System.Drawing.Image)(resources.GetObject("chkDBpedia.Glyph")));
            this.chkDBpedia.GroupIndex = 1;
            this.chkDBpedia.Id = 2;
            this.chkDBpedia.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("chkDBpedia.LargeGlyph")));
            this.chkDBpedia.Name = "chkDBpedia";
            this.chkDBpedia.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkDBpedia.Tag = "http://dbpedia.org/sparql";
            this.chkDBpedia.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barSource_ItemClick);
            // 
            // barToggleSwitchItem1
            // 
            this.barToggleSwitchItem1.Caption = "barToggleSwitchItem1";
            this.barToggleSwitchItem1.Id = 3;
            this.barToggleSwitchItem1.Name = "barToggleSwitchItem1";
            // 
            // chkIMDB
            // 
            this.chkIMDB.Caption = "IMDB";
            this.chkIMDB.CheckStyle = DevExpress.XtraBars.BarCheckStyles.Radio;
            this.chkIMDB.Glyph = global::VirtuosoQueryData.Properties.Resources.imdb_small;
            this.chkIMDB.GroupIndex = 1;
            this.chkIMDB.Id = 4;
            this.chkIMDB.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("chkIMDB.LargeGlyph")));
            this.chkIMDB.Name = "chkIMDB";
            this.chkIMDB.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkIMDB.Tag = "http://data.linkedmdb.org/sparql";
            this.chkIMDB.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barSource_ItemClick);
            // 
            // chkGeoData
            // 
            this.chkGeoData.Caption = "GeoData";
            this.chkGeoData.CheckStyle = DevExpress.XtraBars.BarCheckStyles.Radio;
            this.chkGeoData.Glyph = global::VirtuosoQueryData.Properties.Resources.GeoData;
            this.chkGeoData.GroupIndex = 1;
            this.chkGeoData.Id = 5;
            this.chkGeoData.LargeGlyph = global::VirtuosoQueryData.Properties.Resources.GeoData_small;
            this.chkGeoData.Name = "chkGeoData";
            this.chkGeoData.Tag = "http://linkedgeodata.org/sparql";
            this.chkGeoData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barSource_ItemClick);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Id = 8;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // chkEurostat
            // 
            this.chkEurostat.Caption = "Eurostat";
            this.chkEurostat.CheckStyle = DevExpress.XtraBars.BarCheckStyles.Radio;
            this.chkEurostat.Glyph = global::VirtuosoQueryData.Properties.Resources.Eurostat_small;
            this.chkEurostat.GroupIndex = 1;
            this.chkEurostat.Id = 7;
            this.chkEurostat.LargeGlyph = global::VirtuosoQueryData.Properties.Resources.Eurostat;
            this.chkEurostat.Name = "chkEurostat";
            this.chkEurostat.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkEurostat.Tag = "http://eurostat.linked-statistics.org/sparql";
            this.chkEurostat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barSource_ItemClick);
            // 
            // ribbonPageMain
            // 
            this.ribbonPageMain.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageMainGroupSource,
            this.ribbonPageMainGroupActivities,
            this.ribbonPageMainGroupExport});
            this.ribbonPageMain.Name = "ribbonPageMain";
            this.ribbonPageMain.Text = "Main";
            // 
            // ribbonPageMainGroupSource
            // 
            this.ribbonPageMainGroupSource.ItemLinks.Add(this.chkDBpedia);
            this.ribbonPageMainGroupSource.ItemLinks.Add(this.chkIMDB);
            this.ribbonPageMainGroupSource.ItemLinks.Add(this.chkGeoData);
            this.ribbonPageMainGroupSource.Name = "ribbonPageMainGroupSource";
            this.ribbonPageMainGroupSource.Text = "Select service";
            // 
            // ribbonPageMainGroupActivities
            // 
            this.ribbonPageMainGroupActivities.ItemLinks.Add(this.btnRun);
            this.ribbonPageMainGroupActivities.Name = "ribbonPageMainGroupActivities";
            this.ribbonPageMainGroupActivities.Text = "Activities";
            // 
            // ribbonPageMainGroupExport
            // 
            this.ribbonPageMainGroupExport.ItemLinks.Add(this.btnExportExcel);
            this.ribbonPageMainGroupExport.ItemLinks.Add(this.btnExportCSV);
            this.ribbonPageMainGroupExport.ItemLinks.Add(this.btnExportJson);
            this.ribbonPageMainGroupExport.ItemLinks.Add(this.btnExportHtml);
            this.ribbonPageMainGroupExport.ItemLinks.Add(this.btnExportText);
            this.ribbonPageMainGroupExport.Name = "ribbonPageMainGroupExport";
            this.ribbonPageMainGroupExport.Text = "Export Data";
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 162);
            this.splitContainerControl1.Margin = new System.Windows.Forms.Padding(4);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.txtQuery);
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.grdData);
            this.splitContainerControl1.Panel2.Text = "Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1356, 734);
            this.splitContainerControl1.SplitterPosition = 140;
            this.splitContainerControl1.TabIndex = 2;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // txtQuery
            // 
            this.txtQuery.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtQuery.Location = new System.Drawing.Point(0, 0);
            this.txtQuery.Margin = new System.Windows.Forms.Padding(4);
            this.txtQuery.Name = "txtQuery";
            this.txtQuery.Size = new System.Drawing.Size(1356, 140);
            this.txtQuery.TabIndex = 0;
            this.txtQuery.Text = "";
            // 
            // grdData
            // 
            this.grdData.Cursor = System.Windows.Forms.Cursors.Default;
            this.grdData.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdData.EmbeddedNavigator.Buttons.Append.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.Edit.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.EnabledAutoRepeat = false;
            this.grdData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.First.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.Last.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.Next.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.NextPage.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.Prev.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
            this.grdData.EmbeddedNavigator.Buttons.Remove.Visible = false;
            this.grdData.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
            this.grdData.Location = new System.Drawing.Point(0, 0);
            this.grdData.MainView = this.grdvwData;
            this.grdData.Margin = new System.Windows.Forms.Padding(4);
            this.grdData.Name = "grdData";
            this.grdData.Size = new System.Drawing.Size(1356, 588);
            this.grdData.TabIndex = 1;
            this.grdData.UseEmbeddedNavigator = true;
            this.grdData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.grdvwData});
            // 
            // grdvwData
            // 
            this.grdvwData.GridControl = this.grdData;
            this.grdvwData.Name = "grdvwData";
            this.grdvwData.OptionsView.ShowFooter = true;
            // 
            // fMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1356, 896);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.ribbonMainMenu);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "fMain";
            this.ShowIcon = false;
            this.Text = "Virtuoso Query Data Tool";
            ((System.ComponentModel.ISupportInitialize)(this.ribbonMainMenu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdvwData)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #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(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);
 }
Beispiel #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(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()
 {
     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()
        {
            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();

        }
        /// <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();

        }
        /// <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(f101_dm_mau_email_de));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup7 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup8 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraRichEdit.Model.BorderInfo borderInfo2 = new DevExpress.XtraRichEdit.Model.BorderInfo();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation4 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.panel2 = new System.Windows.Forms.Panel();
            this.panel8 = new System.Windows.Forms.Panel();
            this.panel10 = new System.Windows.Forms.Panel();
            this.m_txt_tieu_de_mail = new System.Windows.Forms.TextBox();
            this.panel9 = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.panel7 = new System.Windows.Forms.Panel();
            this.panel12 = new System.Windows.Forms.Panel();
            this.m_txt_gui_cc = new System.Windows.Forms.TextBox();
            this.panel11 = new System.Windows.Forms.Panel();
            this.label3 = new System.Windows.Forms.Label();
            this.m_txt_ma_email = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.m_pan_button = new System.Windows.Forms.Panel();
            this.panel14 = new System.Windows.Forms.Panel();
            this.m_cmd_luu = new DevExpress.XtraEditors.SimpleButton();
            this.panel13 = new System.Windows.Forms.Panel();
            this.m_cmd_thoat = new DevExpress.XtraEditors.SimpleButton();
            this.m_richedit_noi_dung_email = new DevExpress.XtraRichEdit.RichEditControl();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.insertPageBreakItem21 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem2();
            this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
            this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
            this.insertFloatingPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertFloatingPictureItem();
            this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
            this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
            this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
            this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
            this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
            this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
            this.insertTextBoxItem1 = new DevExpress.XtraRichEdit.UI.InsertTextBoxItem();
            this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
            this.insertMergeFieldItem1 = new DevExpress.XtraRichEdit.UI.InsertMergeFieldItem();
            this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
            this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
            this.toggleViewMergedDataItem1 = new DevExpress.XtraRichEdit.UI.ToggleViewMergedDataItem();
            this.toggleFirstRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstRowItem();
            this.toggleLastRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastRowItem();
            this.toggleBandedRowsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedRowsItem();
            this.toggleFirstColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstColumnItem();
            this.toggleLastColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastColumnItem();
            this.toggleBandedColumnsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedColumnsItem();
            this.galleryChangeTableStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeTableStyleItem();
            this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
            this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
            this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
            this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
            this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
            this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
            this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
            this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
            this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
            this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
            this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
            this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
            this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
            this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
            this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
            this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
            this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
            this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
            this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
            this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
            this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
            this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
            this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
            this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
            this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
            this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
            this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
            this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
            this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
            this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
            this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
            this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
            this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
            this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
            this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
            this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
            this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
            this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
            this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
            this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
            this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
            this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
            this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
            this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
            this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
            this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
            this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
            this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
            this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
            this.showTableOptionsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTableOptionsFormItem();
            this.tableToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.TableToolsRibbonPageCategory();
            this.tableDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableDesignRibbonPage();
            this.tableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStyleOptionsRibbonPageGroup();
            this.tableStylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStylesRibbonPageGroup();
            this.tableDrawBordersRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableDrawBordersRibbonPageGroup();
            this.tableLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableLayoutRibbonPage();
            this.tableTableRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableTableRibbonPageGroup();
            this.tableRowsAndColumnsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableRowsAndColumnsRibbonPageGroup();
            this.tableMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableMergeRibbonPageGroup();
            this.tableCellSizeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableCellSizeRibbonPageGroup();
            this.tableAlignmentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableAlignmentRibbonPageGroup();
            this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.insertRibbonPage1 = new DevExpress.XtraRichEdit.UI.InsertRibbonPage();
            this.pagesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PagesRibbonPageGroup();
            this.tablesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TablesRibbonPageGroup();
            this.illustrationsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.IllustrationsRibbonPageGroup();
            this.linksRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.LinksRibbonPageGroup();
            this.headerFooterRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterRibbonPageGroup();
            this.textRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TextRibbonPageGroup();
            this.symbolsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.SymbolsRibbonPageGroup();
            this.mailingsRibbonPage1 = new DevExpress.XtraRichEdit.UI.MailingsRibbonPage();
            this.mailMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.MailMergeRibbonPageGroup();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.panel5 = new System.Windows.Forms.Panel();
            this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panel2.SuspendLayout();
            this.panel8.SuspendLayout();
            this.panel10.SuspendLayout();
            this.panel9.SuspendLayout();
            this.panel7.SuspendLayout();
            this.panel12.SuspendLayout();
            this.panel11.SuspendLayout();
            this.m_pan_button.SuspendLayout();
            this.panel14.SuspendLayout();
            this.panel13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
            this.tableLayoutPanel1.SuspendLayout();
            this.panel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.SuspendLayout();
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup7});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 61;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.panel5);
            this.panel2.Controls.Add(this.panel8);
            this.panel2.Controls.Add(this.panel7);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 3);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(1087, 114);
            this.panel2.TabIndex = 13;
            // 
            // panel8
            // 
            this.panel8.Controls.Add(this.panel10);
            this.panel8.Controls.Add(this.panel9);
            this.panel8.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel8.Location = new System.Drawing.Point(0, 40);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(1087, 36);
            this.panel8.TabIndex = 10;
            // 
            // panel10
            // 
            this.panel10.Controls.Add(this.m_txt_tieu_de_mail);
            this.panel10.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel10.Location = new System.Drawing.Point(133, 3);
            this.panel10.Name = "panel10";
            this.panel10.Size = new System.Drawing.Size(954, 33);
            this.panel10.TabIndex = 3;
            // 
            // m_txt_tieu_de_mail
            // 
            this.m_txt_tieu_de_mail.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.m_txt_tieu_de_mail.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.m_txt_tieu_de_mail.Location = new System.Drawing.Point(0, 7);
            this.m_txt_tieu_de_mail.Name = "m_txt_tieu_de_mail";
            this.m_txt_tieu_de_mail.Size = new System.Drawing.Size(954, 26);
            this.m_txt_tieu_de_mail.TabIndex = 0;
            // 
            // panel9
            // 
            this.panel9.Controls.Add(this.label1);
            this.panel9.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel9.Location = new System.Drawing.Point(0, 0);
            this.panel9.Name = "panel9";
            this.panel9.Size = new System.Drawing.Size(133, 36);
            this.panel9.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(9, 11);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(109, 18);
            this.label1.TabIndex = 1;
            this.label1.Text = "Tiêu đề email: ";
            // 
            // panel7
            // 
            this.panel7.Controls.Add(this.panel12);
            this.panel7.Controls.Add(this.panel11);
            this.panel7.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel7.Location = new System.Drawing.Point(0, 76);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(1087, 38);
            this.panel7.TabIndex = 9;
            // 
            // panel12
            // 
            this.panel12.Controls.Add(this.m_txt_gui_cc);
            this.panel12.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel12.Location = new System.Drawing.Point(133, 6);
            this.panel12.Name = "panel12";
            this.panel12.Size = new System.Drawing.Size(954, 32);
            this.panel12.TabIndex = 7;
            // 
            // m_txt_gui_cc
            // 
            this.m_txt_gui_cc.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.m_txt_gui_cc.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.m_txt_gui_cc.Location = new System.Drawing.Point(0, 6);
            this.m_txt_gui_cc.Name = "m_txt_gui_cc";
            this.m_txt_gui_cc.Size = new System.Drawing.Size(954, 26);
            this.m_txt_gui_cc.TabIndex = 4;
            // 
            // panel11
            // 
            this.panel11.Controls.Add(this.label3);
            this.panel11.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel11.Location = new System.Drawing.Point(0, 0);
            this.panel11.Name = "panel11";
            this.panel11.Size = new System.Drawing.Size(133, 38);
            this.panel11.TabIndex = 6;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location = new System.Drawing.Point(9, 12);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(63, 18);
            this.label3.TabIndex = 5;
            this.label3.Text = "Gửi cc :";
            // 
            // m_txt_ma_email
            // 
            this.m_txt_ma_email.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.m_txt_ma_email.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.m_txt_ma_email.Location = new System.Drawing.Point(0, 24);
            this.m_txt_ma_email.Name = "m_txt_ma_email";
            this.m_txt_ma_email.Size = new System.Drawing.Size(954, 26);
            this.m_txt_ma_email.TabIndex = 2;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(9, 18);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(84, 18);
            this.label2.TabIndex = 3;
            this.label2.Text = "Mã email : ";
            // 
            // m_pan_button
            // 
            this.m_pan_button.Controls.Add(this.panel14);
            this.m_pan_button.Controls.Add(this.panel13);
            this.m_pan_button.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_pan_button.Location = new System.Drawing.Point(3, 530);
            this.m_pan_button.Name = "m_pan_button";
            this.m_pan_button.Size = new System.Drawing.Size(1087, 24);
            this.m_pan_button.TabIndex = 14;
            // 
            // panel14
            // 
            this.panel14.Controls.Add(this.m_cmd_luu);
            this.panel14.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel14.Location = new System.Drawing.Point(707, 0);
            this.panel14.Name = "panel14";
            this.panel14.Size = new System.Drawing.Size(190, 24);
            this.panel14.TabIndex = 15;
            // 
            // m_cmd_luu
            // 
            this.m_cmd_luu.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.m_cmd_luu.Appearance.Options.UseFont = true;
            this.m_cmd_luu.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_cmd_luu.Image = ((System.Drawing.Image)(resources.GetObject("m_cmd_luu.Image")));
            this.m_cmd_luu.Location = new System.Drawing.Point(0, 0);
            this.m_cmd_luu.Name = "m_cmd_luu";
            this.m_cmd_luu.Size = new System.Drawing.Size(190, 24);
            this.m_cmd_luu.TabIndex = 12;
            this.m_cmd_luu.Text = "&Lưu";
            this.m_cmd_luu.Click += new System.EventHandler(this.simpbtn_luu_Click);
            // 
            // panel13
            // 
            this.panel13.Controls.Add(this.m_cmd_thoat);
            this.panel13.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel13.Location = new System.Drawing.Point(897, 0);
            this.panel13.Name = "panel13";
            this.panel13.Size = new System.Drawing.Size(190, 24);
            this.panel13.TabIndex = 14;
            // 
            // m_cmd_thoat
            // 
            this.m_cmd_thoat.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.m_cmd_thoat.Appearance.Options.UseFont = true;
            this.m_cmd_thoat.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_cmd_thoat.Image = ((System.Drawing.Image)(resources.GetObject("m_cmd_thoat.Image")));
            this.m_cmd_thoat.Location = new System.Drawing.Point(0, 0);
            this.m_cmd_thoat.Name = "m_cmd_thoat";
            this.m_cmd_thoat.Size = new System.Drawing.Size(190, 24);
            this.m_cmd_thoat.TabIndex = 13;
            this.m_cmd_thoat.Text = "&Thoát";
            this.m_cmd_thoat.Click += new System.EventHandler(this.simpbtn_thoat_Click);
            // 
            // m_richedit_noi_dung_email
            // 
            this.m_richedit_noi_dung_email.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_richedit_noi_dung_email.EnableToolTips = true;
            this.m_richedit_noi_dung_email.Location = new System.Drawing.Point(3, 123);
            this.m_richedit_noi_dung_email.MenuManager = this.ribbonControl1;
            this.m_richedit_noi_dung_email.Name = "m_richedit_noi_dung_email";
            this.m_richedit_noi_dung_email.Options.CopyPaste.MaintainDocumentSectionSettings = false;
            this.m_richedit_noi_dung_email.Options.Fields.UseCurrentCultureDateTimeFormat = false;
            this.m_richedit_noi_dung_email.Options.MailMerge.KeepLastParagraph = false;
            this.m_richedit_noi_dung_email.Size = new System.Drawing.Size(1087, 401);
            this.m_richedit_noi_dung_email.TabIndex = 15;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.undoItem1,
            this.redoItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.insertPageBreakItem21,
            this.insertTableItem1,
            this.insertPictureItem1,
            this.insertFloatingPictureItem1,
            this.insertBookmarkItem1,
            this.insertHyperlinkItem1,
            this.editPageHeaderItem1,
            this.editPageFooterItem1,
            this.insertPageNumberItem1,
            this.insertPageCountItem1,
            this.insertTextBoxItem1,
            this.insertSymbolItem1,
            this.insertMergeFieldItem1,
            this.showAllFieldCodesItem1,
            this.showAllFieldResultsItem1,
            this.toggleViewMergedDataItem1,
            this.toggleFirstRowItem1,
            this.toggleLastRowItem1,
            this.toggleBandedRowsItem1,
            this.toggleFirstColumnItem1,
            this.toggleLastColumnItem1,
            this.toggleBandedColumnsItem1,
            this.galleryChangeTableStyleItem1,
            this.changeTableBorderLineStyleItem1,
            this.changeTableBorderLineWeightItem1,
            this.changeTableBorderColorItem1,
            this.changeTableBordersItem1,
            this.toggleTableCellsBottomBorderItem1,
            this.toggleTableCellsTopBorderItem1,
            this.toggleTableCellsLeftBorderItem1,
            this.toggleTableCellsRightBorderItem1,
            this.resetTableCellsAllBordersItem1,
            this.toggleTableCellsAllBordersItem1,
            this.toggleTableCellsOutsideBorderItem1,
            this.toggleTableCellsInsideBorderItem1,
            this.toggleTableCellsInsideHorizontalBorderItem1,
            this.toggleTableCellsInsideVerticalBorderItem1,
            this.toggleShowTableGridLinesItem1,
            this.changeTableCellsShadingItem1,
            this.selectTableElementsItem1,
            this.selectTableCellItem1,
            this.selectTableColumnItem1,
            this.selectTableRowItem1,
            this.selectTableItem1,
            this.showTablePropertiesFormItem1,
            this.deleteTableElementsItem1,
            this.showDeleteTableCellsFormItem1,
            this.deleteTableColumnsItem1,
            this.deleteTableRowsItem1,
            this.deleteTableItem1,
            this.insertTableRowAboveItem1,
            this.insertTableRowBelowItem1,
            this.insertTableColumnToLeftItem1,
            this.insertTableColumnToRightItem1,
            this.mergeTableCellsItem1,
            this.showSplitTableCellsForm1,
            this.splitTableItem1,
            this.toggleTableAutoFitItem1,
            this.toggleTableAutoFitContentsItem1,
            this.toggleTableAutoFitWindowItem1,
            this.toggleTableFixedColumnWidthItem1,
            this.toggleTableCellsTopLeftAlignmentItem1,
            this.toggleTableCellsMiddleLeftAlignmentItem1,
            this.toggleTableCellsBottomLeftAlignmentItem1,
            this.toggleTableCellsTopCenterAlignmentItem1,
            this.toggleTableCellsMiddleCenterAlignmentItem1,
            this.toggleTableCellsBottomCenterAlignmentItem1,
            this.toggleTableCellsTopRightAlignmentItem1,
            this.toggleTableCellsMiddleRightAlignmentItem1,
            this.toggleTableCellsBottomRightAlignmentItem1,
            this.showTableOptionsFormItem1});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 135;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.tableToolsRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.insertRibbonPage1,
            this.mailingsRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1,
            this.repositoryItemBorderLineStyle1,
            this.repositoryItemBorderLineWeight1});
            this.ribbonControl1.Size = new System.Drawing.Size(1093, 144);
            // 
            // undoItem1
            // 
            this.undoItem1.Id = 1;
            this.undoItem1.Name = "undoItem1";
            // 
            // redoItem1
            // 
            this.redoItem1.Id = 2;
            this.redoItem1.Name = "redoItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Id = 3;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Id = 4;
            this.fileOpenItem1.Name = "fileOpenItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 5;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Id = 6;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Id = 7;
            this.quickPrintItem1.Name = "quickPrintItem1";
            // 
            // printItem1
            // 
            this.printItem1.Id = 8;
            this.printItem1.Name = "printItem1";
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 9;
            this.printPreviewItem1.Name = "printPreviewItem1";
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 17;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 18;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 19;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 20;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 10;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 21;
            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.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 22;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.m_richedit_noi_dung_email;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 23;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 24;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 11;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 25;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 26;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 27;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 28;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 29;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 30;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 31;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 32;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 12;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 33;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 34;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 35;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 36;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 37;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 38;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 39;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 40;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 13;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 41;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 42;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 43;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 14;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 44;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 45;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 50;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 15;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 46;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 47;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 48;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 49;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 16;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 51;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 52;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 53;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 54;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 55;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 56;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 57;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 58;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 59;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 60;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 62;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 63;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // insertPageBreakItem21
            // 
            this.insertPageBreakItem21.Id = 64;
            this.insertPageBreakItem21.Name = "insertPageBreakItem21";
            // 
            // insertTableItem1
            // 
            this.insertTableItem1.Id = 65;
            this.insertTableItem1.Name = "insertTableItem1";
            // 
            // insertPictureItem1
            // 
            this.insertPictureItem1.Id = 66;
            this.insertPictureItem1.Name = "insertPictureItem1";
            // 
            // insertFloatingPictureItem1
            // 
            this.insertFloatingPictureItem1.Id = 67;
            this.insertFloatingPictureItem1.Name = "insertFloatingPictureItem1";
            // 
            // insertBookmarkItem1
            // 
            this.insertBookmarkItem1.Id = 68;
            this.insertBookmarkItem1.Name = "insertBookmarkItem1";
            // 
            // insertHyperlinkItem1
            // 
            this.insertHyperlinkItem1.Id = 69;
            this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
            // 
            // editPageHeaderItem1
            // 
            this.editPageHeaderItem1.Id = 70;
            this.editPageHeaderItem1.Name = "editPageHeaderItem1";
            // 
            // editPageFooterItem1
            // 
            this.editPageFooterItem1.Id = 71;
            this.editPageFooterItem1.Name = "editPageFooterItem1";
            // 
            // insertPageNumberItem1
            // 
            this.insertPageNumberItem1.Id = 72;
            this.insertPageNumberItem1.Name = "insertPageNumberItem1";
            // 
            // insertPageCountItem1
            // 
            this.insertPageCountItem1.Id = 73;
            this.insertPageCountItem1.Name = "insertPageCountItem1";
            // 
            // insertTextBoxItem1
            // 
            this.insertTextBoxItem1.Id = 74;
            this.insertTextBoxItem1.Name = "insertTextBoxItem1";
            // 
            // insertSymbolItem1
            // 
            this.insertSymbolItem1.Id = 75;
            this.insertSymbolItem1.Name = "insertSymbolItem1";
            // 
            // insertMergeFieldItem1
            // 
            this.insertMergeFieldItem1.Id = 76;
            this.insertMergeFieldItem1.Name = "insertMergeFieldItem1";
            // 
            // showAllFieldCodesItem1
            // 
            this.showAllFieldCodesItem1.Id = 77;
            this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
            // 
            // showAllFieldResultsItem1
            // 
            this.showAllFieldResultsItem1.Id = 78;
            this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
            // 
            // toggleViewMergedDataItem1
            // 
            this.toggleViewMergedDataItem1.Id = 79;
            this.toggleViewMergedDataItem1.Name = "toggleViewMergedDataItem1";
            // 
            // toggleFirstRowItem1
            // 
            this.toggleFirstRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstRowItem1.Id = 80;
            this.toggleFirstRowItem1.Name = "toggleFirstRowItem1";
            // 
            // toggleLastRowItem1
            // 
            this.toggleLastRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastRowItem1.Id = 81;
            this.toggleLastRowItem1.Name = "toggleLastRowItem1";
            // 
            // toggleBandedRowsItem1
            // 
            this.toggleBandedRowsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedRowsItem1.Id = 82;
            this.toggleBandedRowsItem1.Name = "toggleBandedRowsItem1";
            // 
            // toggleFirstColumnItem1
            // 
            this.toggleFirstColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstColumnItem1.Id = 83;
            this.toggleFirstColumnItem1.Name = "toggleFirstColumnItem1";
            // 
            // toggleLastColumnItem1
            // 
            this.toggleLastColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastColumnItem1.Id = 84;
            this.toggleLastColumnItem1.Name = "toggleLastColumnItem1";
            // 
            // toggleBandedColumnsItem1
            // 
            this.toggleBandedColumnsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedColumnsItem1.Id = 85;
            this.toggleBandedColumnsItem1.Name = "toggleBandedColumnsItem1";
            // 
            // galleryChangeTableStyleItem1
            // 
            this.galleryChangeTableStyleItem1.CurrentItem = null;
            this.galleryChangeTableStyleItem1.CurrentItemStyle = null;
            this.galleryChangeTableStyleItem1.CurrentStyle = null;
            this.galleryChangeTableStyleItem1.DeleteItemLink = null;
            // 
            // 
            // 
            this.galleryChangeTableStyleItem1.Gallery.ColumnCount = 3;
            this.galleryChangeTableStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup8});
            this.galleryChangeTableStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeTableStyleItem1.Id = 86;
            this.galleryChangeTableStyleItem1.ModifyItemLink = null;
            this.galleryChangeTableStyleItem1.Name = "galleryChangeTableStyleItem1";
            this.galleryChangeTableStyleItem1.NewItemLink = null;
            this.galleryChangeTableStyleItem1.PopupGallery = null;
            // 
            // changeTableBorderLineStyleItem1
            // 
            this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
            borderInfo2.Color = System.Drawing.Color.Black;
            borderInfo2.Frame = false;
            borderInfo2.Offset = 0;
            borderInfo2.Shadow = false;
            borderInfo2.Style = DevExpress.XtraRichEdit.Model.BorderLineStyle.Single;
            borderInfo2.Width = 10;
            this.changeTableBorderLineStyleItem1.EditValue = borderInfo2;
            this.changeTableBorderLineStyleItem1.Id = 87;
            this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
            // 
            // repositoryItemBorderLineStyle1
            // 
            this.repositoryItemBorderLineStyle1.AutoHeight = false;
            this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineStyle1.Control = this.m_richedit_noi_dung_email;
            this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
            // 
            // changeTableBorderLineWeightItem1
            // 
            this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
            this.changeTableBorderLineWeightItem1.EditValue = 20;
            this.changeTableBorderLineWeightItem1.Id = 88;
            this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
            // 
            // repositoryItemBorderLineWeight1
            // 
            this.repositoryItemBorderLineWeight1.AutoHeight = false;
            this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineWeight1.Control = this.m_richedit_noi_dung_email;
            this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
            // 
            // changeTableBorderColorItem1
            // 
            this.changeTableBorderColorItem1.Id = 89;
            this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
            // 
            // changeTableBordersItem1
            // 
            this.changeTableBordersItem1.Id = 90;
            this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1, true)});
            this.changeTableBordersItem1.Name = "changeTableBordersItem1";
            // 
            // toggleTableCellsBottomBorderItem1
            // 
            this.toggleTableCellsBottomBorderItem1.Id = 91;
            this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
            // 
            // toggleTableCellsTopBorderItem1
            // 
            this.toggleTableCellsTopBorderItem1.Id = 92;
            this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
            // 
            // toggleTableCellsLeftBorderItem1
            // 
            this.toggleTableCellsLeftBorderItem1.Id = 93;
            this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
            // 
            // toggleTableCellsRightBorderItem1
            // 
            this.toggleTableCellsRightBorderItem1.Id = 94;
            this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
            // 
            // resetTableCellsAllBordersItem1
            // 
            this.resetTableCellsAllBordersItem1.Id = 95;
            this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
            // 
            // toggleTableCellsAllBordersItem1
            // 
            this.toggleTableCellsAllBordersItem1.Id = 96;
            this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
            // 
            // toggleTableCellsOutsideBorderItem1
            // 
            this.toggleTableCellsOutsideBorderItem1.Id = 97;
            this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
            // 
            // toggleTableCellsInsideBorderItem1
            // 
            this.toggleTableCellsInsideBorderItem1.Id = 98;
            this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
            // 
            // toggleTableCellsInsideHorizontalBorderItem1
            // 
            this.toggleTableCellsInsideHorizontalBorderItem1.Id = 99;
            this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
            // 
            // toggleTableCellsInsideVerticalBorderItem1
            // 
            this.toggleTableCellsInsideVerticalBorderItem1.Id = 100;
            this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
            // 
            // toggleShowTableGridLinesItem1
            // 
            this.toggleShowTableGridLinesItem1.Id = 101;
            this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
            // 
            // changeTableCellsShadingItem1
            // 
            this.changeTableCellsShadingItem1.Id = 102;
            this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
            // 
            // selectTableElementsItem1
            // 
            this.selectTableElementsItem1.Id = 103;
            this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
            this.selectTableElementsItem1.Name = "selectTableElementsItem1";
            // 
            // selectTableCellItem1
            // 
            this.selectTableCellItem1.Id = 104;
            this.selectTableCellItem1.Name = "selectTableCellItem1";
            // 
            // selectTableColumnItem1
            // 
            this.selectTableColumnItem1.Id = 105;
            this.selectTableColumnItem1.Name = "selectTableColumnItem1";
            // 
            // selectTableRowItem1
            // 
            this.selectTableRowItem1.Id = 106;
            this.selectTableRowItem1.Name = "selectTableRowItem1";
            // 
            // selectTableItem1
            // 
            this.selectTableItem1.Id = 107;
            this.selectTableItem1.Name = "selectTableItem1";
            // 
            // showTablePropertiesFormItem1
            // 
            this.showTablePropertiesFormItem1.Id = 108;
            this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
            // 
            // deleteTableElementsItem1
            // 
            this.deleteTableElementsItem1.Id = 109;
            this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
            this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
            // 
            // showDeleteTableCellsFormItem1
            // 
            this.showDeleteTableCellsFormItem1.Id = 110;
            this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
            // 
            // deleteTableColumnsItem1
            // 
            this.deleteTableColumnsItem1.Id = 111;
            this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
            // 
            // deleteTableRowsItem1
            // 
            this.deleteTableRowsItem1.Id = 112;
            this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
            // 
            // deleteTableItem1
            // 
            this.deleteTableItem1.Id = 113;
            this.deleteTableItem1.Name = "deleteTableItem1";
            // 
            // insertTableRowAboveItem1
            // 
            this.insertTableRowAboveItem1.Id = 114;
            this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
            // 
            // insertTableRowBelowItem1
            // 
            this.insertTableRowBelowItem1.Id = 115;
            this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
            // 
            // insertTableColumnToLeftItem1
            // 
            this.insertTableColumnToLeftItem1.Id = 116;
            this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
            // 
            // insertTableColumnToRightItem1
            // 
            this.insertTableColumnToRightItem1.Id = 117;
            this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
            // 
            // mergeTableCellsItem1
            // 
            this.mergeTableCellsItem1.Id = 118;
            this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
            // 
            // showSplitTableCellsForm1
            // 
            this.showSplitTableCellsForm1.Id = 119;
            this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
            // 
            // splitTableItem1
            // 
            this.splitTableItem1.Id = 120;
            this.splitTableItem1.Name = "splitTableItem1";
            // 
            // toggleTableAutoFitItem1
            // 
            this.toggleTableAutoFitItem1.Id = 121;
            this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
            this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
            // 
            // toggleTableAutoFitContentsItem1
            // 
            this.toggleTableAutoFitContentsItem1.Id = 122;
            this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
            // 
            // toggleTableAutoFitWindowItem1
            // 
            this.toggleTableAutoFitWindowItem1.Id = 123;
            this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
            // 
            // toggleTableFixedColumnWidthItem1
            // 
            this.toggleTableFixedColumnWidthItem1.Id = 124;
            this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
            // 
            // toggleTableCellsTopLeftAlignmentItem1
            // 
            this.toggleTableCellsTopLeftAlignmentItem1.Id = 125;
            this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
            // 
            // toggleTableCellsMiddleLeftAlignmentItem1
            // 
            this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 126;
            this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
            // 
            // toggleTableCellsBottomLeftAlignmentItem1
            // 
            this.toggleTableCellsBottomLeftAlignmentItem1.Id = 127;
            this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
            // 
            // toggleTableCellsTopCenterAlignmentItem1
            // 
            this.toggleTableCellsTopCenterAlignmentItem1.Id = 128;
            this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
            // 
            // toggleTableCellsMiddleCenterAlignmentItem1
            // 
            this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 129;
            this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
            // 
            // toggleTableCellsBottomCenterAlignmentItem1
            // 
            this.toggleTableCellsBottomCenterAlignmentItem1.Id = 130;
            this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
            // 
            // toggleTableCellsTopRightAlignmentItem1
            // 
            this.toggleTableCellsTopRightAlignmentItem1.Id = 131;
            this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
            // 
            // toggleTableCellsMiddleRightAlignmentItem1
            // 
            this.toggleTableCellsMiddleRightAlignmentItem1.Id = 132;
            this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
            // 
            // toggleTableCellsBottomRightAlignmentItem1
            // 
            this.toggleTableCellsBottomRightAlignmentItem1.Id = 133;
            this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
            // 
            // showTableOptionsFormItem1
            // 
            this.showTableOptionsFormItem1.Id = 134;
            this.showTableOptionsFormItem1.Name = "showTableOptionsFormItem1";
            // 
            // tableToolsRibbonPageCategory1
            // 
            this.tableToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(233)))), ((int)(((byte)(20)))));
            this.tableToolsRibbonPageCategory1.Control = this.m_richedit_noi_dung_email;
            this.tableToolsRibbonPageCategory1.Name = "tableToolsRibbonPageCategory1";
            this.tableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.tableDesignRibbonPage1,
            this.tableLayoutRibbonPage1});
            // 
            // tableDesignRibbonPage1
            // 
            this.tableDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableStyleOptionsRibbonPageGroup1,
            this.tableStylesRibbonPageGroup1,
            this.tableDrawBordersRibbonPageGroup1});
            this.tableDesignRibbonPage1.Name = "tableDesignRibbonPage1";
            // 
            // tableStyleOptionsRibbonPageGroup1
            // 
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedRowsItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedColumnsItem1);
            this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
            // 
            // tableStylesRibbonPageGroup1
            // 
            this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableStyleItem1);
            this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
            // 
            // tableDrawBordersRibbonPageGroup1
            // 
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineStyleItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineWeightItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderColorItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBordersItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableCellsShadingItem1);
            this.tableDrawBordersRibbonPageGroup1.Name = "tableDrawBordersRibbonPageGroup1";
            // 
            // tableLayoutRibbonPage1
            // 
            this.tableLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableTableRibbonPageGroup1,
            this.tableRowsAndColumnsRibbonPageGroup1,
            this.tableMergeRibbonPageGroup1,
            this.tableCellSizeRibbonPageGroup1,
            this.tableAlignmentRibbonPageGroup1});
            this.tableLayoutRibbonPage1.Name = "tableLayoutRibbonPage1";
            // 
            // tableTableRibbonPageGroup1
            // 
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.selectTableElementsItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.toggleShowTableGridLinesItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.showTablePropertiesFormItem1);
            this.tableTableRibbonPageGroup1.Name = "tableTableRibbonPageGroup1";
            // 
            // tableRowsAndColumnsRibbonPageGroup1
            // 
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.deleteTableElementsItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowAboveItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowBelowItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToLeftItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToRightItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.Name = "tableRowsAndColumnsRibbonPageGroup1";
            // 
            // tableMergeRibbonPageGroup1
            // 
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.mergeTableCellsItem1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.showSplitTableCellsForm1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.splitTableItem1);
            this.tableMergeRibbonPageGroup1.Name = "tableMergeRibbonPageGroup1";
            // 
            // tableCellSizeRibbonPageGroup1
            // 
            this.tableCellSizeRibbonPageGroup1.AllowTextClipping = false;
            this.tableCellSizeRibbonPageGroup1.ItemLinks.Add(this.toggleTableAutoFitItem1);
            this.tableCellSizeRibbonPageGroup1.Name = "tableCellSizeRibbonPageGroup1";
            // 
            // tableAlignmentRibbonPageGroup1
            // 
            this.tableAlignmentRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("tableAlignmentRibbonPageGroup1.Glyph")));
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.showTableOptionsFormItem1);
            this.tableAlignmentRibbonPageGroup1.Name = "tableAlignmentRibbonPageGroup1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            reduceOperation4.Behavior = DevExpress.XtraBars.Ribbon.ReduceOperationBehavior.UntilAvailable;
            reduceOperation4.Group = this.stylesRibbonPageGroup1;
            reduceOperation4.ItemLinkIndex = 0;
            reduceOperation4.ItemLinksCount = 0;
            reduceOperation4.Operation = DevExpress.XtraBars.Ribbon.ReduceOperationType.Gallery;
            this.homeRibbonPage1.ReduceOperations.Add(reduceOperation4);
            // 
            // clipboardRibbonPageGroup1
            // 
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            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.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // insertRibbonPage1
            // 
            this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pagesRibbonPageGroup1,
            this.tablesRibbonPageGroup1,
            this.illustrationsRibbonPageGroup1,
            this.linksRibbonPageGroup1,
            this.headerFooterRibbonPageGroup1,
            this.textRibbonPageGroup1,
            this.symbolsRibbonPageGroup1});
            this.insertRibbonPage1.Name = "insertRibbonPage1";
            // 
            // pagesRibbonPageGroup1
            // 
            this.pagesRibbonPageGroup1.AllowTextClipping = false;
            this.pagesRibbonPageGroup1.ItemLinks.Add(this.insertPageBreakItem21);
            this.pagesRibbonPageGroup1.Name = "pagesRibbonPageGroup1";
            // 
            // tablesRibbonPageGroup1
            // 
            this.tablesRibbonPageGroup1.AllowTextClipping = false;
            this.tablesRibbonPageGroup1.ItemLinks.Add(this.insertTableItem1);
            this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertPictureItem1);
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertFloatingPictureItem1);
            this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
            // 
            // linksRibbonPageGroup1
            // 
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertBookmarkItem1);
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertHyperlinkItem1);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // headerFooterRibbonPageGroup1
            // 
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageHeaderItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageFooterItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageNumberItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageCountItem1);
            this.headerFooterRibbonPageGroup1.Name = "headerFooterRibbonPageGroup1";
            // 
            // textRibbonPageGroup1
            // 
            this.textRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("textRibbonPageGroup1.Glyph")));
            this.textRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxItem1);
            this.textRibbonPageGroup1.Name = "textRibbonPageGroup1";
            // 
            // symbolsRibbonPageGroup1
            // 
            this.symbolsRibbonPageGroup1.AllowTextClipping = false;
            this.symbolsRibbonPageGroup1.ItemLinks.Add(this.insertSymbolItem1);
            this.symbolsRibbonPageGroup1.Name = "symbolsRibbonPageGroup1";
            // 
            // mailingsRibbonPage1
            // 
            this.mailingsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.mailMergeRibbonPageGroup1});
            this.mailingsRibbonPage1.Name = "mailingsRibbonPage1";
            // 
            // mailMergeRibbonPageGroup1
            // 
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.insertMergeFieldItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.toggleViewMergedDataItem1);
            this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.m_pan_button, 0, 2);
            this.tableLayoutPanel1.Controls.Add(this.m_richedit_noi_dung_email, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 144);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(1093, 557);
            this.tableLayoutPanel1.TabIndex = 16;
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.panel3);
            this.panel5.Controls.Add(this.panel1);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel5.Location = new System.Drawing.Point(0, -10);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(1087, 50);
            this.panel5.TabIndex = 5;
            // 
            // richEditBarController1
            // 
            this.richEditBarController1.BarItems.Add(this.undoItem1);
            this.richEditBarController1.BarItems.Add(this.redoItem1);
            this.richEditBarController1.BarItems.Add(this.fileNewItem1);
            this.richEditBarController1.BarItems.Add(this.fileOpenItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.richEditBarController1.BarItems.Add(this.quickPrintItem1);
            this.richEditBarController1.BarItems.Add(this.printItem1);
            this.richEditBarController1.BarItems.Add(this.printPreviewItem1);
            this.richEditBarController1.BarItems.Add(this.pasteItem1);
            this.richEditBarController1.BarItems.Add(this.cutItem1);
            this.richEditBarController1.BarItems.Add(this.copyItem1);
            this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.richEditBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.richEditBarController1.BarItems.Add(this.findItem1);
            this.richEditBarController1.BarItems.Add(this.replaceItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageBreakItem21);
            this.richEditBarController1.BarItems.Add(this.insertTableItem1);
            this.richEditBarController1.BarItems.Add(this.insertPictureItem1);
            this.richEditBarController1.BarItems.Add(this.insertFloatingPictureItem1);
            this.richEditBarController1.BarItems.Add(this.insertBookmarkItem1);
            this.richEditBarController1.BarItems.Add(this.insertHyperlinkItem1);
            this.richEditBarController1.BarItems.Add(this.editPageHeaderItem1);
            this.richEditBarController1.BarItems.Add(this.editPageFooterItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageNumberItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageCountItem1);
            this.richEditBarController1.BarItems.Add(this.insertTextBoxItem1);
            this.richEditBarController1.BarItems.Add(this.insertSymbolItem1);
            this.richEditBarController1.BarItems.Add(this.insertMergeFieldItem1);
            this.richEditBarController1.BarItems.Add(this.showAllFieldCodesItem1);
            this.richEditBarController1.BarItems.Add(this.showAllFieldResultsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleViewMergedDataItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFirstRowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLastRowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBandedRowsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFirstColumnItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLastColumnItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBandedColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeTableStyleItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
            this.richEditBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableElementsItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableCellItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableColumnItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableRowItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableItem1);
            this.richEditBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableElementsItem1);
            this.richEditBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableRowsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableRowAboveItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableRowBelowItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
            this.richEditBarController1.BarItems.Add(this.mergeTableCellsItem1);
            this.richEditBarController1.BarItems.Add(this.showSplitTableCellsForm1);
            this.richEditBarController1.BarItems.Add(this.splitTableItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.showTableOptionsFormItem1);
            this.richEditBarController1.Control = this.m_richedit_noi_dung_email;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.label2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(133, 50);
            this.panel1.TabIndex = 6;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.m_txt_ma_email);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(133, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(954, 50);
            this.panel3.TabIndex = 7;
            // 
            // f101_dm_mau_email_de
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1093, 701);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "f101_dm_mau_email_de";
            this.Ribbon = this.ribbonControl1;
            this.Text = "f101_dm_mau_email_de";
            this.Load += new System.EventHandler(this.f101_dm_mau_email_de_Load);
            this.panel2.ResumeLayout(false);
            this.panel8.ResumeLayout(false);
            this.panel10.ResumeLayout(false);
            this.panel10.PerformLayout();
            this.panel9.ResumeLayout(false);
            this.panel9.PerformLayout();
            this.panel7.ResumeLayout(false);
            this.panel12.ResumeLayout(false);
            this.panel12.PerformLayout();
            this.panel11.ResumeLayout(false);
            this.panel11.PerformLayout();
            this.m_pan_button.ResumeLayout(false);
            this.panel14.ResumeLayout(false);
            this.panel13.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
            this.tableLayoutPanel1.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #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();
            DevExpress.XtraSplashScreen.SplashScreenManager splashScreenManager1 = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::fftcatcher.SplashScreen1), true, true);
            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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup4 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem27 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup5 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup6 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup7 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.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.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 spreadsheetCommandGalleryItemGroup8 = 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.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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem59 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup9 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem67 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem68 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup10 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem69 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem70 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem71 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem72 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup11 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem73 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem74 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem75 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem76 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup12 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem81 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup13 = 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 spreadsheetCommandGalleryItemGroup14 = 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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem86 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem87 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup15 = 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 spreadsheetCommandGalleryItemGroup16 = 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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem94 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup17 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem95 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem96 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem97 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem98 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup18 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem99 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            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 spreadsheetCommandGalleryItemGroup19 = 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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem106 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup20 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem107 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem108 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup21 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem113 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup22 = 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 spreadsheetCommandGalleryItemGroup23 = 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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup24 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem118 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem119 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup25 = 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 spreadsheetCommandGalleryItemGroup26 = 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 spreadsheetCommandGalleryItemGroup27 = 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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem128 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup28 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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 spreadsheetCommandGalleryItemGroup29 = 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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup30 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup31 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem138 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem139 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem140 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup32 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup33 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem146 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem147 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup34 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem148 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem149 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem150 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem151 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup35 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup36 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            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.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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup37 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem167 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            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.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem172 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem173 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup38 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem174 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem175 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            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.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup39 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem179 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem180 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem181 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup spreadsheetCommandGalleryItemGroup40 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItemGroup();
            DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem spreadsheetCommandGalleryItem182 = new DevExpress.XtraSpreadsheet.UI.SpreadsheetCommandGalleryItem();
            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();
            this.commandBarGalleryDropDown21 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.appMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.iExit = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonImageCollection = new DevExpress.Utils.ImageCollection(this.components);
            this.iHelp = new DevExpress.XtraBars.BarButtonItem();
            this.iAbout = new DevExpress.XtraBars.BarButtonItem();
            this.siStatus = new DevExpress.XtraBars.BarStaticItem();
            this.siInfo = new DevExpress.XtraBars.BarStaticItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            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.ribbonImageCollectionLarge = new DevExpress.Utils.ImageCollection(this.components);
            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.ribbonPageSkins = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.skinsRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.helpRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.helpRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.repositoryItemSpreadsheetFontSizeEdit1 = new DevExpress.XtraSpreadsheet.Design.RepositoryItemSpreadsheetFontSizeEdit();
            this.repositoryItemPopupGalleryEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupGalleryEdit();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.commandBarGalleryDropDown1 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown2 = 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.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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.pictureEditPattern = new DevExpress.XtraEditors.PictureEdit();
            this.propertyGridControl1 = new DevExpress.XtraVerticalGrid.PropertyGridControl();
            this.pictureEditFile = new DevExpress.XtraEditors.PictureEdit();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).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.commandBarGalleryDropDown22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown23)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown24)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEditPattern.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.propertyGridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEditFile.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // commandBarGalleryDropDown21
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown21.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup1.Caption = "Gradient Fill";
            spreadsheetCommandGalleryItemGroup1.CommandName = "ConditionalFormattingDataBarsGradientFillCommandGroup";
            spreadsheetCommandGalleryItem1.Caption = "Blue Data Bar (Gradient)";
            spreadsheetCommandGalleryItem1.CommandName = "ConditionalFormattingDataBarGradientBlue";
            spreadsheetCommandGalleryItem1.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.";
            spreadsheetCommandGalleryItem1.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.";
            spreadsheetCommandGalleryItem2.Caption = "Green Data Bar (Gradient)";
            spreadsheetCommandGalleryItem2.CommandName = "ConditionalFormattingDataBarGradientGreen";
            spreadsheetCommandGalleryItem2.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.";
            spreadsheetCommandGalleryItem2.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.";
            spreadsheetCommandGalleryItem3.Caption = "Red Data Bar (Gradient)";
            spreadsheetCommandGalleryItem3.CommandName = "ConditionalFormattingDataBarGradientRed";
            spreadsheetCommandGalleryItem3.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.";
            spreadsheetCommandGalleryItem3.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.";
            spreadsheetCommandGalleryItem4.Caption = "Orange Data Bar (Gradient)";
            spreadsheetCommandGalleryItem4.CommandName = "ConditionalFormattingDataBarGradientOrange";
            spreadsheetCommandGalleryItem4.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.";
            spreadsheetCommandGalleryItem4.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.";
            spreadsheetCommandGalleryItem5.Caption = "Light Blue Data Bar (Gradient)";
            spreadsheetCommandGalleryItem5.CommandName = "ConditionalFormattingDataBarGradientLightBlue";
            spreadsheetCommandGalleryItem5.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.";
            spreadsheetCommandGalleryItem5.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.";
            spreadsheetCommandGalleryItem6.Caption = "Purple Data Bar (Gradient)";
            spreadsheetCommandGalleryItem6.CommandName = "ConditionalFormattingDataBarGradientPurple";
            spreadsheetCommandGalleryItem6.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.";
            spreadsheetCommandGalleryItem6.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.";
            spreadsheetCommandGalleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem1,
            spreadsheetCommandGalleryItem2,
            spreadsheetCommandGalleryItem3,
            spreadsheetCommandGalleryItem4,
            spreadsheetCommandGalleryItem5,
            spreadsheetCommandGalleryItem6});
            spreadsheetCommandGalleryItemGroup2.Caption = "Solid Fill";
            spreadsheetCommandGalleryItemGroup2.CommandName = "ConditionalFormattingDataBarsSolidFillCommandGroup";
            spreadsheetCommandGalleryItem7.Caption = "Blue Data Bar (Solid)";
            spreadsheetCommandGalleryItem7.CommandName = "ConditionalFormattingDataBarSolidBlue";
            spreadsheetCommandGalleryItem7.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.";
            spreadsheetCommandGalleryItem7.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.";
            spreadsheetCommandGalleryItem8.Caption = "Green Data Bar (Solid)";
            spreadsheetCommandGalleryItem8.CommandName = "ConditionalFormattingDataBarSolidGreen";
            spreadsheetCommandGalleryItem8.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.";
            spreadsheetCommandGalleryItem8.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.";
            spreadsheetCommandGalleryItem9.Caption = "Red Data Bar (Solid)";
            spreadsheetCommandGalleryItem9.CommandName = "ConditionalFormattingDataBarSolidRed";
            spreadsheetCommandGalleryItem9.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.";
            spreadsheetCommandGalleryItem9.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.";
            spreadsheetCommandGalleryItem10.Caption = "Orange Data Bar (Solid)";
            spreadsheetCommandGalleryItem10.CommandName = "ConditionalFormattingDataBarSolidOrange";
            spreadsheetCommandGalleryItem10.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.";
            spreadsheetCommandGalleryItem10.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.";
            spreadsheetCommandGalleryItem11.Caption = "Light Blue Data Bar (Solid)";
            spreadsheetCommandGalleryItem11.CommandName = "ConditionalFormattingDataBarSolidLightBlue";
            spreadsheetCommandGalleryItem11.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.";
            spreadsheetCommandGalleryItem11.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.";
            spreadsheetCommandGalleryItem12.Caption = "Purple Data Bar (Solid)";
            spreadsheetCommandGalleryItem12.CommandName = "ConditionalFormattingDataBarSolidPurple";
            spreadsheetCommandGalleryItem12.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.";
            spreadsheetCommandGalleryItem12.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.";
            spreadsheetCommandGalleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem7,
            spreadsheetCommandGalleryItem8,
            spreadsheetCommandGalleryItem9,
            spreadsheetCommandGalleryItem10,
            spreadsheetCommandGalleryItem11,
            spreadsheetCommandGalleryItem12});
            this.commandBarGalleryDropDown21.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup1,
            spreadsheetCommandGalleryItemGroup2});
            this.commandBarGalleryDropDown21.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown21.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown21.Name = "commandBarGalleryDropDown21";
            this.commandBarGalleryDropDown21.Ribbon = this.ribbonControl;
            // 
            // ribbonControl
            // 
            this.ribbonControl.ApplicationButtonDropDownControl = this.appMenu;
            this.ribbonControl.ApplicationButtonText = null;
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Images = this.ribbonImageCollection;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.iExit,
            this.iHelp,
            this.iAbout,
            this.siStatus,
            this.siInfo,
            this.rgbiSkins,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barButtonItem5,
            this.barCheckItem1,
            this.barCheckItem2});
            this.ribbonControl.LargeImages = this.ribbonImageCollectionLarge;
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 339;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.PageHeaderItemLinks.Add(this.iAbout);
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPageSkins,
            this.helpRibbonPage});
            this.ribbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemFontEdit1,
            this.repositoryItemSpreadsheetFontSizeEdit1,
            this.repositoryItemPopupGalleryEdit1});
            this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl.Size = new System.Drawing.Size(1100, 219);
            this.ribbonControl.StatusBar = this.ribbonStatusBar;
            this.ribbonControl.Toolbar.ItemLinks.Add(this.iHelp);
            // 
            // appMenu
            // 
            this.appMenu.ItemLinks.Add(this.iExit);
            this.appMenu.Name = "appMenu";
            this.appMenu.Ribbon = this.ribbonControl;
            this.appMenu.ShowRightPane = true;
            // 
            // iExit
            // 
            this.iExit.Caption = "Exit";
            this.iExit.Description = "Closes this program after prompting you to save unsaved data.";
            this.iExit.Hint = "Closes this program after prompting you to save unsaved data";
            this.iExit.Id = 20;
            this.iExit.ImageIndex = 6;
            this.iExit.LargeImageIndex = 6;
            this.iExit.Name = "iExit";
            // 
            // ribbonImageCollection
            // 
            this.ribbonImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollection.ImageStream")));
            this.ribbonImageCollection.Images.SetKeyName(0, "Ribbon_Exit_16x16.png");
            this.ribbonImageCollection.Images.SetKeyName(1, "Ribbon_Content_16x16.png");
            this.ribbonImageCollection.Images.SetKeyName(2, "Ribbon_Info_16x16.png");
            // 
            // iHelp
            // 
            this.iHelp.Caption = "Help";
            this.iHelp.Description = "Start the program help system.";
            this.iHelp.Hint = "Start the program help system";
            this.iHelp.Id = 22;
            this.iHelp.ImageIndex = 7;
            this.iHelp.LargeImageIndex = 7;
            this.iHelp.Name = "iHelp";
            // 
            // iAbout
            // 
            this.iAbout.Caption = "About";
            this.iAbout.Description = "Displays general program information.";
            this.iAbout.Hint = "Displays general program information";
            this.iAbout.Id = 24;
            this.iAbout.ImageIndex = 8;
            this.iAbout.LargeImageIndex = 8;
            this.iAbout.Name = "iAbout";
            this.iAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAbout_ItemClick);
            // 
            // siStatus
            // 
            this.siStatus.Caption = "Some Status Info";
            this.siStatus.Id = 31;
            this.siStatus.Name = "siStatus";
            this.siStatus.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // siInfo
            // 
            this.siInfo.Caption = "Some Info";
            this.siInfo.Id = 32;
            this.siInfo.Name = "siInfo";
            this.siInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Caption = "Skins";
            // 
            // 
            // 
            this.rgbiSkins.Gallery.AllowHoverImages = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiSkins.Gallery.ColumnCount = 4;
            this.rgbiSkins.Gallery.FixedHoverImageSize = false;
            this.rgbiSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
            this.rgbiSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.rgbiSkins.Gallery.RowCount = 4;
            this.rgbiSkins.Id = 60;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Open";
            this.barButtonItem1.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
            this.barButtonItem1.Id = 331;
            this.barButtonItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.LargeGlyph")));
            this.barButtonItem1.Name = "barButtonItem1";
            this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openFile_ItemClick);
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "SaveAs";
            this.barButtonItem2.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
            this.barButtonItem2.Id = 332;
            this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
            this.barButtonItem2.Name = "barButtonItem2";
            this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.saveAsFile_ItemClick);
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "Catch";
            this.barButtonItem3.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
            this.barButtonItem3.Id = 333;
            this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
            this.barButtonItem3.Name = "barButtonItem3";
            this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.catch_ItemClick);
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "Open Pattern";
            this.barButtonItem4.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.Glyph")));
            this.barButtonItem4.Id = 334;
            this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
            this.barButtonItem4.Name = "barButtonItem4";
            this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openPattern_ItemClick);
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Caption = "Vizualize";
            this.barButtonItem5.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.Glyph")));
            this.barButtonItem5.Id = 335;
            this.barButtonItem5.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.LargeGlyph")));
            this.barButtonItem5.Name = "barButtonItem5";
            this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.vizualize_ItemClick);
            // 
            // ribbonImageCollectionLarge
            // 
            this.ribbonImageCollectionLarge.ImageSize = new System.Drawing.Size(32, 32);
            this.ribbonImageCollectionLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollectionLarge.ImageStream")));
            this.ribbonImageCollectionLarge.Images.SetKeyName(0, "Ribbon_Exit_32x32.png");
            this.ribbonImageCollectionLarge.Images.SetKeyName(1, "Ribbon_Content_32x32.png");
            this.ribbonImageCollectionLarge.Images.SetKeyName(2, "Ribbon_Info_32x32.png");
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup4,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "File";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem4);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "ribbonPageGroup1";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem3);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.Text = "ribbonPageGroup2";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem5);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.Text = "ribbonPageGroup3";
            // 
            // ribbonPageSkins
            // 
            this.ribbonPageSkins.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.skinsRibbonPageGroup});
            this.ribbonPageSkins.Name = "ribbonPageSkins";
            this.ribbonPageSkins.Text = "Skins";
            // 
            // skinsRibbonPageGroup
            // 
            this.skinsRibbonPageGroup.ItemLinks.Add(this.rgbiSkins);
            this.skinsRibbonPageGroup.Name = "skinsRibbonPageGroup";
            this.skinsRibbonPageGroup.ShowCaptionButton = false;
            this.skinsRibbonPageGroup.Text = "Skins";
            // 
            // helpRibbonPage
            // 
            this.helpRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.helpRibbonPageGroup});
            this.helpRibbonPage.Name = "helpRibbonPage";
            this.helpRibbonPage.Text = "Help";
            // 
            // helpRibbonPageGroup
            // 
            this.helpRibbonPageGroup.ItemLinks.Add(this.iHelp);
            this.helpRibbonPageGroup.ItemLinks.Add(this.iAbout);
            this.helpRibbonPageGroup.Name = "helpRibbonPageGroup";
            this.helpRibbonPageGroup.Text = "Help";
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // 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";
            // 
            // 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 = null;
            this.repositoryItemSpreadsheetFontSizeEdit1.Name = "repositoryItemSpreadsheetFontSizeEdit1";
            // 
            // 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.Caption = "Общий";
            spreadsheetCommandGalleryItem13.CaptionAsValue = true;
            spreadsheetCommandGalleryItem13.CommandName = "FormatNumberGeneral";
            spreadsheetCommandGalleryItem13.IsEmptyHint = true;
            spreadsheetCommandGalleryItem13.Value = "Общий";
            spreadsheetCommandGalleryItem14.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem14.Caption = "Числовой";
            spreadsheetCommandGalleryItem14.CaptionAsValue = true;
            spreadsheetCommandGalleryItem14.CommandName = "FormatNumberDecimal";
            spreadsheetCommandGalleryItem14.IsEmptyHint = true;
            spreadsheetCommandGalleryItem14.Value = "Числовой";
            spreadsheetCommandGalleryItem15.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem15.Caption = "Денежный";
            spreadsheetCommandGalleryItem15.CaptionAsValue = true;
            spreadsheetCommandGalleryItem15.CommandName = "FormatNumberAccountingCurrency";
            spreadsheetCommandGalleryItem15.IsEmptyHint = true;
            spreadsheetCommandGalleryItem15.Value = "Денежный";
            spreadsheetCommandGalleryItem16.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem16.Caption = "Финансовый";
            spreadsheetCommandGalleryItem16.CaptionAsValue = true;
            spreadsheetCommandGalleryItem16.CommandName = "FormatNumberAccountingRegular";
            spreadsheetCommandGalleryItem16.IsEmptyHint = true;
            spreadsheetCommandGalleryItem16.Value = "Финансовый";
            spreadsheetCommandGalleryItem17.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem17.Caption = "Краткий формат даты";
            spreadsheetCommandGalleryItem17.CaptionAsValue = true;
            spreadsheetCommandGalleryItem17.CommandName = "FormatNumberShortDate";
            spreadsheetCommandGalleryItem17.IsEmptyHint = true;
            spreadsheetCommandGalleryItem17.Value = "Краткий формат даты";
            spreadsheetCommandGalleryItem18.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem18.Caption = "Длинный формат даты";
            spreadsheetCommandGalleryItem18.CaptionAsValue = true;
            spreadsheetCommandGalleryItem18.CommandName = "FormatNumberLongDate";
            spreadsheetCommandGalleryItem18.IsEmptyHint = true;
            spreadsheetCommandGalleryItem18.Value = "Длинный формат даты";
            spreadsheetCommandGalleryItem19.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem19.Caption = "Время";
            spreadsheetCommandGalleryItem19.CaptionAsValue = true;
            spreadsheetCommandGalleryItem19.CommandName = "FormatNumberTime";
            spreadsheetCommandGalleryItem19.IsEmptyHint = true;
            spreadsheetCommandGalleryItem19.Value = "Время";
            spreadsheetCommandGalleryItem20.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem20.Caption = "Процентный";
            spreadsheetCommandGalleryItem20.CaptionAsValue = true;
            spreadsheetCommandGalleryItem20.CommandName = "FormatNumberPercentage";
            spreadsheetCommandGalleryItem20.IsEmptyHint = true;
            spreadsheetCommandGalleryItem20.Value = "Процентный";
            spreadsheetCommandGalleryItem21.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem21.Caption = "Дробный";
            spreadsheetCommandGalleryItem21.CaptionAsValue = true;
            spreadsheetCommandGalleryItem21.CommandName = "FormatNumberFraction";
            spreadsheetCommandGalleryItem21.IsEmptyHint = true;
            spreadsheetCommandGalleryItem21.Value = "Дробный";
            spreadsheetCommandGalleryItem22.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem22.Caption = "Экспоненциальный";
            spreadsheetCommandGalleryItem22.CaptionAsValue = true;
            spreadsheetCommandGalleryItem22.CommandName = "FormatNumberScientific";
            spreadsheetCommandGalleryItem22.IsEmptyHint = true;
            spreadsheetCommandGalleryItem22.Value = "Экспоненциальный";
            spreadsheetCommandGalleryItem23.AlwaysUpdateDescription = true;
            spreadsheetCommandGalleryItem23.Caption = "Текстовый";
            spreadsheetCommandGalleryItem23.CaptionAsValue = true;
            spreadsheetCommandGalleryItem23.CommandName = "FormatNumberText";
            spreadsheetCommandGalleryItem23.IsEmptyHint = true;
            spreadsheetCommandGalleryItem23.Value = "Текстовый";
            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;
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.siStatus);
            this.ribbonStatusBar.ItemLinks.Add(this.siInfo);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 652);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbonControl;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1100, 48);
            // 
            // commandBarGalleryDropDown1
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown1.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown1.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup3.Caption = "Chart Title";
            spreadsheetCommandGalleryItemGroup3.CommandName = "ChartTitleCommandGroup";
            spreadsheetCommandGalleryItem24.Caption = "Нет";
            spreadsheetCommandGalleryItem24.CommandName = "ChartTitleNone";
            spreadsheetCommandGalleryItem24.Description = "Do not display a chart Title";
            spreadsheetCommandGalleryItem24.Hint = "Do not display a chart Title";
            spreadsheetCommandGalleryItem25.Caption = "Centered Overlay Title";
            spreadsheetCommandGalleryItem25.CommandName = "ChartTitleCenteredOverlay";
            spreadsheetCommandGalleryItem25.Description = "Overlay centered Title on chart without resizing chart";
            spreadsheetCommandGalleryItem25.Hint = "Overlay centered Title on chart without resizing chart";
            spreadsheetCommandGalleryItem26.Caption = "Above Chart";
            spreadsheetCommandGalleryItem26.CommandName = "ChartTitleAbove";
            spreadsheetCommandGalleryItem26.Description = "Display Title at top of chart area and resize chart";
            spreadsheetCommandGalleryItem26.Hint = "Display Title at top of chart area and resize chart";
            spreadsheetCommandGalleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem24,
            spreadsheetCommandGalleryItem25,
            spreadsheetCommandGalleryItem26});
            this.commandBarGalleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup3});
            this.commandBarGalleryDropDown1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown1.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown1.Name = "commandBarGalleryDropDown1";
            this.commandBarGalleryDropDown1.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown2
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown2.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown2.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup4.Caption = "Primary Horizontal Axis Title";
            spreadsheetCommandGalleryItemGroup4.CommandName = "ChartPrimaryHorizontalAxisTitleCommandGroup";
            spreadsheetCommandGalleryItem27.Caption = "Нет";
            spreadsheetCommandGalleryItem27.CommandName = "ChartPrimaryHorizontalAxisTitleNone";
            spreadsheetCommandGalleryItem27.Description = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem27.Hint = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem28.Caption = "Title Below Axis";
            spreadsheetCommandGalleryItem28.CommandName = "ChartPrimaryHorizontalAxisTitleBelow";
            spreadsheetCommandGalleryItem28.Description = "Display Title below Horizontal Axis and resize chart";
            spreadsheetCommandGalleryItem28.Hint = "Display Title below Horizontal Axis and resize chart";
            spreadsheetCommandGalleryItemGroup4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem27,
            spreadsheetCommandGalleryItem28});
            this.commandBarGalleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup4});
            this.commandBarGalleryDropDown2.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown2.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown2.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown2.Name = "commandBarGalleryDropDown2";
            this.commandBarGalleryDropDown2.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown3
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown3.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown3.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup5.Caption = "Primary Vertical Axis Title";
            spreadsheetCommandGalleryItemGroup5.CommandName = "ChartPrimaryVerticalAxisTitleCommandGroup";
            spreadsheetCommandGalleryItem29.Caption = "Нет";
            spreadsheetCommandGalleryItem29.CommandName = "ChartPrimaryVerticalAxisTitleNone";
            spreadsheetCommandGalleryItem29.Description = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem29.Hint = "Do not display an Axis Title";
            spreadsheetCommandGalleryItem30.Caption = "Rotated Title";
            spreadsheetCommandGalleryItem30.CommandName = "ChartPrimaryVerticalAxisTitleRotated";
            spreadsheetCommandGalleryItem30.Description = "Display Rotated Axis Title and resize chart";
            spreadsheetCommandGalleryItem30.Hint = "Display Rotated Axis Title and resize chart";
            spreadsheetCommandGalleryItem31.Caption = "Vertical Title";
            spreadsheetCommandGalleryItem31.CommandName = "ChartPrimaryVerticalAxisTitleVertical";
            spreadsheetCommandGalleryItem31.Description = "Display Axis Title with vertical text and resize chart";
            spreadsheetCommandGalleryItem31.Hint = "Display Axis Title with vertical text and resize chart";
            spreadsheetCommandGalleryItem32.Caption = "Horizontal Title";
            spreadsheetCommandGalleryItem32.CommandName = "ChartPrimaryVerticalAxisTitleHorizontal";
            spreadsheetCommandGalleryItem32.Description = "Display Axis Title horizontally and resize chart";
            spreadsheetCommandGalleryItem32.Hint = "Display Axis Title horizontally and resize chart";
            spreadsheetCommandGalleryItemGroup5.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem29,
            spreadsheetCommandGalleryItem30,
            spreadsheetCommandGalleryItem31,
            spreadsheetCommandGalleryItem32});
            this.commandBarGalleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup5});
            this.commandBarGalleryDropDown3.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown3.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown3.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown3.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown3.Name = "commandBarGalleryDropDown3";
            this.commandBarGalleryDropDown3.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown4
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown4.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown4.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup6.Caption = "Легенда";
            spreadsheetCommandGalleryItemGroup6.CommandName = "ChartLegendCommandGroup";
            spreadsheetCommandGalleryItem33.Caption = "Нет";
            spreadsheetCommandGalleryItem33.CommandName = "ChartLegendNone";
            spreadsheetCommandGalleryItem33.Description = "Turn off Legend";
            spreadsheetCommandGalleryItem33.Hint = "Turn off Legend";
            spreadsheetCommandGalleryItem34.Caption = "Show Legend at Right";
            spreadsheetCommandGalleryItem34.CommandName = "ChartLegendAtRight";
            spreadsheetCommandGalleryItem34.Description = "Show Legend and align right";
            spreadsheetCommandGalleryItem34.Hint = "Show Legend and align right";
            spreadsheetCommandGalleryItem35.Caption = "Show Legend at Top";
            spreadsheetCommandGalleryItem35.CommandName = "ChartLegendAtTop";
            spreadsheetCommandGalleryItem35.Description = "Show Legend and align top";
            spreadsheetCommandGalleryItem35.Hint = "Show Legend and align top";
            spreadsheetCommandGalleryItem36.Caption = "Show Legend at Left";
            spreadsheetCommandGalleryItem36.CommandName = "ChartLegendAtLeft";
            spreadsheetCommandGalleryItem36.Description = "Show Legend and align left";
            spreadsheetCommandGalleryItem36.Hint = "Show Legend and align left";
            spreadsheetCommandGalleryItem37.Caption = "Show Legend at Bottom";
            spreadsheetCommandGalleryItem37.CommandName = "ChartLegendAtBottom";
            spreadsheetCommandGalleryItem37.Description = "Show Legend and align bottom";
            spreadsheetCommandGalleryItem37.Hint = "Show Legend and align bottom";
            spreadsheetCommandGalleryItem38.Caption = "Overlay Legend at Right";
            spreadsheetCommandGalleryItem38.CommandName = "ChartLegendOverlayAtRight";
            spreadsheetCommandGalleryItem38.Description = "Show Legend at right of the chart without resizing";
            spreadsheetCommandGalleryItem38.Hint = "Show Legend at right of the chart without resizing";
            spreadsheetCommandGalleryItem39.Caption = "Overlay Legend at Left";
            spreadsheetCommandGalleryItem39.CommandName = "ChartLegendOverlayAtLeft";
            spreadsheetCommandGalleryItem39.Description = "Show Legend at left of the chart without resizing";
            spreadsheetCommandGalleryItem39.Hint = "Show Legend at left of the chart without resizing";
            spreadsheetCommandGalleryItemGroup6.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem33,
            spreadsheetCommandGalleryItem34,
            spreadsheetCommandGalleryItem35,
            spreadsheetCommandGalleryItem36,
            spreadsheetCommandGalleryItem37,
            spreadsheetCommandGalleryItem38,
            spreadsheetCommandGalleryItem39});
            this.commandBarGalleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup6});
            this.commandBarGalleryDropDown4.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown4.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown4.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown4.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown4.Name = "commandBarGalleryDropDown4";
            this.commandBarGalleryDropDown4.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown5
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown5.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown5.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup7.Caption = "Data Labels";
            spreadsheetCommandGalleryItemGroup7.CommandName = "ChartDataLabelsCommandGroup";
            spreadsheetCommandGalleryItem40.Caption = "Нет";
            spreadsheetCommandGalleryItem40.CommandName = "ChartDataLabelsNone";
            spreadsheetCommandGalleryItem40.Description = "Turn off Data Labels for selection";
            spreadsheetCommandGalleryItem40.Hint = "Turn off Data Labels for selection";
            spreadsheetCommandGalleryItem41.Caption = "Показать";
            spreadsheetCommandGalleryItem41.CommandName = "ChartDataLabelsDefault";
            spreadsheetCommandGalleryItem41.Description = "Turn on Data Labels for selection";
            spreadsheetCommandGalleryItem41.Hint = "Turn on Data Labels for selection";
            spreadsheetCommandGalleryItem42.Caption = "По центру";
            spreadsheetCommandGalleryItem42.CommandName = "ChartDataLabelsCenter";
            spreadsheetCommandGalleryItem42.Description = "Display Data Labels and position centered on the data point(s)";
            spreadsheetCommandGalleryItem42.Hint = "Display Data Labels and position centered on the data point(s)";
            spreadsheetCommandGalleryItem43.Caption = "Inside End";
            spreadsheetCommandGalleryItem43.CommandName = "ChartDataLabelsInsideEnd";
            spreadsheetCommandGalleryItem43.Description = "Display Data Labels and position inside the end of data point(s)";
            spreadsheetCommandGalleryItem43.Hint = "Display Data Labels and position inside the end of data point(s)";
            spreadsheetCommandGalleryItem44.Caption = "Inside Base";
            spreadsheetCommandGalleryItem44.CommandName = "ChartDataLabelsInsideBase";
            spreadsheetCommandGalleryItem44.Description = "Display Data Labels and position inside the base of data point(s)";
            spreadsheetCommandGalleryItem44.Hint = "Display Data Labels and position inside the base of data point(s)";
            spreadsheetCommandGalleryItem45.Caption = "Outside End";
            spreadsheetCommandGalleryItem45.CommandName = "ChartDataLabelsOutsideEnd";
            spreadsheetCommandGalleryItem45.Description = "Display Data Labels and position outside the end of data point(s)";
            spreadsheetCommandGalleryItem45.Hint = "Display Data Labels and position outside the end of data point(s)";
            spreadsheetCommandGalleryItem46.Caption = "Best Fit";
            spreadsheetCommandGalleryItem46.CommandName = "ChartDataLabelsBestFit";
            spreadsheetCommandGalleryItem46.Description = "Display Data Labels and position with Best Fit";
            spreadsheetCommandGalleryItem46.Hint = "Display Data Labels and position with Best Fit";
            spreadsheetCommandGalleryItem47.Caption = "Слева";
            spreadsheetCommandGalleryItem47.CommandName = "ChartDataLabelsLeft";
            spreadsheetCommandGalleryItem47.Description = "Display Data Labels and position left of the data point(s)";
            spreadsheetCommandGalleryItem47.Hint = "Display Data Labels and position left of the data point(s)";
            spreadsheetCommandGalleryItem48.Caption = "Справа";
            spreadsheetCommandGalleryItem48.CommandName = "ChartDataLabelsRight";
            spreadsheetCommandGalleryItem48.Description = "Display Data Labels and position right of the data point(s)";
            spreadsheetCommandGalleryItem48.Hint = "Display Data Labels and position right of the data point(s)";
            spreadsheetCommandGalleryItem49.Caption = "Above";
            spreadsheetCommandGalleryItem49.CommandName = "ChartDataLabelsAbove";
            spreadsheetCommandGalleryItem49.Description = "Display Data Labels and position above data point(s)";
            spreadsheetCommandGalleryItem49.Hint = "Display Data Labels and position above data point(s)";
            spreadsheetCommandGalleryItem50.Caption = "Below";
            spreadsheetCommandGalleryItem50.CommandName = "ChartDataLabelsBelow";
            spreadsheetCommandGalleryItem50.Description = "Display Data Labels and position below data point(s)";
            spreadsheetCommandGalleryItem50.Hint = "Display Data Labels and position below data point(s)";
            spreadsheetCommandGalleryItemGroup7.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem40,
            spreadsheetCommandGalleryItem41,
            spreadsheetCommandGalleryItem42,
            spreadsheetCommandGalleryItem43,
            spreadsheetCommandGalleryItem44,
            spreadsheetCommandGalleryItem45,
            spreadsheetCommandGalleryItem46,
            spreadsheetCommandGalleryItem47,
            spreadsheetCommandGalleryItem48,
            spreadsheetCommandGalleryItem49,
            spreadsheetCommandGalleryItem50});
            this.commandBarGalleryDropDown5.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup7});
            this.commandBarGalleryDropDown5.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown5.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown5.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown5.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown5.Name = "commandBarGalleryDropDown5";
            this.commandBarGalleryDropDown5.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown6
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown6.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown6.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup8.Caption = "Primary Horizontal Axis";
            spreadsheetCommandGalleryItemGroup8.CommandName = "ChartPrimaryHorizontalAxisCommandGroup";
            spreadsheetCommandGalleryItem51.Caption = "Нет";
            spreadsheetCommandGalleryItem51.CommandName = "ChartHidePrimaryHorizontalAxis";
            spreadsheetCommandGalleryItem51.Description = "Do not display axis.";
            spreadsheetCommandGalleryItem51.Hint = "Do not display axis.";
            spreadsheetCommandGalleryItem52.Caption = "Show Left to Right Axis";
            spreadsheetCommandGalleryItem52.CommandName = "ChartPrimaryHorizontalAxisLeftToRight";
            spreadsheetCommandGalleryItem52.Description = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem52.Hint = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem53.Caption = "Show Axis without Labeling";
            spreadsheetCommandGalleryItem53.CommandName = "ChartPrimaryHorizontalAxisHideLabels";
            spreadsheetCommandGalleryItem53.Description = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem53.Hint = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem54.Caption = "Show Right to Left Axis";
            spreadsheetCommandGalleryItem54.CommandName = "ChartPrimaryHorizontalAxisRightToLeft";
            spreadsheetCommandGalleryItem54.Description = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem54.Hint = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem55.Caption = "Show Default Axis";
            spreadsheetCommandGalleryItem55.CommandName = "ChartPrimaryHorizontalAxisDefault";
            spreadsheetCommandGalleryItem55.Description = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem55.Hint = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem56.Caption = "Show Axis in Thousands";
            spreadsheetCommandGalleryItem56.CommandName = "ChartPrimaryHorizontalAxisScaleThousands";
            spreadsheetCommandGalleryItem56.Description = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem56.Hint = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem57.Caption = "Show Axis in Millions";
            spreadsheetCommandGalleryItem57.CommandName = "ChartPrimaryHorizontalAxisScaleMillions";
            spreadsheetCommandGalleryItem57.Description = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem57.Hint = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem58.Caption = "Show Axis in Billions";
            spreadsheetCommandGalleryItem58.CommandName = "ChartPrimaryHorizontalAxisScaleBillions";
            spreadsheetCommandGalleryItem58.Description = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem58.Hint = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem59.Caption = "Show Axis in Log Scale";
            spreadsheetCommandGalleryItem59.CommandName = "ChartPrimaryHorizontalAxisScaleLogarithm";
            spreadsheetCommandGalleryItem59.Description = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItem59.Hint = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItemGroup8.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem51,
            spreadsheetCommandGalleryItem52,
            spreadsheetCommandGalleryItem53,
            spreadsheetCommandGalleryItem54,
            spreadsheetCommandGalleryItem55,
            spreadsheetCommandGalleryItem56,
            spreadsheetCommandGalleryItem57,
            spreadsheetCommandGalleryItem58,
            spreadsheetCommandGalleryItem59});
            this.commandBarGalleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup8});
            this.commandBarGalleryDropDown6.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown6.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown6.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown6.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown6.Name = "commandBarGalleryDropDown6";
            this.commandBarGalleryDropDown6.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown7
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown7.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown7.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup9.Caption = "Primary Vertical Axis";
            spreadsheetCommandGalleryItemGroup9.CommandName = "ChartPrimaryVerticalAxisCommandGroup";
            spreadsheetCommandGalleryItem60.Caption = "Нет";
            spreadsheetCommandGalleryItem60.CommandName = "ChartHidePrimaryVerticalAxis";
            spreadsheetCommandGalleryItem60.Description = "Do not display axis.";
            spreadsheetCommandGalleryItem60.Hint = "Do not display axis.";
            spreadsheetCommandGalleryItem61.Caption = "Show Left to Right Axis";
            spreadsheetCommandGalleryItem61.CommandName = "ChartPrimaryVerticalAxisLeftToRight";
            spreadsheetCommandGalleryItem61.Description = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem61.Hint = "Display Axis Left to Right with Labels";
            spreadsheetCommandGalleryItem62.Caption = "Show Axis without Labeling";
            spreadsheetCommandGalleryItem62.CommandName = "ChartPrimaryVerticalAxisHideLabels";
            spreadsheetCommandGalleryItem62.Description = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem62.Hint = "Display Axis without labels or tick marks";
            spreadsheetCommandGalleryItem63.Caption = "Show Right to Left Axis";
            spreadsheetCommandGalleryItem63.CommandName = "ChartPrimaryVerticalAxisRightToLeft";
            spreadsheetCommandGalleryItem63.Description = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem63.Hint = "Display Axis Right to Left with Labels";
            spreadsheetCommandGalleryItem64.Caption = "Show Default Axis";
            spreadsheetCommandGalleryItem64.CommandName = "ChartPrimaryVerticalAxisDefault";
            spreadsheetCommandGalleryItem64.Description = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem64.Hint = "Display Axis with default order and labels";
            spreadsheetCommandGalleryItem65.Caption = "Show Axis in Thousands";
            spreadsheetCommandGalleryItem65.CommandName = "ChartPrimaryVerticalAxisScaleThousands";
            spreadsheetCommandGalleryItem65.Description = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem65.Hint = "Display Axis with numbers represented in Thousands";
            spreadsheetCommandGalleryItem66.Caption = "Show Axis in Millions";
            spreadsheetCommandGalleryItem66.CommandName = "ChartPrimaryVerticalAxisScaleMillions";
            spreadsheetCommandGalleryItem66.Description = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem66.Hint = "Display Axis with numbers represented in Millions";
            spreadsheetCommandGalleryItem67.Caption = "Show Axis in Billions";
            spreadsheetCommandGalleryItem67.CommandName = "ChartPrimaryVerticalAxisScaleBillions";
            spreadsheetCommandGalleryItem67.Description = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem67.Hint = "Display Axis with numbers represented in Billions";
            spreadsheetCommandGalleryItem68.Caption = "Show Axis in Log Scale";
            spreadsheetCommandGalleryItem68.CommandName = "ChartPrimaryVerticalAxisScaleLogarithm";
            spreadsheetCommandGalleryItem68.Description = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItem68.Hint = "Display Axis using a log 10 base scale";
            spreadsheetCommandGalleryItemGroup9.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem60,
            spreadsheetCommandGalleryItem61,
            spreadsheetCommandGalleryItem62,
            spreadsheetCommandGalleryItem63,
            spreadsheetCommandGalleryItem64,
            spreadsheetCommandGalleryItem65,
            spreadsheetCommandGalleryItem66,
            spreadsheetCommandGalleryItem67,
            spreadsheetCommandGalleryItem68});
            this.commandBarGalleryDropDown7.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup9});
            this.commandBarGalleryDropDown7.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown7.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown7.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown7.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown7.Name = "commandBarGalleryDropDown7";
            this.commandBarGalleryDropDown7.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown8
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown8.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown8.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup10.Caption = "Primary Horizontal Gridlines";
            spreadsheetCommandGalleryItemGroup10.CommandName = "ChartPrimaryHorizontalGridlinesCommandGroup";
            spreadsheetCommandGalleryItem69.Caption = "Нет";
            spreadsheetCommandGalleryItem69.CommandName = "ChartPrimaryHorizontalGridlinesNone";
            spreadsheetCommandGalleryItem69.Description = "Do not display Horizontal Gridlines";
            spreadsheetCommandGalleryItem69.Hint = "Do not display Horizontal Gridlines";
            spreadsheetCommandGalleryItem70.Caption = "Major Gridlines";
            spreadsheetCommandGalleryItem70.CommandName = "ChartPrimaryHorizontalGridlinesMajor";
            spreadsheetCommandGalleryItem70.Description = "Display Horizontal Gridlines for Major units";
            spreadsheetCommandGalleryItem70.Hint = "Display Horizontal Gridlines for Major units";
            spreadsheetCommandGalleryItem71.Caption = "Minor Gridlines";
            spreadsheetCommandGalleryItem71.CommandName = "ChartPrimaryHorizontalGridlinesMinor";
            spreadsheetCommandGalleryItem71.Description = "Display Horizontal Gridlines for Minor units";
            spreadsheetCommandGalleryItem71.Hint = "Display Horizontal Gridlines for Minor units";
            spreadsheetCommandGalleryItem72.Caption = "Major & Minor Gridlines";
            spreadsheetCommandGalleryItem72.CommandName = "ChartPrimaryHorizontalGridlinesMajorAndMinor";
            spreadsheetCommandGalleryItem72.Description = "Display Horizontal Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItem72.Hint = "Display Horizontal Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItemGroup10.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem69,
            spreadsheetCommandGalleryItem70,
            spreadsheetCommandGalleryItem71,
            spreadsheetCommandGalleryItem72});
            this.commandBarGalleryDropDown8.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup10});
            this.commandBarGalleryDropDown8.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown8.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown8.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown8.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown8.Name = "commandBarGalleryDropDown8";
            this.commandBarGalleryDropDown8.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown9
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown9.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown9.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup11.Caption = "Primary Vertical Gridlines";
            spreadsheetCommandGalleryItemGroup11.CommandName = "ChartPrimaryVerticalGridlinesCommandGroup";
            spreadsheetCommandGalleryItem73.Caption = "Нет";
            spreadsheetCommandGalleryItem73.CommandName = "ChartPrimaryVerticalGridlinesNone";
            spreadsheetCommandGalleryItem73.Description = "Do not display Vertical Gridlines";
            spreadsheetCommandGalleryItem73.Hint = "Do not display Vertical Gridlines";
            spreadsheetCommandGalleryItem74.Caption = "Major Gridlines";
            spreadsheetCommandGalleryItem74.CommandName = "ChartPrimaryVerticalGridlinesMajor";
            spreadsheetCommandGalleryItem74.Description = "Display Vertical Gridlines for Major units";
            spreadsheetCommandGalleryItem74.Hint = "Display Vertical Gridlines for Major units";
            spreadsheetCommandGalleryItem75.Caption = "Minor Gridlines";
            spreadsheetCommandGalleryItem75.CommandName = "ChartPrimaryVerticalGridlinesMinor";
            spreadsheetCommandGalleryItem75.Description = "Display Vertical Gridlines for Minor units";
            spreadsheetCommandGalleryItem75.Hint = "Display Vertical Gridlines for Minor units";
            spreadsheetCommandGalleryItem76.Caption = "Major & Minor Gridlines";
            spreadsheetCommandGalleryItem76.CommandName = "ChartPrimaryVerticalGridlinesMajorAndMinor";
            spreadsheetCommandGalleryItem76.Description = "Display Vertical Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItem76.Hint = "Display Vertical Gridlines for Major and Minor units";
            spreadsheetCommandGalleryItemGroup11.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem73,
            spreadsheetCommandGalleryItem74,
            spreadsheetCommandGalleryItem75,
            spreadsheetCommandGalleryItem76});
            this.commandBarGalleryDropDown9.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup11});
            this.commandBarGalleryDropDown9.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown9.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown9.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown9.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown9.Name = "commandBarGalleryDropDown9";
            this.commandBarGalleryDropDown9.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown10
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown10.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown10.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup12.Caption = "Строки";
            spreadsheetCommandGalleryItemGroup12.CommandName = "ChartLinesCommandGroup";
            spreadsheetCommandGalleryItem77.Caption = "Нет";
            spreadsheetCommandGalleryItem77.CommandName = "ChartLinesNone";
            spreadsheetCommandGalleryItem77.Description = "Do not show Drop Lines, High-Low Lines or Series Lines";
            spreadsheetCommandGalleryItem77.Hint = "Do not show Drop Lines, High-Low Lines or Series Lines";
            spreadsheetCommandGalleryItem78.Caption = "Drop Lines";
            spreadsheetCommandGalleryItem78.CommandName = "ChartShowDropLines";
            spreadsheetCommandGalleryItem78.Description = "Show Drop Lines on an Area or Line Chart";
            spreadsheetCommandGalleryItem78.Hint = "Show Drop Lines on an Area or Line Chart";
            spreadsheetCommandGalleryItem79.Caption = "High-Low Lines";
            spreadsheetCommandGalleryItem79.CommandName = "ChartShowHighLowLines";
            spreadsheetCommandGalleryItem79.Description = "Show High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem79.Hint = "Show High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem80.Caption = "Drop and High-Low Lines";
            spreadsheetCommandGalleryItem80.CommandName = "ChartShowDropLinesAndHighLowLines";
            spreadsheetCommandGalleryItem80.Description = "Show Drop Lines and High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem80.Hint = "Show Drop Lines and High-Low Lines on a 2D Line Chart";
            spreadsheetCommandGalleryItem81.Caption = "Series Lines";
            spreadsheetCommandGalleryItem81.CommandName = "ChartShowSeriesLines";
            spreadsheetCommandGalleryItem81.Description = "Show Series Lines on a 2D stacked Bar/Column Pie or Pie or Bar of Pie Chart";
            spreadsheetCommandGalleryItem81.Hint = "Show Series Lines on a 2D stacked Bar/Column Pie or Pie or Bar of Pie Chart";
            spreadsheetCommandGalleryItemGroup12.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem77,
            spreadsheetCommandGalleryItem78,
            spreadsheetCommandGalleryItem79,
            spreadsheetCommandGalleryItem80,
            spreadsheetCommandGalleryItem81});
            this.commandBarGalleryDropDown10.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup12});
            this.commandBarGalleryDropDown10.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown10.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown10.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown10.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown10.Name = "commandBarGalleryDropDown10";
            this.commandBarGalleryDropDown10.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown11
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown11.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown11.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup13.Caption = "Up/Down Bars";
            spreadsheetCommandGalleryItemGroup13.CommandName = "ChartUpDownBarsCommandGroup";
            spreadsheetCommandGalleryItem82.Caption = "Нет";
            spreadsheetCommandGalleryItem82.CommandName = "ChartHideUpDownBars";
            spreadsheetCommandGalleryItem82.Description = "Do not show Up/Down Bars";
            spreadsheetCommandGalleryItem82.Hint = "Do not show Up/Down Bars";
            spreadsheetCommandGalleryItem83.Caption = "Up/Down Bars";
            spreadsheetCommandGalleryItem83.CommandName = "ChartShowUpDownBars";
            spreadsheetCommandGalleryItem83.Description = "Show Up/Down Bars on a Line Chart";
            spreadsheetCommandGalleryItem83.Hint = "Show Up/Down Bars on a Line Chart";
            spreadsheetCommandGalleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem82,
            spreadsheetCommandGalleryItem83});
            this.commandBarGalleryDropDown11.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup13});
            this.commandBarGalleryDropDown11.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown11.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown11.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown11.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown11.Name = "commandBarGalleryDropDown11";
            this.commandBarGalleryDropDown11.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown12
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown12.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown12.Gallery.AutoSize = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            spreadsheetCommandGalleryItemGroup14.Caption = "Error Bars";
            spreadsheetCommandGalleryItemGroup14.CommandName = "ChartErrorBarsCommandGroup";
            spreadsheetCommandGalleryItem84.Caption = "Нет";
            spreadsheetCommandGalleryItem84.CommandName = "ChartErrorBarsNone";
            spreadsheetCommandGalleryItem84.Description = "Removes the Error Bars for the selected series or all Error Bars if none are sele" +
    "cted";
            spreadsheetCommandGalleryItem84.Hint = "Removes the Error Bars for the selected series or all Error Bars if none are sele" +
    "cted";
            spreadsheetCommandGalleryItem85.Caption = "Error Bars with Standard Error";
            spreadsheetCommandGalleryItem85.CommandName = "ChartErrorBarsStandardError";
            spreadsheetCommandGalleryItem85.Description = "Displays Error Bars for the selected chart series using Standard Error";
            spreadsheetCommandGalleryItem85.Hint = "Displays Error Bars for the selected chart series using Standard Error";
            spreadsheetCommandGalleryItem86.Caption = "Error Bars with Percentage";
            spreadsheetCommandGalleryItem86.CommandName = "ChartErrorBarsPercentage";
            spreadsheetCommandGalleryItem86.Description = "Displays Error Bars for the selected chart series with 5% value";
            spreadsheetCommandGalleryItem86.Hint = "Displays Error Bars for the selected chart series with 5% value";
            spreadsheetCommandGalleryItem87.Caption = "Error Bars with Standard Deviation";
            spreadsheetCommandGalleryItem87.CommandName = "ChartErrorBarsStandardDeviation";
            spreadsheetCommandGalleryItem87.Description = "Displays Error Bars for the selected chart series with 1 standard deviation";
            spreadsheetCommandGalleryItem87.Hint = "Displays Error Bars for the selected chart series with 1 standard deviation";
            spreadsheetCommandGalleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem84,
            spreadsheetCommandGalleryItem85,
            spreadsheetCommandGalleryItem86,
            spreadsheetCommandGalleryItem87});
            this.commandBarGalleryDropDown12.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup14});
            this.commandBarGalleryDropDown12.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown12.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown12.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.commandBarGalleryDropDown12.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown12.Name = "commandBarGalleryDropDown12";
            this.commandBarGalleryDropDown12.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown13
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown13.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup15.Caption = "2-D Column";
            spreadsheetCommandGalleryItemGroup15.CommandName = "InsertChartColumn2DCommandGroup";
            spreadsheetCommandGalleryItem88.Caption = "Clustered Column";
            spreadsheetCommandGalleryItem88.CommandName = "InsertChartColumnClustered2D";
            spreadsheetCommandGalleryItem88.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.";
            spreadsheetCommandGalleryItem88.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.";
            spreadsheetCommandGalleryItem89.Caption = "Stacked Column";
            spreadsheetCommandGalleryItem89.CommandName = "InsertChartColumnStacked2D";
            spreadsheetCommandGalleryItem89.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" +
    ".";
            spreadsheetCommandGalleryItem89.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" +
    ".";
            spreadsheetCommandGalleryItem90.Caption = "100% Stacked Column";
            spreadsheetCommandGalleryItem90.CommandName = "InsertChartColumnPercentStacked2D";
            spreadsheetCommandGalleryItem90.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.";
            spreadsheetCommandGalleryItem90.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.";
            spreadsheetCommandGalleryItemGroup15.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem88,
            spreadsheetCommandGalleryItem89,
            spreadsheetCommandGalleryItem90});
            spreadsheetCommandGalleryItemGroup16.Caption = "3-D Column";
            spreadsheetCommandGalleryItemGroup16.CommandName = "InsertChartColumn3DCommandGroup";
            spreadsheetCommandGalleryItem91.Caption = "3-D Clustered Column";
            spreadsheetCommandGalleryItem91.CommandName = "InsertChartColumnClustered3D";
            spreadsheetCommandGalleryItem91.Description = "Compare values across categories and display clustered columns in 3-D format.";
            spreadsheetCommandGalleryItem91.Hint = "Compare values across categories and display clustered columns in 3-D format.";
            spreadsheetCommandGalleryItem92.Caption = "Stacked Column in 3-D";
            spreadsheetCommandGalleryItem92.CommandName = "InsertChartColumnStacked3D";
            spreadsheetCommandGalleryItem92.Description = "Compare the contribution of each value to a total across categories and display s" +
    "tacked columns in 3-D format.";
            spreadsheetCommandGalleryItem92.Hint = "Compare the contribution of each value to a total across categories and display s" +
    "tacked columns in 3-D format.";
            spreadsheetCommandGalleryItem93.Caption = "100% Stacked Column in 3-D";
            spreadsheetCommandGalleryItem93.CommandName = "InsertChartColumnPercentStacked3D";
            spreadsheetCommandGalleryItem93.Description = "Compare the percentage that each value contributes to a total across categories a" +
    "nd display 100% stacked columns in 3-D format.";
            spreadsheetCommandGalleryItem93.Hint = "Compare the percentage that each value contributes to a total across categories a" +
    "nd display 100% stacked columns in 3-D format.";
            spreadsheetCommandGalleryItem94.Caption = "3-D Column";
            spreadsheetCommandGalleryItem94.CommandName = "InsertChartColumn3D";
            spreadsheetCommandGalleryItem94.Description = "Compare values across categories and across series on three axes.\r\n\r\nUse it when " +
    "the categories and series are equally important.";
            spreadsheetCommandGalleryItem94.Hint = "Compare values across categories and across series on three axes.\r\n\r\nUse it when " +
    "the categories and series are equally important.";
            spreadsheetCommandGalleryItemGroup16.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem91,
            spreadsheetCommandGalleryItem92,
            spreadsheetCommandGalleryItem93,
            spreadsheetCommandGalleryItem94});
            spreadsheetCommandGalleryItemGroup17.Caption = "Цилиндр";
            spreadsheetCommandGalleryItemGroup17.CommandName = "InsertChartCylinderCommandGroup";
            spreadsheetCommandGalleryItem95.Caption = "Clustered Cylinder";
            spreadsheetCommandGalleryItem95.CommandName = "InsertChartCylinderClustered";
            spreadsheetCommandGalleryItem95.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem95.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem96.Caption = "Stacked Cylinder";
            spreadsheetCommandGalleryItem96.CommandName = "InsertChartCylinderStacked";
            spreadsheetCommandGalleryItem96.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem96.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem97.Caption = "100% Stacked Cylinder";
            spreadsheetCommandGalleryItem97.CommandName = "InsertChartCylinderPercentStacked";
            spreadsheetCommandGalleryItem97.Description = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem97.Hint = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem98.Caption = "3-D Cylinder";
            spreadsheetCommandGalleryItem98.CommandName = "InsertChartCylinder";
            spreadsheetCommandGalleryItem98.Description = "Compare values across categories and across series and display a cylinder chart o" +
    "n three axes.";
            spreadsheetCommandGalleryItem98.Hint = "Compare values across categories and across series and display a cylinder chart o" +
    "n three axes.";
            spreadsheetCommandGalleryItemGroup17.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem95,
            spreadsheetCommandGalleryItem96,
            spreadsheetCommandGalleryItem97,
            spreadsheetCommandGalleryItem98});
            spreadsheetCommandGalleryItemGroup18.Caption = "Cone";
            spreadsheetCommandGalleryItemGroup18.CommandName = "InsertChartConeCommandGroup";
            spreadsheetCommandGalleryItem99.Caption = "Clustered Cone";
            spreadsheetCommandGalleryItem99.CommandName = "InsertChartConeClustered";
            spreadsheetCommandGalleryItem99.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem99.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem100.Caption = "Stacked Cone";
            spreadsheetCommandGalleryItem100.CommandName = "InsertChartConeStacked";
            spreadsheetCommandGalleryItem100.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem100.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem101.Caption = "100% Stacked Cone";
            spreadsheetCommandGalleryItem101.CommandName = "InsertChartConePercentStacked";
            spreadsheetCommandGalleryItem101.Description = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem101.Hint = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem102.Caption = "3-D Cone";
            spreadsheetCommandGalleryItem102.CommandName = "InsertChartCone";
            spreadsheetCommandGalleryItem102.Description = "Compare values across categories and across series and display a cone chart on th" +
    "ree axes.";
            spreadsheetCommandGalleryItem102.Hint = "Compare values across categories and across series and display a cone chart on th" +
    "ree axes.";
            spreadsheetCommandGalleryItemGroup18.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem99,
            spreadsheetCommandGalleryItem100,
            spreadsheetCommandGalleryItem101,
            spreadsheetCommandGalleryItem102});
            spreadsheetCommandGalleryItemGroup19.Caption = "Pyramid";
            spreadsheetCommandGalleryItemGroup19.CommandName = "InsertChartPyramidCommandGroup";
            spreadsheetCommandGalleryItem103.Caption = "Clustered Pyramid";
            spreadsheetCommandGalleryItem103.CommandName = "InsertChartPyramidClustered";
            spreadsheetCommandGalleryItem103.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem103.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem104.Caption = "Stacked Pyramid";
            spreadsheetCommandGalleryItem104.CommandName = "InsertChartPyramidStacked";
            spreadsheetCommandGalleryItem104.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem104.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem105.Caption = "100% Stacked Pyramid";
            spreadsheetCommandGalleryItem105.CommandName = "InsertChartPyramidPercentStacked";
            spreadsheetCommandGalleryItem105.Description = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem105.Hint = "Compare the percentage that each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem106.Caption = "3-D Pyramid";
            spreadsheetCommandGalleryItem106.CommandName = "InsertChartPyramid";
            spreadsheetCommandGalleryItem106.Description = "Compare values across categories and across series and display a pyramid chart on" +
    " three axes.";
            spreadsheetCommandGalleryItem106.Hint = "Compare values across categories and across series and display a pyramid chart on" +
    " three axes.";
            spreadsheetCommandGalleryItemGroup19.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem103,
            spreadsheetCommandGalleryItem104,
            spreadsheetCommandGalleryItem105,
            spreadsheetCommandGalleryItem106});
            this.commandBarGalleryDropDown13.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup15,
            spreadsheetCommandGalleryItemGroup16,
            spreadsheetCommandGalleryItemGroup17,
            spreadsheetCommandGalleryItemGroup18,
            spreadsheetCommandGalleryItemGroup19});
            this.commandBarGalleryDropDown13.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown13.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown13.Name = "commandBarGalleryDropDown13";
            this.commandBarGalleryDropDown13.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown14
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown14.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup20.Caption = "2-D Line";
            spreadsheetCommandGalleryItemGroup20.CommandName = "InsertChartLine2DCommandGroup";
            spreadsheetCommandGalleryItem107.Caption = "Линия";
            spreadsheetCommandGalleryItem107.CommandName = "InsertChartLine";
            spreadsheetCommandGalleryItem107.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.";
            spreadsheetCommandGalleryItem107.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.";
            spreadsheetCommandGalleryItem108.Caption = "Stacked Line";
            spreadsheetCommandGalleryItem108.CommandName = "InsertChartStackedLine";
            spreadsheetCommandGalleryItem108.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.";
            spreadsheetCommandGalleryItem108.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.";
            spreadsheetCommandGalleryItem109.Caption = "100% Stacked line";
            spreadsheetCommandGalleryItem109.CommandName = "InsertChartPercentStackedLine";
            spreadsheetCommandGalleryItem109.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.";
            spreadsheetCommandGalleryItem109.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.";
            spreadsheetCommandGalleryItem110.Caption = "Line with Markers";
            spreadsheetCommandGalleryItem110.CommandName = "InsertChartLineWithMarkers";
            spreadsheetCommandGalleryItem110.Description = "Display trend over time (dates, years) or ordered categories.\r\n\r\nUseful when ther" +
    "e are only a few data points.";
            spreadsheetCommandGalleryItem110.Hint = "Display trend over time (dates, years) or ordered categories.\r\n\r\nUseful when ther" +
    "e are only a few data points.";
            spreadsheetCommandGalleryItem111.Caption = "Stacked Line with Markers";
            spreadsheetCommandGalleryItem111.CommandName = "InsertChartStackedLineWithMarkers";
            spreadsheetCommandGalleryItem111.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.";
            spreadsheetCommandGalleryItem111.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.";
            spreadsheetCommandGalleryItem112.Caption = "100% Stacked Line with Markers";
            spreadsheetCommandGalleryItem112.CommandName = "InsertChartPercentStackedLineWithMarkers";
            spreadsheetCommandGalleryItem112.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.";
            spreadsheetCommandGalleryItem112.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.";
            spreadsheetCommandGalleryItemGroup20.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem107,
            spreadsheetCommandGalleryItem108,
            spreadsheetCommandGalleryItem109,
            spreadsheetCommandGalleryItem110,
            spreadsheetCommandGalleryItem111,
            spreadsheetCommandGalleryItem112});
            spreadsheetCommandGalleryItemGroup21.Caption = "3-D Line";
            spreadsheetCommandGalleryItemGroup21.CommandName = "InsertChartLine3DCommandGroup";
            spreadsheetCommandGalleryItem113.Caption = "3-D Line";
            spreadsheetCommandGalleryItem113.CommandName = "InsertChartLine3D";
            spreadsheetCommandGalleryItem113.Description = "Display each row or column of data as a 3-D ribbon on three axes.";
            spreadsheetCommandGalleryItem113.Hint = "Display each row or column of data as a 3-D ribbon on three axes.";
            spreadsheetCommandGalleryItemGroup21.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem113});
            this.commandBarGalleryDropDown14.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup20,
            spreadsheetCommandGalleryItemGroup21});
            this.commandBarGalleryDropDown14.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown14.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown14.Name = "commandBarGalleryDropDown14";
            this.commandBarGalleryDropDown14.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown15
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown15.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup22.Caption = "2-D Pie";
            spreadsheetCommandGalleryItemGroup22.CommandName = "InsertChartPie2DCommandGroup";
            spreadsheetCommandGalleryItem114.Caption = "Круговая";
            spreadsheetCommandGalleryItem114.CommandName = "InsertChartPie2D";
            spreadsheetCommandGalleryItem114.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.";
            spreadsheetCommandGalleryItem114.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.";
            spreadsheetCommandGalleryItem115.Caption = "Exploded Pie";
            spreadsheetCommandGalleryItem115.CommandName = "InsertChartPieExploded2D";
            spreadsheetCommandGalleryItem115.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.";
            spreadsheetCommandGalleryItem115.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.";
            spreadsheetCommandGalleryItemGroup22.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem114,
            spreadsheetCommandGalleryItem115});
            spreadsheetCommandGalleryItemGroup23.Caption = "3-D Pie";
            spreadsheetCommandGalleryItemGroup23.CommandName = "InsertChartPie3DCommandGroup";
            spreadsheetCommandGalleryItem116.Caption = "Pie in 3-D";
            spreadsheetCommandGalleryItem116.CommandName = "InsertChartPie3D";
            spreadsheetCommandGalleryItem116.Description = "Display the contribution of each value to a total.";
            spreadsheetCommandGalleryItem116.Hint = "Display the contribution of each value to a total.";
            spreadsheetCommandGalleryItem117.Caption = "Exploded pie in 3-D";
            spreadsheetCommandGalleryItem117.CommandName = "InsertChartPieExploded3D";
            spreadsheetCommandGalleryItem117.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.";
            spreadsheetCommandGalleryItem117.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.";
            spreadsheetCommandGalleryItemGroup23.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem116,
            spreadsheetCommandGalleryItem117});
            spreadsheetCommandGalleryItemGroup24.Caption = "Doughnut";
            spreadsheetCommandGalleryItemGroup24.CommandName = "InsertChartDoughnut2DCommandGroup";
            spreadsheetCommandGalleryItem118.Caption = "Doughnut";
            spreadsheetCommandGalleryItem118.CommandName = "InsertChartDoughnut2D";
            spreadsheetCommandGalleryItem118.Description = "Display the contribution of each value to a total like a pie chart, but it can co" +
    "ntain multiple series.";
            spreadsheetCommandGalleryItem118.Hint = "Display the contribution of each value to a total like a pie chart, but it can co" +
    "ntain multiple series.";
            spreadsheetCommandGalleryItem119.Caption = "Exploded Doughnut";
            spreadsheetCommandGalleryItem119.CommandName = "InsertChartDoughnutExploded2D";
            spreadsheetCommandGalleryItem119.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.";
            spreadsheetCommandGalleryItem119.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.";
            spreadsheetCommandGalleryItemGroup24.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem118,
            spreadsheetCommandGalleryItem119});
            this.commandBarGalleryDropDown15.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup22,
            spreadsheetCommandGalleryItemGroup23,
            spreadsheetCommandGalleryItemGroup24});
            this.commandBarGalleryDropDown15.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown15.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown15.Name = "commandBarGalleryDropDown15";
            this.commandBarGalleryDropDown15.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown16
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown16.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup25.Caption = "2-D Bar";
            spreadsheetCommandGalleryItemGroup25.CommandName = "InsertChartBar2DCommandGroup";
            spreadsheetCommandGalleryItem120.Caption = "Clustered Bar";
            spreadsheetCommandGalleryItem120.CommandName = "InsertChartBarClustered2D";
            spreadsheetCommandGalleryItem120.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.";
            spreadsheetCommandGalleryItem120.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.";
            spreadsheetCommandGalleryItem121.Caption = "Stacked Bar";
            spreadsheetCommandGalleryItem121.CommandName = "InsertChartBarStacked2D";
            spreadsheetCommandGalleryItem121.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.";
            spreadsheetCommandGalleryItem121.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.";
            spreadsheetCommandGalleryItem122.Caption = "100% Stacked Bar";
            spreadsheetCommandGalleryItem122.CommandName = "InsertChartBarPercentStacked2D";
            spreadsheetCommandGalleryItem122.Description = resources.GetString("spreadsheetCommandGalleryItem122.Description");
            spreadsheetCommandGalleryItem122.Hint = resources.GetString("spreadsheetCommandGalleryItem122.Hint");
            spreadsheetCommandGalleryItemGroup25.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem120,
            spreadsheetCommandGalleryItem121,
            spreadsheetCommandGalleryItem122});
            spreadsheetCommandGalleryItemGroup26.Caption = "3-D Bar";
            spreadsheetCommandGalleryItemGroup26.CommandName = "InsertChartBar3DCommandGroup";
            spreadsheetCommandGalleryItem123.Caption = "Clustered Bar in 3-D";
            spreadsheetCommandGalleryItem123.CommandName = "InsertChartBarClustered3D";
            spreadsheetCommandGalleryItem123.Description = "Compare values across categories and display clustered bars in 3-D format.";
            spreadsheetCommandGalleryItem123.Hint = "Compare values across categories and display clustered bars in 3-D format.";
            spreadsheetCommandGalleryItem124.Caption = "Stacked Bar in 3-D";
            spreadsheetCommandGalleryItem124.CommandName = "InsertChartBarStacked3D";
            spreadsheetCommandGalleryItem124.Description = "Compare the contribution of each value to a total across categories and display s" +
    "tacked bars in 3-D format.";
            spreadsheetCommandGalleryItem124.Hint = "Compare the contribution of each value to a total across categories and display s" +
    "tacked bars in 3-D format.";
            spreadsheetCommandGalleryItem125.Caption = "100% Stacked Bar in 3-D";
            spreadsheetCommandGalleryItem125.CommandName = "InsertChartBarPercentStacked3D";
            spreadsheetCommandGalleryItem125.Description = "Compare the percentange each value contributes to a total across categories and d" +
    "isplay 100% stacked bars in 3-D format.";
            spreadsheetCommandGalleryItem125.Hint = "Compare the percentange each value contributes to a total across categories and d" +
    "isplay 100% stacked bars in 3-D format.";
            spreadsheetCommandGalleryItemGroup26.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem123,
            spreadsheetCommandGalleryItem124,
            spreadsheetCommandGalleryItem125});
            spreadsheetCommandGalleryItemGroup27.Caption = "Цилиндр";
            spreadsheetCommandGalleryItemGroup27.CommandName = "InsertChartHorizontalCylinderCommandGroup";
            spreadsheetCommandGalleryItem126.Caption = "Clustered Horizontal Cylinder";
            spreadsheetCommandGalleryItem126.CommandName = "InsertChartHorizontalCylinderClustered";
            spreadsheetCommandGalleryItem126.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem126.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem127.Caption = "Stacked Horizontal Cylinder";
            spreadsheetCommandGalleryItem127.CommandName = "InsertChartHorizontalCylinderStacked";
            spreadsheetCommandGalleryItem127.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem127.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem128.Caption = "100% Stacked Horizontal Cylinder";
            spreadsheetCommandGalleryItem128.CommandName = "InsertChartHorizontalCylinderPercentStacked";
            spreadsheetCommandGalleryItem128.Description = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem128.Hint = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItemGroup27.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem126,
            spreadsheetCommandGalleryItem127,
            spreadsheetCommandGalleryItem128});
            spreadsheetCommandGalleryItemGroup28.Caption = "Cone";
            spreadsheetCommandGalleryItemGroup28.CommandName = "InsertChartHorizontalConeCommandGroup";
            spreadsheetCommandGalleryItem129.Caption = "Clustered Horizontal Cone";
            spreadsheetCommandGalleryItem129.CommandName = "InsertChartHorizontalConeClustered";
            spreadsheetCommandGalleryItem129.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem129.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem130.Caption = "Stacked Horizontal Cone";
            spreadsheetCommandGalleryItem130.CommandName = "InsertChartHorizontalConeStacked";
            spreadsheetCommandGalleryItem130.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem130.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem131.Caption = "100% Stacked Horizontal Cone";
            spreadsheetCommandGalleryItem131.CommandName = "InsertChartHorizontalConePercentStacked";
            spreadsheetCommandGalleryItem131.Description = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem131.Hint = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItemGroup28.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem129,
            spreadsheetCommandGalleryItem130,
            spreadsheetCommandGalleryItem131});
            spreadsheetCommandGalleryItemGroup29.Caption = "Pyramid";
            spreadsheetCommandGalleryItemGroup29.CommandName = "InsertChartHorizontalPyramidCommandGroup";
            spreadsheetCommandGalleryItem132.Caption = "Clustered Horizontal Pyramid";
            spreadsheetCommandGalleryItem132.CommandName = "InsertChartHorizontalPyramidClustered";
            spreadsheetCommandGalleryItem132.Description = "Compare values across categories.";
            spreadsheetCommandGalleryItem132.Hint = "Compare values across categories.";
            spreadsheetCommandGalleryItem133.Caption = "Stacked Horizontal Pyramid";
            spreadsheetCommandGalleryItem133.CommandName = "InsertChartHorizontalPyramidStacked";
            spreadsheetCommandGalleryItem133.Description = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem133.Hint = "Compare the contribution of each value to a total across categories.";
            spreadsheetCommandGalleryItem134.Caption = "100% Stacked Horizontal Pyramid";
            spreadsheetCommandGalleryItem134.CommandName = "InsertChartHorizontalPyramidPercentStacked";
            spreadsheetCommandGalleryItem134.Description = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItem134.Hint = "Compare the percentange each value contributes to a total across categories.";
            spreadsheetCommandGalleryItemGroup29.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem132,
            spreadsheetCommandGalleryItem133,
            spreadsheetCommandGalleryItem134});
            this.commandBarGalleryDropDown16.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup25,
            spreadsheetCommandGalleryItemGroup26,
            spreadsheetCommandGalleryItemGroup27,
            spreadsheetCommandGalleryItemGroup28,
            spreadsheetCommandGalleryItemGroup29});
            this.commandBarGalleryDropDown16.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown16.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown16.Name = "commandBarGalleryDropDown16";
            this.commandBarGalleryDropDown16.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown17
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown17.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup30.Caption = "2-D Area";
            spreadsheetCommandGalleryItemGroup30.CommandName = "InsertChartArea2DCommandGroup";
            spreadsheetCommandGalleryItem135.Caption = "Область";
            spreadsheetCommandGalleryItem135.CommandName = "InsertChartArea";
            spreadsheetCommandGalleryItem135.Description = "Display the trend of values over time or categories.";
            spreadsheetCommandGalleryItem135.Hint = "Display the trend of values over time or categories.";
            spreadsheetCommandGalleryItem136.Caption = "Stacked Area";
            spreadsheetCommandGalleryItem136.CommandName = "InsertChartStackedArea";
            spreadsheetCommandGalleryItem136.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.";
            spreadsheetCommandGalleryItem136.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.";
            spreadsheetCommandGalleryItem137.Caption = "100% Stacked Area";
            spreadsheetCommandGalleryItem137.CommandName = "InsertChartPercentStackedArea";
            spreadsheetCommandGalleryItem137.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.";
            spreadsheetCommandGalleryItem137.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.";
            spreadsheetCommandGalleryItemGroup30.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem135,
            spreadsheetCommandGalleryItem136,
            spreadsheetCommandGalleryItem137});
            spreadsheetCommandGalleryItemGroup31.Caption = "3-D Area";
            spreadsheetCommandGalleryItemGroup31.CommandName = "InsertChartArea3DCommandGroup";
            spreadsheetCommandGalleryItem138.Caption = "3-D Area";
            spreadsheetCommandGalleryItem138.CommandName = "InsertChartArea3D";
            spreadsheetCommandGalleryItem138.Description = "Display the trend of values over time or categories using areas on three axes.";
            spreadsheetCommandGalleryItem138.Hint = "Display the trend of values over time or categories using areas on three axes.";
            spreadsheetCommandGalleryItem139.Caption = "Stacked Area in 3-D";
            spreadsheetCommandGalleryItem139.CommandName = "InsertChartStackedArea3D";
            spreadsheetCommandGalleryItem139.Description = "Display the trend of the contribution of each value over time or categories by us" +
    "ing stacked areas in a 3-D format.";
            spreadsheetCommandGalleryItem139.Hint = "Display the trend of the contribution of each value over time or categories by us" +
    "ing stacked areas in a 3-D format.";
            spreadsheetCommandGalleryItem140.Caption = "100% Stacked Area in 3-D";
            spreadsheetCommandGalleryItem140.CommandName = "InsertChartPercentStackedArea3D";
            spreadsheetCommandGalleryItem140.Description = "Display the trend of the percentage each value contributes over time or categorie" +
    "s by using 100% stacked areas in 3-D format.";
            spreadsheetCommandGalleryItem140.Hint = "Display the trend of the percentage each value contributes over time or categorie" +
    "s by using 100% stacked areas in 3-D format.";
            spreadsheetCommandGalleryItemGroup31.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem138,
            spreadsheetCommandGalleryItem139,
            spreadsheetCommandGalleryItem140});
            this.commandBarGalleryDropDown17.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup30,
            spreadsheetCommandGalleryItemGroup31});
            this.commandBarGalleryDropDown17.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown17.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown17.Name = "commandBarGalleryDropDown17";
            this.commandBarGalleryDropDown17.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown18
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown18.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup32.Caption = "Scatter";
            spreadsheetCommandGalleryItemGroup32.CommandName = "InsertChartScatterCommandGroup";
            spreadsheetCommandGalleryItem141.Caption = "Scatter with only Markers";
            spreadsheetCommandGalleryItem141.CommandName = "InsertChartScatterMarkers";
            spreadsheetCommandGalleryItem141.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.";
            spreadsheetCommandGalleryItem141.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.";
            spreadsheetCommandGalleryItem142.Caption = "Scatter with Smooth Lines and Markers";
            spreadsheetCommandGalleryItem142.CommandName = "InsertChartScatterSmoothLinesAndMarkers";
            spreadsheetCommandGalleryItem142.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.";
            spreadsheetCommandGalleryItem142.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.";
            spreadsheetCommandGalleryItem143.Caption = "Scatter with Smooth Lines";
            spreadsheetCommandGalleryItem143.CommandName = "InsertChartScatterSmoothLines";
            spreadsheetCommandGalleryItem143.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.";
            spreadsheetCommandGalleryItem143.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.";
            spreadsheetCommandGalleryItem144.Caption = "Scatter with Straight Lines and Markers";
            spreadsheetCommandGalleryItem144.CommandName = "InsertChartScatterLinesAndMarkers";
            spreadsheetCommandGalleryItem144.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.";
            spreadsheetCommandGalleryItem144.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.";
            spreadsheetCommandGalleryItem145.Caption = "Scatter with Straight Lines";
            spreadsheetCommandGalleryItem145.CommandName = "InsertChartScatterLines";
            spreadsheetCommandGalleryItem145.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.";
            spreadsheetCommandGalleryItem145.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.";
            spreadsheetCommandGalleryItemGroup32.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem141,
            spreadsheetCommandGalleryItem142,
            spreadsheetCommandGalleryItem143,
            spreadsheetCommandGalleryItem144,
            spreadsheetCommandGalleryItem145});
            spreadsheetCommandGalleryItemGroup33.Caption = "Bubble";
            spreadsheetCommandGalleryItemGroup33.CommandName = "InsertChartBubbleCommandGroup";
            spreadsheetCommandGalleryItem146.Caption = "Bubble";
            spreadsheetCommandGalleryItem146.CommandName = "InsertChartBubble";
            spreadsheetCommandGalleryItem146.Description = "Resembles a scatter chart, but compares sets of three values instead of two. The " +
    "third value determines the size of the bubble marker.";
            spreadsheetCommandGalleryItem146.Hint = "Resembles a scatter chart, but compares sets of three values instead of two. The " +
    "third value determines the size of the bubble marker.";
            spreadsheetCommandGalleryItem147.Caption = "Bubble with a 3-D effect";
            spreadsheetCommandGalleryItem147.CommandName = "InsertChartBubble3D";
            spreadsheetCommandGalleryItem147.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.";
            spreadsheetCommandGalleryItem147.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.";
            spreadsheetCommandGalleryItemGroup33.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem146,
            spreadsheetCommandGalleryItem147});
            this.commandBarGalleryDropDown18.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup32,
            spreadsheetCommandGalleryItemGroup33});
            this.commandBarGalleryDropDown18.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown18.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown18.Name = "commandBarGalleryDropDown18";
            this.commandBarGalleryDropDown18.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown19
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown19.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup34.Caption = "Биржевая";
            spreadsheetCommandGalleryItemGroup34.CommandName = "InsertChartStockCommandGroup";
            spreadsheetCommandGalleryItem148.Caption = "High-Low-Close";
            spreadsheetCommandGalleryItem148.CommandName = "InsertChartStockHighLowClose";
            spreadsheetCommandGalleryItem148.Description = "Requires three series of values in order High, Low and Close.";
            spreadsheetCommandGalleryItem148.Hint = "Requires three series of values in order High, Low and Close.";
            spreadsheetCommandGalleryItem149.Caption = "Open-High-Low-Close";
            spreadsheetCommandGalleryItem149.CommandName = "InsertChartStockOpenHighLowClose";
            spreadsheetCommandGalleryItem149.Description = "Requires four series of values in order Open, High, Low and Close.";
            spreadsheetCommandGalleryItem149.Hint = "Requires four series of values in order Open, High, Low and Close.";
            spreadsheetCommandGalleryItem150.Caption = "Volume-High-Low-Close";
            spreadsheetCommandGalleryItem150.CommandName = "InsertChartStockVolumeHighLowClose";
            spreadsheetCommandGalleryItem150.Description = "Requires four series of values in order Volume, High, Low and Close.";
            spreadsheetCommandGalleryItem150.Hint = "Requires four series of values in order Volume, High, Low and Close.";
            spreadsheetCommandGalleryItem151.Caption = "Volume-Open-High-Low-Close";
            spreadsheetCommandGalleryItem151.CommandName = "InsertChartStockVolumeOpenHighLowClose";
            spreadsheetCommandGalleryItem151.Description = "Requires five series of values in order Volume, Open, High, Low and Close.";
            spreadsheetCommandGalleryItem151.Hint = "Requires five series of values in order Volume, Open, High, Low and Close.";
            spreadsheetCommandGalleryItemGroup34.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem148,
            spreadsheetCommandGalleryItem149,
            spreadsheetCommandGalleryItem150,
            spreadsheetCommandGalleryItem151});
            spreadsheetCommandGalleryItemGroup35.Caption = "Radar";
            spreadsheetCommandGalleryItemGroup35.CommandName = "InsertChartRadarCommandGroup";
            spreadsheetCommandGalleryItem152.Caption = "Radar";
            spreadsheetCommandGalleryItem152.CommandName = "InsertChartRadar";
            spreadsheetCommandGalleryItem152.Description = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem152.Hint = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem153.Caption = "Radar with Markers";
            spreadsheetCommandGalleryItem153.CommandName = "InsertChartRadarWithMarkers";
            spreadsheetCommandGalleryItem153.Description = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem153.Hint = "Display values relative to a center point.\r\n\r\nUse it when the categories are not " +
    "directly comparable.";
            spreadsheetCommandGalleryItem154.Caption = "Filled Radar";
            spreadsheetCommandGalleryItem154.CommandName = "InsertChartRadarFilled";
            spreadsheetCommandGalleryItem154.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.";
            spreadsheetCommandGalleryItem154.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.";
            spreadsheetCommandGalleryItemGroup35.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem152,
            spreadsheetCommandGalleryItem153,
            spreadsheetCommandGalleryItem154});
            this.commandBarGalleryDropDown19.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup34,
            spreadsheetCommandGalleryItemGroup35});
            this.commandBarGalleryDropDown19.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown19.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown19.Name = "commandBarGalleryDropDown19";
            this.commandBarGalleryDropDown19.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown20
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown20.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown20.Gallery.ColumnCount = 1;
            this.commandBarGalleryDropDown20.Gallery.DrawImageBackground = false;
            this.commandBarGalleryDropDown20.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.commandBarGalleryDropDown20.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.commandBarGalleryDropDown20.Gallery.ItemSize = new System.Drawing.Size(136, 26);
            this.commandBarGalleryDropDown20.Gallery.RowCount = 14;
            this.commandBarGalleryDropDown20.Gallery.ShowGroupCaption = false;
            this.commandBarGalleryDropDown20.Gallery.ShowItemText = true;
            this.commandBarGalleryDropDown20.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown20.Name = "commandBarGalleryDropDown20";
            this.commandBarGalleryDropDown20.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown22
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown22.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup36.Caption = "Color Scales";
            spreadsheetCommandGalleryItemGroup36.CommandName = "ConditionalFormattingColorScalesCommandGroup";
            spreadsheetCommandGalleryItem155.Caption = "Green - Yellow - Red Color Scale";
            spreadsheetCommandGalleryItem155.CommandName = "ConditionalFormattingColorScaleGreenYellowRed";
            spreadsheetCommandGalleryItem155.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.";
            spreadsheetCommandGalleryItem155.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.";
            spreadsheetCommandGalleryItem156.Caption = "Red - Yellow - Green Color Scale";
            spreadsheetCommandGalleryItem156.CommandName = "ConditionalFormattingColorScaleRedYellowGreen";
            spreadsheetCommandGalleryItem156.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.";
            spreadsheetCommandGalleryItem156.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.";
            spreadsheetCommandGalleryItem157.Caption = "Green - White - Red Color Scale";
            spreadsheetCommandGalleryItem157.CommandName = "ConditionalFormattingColorScaleGreenWhiteRed";
            spreadsheetCommandGalleryItem157.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.";
            spreadsheetCommandGalleryItem157.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.";
            spreadsheetCommandGalleryItem158.Caption = "Red - White - Green Color Scale";
            spreadsheetCommandGalleryItem158.CommandName = "ConditionalFormattingColorScaleRedWhiteGreen";
            spreadsheetCommandGalleryItem158.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.";
            spreadsheetCommandGalleryItem158.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.";
            spreadsheetCommandGalleryItem159.Caption = "Blue - White - Red Color Scale";
            spreadsheetCommandGalleryItem159.CommandName = "ConditionalFormattingColorScaleBlueWhiteRed";
            spreadsheetCommandGalleryItem159.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.";
            spreadsheetCommandGalleryItem159.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.";
            spreadsheetCommandGalleryItem160.Caption = "Red - White - Blue Color Scale";
            spreadsheetCommandGalleryItem160.CommandName = "ConditionalFormattingColorScaleRedWhiteBlue";
            spreadsheetCommandGalleryItem160.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.";
            spreadsheetCommandGalleryItem160.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.";
            spreadsheetCommandGalleryItem161.Caption = "White - Red Color Scale";
            spreadsheetCommandGalleryItem161.CommandName = "ConditionalFormattingColorScaleWhiteRed";
            spreadsheetCommandGalleryItem161.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.";
            spreadsheetCommandGalleryItem161.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.";
            spreadsheetCommandGalleryItem162.Caption = "Red - White Color Scale";
            spreadsheetCommandGalleryItem162.CommandName = "ConditionalFormattingColorScaleRedWhite";
            spreadsheetCommandGalleryItem162.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.";
            spreadsheetCommandGalleryItem162.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.";
            spreadsheetCommandGalleryItem163.Caption = "Green - White Color Scale";
            spreadsheetCommandGalleryItem163.CommandName = "ConditionalFormattingColorScaleGreenWhite";
            spreadsheetCommandGalleryItem163.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.";
            spreadsheetCommandGalleryItem163.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.";
            spreadsheetCommandGalleryItem164.Caption = "White - Green Color Scale";
            spreadsheetCommandGalleryItem164.CommandName = "ConditionalFormattingColorScaleWhiteGreen";
            spreadsheetCommandGalleryItem164.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.";
            spreadsheetCommandGalleryItem164.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.";
            spreadsheetCommandGalleryItem165.Caption = "Green - Yellow Color Scale";
            spreadsheetCommandGalleryItem165.CommandName = "ConditionalFormattingColorScaleGreenYellow";
            spreadsheetCommandGalleryItem165.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.";
            spreadsheetCommandGalleryItem165.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.";
            spreadsheetCommandGalleryItem166.Caption = "Yellow - Green Color Scale";
            spreadsheetCommandGalleryItem166.CommandName = "ConditionalFormattingColorScaleYellowGreen";
            spreadsheetCommandGalleryItem166.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.";
            spreadsheetCommandGalleryItem166.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.";
            spreadsheetCommandGalleryItemGroup36.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem155,
            spreadsheetCommandGalleryItem156,
            spreadsheetCommandGalleryItem157,
            spreadsheetCommandGalleryItem158,
            spreadsheetCommandGalleryItem159,
            spreadsheetCommandGalleryItem160,
            spreadsheetCommandGalleryItem161,
            spreadsheetCommandGalleryItem162,
            spreadsheetCommandGalleryItem163,
            spreadsheetCommandGalleryItem164,
            spreadsheetCommandGalleryItem165,
            spreadsheetCommandGalleryItem166});
            this.commandBarGalleryDropDown22.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup36});
            this.commandBarGalleryDropDown22.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown22.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown22.Name = "commandBarGalleryDropDown22";
            this.commandBarGalleryDropDown22.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown23
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown23.Gallery.AllowFilter = false;
            spreadsheetCommandGalleryItemGroup37.Caption = "Directional";
            spreadsheetCommandGalleryItemGroup37.CommandName = "ConditionalFormattingIconSetsDirectionalCommandGroup";
            spreadsheetCommandGalleryItem167.Caption = "3 Arrows (Colored)";
            spreadsheetCommandGalleryItem167.CommandName = "ConditionalFormattingIconSetArrows3Colored";
            spreadsheetCommandGalleryItem167.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem167.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem168.Caption = "3 Arrows (Gray)";
            spreadsheetCommandGalleryItem168.CommandName = "ConditionalFormattingIconSetArrows3Grayed";
            spreadsheetCommandGalleryItem168.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem168.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem169.Caption = "4 Arrows (Colored)";
            spreadsheetCommandGalleryItem169.CommandName = "ConditionalFormattingIconSetArrows4Colored";
            spreadsheetCommandGalleryItem169.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem169.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem170.Caption = "4 Arrows (Gray)";
            spreadsheetCommandGalleryItem170.CommandName = "ConditionalFormattingIconSetArrows4Grayed";
            spreadsheetCommandGalleryItem170.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem170.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem171.Caption = "5 Arrows (Colored)";
            spreadsheetCommandGalleryItem171.CommandName = "ConditionalFormattingIconSetArrows5Colored";
            spreadsheetCommandGalleryItem171.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem171.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem172.Caption = "5 Arrows (Gray)";
            spreadsheetCommandGalleryItem172.CommandName = "ConditionalFormattingIconSetArrows5Grayed";
            spreadsheetCommandGalleryItem172.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem172.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem173.Caption = "3 Triangles";
            spreadsheetCommandGalleryItem173.CommandName = "ConditionalFormattingIconSetTriangles3";
            spreadsheetCommandGalleryItem173.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem173.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup37.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem167,
            spreadsheetCommandGalleryItem168,
            spreadsheetCommandGalleryItem169,
            spreadsheetCommandGalleryItem170,
            spreadsheetCommandGalleryItem171,
            spreadsheetCommandGalleryItem172,
            spreadsheetCommandGalleryItem173});
            spreadsheetCommandGalleryItemGroup38.Caption = "Shapes";
            spreadsheetCommandGalleryItemGroup38.CommandName = "ConditionalFormattingIconSetsShapesCommandGroup";
            spreadsheetCommandGalleryItem174.Caption = "3 Traffic Lights ()";
            spreadsheetCommandGalleryItem174.CommandName = "ConditionalFormattingIconSetTrafficLights3";
            spreadsheetCommandGalleryItem174.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem174.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem175.Caption = "3 Traffic Lights (Rimmed)";
            spreadsheetCommandGalleryItem175.CommandName = "ConditionalFormattingIconSetTrafficLights3Rimmed";
            spreadsheetCommandGalleryItem175.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem175.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem176.Caption = "4 Traffic Lights";
            spreadsheetCommandGalleryItem176.CommandName = "ConditionalFormattingIconSetTrafficLights4";
            spreadsheetCommandGalleryItem176.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem176.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem177.Caption = "3 Signs";
            spreadsheetCommandGalleryItem177.CommandName = "ConditionalFormattingIconSetSigns3";
            spreadsheetCommandGalleryItem177.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem177.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem178.Caption = "Red To Black";
            spreadsheetCommandGalleryItem178.CommandName = "ConditionalFormattingIconSetRedToBlack";
            spreadsheetCommandGalleryItem178.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem178.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup38.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem174,
            spreadsheetCommandGalleryItem175,
            spreadsheetCommandGalleryItem176,
            spreadsheetCommandGalleryItem177,
            spreadsheetCommandGalleryItem178});
            spreadsheetCommandGalleryItemGroup39.Caption = "Индикаторы";
            spreadsheetCommandGalleryItemGroup39.CommandName = "ConditionalFormattingIconSetsIndicatorsCommandGroup";
            spreadsheetCommandGalleryItem179.Caption = "3 Symbols (Circled)";
            spreadsheetCommandGalleryItem179.CommandName = "ConditionalFormattingIconSetSymbols3Circled";
            spreadsheetCommandGalleryItem179.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem179.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem180.Caption = "3 Symbols (Uncircled)";
            spreadsheetCommandGalleryItem180.CommandName = "ConditionalFormattingIconSetSymbols3";
            spreadsheetCommandGalleryItem180.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem180.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem181.Caption = "3 Flags";
            spreadsheetCommandGalleryItem181.CommandName = "ConditionalFormattingIconSetFlags3";
            spreadsheetCommandGalleryItem181.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem181.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup39.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem179,
            spreadsheetCommandGalleryItem180,
            spreadsheetCommandGalleryItem181});
            spreadsheetCommandGalleryItemGroup40.Caption = "Ratings";
            spreadsheetCommandGalleryItemGroup40.CommandName = "ConditionalFormattingIconSetsRatingsCommandGroup";
            spreadsheetCommandGalleryItem182.Caption = "3 Stars";
            spreadsheetCommandGalleryItem182.CommandName = "ConditionalFormattingIconSetStars3";
            spreadsheetCommandGalleryItem182.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem182.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem183.Caption = "4 Ratings";
            spreadsheetCommandGalleryItem183.CommandName = "ConditionalFormattingIconSetRatings4";
            spreadsheetCommandGalleryItem183.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem183.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem184.Caption = "5 Ratings";
            spreadsheetCommandGalleryItem184.CommandName = "ConditionalFormattingIconSetRatings5";
            spreadsheetCommandGalleryItem184.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem184.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem185.Caption = "5 Quarters";
            spreadsheetCommandGalleryItem185.CommandName = "ConditionalFormattingIconSetQuarters5";
            spreadsheetCommandGalleryItem185.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem185.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem186.Caption = "5 Boxes";
            spreadsheetCommandGalleryItem186.CommandName = "ConditionalFormattingIconSetBoxes5";
            spreadsheetCommandGalleryItem186.Description = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItem186.Hint = "Display an icon from the above icon set in each cell. Each icon represents a valu" +
    "e in the cell.";
            spreadsheetCommandGalleryItemGroup40.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            spreadsheetCommandGalleryItem182,
            spreadsheetCommandGalleryItem183,
            spreadsheetCommandGalleryItem184,
            spreadsheetCommandGalleryItem185,
            spreadsheetCommandGalleryItem186});
            this.commandBarGalleryDropDown23.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            spreadsheetCommandGalleryItemGroup37,
            spreadsheetCommandGalleryItemGroup38,
            spreadsheetCommandGalleryItemGroup39,
            spreadsheetCommandGalleryItemGroup40});
            this.commandBarGalleryDropDown23.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown23.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown23.Name = "commandBarGalleryDropDown23";
            this.commandBarGalleryDropDown23.Ribbon = this.ribbonControl;
            // 
            // commandBarGalleryDropDown24
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown24.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown24.Gallery.ColumnCount = 7;
            this.commandBarGalleryDropDown24.Gallery.DrawImageBackground = false;
            this.commandBarGalleryDropDown24.Gallery.ItemAutoSizeMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryItemAutoSizeMode.None;
            this.commandBarGalleryDropDown24.Gallery.ItemSize = new System.Drawing.Size(73, 58);
            this.commandBarGalleryDropDown24.Gallery.RowCount = 10;
            this.commandBarGalleryDropDown24.Name = "commandBarGalleryDropDown24";
            this.commandBarGalleryDropDown24.Ribbon = this.ribbonControl;
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.FileName = "openFileDialog1";
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 219);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.splitContainerControl2);
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.pictureEditFile);
            this.splitContainerControl1.Panel2.Text = "Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1100, 433);
            this.splitContainerControl1.SplitterPosition = 356;
            this.splitContainerControl1.TabIndex = 9;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // splitContainerControl2
            // 
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Horizontal = false;
            this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.pictureEditPattern);
            this.splitContainerControl2.Panel1.Text = "Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.propertyGridControl1);
            this.splitContainerControl2.Panel2.Text = "Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(356, 433);
            this.splitContainerControl2.SplitterPosition = 254;
            this.splitContainerControl2.TabIndex = 0;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // pictureEditPattern
            // 
            this.pictureEditPattern.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureEditPattern.Location = new System.Drawing.Point(0, 0);
            this.pictureEditPattern.MenuManager = this.ribbonControl;
            this.pictureEditPattern.Name = "pictureEditPattern";
            this.pictureEditPattern.Size = new System.Drawing.Size(356, 254);
            this.pictureEditPattern.TabIndex = 0;
            // 
            // propertyGridControl1
            // 
            this.propertyGridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.propertyGridControl1.Location = new System.Drawing.Point(0, 0);
            this.propertyGridControl1.Name = "propertyGridControl1";
            this.propertyGridControl1.Size = new System.Drawing.Size(356, 171);
            this.propertyGridControl1.TabIndex = 0;
            // 
            // pictureEditFile
            // 
            this.pictureEditFile.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureEditFile.Location = new System.Drawing.Point(0, 0);
            this.pictureEditFile.MenuManager = this.ribbonControl;
            this.pictureEditFile.Name = "pictureEditFile";
            this.pictureEditFile.Size = new System.Drawing.Size(736, 433);
            this.pictureEditFile.TabIndex = 7;
            this.pictureEditFile.EditValueChanged += new System.EventHandler(this.pictureEditFile_EditValueChanged);
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.barCheckItem1);
            this.ribbonPageGroup4.ItemLinks.Add(this.barCheckItem2);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.Text = "ribbonPageGroup4";
            // 
            // barCheckItem1
            // 
            this.barCheckItem1.Caption = "With Color";
            this.barCheckItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barCheckItem1.Glyph")));
            this.barCheckItem1.Id = 336;
            this.barCheckItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barCheckItem1.LargeGlyph")));
            this.barCheckItem1.Name = "barCheckItem1";
            // 
            // barCheckItem2
            // 
            this.barCheckItem2.Caption = "Fast Mode";
            this.barCheckItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barCheckItem2.Glyph")));
            this.barCheckItem2.Id = 338;
            this.barCheckItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barCheckItem2.LargeGlyph")));
            this.barCheckItem2.Name = "barCheckItem2";
            // 
            // MainForm
            // 
            this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1100, 700);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbonControl);
            this.Name = "MainForm";
            this.Ribbon = this.ribbonControl;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "FFT CATCHER";
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpreadsheetFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).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.commandBarGalleryDropDown22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown23)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown24)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureEditPattern.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.propertyGridControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEditFile.Properties)).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(Form3Rich));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.richEditControl1 = new DevExpress.XtraRichEdit.RichEditControl();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            this.SuspendLayout();
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 52;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // richEditControl1
            // 
            this.richEditControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.richEditControl1.EnableToolTips = true;
            this.richEditControl1.Location = new System.Drawing.Point(0, 145);
            this.richEditControl1.MenuManager = this.ribbonControl1;
            this.richEditControl1.Name = "richEditControl1";
            this.richEditControl1.Options.CopyPaste.MaintainDocumentSectionSettings = false;
            this.richEditControl1.Options.Fields.UseCurrentCultureDateTimeFormat = false;
            this.richEditControl1.Options.MailMerge.KeepLastParagraph = false;
            this.richEditControl1.Size = new System.Drawing.Size(695, 257);
            this.richEditControl1.TabIndex = 0;
            this.richEditControl1.Text = "richEditControl1";
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.barButtonItem1,
            this.barEditItem1,
            this.barButtonItem2,
            this.barEditItem2,
            this.barButtonItem3});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 60;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.homeRibbonPage1,
            this.ribbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1,
            this.repositoryItemTextEdit1,
            this.repositoryItemSpinEdit1});
            this.ribbonControl1.Size = new System.Drawing.Size(695, 145);
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 8;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 9;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 10;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 11;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 1;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 12;
            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.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 13;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.richEditControl1;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 14;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 15;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 2;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 16;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 17;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 18;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 19;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 20;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 21;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 22;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 23;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 3;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 24;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 25;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 26;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 27;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 28;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 29;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 30;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 31;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 4;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 32;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 33;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 34;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 5;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 35;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 36;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 41;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 6;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 37;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 38;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 39;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 40;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 7;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 42;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 43;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 44;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 45;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 46;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 47;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 48;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 49;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 50;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 51;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 53;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 54;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "打开";
            this.barButtonItem1.Id = 55;
            this.barButtonItem1.Name = "barButtonItem1";
            this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
            // 
            // barEditItem1
            // 
            this.barEditItem1.Edit = this.repositoryItemTextEdit1;
            this.barEditItem1.Id = 56;
            this.barEditItem1.Name = "barEditItem1";
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "查找";
            this.barButtonItem2.Id = 57;
            this.barButtonItem2.Name = "barButtonItem2";
            this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            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.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            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.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "ribbonPageGroup1";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.barEditItem1);
            this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem2);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.Text = "ribbonPageGroup2";
            // 
            // richEditBarController1
            // 
            this.richEditBarController1.BarItems.Add(this.pasteItem1);
            this.richEditBarController1.BarItems.Add(this.cutItem1);
            this.richEditBarController1.BarItems.Add(this.copyItem1);
            this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.richEditBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.richEditBarController1.BarItems.Add(this.findItem1);
            this.richEditBarController1.BarItems.Add(this.replaceItem1);
            this.richEditBarController1.Control = this.richEditControl1;
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.barEditItem2);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem3);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.Text = "ribbonPageGroup3";
            // 
            // barEditItem2
            // 
            this.barEditItem2.Edit = this.repositoryItemSpinEdit1;
            this.barEditItem2.Id = 58;
            this.barEditItem2.Name = "barEditItem2";
            // 
            // 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.Name = "repositoryItemSpinEdit1";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "转到";
            this.barButtonItem3.Id = 59;
            this.barButtonItem3.Name = "barButtonItem3";
            this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
            // 
            // Form3Rich
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(695, 402);
            this.Controls.Add(this.richEditControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "Form3Rich";
            this.Text = "Form3";
            this.Load += new System.EventHandler(this.Form3Rich_Load);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #31
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(Frame));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     this.vonbangtien                 = new Ketoan.Controls.Vonbangtien();
     this.quanlytaisan                = new Ketoan.Controls.Quanlytaisan();
     this.muahangphaitra              = new Ketoan.Controls.Muahangphaitra();
     this.ketoantonghop               = new Ketoan.Controls.Menuchinh.Ketoantonghop();
     this.hethong                     = new Ketoan.Controls.Hethong();
     this.hangtonkho                  = new Ketoan.Controls.Menuchinh.Hangtonkho();
     this.chiphigiathanh              = new Ketoan.Controls.Chiphigiathanh();
     this.banhangphaithu              = new Ketoan.Controls.Banhangphaithu();
     this.ribbonControl1              = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.backstageViewControl1       = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
     this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl2 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl3 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl4 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl5 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl6 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl7 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewClientControl8 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
     this.backstageViewTabItem1       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem2       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem3       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem4       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem5       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem6       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewTabItem7       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.backstageViewItemSeparator1 = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
     this.backstageViewTabItem8       = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.addBtn           = new DevExpress.XtraBars.BarButtonItem();
     this.editBtn          = new DevExpress.XtraBars.BarButtonItem();
     this.deleteBtn        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4   = new DevExpress.XtraBars.BarButtonItem();
     this.printBtn         = new DevExpress.XtraBars.BarButtonItem();
     this.helpBtn          = new DevExpress.XtraBars.BarButtonItem();
     this.settingBtn       = new DevExpress.XtraBars.BarButtonItem();
     this.rbiGallery       = new DevExpress.XtraBars.RibbonGalleryBarItem();
     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.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonPage2      = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.panel1           = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.backstageViewControl1)).BeginInit();
     this.backstageViewControl1.SuspendLayout();
     this.backstageViewClientControl1.SuspendLayout();
     this.backstageViewClientControl2.SuspendLayout();
     this.backstageViewClientControl3.SuspendLayout();
     this.backstageViewClientControl4.SuspendLayout();
     this.backstageViewClientControl5.SuspendLayout();
     this.backstageViewClientControl6.SuspendLayout();
     this.backstageViewClientControl7.SuspendLayout();
     this.backstageViewClientControl8.SuspendLayout();
     this.SuspendLayout();
     //
     // vonbangtien
     //
     this.vonbangtien.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.vonbangtien.Location = new System.Drawing.Point(0, 0);
     this.vonbangtien.Name     = "vonbangtien";
     this.vonbangtien.Size     = new System.Drawing.Size(39, 325);
     this.vonbangtien.TabIndex = 0;
     //
     // quanlytaisan
     //
     this.quanlytaisan.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.quanlytaisan.Location = new System.Drawing.Point(0, 0);
     this.quanlytaisan.Name     = "quanlytaisan";
     this.quanlytaisan.Size     = new System.Drawing.Size(51, 327);
     this.quanlytaisan.TabIndex = 0;
     //
     // muahangphaitra
     //
     this.muahangphaitra.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.muahangphaitra.Location = new System.Drawing.Point(0, 0);
     this.muahangphaitra.Name     = "muahangphaitra";
     this.muahangphaitra.Size     = new System.Drawing.Size(51, 327);
     this.muahangphaitra.TabIndex = 0;
     //
     // ketoantonghop
     //
     this.ketoantonghop.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ketoantonghop.Location = new System.Drawing.Point(0, 0);
     this.ketoantonghop.Name     = "ketoantonghop";
     this.ketoantonghop.Size     = new System.Drawing.Size(51, 327);
     this.ketoantonghop.TabIndex = 0;
     //
     // hethong
     //
     this.hethong.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.hethong.Location = new System.Drawing.Point(0, 0);
     this.hethong.Name     = "hethong";
     this.hethong.Size     = new System.Drawing.Size(51, 327);
     this.hethong.TabIndex = 0;
     //
     // hangtonkho
     //
     this.hangtonkho.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.hangtonkho.Location = new System.Drawing.Point(0, 0);
     this.hangtonkho.Name     = "hangtonkho";
     this.hangtonkho.Size     = new System.Drawing.Size(51, 327);
     this.hangtonkho.TabIndex = 0;
     //
     // chiphigiathanh
     //
     this.chiphigiathanh.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.chiphigiathanh.Location = new System.Drawing.Point(0, 0);
     this.chiphigiathanh.Name     = "chiphigiathanh";
     this.chiphigiathanh.Size     = new System.Drawing.Size(51, 327);
     this.chiphigiathanh.TabIndex = 0;
     //
     // banhangphaithu
     //
     this.banhangphaithu.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.banhangphaithu.Location = new System.Drawing.Point(0, 0);
     this.banhangphaithu.Name     = "banhangphaithu";
     this.banhangphaithu.Size     = new System.Drawing.Size(51, 327);
     this.banhangphaithu.TabIndex = 0;
     //
     // ribbonControl1
     //
     this.ribbonControl1.ApplicationButtonDropDownControl = this.backstageViewControl1;
     this.ribbonControl1.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.addBtn,
         this.editBtn,
         this.deleteBtn,
         this.barButtonItem4,
         this.printBtn,
         this.helpBtn,
         this.settingBtn,
         this.rbiGallery
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 4;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
     this.ribbonControl1.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowToolbarCustomizeItem     = false;
     this.ribbonControl1.Size      = new System.Drawing.Size(917, 144);
     this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     //
     // backstageViewControl1
     //
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl1);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl2);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl3);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl4);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl5);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl6);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl7);
     this.backstageViewControl1.Controls.Add(this.backstageViewClientControl8);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem1);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem2);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem3);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem4);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem5);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem6);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem7);
     this.backstageViewControl1.Items.Add(this.backstageViewItemSeparator1);
     this.backstageViewControl1.Items.Add(this.backstageViewTabItem8);
     this.backstageViewControl1.Location = new System.Drawing.Point(586, 73);
     this.backstageViewControl1.Name     = "backstageViewControl1";
     this.backstageViewControl1.Office2013StyleOptions.HeaderBackColor = System.Drawing.Color.White;
     this.backstageViewControl1.OwnerControl     = this.ribbonControl1;
     this.backstageViewControl1.SelectedTab      = this.backstageViewTabItem1;
     this.backstageViewControl1.SelectedTabIndex = 0;
     this.backstageViewControl1.Size             = new System.Drawing.Size(225, 391);
     this.backstageViewControl1.Style            = DevExpress.XtraBars.Ribbon.BackstageViewStyle.Office2013;
     this.backstageViewControl1.TabIndex         = 2;
     //
     // backstageViewClientControl1
     //
     this.backstageViewClientControl1.Controls.Add(this.vonbangtien);
     this.backstageViewClientControl1.Location = new System.Drawing.Point(168, 65);
     this.backstageViewClientControl1.Name     = "backstageViewClientControl1";
     this.backstageViewClientControl1.Size     = new System.Drawing.Size(39, 325);
     this.backstageViewClientControl1.TabIndex = 1;
     //
     // backstageViewClientControl2
     //
     this.backstageViewClientControl2.Controls.Add(this.muahangphaitra);
     this.backstageViewClientControl2.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl2.Name     = "backstageViewClientControl2";
     this.backstageViewClientControl2.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl2.TabIndex = 2;
     //
     // backstageViewClientControl3
     //
     this.backstageViewClientControl3.Controls.Add(this.banhangphaithu);
     this.backstageViewClientControl3.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl3.Name     = "backstageViewClientControl3";
     this.backstageViewClientControl3.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl3.TabIndex = 3;
     //
     // backstageViewClientControl4
     //
     this.backstageViewClientControl4.Controls.Add(this.hangtonkho);
     this.backstageViewClientControl4.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl4.Name     = "backstageViewClientControl4";
     this.backstageViewClientControl4.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl4.TabIndex = 4;
     //
     // backstageViewClientControl5
     //
     this.backstageViewClientControl5.Controls.Add(this.quanlytaisan);
     this.backstageViewClientControl5.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl5.Name     = "backstageViewClientControl5";
     this.backstageViewClientControl5.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl5.TabIndex = 5;
     //
     // backstageViewClientControl6
     //
     this.backstageViewClientControl6.Controls.Add(this.chiphigiathanh);
     this.backstageViewClientControl6.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl6.Name     = "backstageViewClientControl6";
     this.backstageViewClientControl6.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl6.TabIndex = 6;
     //
     // backstageViewClientControl7
     //
     this.backstageViewClientControl7.Controls.Add(this.ketoantonghop);
     this.backstageViewClientControl7.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl7.Name     = "backstageViewClientControl7";
     this.backstageViewClientControl7.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl7.TabIndex = 7;
     //
     // backstageViewClientControl8
     //
     this.backstageViewClientControl8.Controls.Add(this.hethong);
     this.backstageViewClientControl8.Location = new System.Drawing.Point(156, 63);
     this.backstageViewClientControl8.Name     = "backstageViewClientControl8";
     this.backstageViewClientControl8.Size     = new System.Drawing.Size(51, 327);
     this.backstageViewClientControl8.TabIndex = 8;
     //
     // backstageViewTabItem1
     //
     this.backstageViewTabItem1.Caption        = "Vốn bằng tiền";
     this.backstageViewTabItem1.ContentControl = this.backstageViewClientControl1;
     this.backstageViewTabItem1.Name           = "backstageViewTabItem1";
     this.backstageViewTabItem1.Selected       = true;
     //
     // backstageViewTabItem2
     //
     this.backstageViewTabItem2.Caption        = "Mua hàng phải trả";
     this.backstageViewTabItem2.ContentControl = this.backstageViewClientControl2;
     this.backstageViewTabItem2.Name           = "backstageViewTabItem2";
     //
     // backstageViewTabItem3
     //
     this.backstageViewTabItem3.Caption        = "Bán hàng phải thu";
     this.backstageViewTabItem3.ContentControl = this.backstageViewClientControl3;
     this.backstageViewTabItem3.Name           = "backstageViewTabItem3";
     //
     // backstageViewTabItem4
     //
     this.backstageViewTabItem4.Caption        = "Hàng tồn kho";
     this.backstageViewTabItem4.ContentControl = this.backstageViewClientControl4;
     this.backstageViewTabItem4.Name           = "backstageViewTabItem4";
     //
     // backstageViewTabItem5
     //
     this.backstageViewTabItem5.Caption        = "Quản lý tài sản";
     this.backstageViewTabItem5.ContentControl = this.backstageViewClientControl5;
     this.backstageViewTabItem5.Name           = "backstageViewTabItem5";
     //
     // backstageViewTabItem6
     //
     this.backstageViewTabItem6.Caption        = "Chi phí giá thành";
     this.backstageViewTabItem6.ContentControl = this.backstageViewClientControl6;
     this.backstageViewTabItem6.Name           = "backstageViewTabItem6";
     //
     // backstageViewTabItem7
     //
     this.backstageViewTabItem7.Caption        = "Kế toán tổng hợp";
     this.backstageViewTabItem7.ContentControl = this.backstageViewClientControl7;
     this.backstageViewTabItem7.Name           = "backstageViewTabItem7";
     //
     // backstageViewItemSeparator1
     //
     this.backstageViewItemSeparator1.Name = "backstageViewItemSeparator1";
     //
     // backstageViewTabItem8
     //
     this.backstageViewTabItem8.Caption        = "Hệ thống";
     this.backstageViewTabItem8.ContentControl = this.backstageViewClientControl8;
     this.backstageViewTabItem8.Name           = "backstageViewTabItem8";
     //
     // addBtn
     //
     this.addBtn.Caption                 = "Thêm";
     this.addBtn.Id                      = 1;
     this.addBtn.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("addBtn.ImageOptions.Image")));
     this.addBtn.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("addBtn.ImageOptions.LargeImage")));
     this.addBtn.Name                    = "addBtn";
     //
     // editBtn
     //
     this.editBtn.Caption                 = "Sửa";
     this.editBtn.Id                      = 2;
     this.editBtn.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("editBtn.ImageOptions.Image")));
     this.editBtn.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("editBtn.ImageOptions.LargeImage")));
     this.editBtn.Name                    = "editBtn";
     //
     // deleteBtn
     //
     this.deleteBtn.Caption                 = "Xoá";
     this.deleteBtn.Id                      = 3;
     this.deleteBtn.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("deleteBtn.ImageOptions.Image")));
     this.deleteBtn.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("deleteBtn.ImageOptions.LargeImage")));
     this.deleteBtn.Name                    = "deleteBtn";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Lọc";
     this.barButtonItem4.Id      = 4;
     this.barButtonItem4.Name    = "barButtonItem4";
     //
     // printBtn
     //
     this.printBtn.Caption                 = "In";
     this.printBtn.Id                      = 5;
     this.printBtn.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("printBtn.ImageOptions.Image")));
     this.printBtn.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("printBtn.ImageOptions.LargeImage")));
     this.printBtn.Name                    = "printBtn";
     //
     // helpBtn
     //
     this.helpBtn.Caption                 = "Hướng dẫn sử dụng";
     this.helpBtn.Id                      = 6;
     this.helpBtn.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("helpBtn.ImageOptions.Image")));
     this.helpBtn.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("helpBtn.ImageOptions.LargeImage")));
     this.helpBtn.Name                    = "helpBtn";
     //
     // settingBtn
     //
     this.settingBtn.Caption                 = "Hệ thống";
     this.settingBtn.Id                      = 7;
     this.settingBtn.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("settingBtn.ImageOptions.Image")));
     this.settingBtn.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("settingBtn.ImageOptions.LargeImage")));
     this.settingBtn.Name                    = "settingBtn";
     //
     // rbiGallery
     //
     this.rbiGallery.Caption = "InplaceGallery1";
     //
     //
     //
     galleryItemGroup1.Caption = "Group1";
     this.rbiGallery.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.rbiGallery.Id   = 1;
     this.rbiGallery.Name = "rbiGallery";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2,
         this.ribbonPageGroup3
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Công cụ";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.addBtn);
     this.ribbonPageGroup1.ItemLinks.Add(this.editBtn);
     this.ribbonPageGroup1.ItemLinks.Add(this.deleteBtn);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Table Tool";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.printBtn);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Feature";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.helpBtn);
     this.ribbonPageGroup3.ItemLinks.Add(this.settingBtn);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "System";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 432);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(917, 32);
     //
     // ribbonPage2
     //
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "ribbonPage2";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location  = new System.Drawing.Point(0, 144);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(917, 288);
     this.panel1.TabIndex  = 4;
     //
     // Frame
     //
     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(917, 464);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.backstageViewControl1);
     this.Controls.Add(this.ribbonControl1);
     this.Name      = "Frame";
     this.Ribbon    = this.ribbonControl1;
     this.StatusBar = this.ribbonStatusBar1;
     this.Tag       = "Windown1";
     this.Text      = "Frame";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.backstageViewControl1)).EndInit();
     this.backstageViewControl1.ResumeLayout(false);
     this.backstageViewClientControl1.ResumeLayout(false);
     this.backstageViewClientControl2.ResumeLayout(false);
     this.backstageViewClientControl3.ResumeLayout(false);
     this.backstageViewClientControl4.ResumeLayout(false);
     this.backstageViewClientControl5.ResumeLayout(false);
     this.backstageViewClientControl6.ResumeLayout(false);
     this.backstageViewClientControl7.ResumeLayout(false);
     this.backstageViewClientControl8.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #32
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(MainForm));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            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();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.StartMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.subNew = new DevExpress.XtraBars.BarSubItem();
            this.btnNewProject = new DevExpress.XtraBars.BarButtonItem();
            this.btnNewConcept = new DevExpress.XtraBars.BarButtonItem();
            this.subOpen = new DevExpress.XtraBars.BarSubItem();
            this.btnOpenProject = new DevExpress.XtraBars.BarButtonItem();
            this.btnOpenModel = new DevExpress.XtraBars.BarButtonItem();
            this.subSave = new DevExpress.XtraBars.BarSubItem();
            this.btnSaveProjectAs = new DevExpress.XtraBars.BarButtonItem();
            this.btnSaveModelAs = new DevExpress.XtraBars.BarButtonItem();
            this.btnCloseProject = new DevExpress.XtraBars.BarButtonItem();
            this.btnClose = new DevExpress.XtraBars.BarButtonItem();
            this.btnPrint = new DevExpress.XtraBars.BarButtonItem();
            this.btnExit = new DevExpress.XtraBars.BarButtonItem();
            this.imageCollection2 = new DevExpress.Utils.ImageCollection(this.components);
            this.btnPaste = new DevExpress.XtraBars.BarButtonItem();
            this.btnCut = new DevExpress.XtraBars.BarButtonItem();
            this.btnCopy = new DevExpress.XtraBars.BarButtonItem();
            this.btnUndo = new DevExpress.XtraBars.BarButtonItem();
            this.btnSelectAll = new DevExpress.XtraBars.BarButtonItem();
            this.galColor = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.gddColor = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.btnAbout = new DevExpress.XtraBars.BarButtonItem();
            this.btnZoom = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.btnEntity = new DevExpress.XtraBars.BarButtonItem();
            this.btnRelationship = new DevExpress.XtraBars.BarButtonItem();
            this.btnDelete = new DevExpress.XtraBars.BarButtonItem();
            this.btnGeneratePhysical = new DevExpress.XtraBars.BarButtonItem();
            this.btnGenerateSQl = new DevExpress.XtraBars.BarButtonItem();
            this.btnVerifyModel = new DevExpress.XtraBars.BarButtonItem();
            this.btnAutoLayout = new DevExpress.XtraBars.BarButtonItem();
            this.btnOverView = new DevExpress.XtraBars.BarButtonItem();
            this.chkSkin = new DevExpress.XtraBars.BarCheckItem();
            this.chkGrid = new DevExpress.XtraBars.BarCheckItem();
            this.btnRedo = new DevExpress.XtraBars.BarButtonItem();
            this.btnConnect = new DevExpress.XtraBars.BarButtonItem();
            this.chkDirect = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.chkFile = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.btnSkin = new DevExpress.XtraBars.BarSubItem();
            this.chkTotal = new DevExpress.XtraBars.BarButtonItem();
            this.btnDeleteModel = new DevExpress.XtraBars.BarButtonItem();
            this.chkPartial = new DevExpress.XtraBars.BarButtonItem();
            this.chkDisjoint = new DevExpress.XtraBars.BarButtonItem();
            this.chkOverlap = new DevExpress.XtraBars.BarButtonItem();
            this.btnAddSubType = new DevExpress.XtraBars.BarButtonItem();
            this.chkIsolate = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.grpSkinMode = new DevExpress.XtraBars.BarEditItem();
            this.reposSkinMode = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
            this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonHome = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonFile = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonEdit = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStyle = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonMiniTool = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonEERD = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonCompleteness = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonDisjointness = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonTool = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonDataSetting = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPhysical = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.repositoryItemMRUEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMRUEdit();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockToolBox = new DevExpress.XtraBars.Docking.DockPanel();
            this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
            this.navBarToolBox = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarRelationship = new DevExpress.XtraNavBar.NavBarGroup();
            this.btnNorRel = new DevExpress.XtraNavBar.NavBarItem();
            this.btnIdenRel = new DevExpress.XtraNavBar.NavBarItem();
            this.btnAssEn = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarGroupControlContainer1 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.radTernary = new System.Windows.Forms.RadioButton();
            this.radBinary = new System.Windows.Forms.RadioButton();
            this.radUnary = new System.Windows.Forms.RadioButton();
            this.navBarEntity = new DevExpress.XtraNavBar.NavBarGroup();
            this.btnStrongEntity = new DevExpress.XtraNavBar.NavBarItem();
            this.btnWeakEntity = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarDegree = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarAttribute = new DevExpress.XtraNavBar.NavBarGroup();
            this.btnSimAtt = new DevExpress.XtraNavBar.NavBarItem();
            this.btnKeyAtt = new DevExpress.XtraNavBar.NavBarItem();
            this.btnMulAtt = new DevExpress.XtraNavBar.NavBarItem();
            this.btnDerAtt = new DevExpress.XtraNavBar.NavBarItem();
            this.btnComAtt = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarOther = new DevExpress.XtraNavBar.NavBarGroup();
            this.btnPointer = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem3 = new DevExpress.XtraNavBar.NavBarItem();
            this.imageCollection3 = new DevExpress.Utils.ImageCollection(this.components);
            this.dockExplorer = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.treeView1 = new System.Windows.Forms.TreeView();
            this.dockErrorList = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.listErrorList = new DevExpress.XtraEditors.ListBoxControl();
            this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.StartMenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gddColor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.reposSkinMode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMRUEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockToolBox.SuspendLayout();
            this.controlContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarToolBox)).BeginInit();
            this.navBarToolBox.SuspendLayout();
            this.navBarGroupControlContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).BeginInit();
            this.dockExplorer.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            this.dockErrorList.SuspendLayout();
            this.dockPanel2_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.listErrorList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // ribbon
            // 
            this.ribbon.ApplicationButtonDropDownControl = this.StartMenu;
            this.ribbon.ApplicationButtonKeyTip = "";
            this.ribbon.ApplicationIcon = ((System.Drawing.Bitmap)(resources.GetObject("ribbon.ApplicationIcon")));
            this.ribbon.Images = this.imageCollection2;
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.btnNewConcept,
            this.btnOpenProject,
            this.btnClose,
            this.btnPrint,
            this.subSave,
            this.btnPaste,
            this.btnCut,
            this.btnCopy,
            this.btnUndo,
            this.btnSelectAll,
            this.galColor,
            this.btnAbout,
            this.btnSaveModelAs,
            this.btnSaveProjectAs,
            this.btnExit,
            this.btnZoom,
            this.btnEntity,
            this.btnRelationship,
            this.btnDelete,
            this.btnGeneratePhysical,
            this.btnGenerateSQl,
            this.btnVerifyModel,
            this.btnAutoLayout,
            this.btnOverView,
            this.chkSkin,
            this.chkGrid,
            this.btnRedo,
            this.subNew,
            this.btnNewProject,
            this.subOpen,
            this.btnOpenModel,
            this.btnCloseProject,
            this.btnConnect,
            this.chkDirect,
            this.chkFile,
            this.rgbiSkins,
            this.btnSkin,
            this.chkTotal,
            this.btnDeleteModel,
            this.chkPartial,
            this.chkDisjoint,
            this.chkOverlap,
            this.btnAddSubType,
            this.chkIsolate,
            this.grpSkinMode});
            this.ribbon.LargeImages = this.imageCollection1;
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 82;
            this.ribbon.Name = "ribbon";
            this.ribbon.PageHeaderItemLinks.Add(this.btnAbout);
            this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonHome,
            this.ribbonEERD,
            this.ribbonTool});
            this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemZoomTrackBar1,
            this.repositoryItemCheckEdit1,
            this.repositoryItemCheckEdit2,
            this.repositoryItemCheckEdit3,
            this.repositoryItemMRUEdit1,
            this.repositoryItemCheckEdit4,
            this.reposSkinMode});
            this.ribbon.SelectedPage = this.ribbonHome;
            this.ribbon.Size = new System.Drawing.Size(784, 149);
            this.ribbon.Toolbar.ItemLinks.Add(this.btnOpenProject);
            this.ribbon.Toolbar.ItemLinks.Add(this.btnSaveModelAs);
            this.ribbon.Toolbar.ItemLinks.Add(this.btnUndo);
            this.ribbon.Toolbar.ItemLinks.Add(this.btnSkin);
            // 
            // StartMenu
            // 
            this.StartMenu.BottomPaneControlContainer = null;
            this.StartMenu.ItemLinks.Add(this.subNew);
            this.StartMenu.ItemLinks.Add(this.subOpen, true);
            this.StartMenu.ItemLinks.Add(this.subSave);
            this.StartMenu.ItemLinks.Add(this.btnCloseProject, true);
            this.StartMenu.ItemLinks.Add(this.btnClose);
            this.StartMenu.ItemLinks.Add(this.btnPrint, true);
            this.StartMenu.ItemLinks.Add(this.btnExit);
            this.StartMenu.Name = "StartMenu";
            this.StartMenu.Ribbon = this.ribbon;
            this.StartMenu.RightPaneControlContainer = null;
            this.StartMenu.RightPaneWidth = 240;
            this.StartMenu.ShowRightPane = true;
            // 
            // subNew
            // 
            this.subNew.Caption = "New";
            this.subNew.Id = 44;
            this.subNew.LargeImageIndex = 0;
            this.subNew.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnNewProject),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnNewConcept)});
            this.subNew.Name = "subNew";
            // 
            // btnNewProject
            // 
            this.btnNewProject.Caption = "New Project";
            this.btnNewProject.Id = 45;
            this.btnNewProject.ImageIndex = 6;
            this.btnNewProject.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                            | System.Windows.Forms.Keys.N));
            this.btnNewProject.LargeImageIndex = 0;
            this.btnNewProject.Name = "btnNewProject";
            this.btnNewProject.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewProject_ItemClick);
            // 
            // btnNewConcept
            // 
            this.btnNewConcept.Caption = "New Conceptual Model";
            this.btnNewConcept.Id = 2;
            this.btnNewConcept.ImageIndex = 6;
            this.btnNewConcept.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.btnNewConcept.LargeImageIndex = 0;
            this.btnNewConcept.Name = "btnNewConcept";
            this.btnNewConcept.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewConcept_ItemClick);
            // 
            // subOpen
            // 
            this.subOpen.Caption = "Open";
            this.subOpen.Id = 47;
            this.subOpen.ImageIndex = 7;
            this.subOpen.LargeImageIndex = 9;
            this.subOpen.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnOpenProject),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnOpenModel)});
            this.subOpen.Name = "subOpen";
            // 
            // btnOpenProject
            // 
            this.btnOpenProject.Caption = "Open Project...";
            this.btnOpenProject.Id = 3;
            this.btnOpenProject.ImageIndex = 7;
            this.btnOpenProject.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                            | System.Windows.Forms.Keys.O));
            this.btnOpenProject.LargeImageIndex = 9;
            this.btnOpenProject.Name = "btnOpenProject";
            this.btnOpenProject.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.btnOpenProject.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOpenProject_ItemClick);
            // 
            // btnOpenModel
            // 
            this.btnOpenModel.Caption = "Open Model ...";
            this.btnOpenModel.Enabled = false;
            this.btnOpenModel.Id = 48;
            this.btnOpenModel.ImageIndex = 7;
            this.btnOpenModel.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
            this.btnOpenModel.LargeImageIndex = 9;
            this.btnOpenModel.Name = "btnOpenModel";
            this.btnOpenModel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOpenModel_ItemClick);
            // 
            // subSave
            // 
            this.subSave.Caption = "Save";
            this.subSave.Id = 7;
            this.subSave.LargeImageIndex = 2;
            this.subSave.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnSaveProjectAs),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnSaveModelAs)});
            this.subSave.Name = "subSave";
            // 
            // btnSaveProjectAs
            // 
            this.btnSaveProjectAs.Caption = "Save Project";
            this.btnSaveProjectAs.Enabled = false;
            this.btnSaveProjectAs.Id = 20;
            this.btnSaveProjectAs.ImageIndex = 21;
            this.btnSaveProjectAs.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                            | System.Windows.Forms.Keys.S));
            this.btnSaveProjectAs.LargeImageIndex = 2;
            this.btnSaveProjectAs.Name = "btnSaveProjectAs";
            this.btnSaveProjectAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSaveProjectAs_ItemClick);
            // 
            // btnSaveModelAs
            // 
            this.btnSaveModelAs.Caption = "Save Model";
            this.btnSaveModelAs.Id = 19;
            this.btnSaveModelAs.ImageIndex = 10;
            this.btnSaveModelAs.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
            this.btnSaveModelAs.LargeImageIndex = 7;
            this.btnSaveModelAs.Name = "btnSaveModelAs";
            this.btnSaveModelAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSaveModelAs_ItemClick);
            // 
            // btnCloseProject
            // 
            this.btnCloseProject.Caption = "Close Project";
            this.btnCloseProject.Id = 49;
            this.btnCloseProject.ImageIndex = 12;
            this.btnCloseProject.LargeImageIndex = 8;
            this.btnCloseProject.Name = "btnCloseProject";
            this.btnCloseProject.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnCloseProject_ItemClick);
            // 
            // btnClose
            // 
            this.btnClose.Caption = "Close Model";
            this.btnClose.Id = 4;
            this.btnClose.ImageIndex = 12;
            this.btnClose.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W));
            this.btnClose.LargeImageIndex = 8;
            this.btnClose.Name = "btnClose";
            this.btnClose.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.btnClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClose_ItemClick);
            // 
            // btnPrint
            // 
            this.btnPrint.Caption = "Print Model";
            this.btnPrint.Enabled = false;
            this.btnPrint.Id = 5;
            this.btnPrint.ImageIndex = 9;
            this.btnPrint.LargeImageIndex = 6;
            this.btnPrint.Name = "btnPrint";
            this.btnPrint.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // btnExit
            // 
            this.btnExit.Caption = "Exit";
            this.btnExit.Id = 21;
            this.btnExit.LargeImageIndex = 1;
            this.btnExit.Name = "btnExit";
            this.btnExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExit_ItemClick);
            // 
            // imageCollection2
            // 
            this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
            // 
            // btnPaste
            // 
            this.btnPaste.Caption = "Paste";
            this.btnPaste.Enabled = false;
            this.btnPaste.Id = 9;
            this.btnPaste.LargeImageIndex = 3;
            this.btnPaste.Name = "btnPaste";
            // 
            // btnCut
            // 
            this.btnCut.Caption = "Cut";
            this.btnCut.Enabled = false;
            this.btnCut.Id = 10;
            this.btnCut.ImageIndex = 2;
            this.btnCut.Name = "btnCut";
            // 
            // btnCopy
            // 
            this.btnCopy.Caption = "Copy";
            this.btnCopy.Enabled = false;
            this.btnCopy.Id = 11;
            this.btnCopy.ImageIndex = 1;
            this.btnCopy.Name = "btnCopy";
            this.btnCopy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClear_Click);
            // 
            // btnUndo
            // 
            this.btnUndo.Caption = "Undo";
            this.btnUndo.Id = 13;
            this.btnUndo.ImageIndex = 11;
            this.btnUndo.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z));
            this.btnUndo.Name = "btnUndo";
            this.btnUndo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnUndo_ItemClick);
            // 
            // btnSelectAll
            // 
            this.btnSelectAll.Caption = "Select All";
            this.btnSelectAll.Enabled = false;
            this.btnSelectAll.Id = 14;
            this.btnSelectAll.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A));
            this.btnSelectAll.Name = "btnSelectAll";
            // 
            // galColor
            // 
            this.galColor.Caption = "Color";
            // 
            // 
            // 
            this.galColor.Gallery.ColumnCount = 10;
            galleryItemGroup1.Caption = "Main";
            this.galColor.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galColor.Gallery.ImageSize = new System.Drawing.Size(15, 7);
            this.galColor.Gallery.CustomDrawItemImage += new DevExpress.XtraBars.Ribbon.GalleryItemCustomDrawEventHandler(this.gddColor_GalleryCustomDrawItemImage);
            this.galColor.GalleryDropDown = this.gddColor;
            this.galColor.Id = 15;
            this.galColor.Name = "galColor";
            this.galColor.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galColor_GalleryItemClick);
            // 
            // gddColor
            // 
            // 
            // 
            // 
            this.gddColor.Gallery.Appearance.ItemCaption.Font = new System.Drawing.Font("Tahoma", 6.75F);
            this.gddColor.Gallery.Appearance.ItemCaption.Options.UseFont = true;
            this.gddColor.Gallery.Appearance.ItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gddColor.Gallery.FilterCaption = "All Colors";
            this.gddColor.Gallery.FixedImageSize = false;
            galleryItemGroup2.Caption = "Web Colors";
            galleryItemGroup3.Caption = "System Colors";
            this.gddColor.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2,
            galleryItemGroup3});
            this.gddColor.Gallery.ImageSize = new System.Drawing.Size(48, 16);
            this.gddColor.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.gddColor.Gallery.RowCount = 5;
            this.gddColor.Gallery.ShowItemText = true;
            this.gddColor.Gallery.SizeMode = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            this.gddColor.Gallery.CustomDrawItemImage += new DevExpress.XtraBars.Ribbon.GalleryItemCustomDrawEventHandler(this.gddColor_GalleryCustomDrawItemImage);
            this.gddColor.Name = "gddColor";
            this.gddColor.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.gddColor_GalleryItemClick);
            // 
            // btnAbout
            // 
            this.btnAbout.Caption = "About";
            this.btnAbout.Id = 16;
            this.btnAbout.ImageIndex = 25;
            this.btnAbout.Name = "btnAbout";
            this.btnAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAbout_ItemClick);
            // 
            // btnZoom
            // 
            this.btnZoom.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.btnZoom.Caption = "100%";
            this.btnZoom.Edit = this.repositoryItemZoomTrackBar1;
            this.btnZoom.EditValue = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.btnZoom.Id = 22;
            this.btnZoom.Name = "btnZoom";
            this.btnZoom.Width = 200;
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            // 
            // btnEntity
            // 
            this.btnEntity.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnEntity.Caption = "Entity";
            this.btnEntity.Id = 24;
            this.btnEntity.LargeImageIndex = 10;
            this.btnEntity.Name = "btnEntity";
            // 
            // btnRelationship
            // 
            this.btnRelationship.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnRelationship.Caption = "Relationship";
            this.btnRelationship.Id = 27;
            this.btnRelationship.LargeImageIndex = 11;
            this.btnRelationship.Name = "btnRelationship";
            // 
            // btnDelete
            // 
            this.btnDelete.Caption = "Delete";
            this.btnDelete.Id = 31;
            this.btnDelete.ImageIndex = 13;
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDelete_Click);
            // 
            // btnGeneratePhysical
            // 
            this.btnGeneratePhysical.Caption = "Generate Physical Data Model";
            this.btnGeneratePhysical.Id = 32;
            this.btnGeneratePhysical.LargeImageIndex = 12;
            this.btnGeneratePhysical.Name = "btnGeneratePhysical";
            this.btnGeneratePhysical.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGeneratePhysical_ItemClick);
            // 
            // btnGenerateSQl
            // 
            this.btnGenerateSQl.Caption = "Generate DDL for DBMS";
            this.btnGenerateSQl.Id = 33;
            this.btnGenerateSQl.LargeImageIndex = 13;
            this.btnGenerateSQl.Name = "btnGenerateSQl";
            this.btnGenerateSQl.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGenerateSQl_ItemClick);
            // 
            // btnVerifyModel
            // 
            this.btnVerifyModel.Caption = "Verify Model";
            this.btnVerifyModel.Id = 34;
            this.btnVerifyModel.LargeImageIndex = 11;
            this.btnVerifyModel.Name = "btnVerifyModel";
            this.btnVerifyModel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnVerifyModel_ItemClick);
            // 
            // btnAutoLayout
            // 
            this.btnAutoLayout.Caption = "Auto Layout";
            this.btnAutoLayout.Enabled = false;
            this.btnAutoLayout.Id = 35;
            this.btnAutoLayout.ImageIndex = 30;
            this.btnAutoLayout.Name = "btnAutoLayout";
            // 
            // btnOverView
            // 
            this.btnOverView.Caption = "Over View";
            this.btnOverView.Id = 36;
            this.btnOverView.LargeImageIndex = 4;
            this.btnOverView.Name = "btnOverView";
            // 
            // chkSkin
            // 
            this.chkSkin.Caption = "Enable Skin";
            this.chkSkin.Checked = true;
            this.chkSkin.Id = 40;
            this.chkSkin.LargeImageIndex = 10;
            this.chkSkin.Name = "chkSkin";
            this.chkSkin.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.chkApplySkin_CheckedChanged);
            // 
            // chkGrid
            // 
            this.chkGrid.Caption = "Show Grid";
            this.chkGrid.Id = 42;
            this.chkGrid.ImageIndex = 29;
            this.chkGrid.Name = "chkGrid";
            // 
            // btnRedo
            // 
            this.btnRedo.Caption = "Redo";
            this.btnRedo.Id = 43;
            this.btnRedo.ImageIndex = 23;
            this.btnRedo.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y));
            this.btnRedo.Name = "btnRedo";
            this.btnRedo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRedo_ItemClick);
            // 
            // btnConnect
            // 
            this.btnConnect.Caption = "Connect to Database...";
            this.btnConnect.Id = 50;
            this.btnConnect.ImageIndex = 31;
            this.btnConnect.LargeImageIndex = 14;
            this.btnConnect.LargeWidth = 100;
            this.btnConnect.Name = "btnConnect";
            this.btnConnect.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnConnect_ItemClick);
            // 
            // chkDirect
            // 
            this.chkDirect.Caption = "Direct";
            this.chkDirect.Edit = this.repositoryItemCheckEdit2;
            this.chkDirect.EditValue = true;
            this.chkDirect.Id = 53;
            this.chkDirect.Name = "chkDirect";
            this.chkDirect.EditValueChanged += new System.EventHandler(this.chkDirect_EditValueChanged);
            // 
            // repositoryItemCheckEdit2
            // 
            this.repositoryItemCheckEdit2.AutoHeight = false;
            this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
            // 
            // chkFile
            // 
            this.chkFile.Caption = "SQL File";
            this.chkFile.Edit = this.repositoryItemCheckEdit3;
            this.chkFile.EditValue = true;
            this.chkFile.Id = 54;
            this.chkFile.Name = "chkFile";
            this.chkFile.Width = 30;
            this.chkFile.EditValueChanged += new System.EventHandler(this.chkFile_EditValueChanged);
            // 
            // repositoryItemCheckEdit3
            // 
            this.repositoryItemCheckEdit3.AutoHeight = false;
            this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Caption = "Skins";
            // 
            // 
            // 
            galleryItemGroup4.Caption = "Main Skin";
            galleryItemGroup5.Caption = "Office Skin";
            this.rgbiSkins.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup4,
            galleryItemGroup5});
            this.rgbiSkins.Id = 55;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // btnSkin
            // 
            this.btnSkin.Caption = "Paint style";
            this.btnSkin.Description = "Select a paint scheme";
            this.btnSkin.Hint = "Select a paint scheme";
            this.btnSkin.Id = 59;
            this.btnSkin.ImageIndex = 26;
            this.btnSkin.Name = "btnSkin";
            this.btnSkin.Popup += new System.EventHandler(this.btnSkin_Popup);
            // 
            // chkTotal
            // 
            this.chkTotal.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.chkTotal.Caption = "Total Specialization";
            this.chkTotal.Down = true;
            this.chkTotal.Id = 68;
            this.chkTotal.LargeImageIndex = 15;
            this.chkTotal.LargeWidth = 100;
            this.chkTotal.Name = "chkTotal";
            this.chkTotal.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkTotal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.chkTotal_ItemClick);
            // 
            // btnDeleteModel
            // 
            this.btnDeleteModel.Caption = "Delete Model";
            this.btnDeleteModel.Id = 69;
            this.btnDeleteModel.ImageIndex = 13;
            this.btnDeleteModel.Name = "btnDeleteModel";
            // 
            // chkPartial
            // 
            this.chkPartial.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.chkPartial.Caption = "Partial Specialization";
            this.chkPartial.Id = 70;
            this.chkPartial.LargeImageIndex = 16;
            this.chkPartial.LargeWidth = 100;
            this.chkPartial.Name = "chkPartial";
            this.chkPartial.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkPartial.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.chkPartial_ItemClick);
            // 
            // chkDisjoint
            // 
            this.chkDisjoint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.chkDisjoint.Caption = "Disjoint Constraint";
            this.chkDisjoint.Down = true;
            this.chkDisjoint.Id = 71;
            this.chkDisjoint.LargeImageIndex = 17;
            this.chkDisjoint.LargeWidth = 100;
            this.chkDisjoint.Name = "chkDisjoint";
            this.chkDisjoint.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkDisjoint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.chkDisjoint_ItemClick);
            // 
            // chkOverlap
            // 
            this.chkOverlap.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.chkOverlap.Caption = "Overlap Constraint";
            this.chkOverlap.Id = 72;
            this.chkOverlap.LargeImageIndex = 18;
            this.chkOverlap.LargeWidth = 100;
            this.chkOverlap.Name = "chkOverlap";
            this.chkOverlap.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.chkOverlap.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.chkOverlap_ItemClick);
            // 
            // btnAddSubType
            // 
            this.btnAddSubType.Caption = "Add Subtype";
            this.btnAddSubType.Id = 73;
            this.btnAddSubType.LargeImageIndex = 19;
            this.btnAddSubType.LargeWidth = 100;
            this.btnAddSubType.Name = "btnAddSubType";
            this.btnAddSubType.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnAddSubType.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAddSubType_ItemClick);
            // 
            // chkIsolate
            // 
            this.chkIsolate.Caption = "Check Isolation";
            this.chkIsolate.Edit = this.repositoryItemCheckEdit4;
            this.chkIsolate.EditValue = true;
            this.chkIsolate.Id = 75;
            this.chkIsolate.Name = "chkIsolate";
            this.chkIsolate.Width = 25;
            this.chkIsolate.EditValueChanged += new System.EventHandler(this.chkIsolate_EditValueChanged);
            // 
            // repositoryItemCheckEdit4
            // 
            this.repositoryItemCheckEdit4.AutoHeight = false;
            this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
            // 
            // grpSkinMode
            // 
            this.grpSkinMode.Edit = this.reposSkinMode;
            this.grpSkinMode.EditHeight = 70;
            this.grpSkinMode.EditValue = true;
            this.grpSkinMode.Id = 78;
            this.grpSkinMode.Name = "grpSkinMode";
            this.grpSkinMode.Width = 100;
            this.grpSkinMode.EditValueChanged += new System.EventHandler(this.grpSkinMode_EditValueChanged);
            // 
            // reposSkinMode
            // 
            this.reposSkinMode.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "General Mode"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "Separate Mode")});
            this.reposSkinMode.Name = "reposSkinMode";
            // 
            // imageCollection1
            // 
            this.imageCollection1.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
            // 
            // ribbonHome
            // 
            this.ribbonHome.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonFile,
            this.ribbonEdit,
            this.ribbonStyle,
            this.ribbonMiniTool});
            this.ribbonHome.KeyTip = "";
            this.ribbonHome.Name = "ribbonHome";
            this.ribbonHome.Text = "Home";
            // 
            // ribbonFile
            // 
            this.ribbonFile.ItemLinks.Add(this.subNew);
            this.ribbonFile.ItemLinks.Add(this.subOpen, true);
            this.ribbonFile.ItemLinks.Add(this.subSave);
            this.ribbonFile.ItemLinks.Add(this.btnCloseProject, true);
            this.ribbonFile.ItemLinks.Add(this.btnClose);
            this.ribbonFile.ItemLinks.Add(this.btnPrint);
            this.ribbonFile.KeyTip = "";
            this.ribbonFile.Name = "ribbonFile";
            this.ribbonFile.Text = "File";
            // 
            // ribbonEdit
            // 
            this.ribbonEdit.ItemLinks.Add(this.btnPaste);
            this.ribbonEdit.ItemLinks.Add(this.btnCut);
            this.ribbonEdit.ItemLinks.Add(this.btnCopy);
            this.ribbonEdit.ItemLinks.Add(this.btnDelete);
            this.ribbonEdit.ItemLinks.Add(this.btnUndo, true);
            this.ribbonEdit.ItemLinks.Add(this.btnRedo);
            this.ribbonEdit.ItemLinks.Add(this.btnSelectAll);
            this.ribbonEdit.KeyTip = "";
            this.ribbonEdit.Name = "ribbonEdit";
            this.ribbonEdit.Text = "Edit";
            // 
            // ribbonStyle
            // 
            this.ribbonStyle.ItemLinks.Add(this.chkSkin);
            this.ribbonStyle.ItemLinks.Add(this.grpSkinMode);
            this.ribbonStyle.ItemLinks.Add(this.galColor);
            this.ribbonStyle.KeyTip = "";
            this.ribbonStyle.Name = "ribbonStyle";
            this.ribbonStyle.Text = "Style";
            // 
            // ribbonMiniTool
            // 
            this.ribbonMiniTool.ItemLinks.Add(this.btnVerifyModel, true);
            this.ribbonMiniTool.ItemLinks.Add(this.chkIsolate, true);
            this.ribbonMiniTool.ItemLinks.Add(this.btnAutoLayout);
            this.ribbonMiniTool.ItemLinks.Add(this.chkGrid);
            this.ribbonMiniTool.ItemLinks.Add(this.btnOverView, true);
            this.ribbonMiniTool.KeyTip = "";
            this.ribbonMiniTool.Name = "ribbonMiniTool";
            this.ribbonMiniTool.Text = "Mini Tool";
            // 
            // ribbonEERD
            // 
            this.ribbonEERD.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonCompleteness,
            this.ribbonDisjointness,
            this.ribbonPageGroup2});
            this.ribbonEERD.KeyTip = "";
            this.ribbonEERD.Name = "ribbonEERD";
            this.ribbonEERD.Text = "E-ERD";
            // 
            // ribbonCompleteness
            // 
            this.ribbonCompleteness.ItemLinks.Add(this.chkTotal);
            this.ribbonCompleteness.ItemLinks.Add(this.chkPartial);
            this.ribbonCompleteness.KeyTip = "";
            this.ribbonCompleteness.Name = "ribbonCompleteness";
            this.ribbonCompleteness.Text = "Completeness";
            // 
            // ribbonDisjointness
            // 
            this.ribbonDisjointness.ItemLinks.Add(this.chkDisjoint);
            this.ribbonDisjointness.ItemLinks.Add(this.chkOverlap);
            this.ribbonDisjointness.KeyTip = "";
            this.ribbonDisjointness.Name = "ribbonDisjointness";
            this.ribbonDisjointness.Text = "Disjointness";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.btnAddSubType);
            this.ribbonPageGroup2.KeyTip = "";
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.Text = "Drawing";
            // 
            // ribbonTool
            // 
            this.ribbonTool.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonDataSetting,
            this.ribbonPhysical});
            this.ribbonTool.KeyTip = "";
            this.ribbonTool.Name = "ribbonTool";
            this.ribbonTool.Text = "Tool";
            // 
            // ribbonDataSetting
            // 
            this.ribbonDataSetting.ItemLinks.Add(this.btnConnect);
            this.ribbonDataSetting.ItemLinks.Add(this.chkDirect, true);
            this.ribbonDataSetting.ItemLinks.Add(this.chkFile);
            this.ribbonDataSetting.KeyTip = "";
            this.ribbonDataSetting.Name = "ribbonDataSetting";
            this.ribbonDataSetting.Text = "Database Settings";
            // 
            // ribbonPhysical
            // 
            this.ribbonPhysical.ItemLinks.Add(this.btnGeneratePhysical);
            this.ribbonPhysical.ItemLinks.Add(this.btnGenerateSQl, true);
            this.ribbonPhysical.KeyTip = "";
            this.ribbonPhysical.Name = "ribbonPhysical";
            this.ribbonPhysical.Text = "Generator";
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Style15;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            // 
            // repositoryItemMRUEdit1
            // 
            this.repositoryItemMRUEdit1.AutoHeight = false;
            this.repositoryItemMRUEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemMRUEdit1.Name = "repositoryItemMRUEdit1";
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.btnZoom);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 568);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(784, 23);
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.KeyTip = "";
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "ribbonPageGroup1";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.KeyTip = "";
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            // 
            // defaultLookAndFeel1
            // 
            this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2007 Blue";
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.Filter = "Xml files|*.xml";
            // 
            // saveFileDialog1
            // 
            this.saveFileDialog1.Filter = "Xml files|*.xml";
            // 
            // dockManager1
            // 
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockToolBox,
            this.dockExplorer,
            this.dockErrorList});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // dockToolBox
            // 
            this.dockToolBox.BackColor = System.Drawing.SystemColors.Control;
            this.dockToolBox.Controls.Add(this.controlContainer2);
            this.dockToolBox.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.dockToolBox.ID = new System.Guid("bf2c0b03-eaf4-4fac-926e-4bcf3bf10b36");
            this.dockToolBox.Location = new System.Drawing.Point(0, 149);
            this.dockToolBox.Name = "dockToolBox";
            this.dockToolBox.Size = new System.Drawing.Size(202, 419);
            this.dockToolBox.Text = "Tool Box";
            // 
            // controlContainer2
            // 
            this.controlContainer2.Controls.Add(this.navBarToolBox);
            this.controlContainer2.Location = new System.Drawing.Point(3, 24);
            this.controlContainer2.Name = "controlContainer2";
            this.controlContainer2.Size = new System.Drawing.Size(196, 392);
            this.controlContainer2.TabIndex = 0;
            // 
            // navBarToolBox
            // 
            this.navBarToolBox.ActiveGroup = this.navBarRelationship;
            this.navBarToolBox.AllowSelectedLink = true;
            this.navBarToolBox.ContentButtonHint = null;
            this.navBarToolBox.Controls.Add(this.navBarGroupControlContainer1);
            this.navBarToolBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navBarToolBox.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarEntity,
            this.navBarDegree,
            this.navBarRelationship,
            this.navBarAttribute,
            this.navBarOther});
            this.navBarToolBox.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
            this.btnStrongEntity,
            this.btnWeakEntity,
            this.btnNorRel,
            this.btnIdenRel,
            this.btnAssEn,
            this.btnSimAtt,
            this.btnMulAtt,
            this.btnKeyAtt,
            this.btnDerAtt,
            this.btnComAtt,
            this.btnPointer,
            this.navBarItem1,
            this.navBarItem2,
            this.navBarItem3});
            this.navBarToolBox.Location = new System.Drawing.Point(0, 0);
            this.navBarToolBox.Name = "navBarToolBox";
            this.navBarToolBox.OptionsNavPane.ExpandedWidth = 196;
            this.navBarToolBox.Size = new System.Drawing.Size(196, 392);
            this.navBarToolBox.SmallImages = this.imageCollection3;
            this.navBarToolBox.StoreDefaultPaintStyleName = true;
            this.navBarToolBox.TabIndex = 0;
            // 
            // navBarRelationship
            // 
            this.navBarRelationship.Caption = "Relationship";
            this.navBarRelationship.Expanded = true;
            this.navBarRelationship.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;
            this.navBarRelationship.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
            this.navBarRelationship.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnNorRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnIdenRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnAssEn)});
            this.navBarRelationship.Name = "navBarRelationship";
            // 
            // btnNorRel
            // 
            this.btnNorRel.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNorRel.Appearance.Options.UseFont = true;
            this.btnNorRel.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNorRel.AppearanceDisabled.Options.UseFont = true;
            this.btnNorRel.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNorRel.AppearanceHotTracked.Options.UseFont = true;
            this.btnNorRel.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNorRel.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnNorRel.AppearancePressed.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.btnNorRel.AppearancePressed.Options.UseFont = true;
            this.btnNorRel.AppearancePressed.Options.UseForeColor = true;
            this.btnNorRel.Caption = "Normal Relationship";
            this.btnNorRel.Name = "btnNorRel";
            this.btnNorRel.SmallImageIndex = 2;
            this.btnNorRel.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnIdenRel
            // 
            this.btnIdenRel.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnIdenRel.Appearance.Options.UseFont = true;
            this.btnIdenRel.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnIdenRel.AppearanceDisabled.Options.UseFont = true;
            this.btnIdenRel.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnIdenRel.AppearanceHotTracked.Options.UseFont = true;
            this.btnIdenRel.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnIdenRel.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnIdenRel.AppearancePressed.Options.UseFont = true;
            this.btnIdenRel.AppearancePressed.Options.UseForeColor = true;
            this.btnIdenRel.Caption = "Identify Relationship";
            this.btnIdenRel.Name = "btnIdenRel";
            this.btnIdenRel.SmallImageIndex = 3;
            this.btnIdenRel.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnAssEn
            // 
            this.btnAssEn.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAssEn.Appearance.Options.UseFont = true;
            this.btnAssEn.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAssEn.AppearanceDisabled.Options.UseFont = true;
            this.btnAssEn.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAssEn.AppearanceHotTracked.Options.UseFont = true;
            this.btnAssEn.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAssEn.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnAssEn.AppearancePressed.Options.UseFont = true;
            this.btnAssEn.AppearancePressed.Options.UseForeColor = true;
            this.btnAssEn.Caption = "Associative Entity";
            this.btnAssEn.Name = "btnAssEn";
            this.btnAssEn.SmallImageIndex = 4;
            this.btnAssEn.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // navBarGroupControlContainer1
            // 
            this.navBarGroupControlContainer1.Controls.Add(this.radTernary);
            this.navBarGroupControlContainer1.Controls.Add(this.radBinary);
            this.navBarGroupControlContainer1.Controls.Add(this.radUnary);
            this.navBarGroupControlContainer1.Name = "navBarGroupControlContainer1";
            this.navBarGroupControlContainer1.Size = new System.Drawing.Size(195, 45);
            this.navBarGroupControlContainer1.TabIndex = 0;
            // 
            // radTernary
            // 
            this.radTernary.AutoSize = true;
            this.radTernary.BackColor = System.Drawing.Color.Transparent;
            this.radTernary.Location = new System.Drawing.Point(128, 14);
            this.radTernary.Name = "radTernary";
            this.radTernary.Size = new System.Drawing.Size(63, 17);
            this.radTernary.TabIndex = 0;
            this.radTernary.Text = "Ternary";
            this.radTernary.UseVisualStyleBackColor = false;
            this.radTernary.CheckedChanged += new System.EventHandler(this.DegreeChecked_Change);
            // 
            // radBinary
            // 
            this.radBinary.AutoSize = true;
            this.radBinary.BackColor = System.Drawing.Color.Transparent;
            this.radBinary.Checked = true;
            this.radBinary.Location = new System.Drawing.Point(67, 14);
            this.radBinary.Name = "radBinary";
            this.radBinary.Size = new System.Drawing.Size(55, 17);
            this.radBinary.TabIndex = 0;
            this.radBinary.TabStop = true;
            this.radBinary.Text = "Binary";
            this.radBinary.UseVisualStyleBackColor = false;
            this.radBinary.CheckedChanged += new System.EventHandler(this.DegreeChecked_Change);
            // 
            // radUnary
            // 
            this.radUnary.AutoSize = true;
            this.radUnary.BackColor = System.Drawing.Color.Transparent;
            this.radUnary.Location = new System.Drawing.Point(7, 14);
            this.radUnary.Name = "radUnary";
            this.radUnary.Size = new System.Drawing.Size(54, 17);
            this.radUnary.TabIndex = 0;
            this.radUnary.Text = "Unary";
            this.radUnary.UseVisualStyleBackColor = false;
            this.radUnary.CheckedChanged += new System.EventHandler(this.DegreeChecked_Change);
            // 
            // navBarEntity
            // 
            this.navBarEntity.Caption = "Entity";
            this.navBarEntity.Expanded = true;
            this.navBarEntity.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
            this.navBarEntity.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnStrongEntity),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnWeakEntity)});
            this.navBarEntity.Name = "navBarEntity";
            // 
            // btnStrongEntity
            // 
            this.btnStrongEntity.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStrongEntity.Appearance.Options.UseFont = true;
            this.btnStrongEntity.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStrongEntity.AppearanceDisabled.Options.UseFont = true;
            this.btnStrongEntity.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStrongEntity.AppearanceHotTracked.Options.UseFont = true;
            this.btnStrongEntity.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStrongEntity.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnStrongEntity.AppearancePressed.Options.UseFont = true;
            this.btnStrongEntity.AppearancePressed.Options.UseForeColor = true;
            this.btnStrongEntity.Caption = "Strong Entity";
            this.btnStrongEntity.Name = "btnStrongEntity";
            this.btnStrongEntity.SmallImageIndex = 0;
            this.btnStrongEntity.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnWeakEntity
            // 
            this.btnWeakEntity.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWeakEntity.Appearance.Options.UseFont = true;
            this.btnWeakEntity.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWeakEntity.AppearanceDisabled.Options.UseFont = true;
            this.btnWeakEntity.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWeakEntity.AppearanceHotTracked.Options.UseFont = true;
            this.btnWeakEntity.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWeakEntity.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnWeakEntity.AppearancePressed.Options.UseFont = true;
            this.btnWeakEntity.AppearancePressed.Options.UseForeColor = true;
            this.btnWeakEntity.Caption = "Weak Entity";
            this.btnWeakEntity.Name = "btnWeakEntity";
            this.btnWeakEntity.SmallImageIndex = 1;
            this.btnWeakEntity.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // navBarDegree
            // 
            this.navBarDegree.Caption = "Degree Of Relationship";
            this.navBarDegree.ControlContainer = this.navBarGroupControlContainer1;
            this.navBarDegree.Expanded = true;
            this.navBarDegree.GroupClientHeight = 48;
            this.navBarDegree.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarDegree.Name = "navBarDegree";
            // 
            // navBarAttribute
            // 
            this.navBarAttribute.Caption = "Attribute";
            this.navBarAttribute.Expanded = true;
            this.navBarAttribute.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnSimAtt),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnKeyAtt),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnMulAtt),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnDerAtt),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnComAtt)});
            this.navBarAttribute.Name = "navBarAttribute";
            // 
            // btnSimAtt
            // 
            this.btnSimAtt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSimAtt.Appearance.Options.UseFont = true;
            this.btnSimAtt.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSimAtt.AppearanceDisabled.Options.UseFont = true;
            this.btnSimAtt.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSimAtt.AppearanceHotTracked.Options.UseFont = true;
            this.btnSimAtt.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSimAtt.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnSimAtt.AppearancePressed.Options.UseFont = true;
            this.btnSimAtt.AppearancePressed.Options.UseForeColor = true;
            this.btnSimAtt.Caption = "Simple Attribute";
            this.btnSimAtt.Name = "btnSimAtt";
            this.btnSimAtt.SmallImageIndex = 5;
            this.btnSimAtt.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnKeyAtt
            // 
            this.btnKeyAtt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnKeyAtt.Appearance.Options.UseFont = true;
            this.btnKeyAtt.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnKeyAtt.AppearanceDisabled.Options.UseFont = true;
            this.btnKeyAtt.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnKeyAtt.AppearanceHotTracked.Options.UseFont = true;
            this.btnKeyAtt.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnKeyAtt.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnKeyAtt.AppearancePressed.Options.UseFont = true;
            this.btnKeyAtt.AppearancePressed.Options.UseForeColor = true;
            this.btnKeyAtt.Caption = "Key Attribute";
            this.btnKeyAtt.Name = "btnKeyAtt";
            this.btnKeyAtt.SmallImageIndex = 6;
            this.btnKeyAtt.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnMulAtt
            // 
            this.btnMulAtt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMulAtt.Appearance.Options.UseFont = true;
            this.btnMulAtt.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMulAtt.AppearanceDisabled.Options.UseFont = true;
            this.btnMulAtt.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMulAtt.AppearanceHotTracked.Options.UseFont = true;
            this.btnMulAtt.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMulAtt.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnMulAtt.AppearancePressed.Options.UseFont = true;
            this.btnMulAtt.AppearancePressed.Options.UseForeColor = true;
            this.btnMulAtt.Caption = "Multivalued Attribute";
            this.btnMulAtt.Name = "btnMulAtt";
            this.btnMulAtt.SmallImageIndex = 7;
            this.btnMulAtt.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnDerAtt
            // 
            this.btnDerAtt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDerAtt.Appearance.Options.UseFont = true;
            this.btnDerAtt.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDerAtt.AppearanceDisabled.Options.UseFont = true;
            this.btnDerAtt.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDerAtt.AppearanceHotTracked.Options.UseFont = true;
            this.btnDerAtt.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDerAtt.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnDerAtt.AppearancePressed.Options.UseFont = true;
            this.btnDerAtt.AppearancePressed.Options.UseForeColor = true;
            this.btnDerAtt.Caption = "Derived Attribute";
            this.btnDerAtt.Name = "btnDerAtt";
            this.btnDerAtt.SmallImageIndex = 8;
            this.btnDerAtt.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // btnComAtt
            // 
            this.btnComAtt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnComAtt.Appearance.Options.UseFont = true;
            this.btnComAtt.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnComAtt.AppearanceDisabled.Options.UseFont = true;
            this.btnComAtt.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnComAtt.AppearanceHotTracked.Options.UseFont = true;
            this.btnComAtt.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnComAtt.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnComAtt.AppearancePressed.Options.UseFont = true;
            this.btnComAtt.AppearancePressed.Options.UseForeColor = true;
            this.btnComAtt.Caption = "Child Attribute";
            this.btnComAtt.Name = "btnComAtt";
            this.btnComAtt.SmallImageIndex = 9;
            this.btnComAtt.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // navBarOther
            // 
            this.navBarOther.Caption = "Other";
            this.navBarOther.Expanded = true;
            this.navBarOther.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnPointer)});
            this.navBarOther.Name = "navBarOther";
            // 
            // btnPointer
            // 
            this.btnPointer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnPointer.Appearance.Options.UseFont = true;
            this.btnPointer.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnPointer.AppearanceDisabled.Options.UseFont = true;
            this.btnPointer.AppearanceHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnPointer.AppearanceHotTracked.Options.UseFont = true;
            this.btnPointer.AppearancePressed.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnPointer.AppearancePressed.ForeColor = System.Drawing.Color.Red;
            this.btnPointer.AppearancePressed.Options.UseFont = true;
            this.btnPointer.AppearancePressed.Options.UseForeColor = true;
            this.btnPointer.Caption = "Pointer";
            this.btnPointer.Name = "btnPointer";
            this.btnPointer.SmallImageIndex = 10;
            this.btnPointer.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.btnStrongEntity_LinkPressed);
            // 
            // navBarItem1
            // 
            this.navBarItem1.Caption = "navBarItem1";
            this.navBarItem1.Name = "navBarItem1";
            // 
            // navBarItem2
            // 
            this.navBarItem2.Caption = "navBarItem2";
            this.navBarItem2.Name = "navBarItem2";
            // 
            // navBarItem3
            // 
            this.navBarItem3.Caption = "navBarItem3";
            this.navBarItem3.Name = "navBarItem3";
            // 
            // imageCollection3
            // 
            this.imageCollection3.ImageSize = new System.Drawing.Size(40, 20);
            this.imageCollection3.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection3.ImageStream")));
            // 
            // dockExplorer
            // 
            this.dockExplorer.Controls.Add(this.dockPanel1_Container);
            this.dockExplorer.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.dockExplorer.ID = new System.Guid("7a0ffa93-112d-4eeb-a145-57342611d7c9");
            this.dockExplorer.Location = new System.Drawing.Point(595, 149);
            this.dockExplorer.Name = "dockExplorer";
            this.dockExplorer.Size = new System.Drawing.Size(189, 419);
            this.dockExplorer.TabsScroll = true;
            this.dockExplorer.Text = "Model Explorer";
            // 
            // dockPanel1_Container
            // 
            this.dockPanel1_Container.Controls.Add(this.treeView1);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 24);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(183, 392);
            this.dockPanel1_Container.TabIndex = 0;
            // 
            // treeView1
            // 
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.ItemHeight = 16;
            this.treeView1.LabelEdit = true;
            this.treeView1.Location = new System.Drawing.Point(0, 0);
            this.treeView1.Name = "treeView1";
            this.treeView1.Size = new System.Drawing.Size(183, 392);
            this.treeView1.TabIndex = 0;
            this.treeView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.treeView1_MouseDoubleClick);
            this.treeView1.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.treeView1_AfterLabelEdit);
            // 
            // dockErrorList
            // 
            this.dockErrorList.Controls.Add(this.dockPanel2_Container);
            this.dockErrorList.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
            this.dockErrorList.FloatVertical = true;
            this.dockErrorList.ID = new System.Guid("b363091c-9c75-4bb1-9b68-fdd059e504d7");
            this.dockErrorList.Location = new System.Drawing.Point(202, 443);
            this.dockErrorList.Name = "dockErrorList";
            this.dockErrorList.Size = new System.Drawing.Size(393, 125);
            this.dockErrorList.Text = "Ouput";
            // 
            // dockPanel2_Container
            // 
            this.dockPanel2_Container.Controls.Add(this.listErrorList);
            this.dockPanel2_Container.Location = new System.Drawing.Point(3, 24);
            this.dockPanel2_Container.Name = "dockPanel2_Container";
            this.dockPanel2_Container.Size = new System.Drawing.Size(387, 98);
            this.dockPanel2_Container.TabIndex = 0;
            // 
            // listErrorList
            // 
            this.listErrorList.Appearance.ForeColor = System.Drawing.Color.Red;
            this.listErrorList.Appearance.Options.UseForeColor = true;
            this.listErrorList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listErrorList.Location = new System.Drawing.Point(0, 0);
            this.listErrorList.Name = "listErrorList";
            this.listErrorList.Size = new System.Drawing.Size(387, 98);
            this.listErrorList.TabIndex = 0;
            // 
            // xtraTabbedMdiManager1
            // 
            this.xtraTabbedMdiManager1.MdiParent = this;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.renameToolStripMenuItem,
            this.deleteToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(145, 48);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
            this.renameToolStripMenuItem.Text = "Rename Model";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
            this.deleteToolStripMenuItem.Text = "Delete Model";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
            // 
            // navBarGroup1
            // 
            this.navBarGroup1.Caption = "Binary Relationship";
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsList;
            this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnNorRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnIdenRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnAssEn)});
            this.navBarGroup1.Name = "navBarGroup1";
            // 
            // navBarGroup2
            // 
            this.navBarGroup2.Caption = "Binary Relationship";
            this.navBarGroup2.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsList;
            this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnNorRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnIdenRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnAssEn)});
            this.navBarGroup2.Name = "navBarGroup2";
            // 
            // navBarGroup3
            // 
            this.navBarGroup3.Caption = "Binary Relationship";
            this.navBarGroup3.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsList;
            this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnNorRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnIdenRel),
            new DevExpress.XtraNavBar.NavBarItemLink(this.btnAssEn)});
            this.navBarGroup3.Name = "navBarGroup3";
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(195, 77);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
            this.toolStripMenuItem2.Text = "--";
            // 
            // MainForm
            // 
            this.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.Appearance.Options.UseBackColor = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 591);
            this.Controls.Add(this.dockErrorList);
            this.Controls.Add(this.dockExplorer);
            this.Controls.Add(this.dockToolBox);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IsMdiContainer = true;
            this.Name = "MainForm";
            this.Ribbon = this.ribbon;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "ERDesigner";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.StartMenu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gddColor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.reposSkinMode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMRUEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockToolBox.ResumeLayout(false);
            this.controlContainer2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarToolBox)).EndInit();
            this.navBarToolBox.ResumeLayout(false);
            this.navBarGroupControlContainer1.ResumeLayout(false);
            this.navBarGroupControlContainer1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).EndInit();
            this.dockExplorer.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            this.dockErrorList.ResumeLayout(false);
            this.dockPanel2_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.listErrorList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
            this.contextMenuStrip1.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.XtraSpellChecker.OptionsSpelling optionsSpelling1 = new DevExpress.XtraSpellChecker.OptionsSpelling();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraRichEdit.Model.BorderInfo borderInfo1 = new DevExpress.XtraRichEdit.Model.BorderInfo();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.appMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.popupControlContainer2 = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.buttonEdit = new DevExpress.XtraEditors.ButtonEdit();
            this.iExit = new DevExpress.XtraBars.BarButtonItem();
            this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.someLabelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.someLabelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.ribbonImageCollection = new DevExpress.Utils.ImageCollection(this.components);
            this.iHelp = new DevExpress.XtraBars.BarButtonItem();
            this.iAbout = new DevExpress.XtraBars.BarButtonItem();
            this.siStatus = new DevExpress.XtraBars.BarStaticItem();
            this.siInfo = new DevExpress.XtraBars.BarStaticItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.ribbonImageCollectionLarge = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonPageSkins = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.skinsRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.helpRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.helpRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.richEditControl = new DevExpress.XtraRichEdit.RichEditControl();
            this.spellChecker = new DevExpress.XtraSpellChecker.SpellChecker(this.components);
            this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
            this.floatingPictureToolsShapeStylesPageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsShapeStylesPageGroup();
            this.floatingPictureToolsFormatPage1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsFormatPage();
            this.floatingPictureToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsRibbonPageCategory();
            this.changeFloatingObjectFillColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectFillColorItem();
            this.changeFloatingObjectOutlineColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineColorItem();
            this.changeFloatingObjectOutlineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineWeightItem();
            this.repositoryItemFloatingObjectOutlineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemFloatingObjectOutlineWeight();
            this.floatingPictureToolsArrangePageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsArrangePageGroup();
            this.changeFloatingObjectTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectTextWrapTypeItem();
            this.setFloatingObjectSquareTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectSquareTextWrapTypeItem();
            this.setFloatingObjectTightTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTightTextWrapTypeItem();
            this.setFloatingObjectThroughTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectThroughTextWrapTypeItem();
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopAndBottomTextWrapTypeItem();
            this.setFloatingObjectBehindTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBehindTextWrapTypeItem();
            this.setFloatingObjectInFrontOfTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectInFrontOfTextWrapTypeItem();
            this.changeFloatingObjectAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectAlignmentItem();
            this.setFloatingObjectTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopLeftAlignmentItem();
            this.setFloatingObjectTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopCenterAlignmentItem();
            this.setFloatingObjectTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopRightAlignmentItem();
            this.setFloatingObjectMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleLeftAlignmentItem();
            this.setFloatingObjectMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleCenterAlignmentItem();
            this.setFloatingObjectMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleRightAlignmentItem();
            this.setFloatingObjectBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomLeftAlignmentItem();
            this.setFloatingObjectBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomCenterAlignmentItem();
            this.setFloatingObjectBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomRightAlignmentItem();
            this.floatingObjectBringForwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardSubItem();
            this.floatingObjectBringForwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardItem();
            this.floatingObjectBringToFrontItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringToFrontItem();
            this.floatingObjectBringInFrontOfTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringInFrontOfTextItem();
            this.floatingObjectSendBackwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardSubItem();
            this.floatingObjectSendBackwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardItem();
            this.floatingObjectSendToBackItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendToBackItem();
            this.floatingObjectSendBehindTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBehindTextItem();
            this.tableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStyleOptionsRibbonPageGroup();
            this.tableDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableDesignRibbonPage();
            this.tableToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.TableToolsRibbonPageCategory();
            this.toggleFirstRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstRowItem();
            this.toggleLastRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastRowItem();
            this.toggleBandedRowsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedRowsItem();
            this.toggleFirstColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstColumnItem();
            this.toggleLastColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastColumnItem();
            this.toggleBandedColumnsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedColumnsItem();
            this.tableStylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStylesRibbonPageGroup();
            this.galleryChangeTableStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeTableStyleItem();
            this.tableDrawBordersRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableDrawBordersRibbonPageGroup();
            this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
            this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
            this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
            this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
            this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
            this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
            this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
            this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
            this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
            this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
            this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
            this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
            this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
            this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
            this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
            this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
            this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
            this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
            this.tableTableRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableTableRibbonPageGroup();
            this.tableLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableLayoutRibbonPage();
            this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
            this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
            this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
            this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
            this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
            this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
            this.tableRowsAndColumnsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableRowsAndColumnsRibbonPageGroup();
            this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
            this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
            this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
            this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
            this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
            this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
            this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
            this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
            this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
            this.tableMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableMergeRibbonPageGroup();
            this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
            this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
            this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
            this.tableCellSizeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableCellSizeRibbonPageGroup();
            this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
            this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
            this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
            this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
            this.tableAlignmentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableAlignmentRibbonPageGroup();
            this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
            this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
            this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
            this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
            this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
            this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
            this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
            this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
            this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
            this.showTableOptionsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTableOptionsFormItem();
            this.headerFooterToolsDesignNavigationRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignNavigationRibbonPageGroup();
            this.headerFooterToolsDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignRibbonPage();
            this.headerFooterToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsRibbonPageCategory();
            this.goToPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.GoToPageHeaderItem();
            this.goToPageFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPageFooterItem();
            this.goToNextHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToNextHeaderFooterItem();
            this.goToPreviousHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPreviousHeaderFooterItem();
            this.toggleLinkToPreviousItem1 = new DevExpress.XtraRichEdit.UI.ToggleLinkToPreviousItem();
            this.headerFooterToolsDesignOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignOptionsRibbonPageGroup();
            this.toggleDifferentFirstPageItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentFirstPageItem();
            this.toggleDifferentOddAndEvenPagesItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentOddAndEvenPagesItem();
            this.headerFooterToolsDesignCloseRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignCloseRibbonPageGroup();
            this.closePageHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.ClosePageHeaderFooterItem();
            this.documentViewsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentViewsRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ViewRibbonPage();
            this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
            this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
            this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
            this.showRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ShowRibbonPageGroup();
            this.toggleShowHorizontalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowHorizontalRulerItem();
            this.toggleShowVerticalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowVerticalRulerItem();
            this.zoomRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ZoomRibbonPageGroup();
            this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
            this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
            this.documentProofingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProofingRibbonPageGroup();
            this.reviewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReviewRibbonPage();
            this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
            this.changeLanguageItem1 = new DevExpress.XtraRichEdit.UI.ChangeLanguageItem();
            this.documentProtectionRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProtectionRibbonPageGroup();
            this.protectDocumentItem1 = new DevExpress.XtraRichEdit.UI.ProtectDocumentItem();
            this.changeRangeEditingPermissionsItem1 = new DevExpress.XtraRichEdit.UI.ChangeRangeEditingPermissionsItem();
            this.unprotectDocumentItem1 = new DevExpress.XtraRichEdit.UI.UnprotectDocumentItem();
            this.documentCommentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentCommentRibbonPageGroup();
            this.newCommentItem1 = new DevExpress.XtraRichEdit.UI.NewCommentItem();
            this.deleteCommentsItem1 = new DevExpress.XtraRichEdit.UI.DeleteCommentsItem();
            this.deleteOneCommentItem1 = new DevExpress.XtraRichEdit.UI.DeleteOneCommentItem();
            this.deleteAllCommentsShownItem1 = new DevExpress.XtraRichEdit.UI.DeleteAllCommentsShownItem();
            this.deleteAllCommentsItem1 = new DevExpress.XtraRichEdit.UI.DeleteAllCommentsItem();
            this.previousCommentItem1 = new DevExpress.XtraRichEdit.UI.PreviousCommentItem();
            this.nextCommentItem1 = new DevExpress.XtraRichEdit.UI.NextCommentItem();
            this.documentTrackingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentTrackingRibbonPageGroup();
            this.changeCommentItem1 = new DevExpress.XtraRichEdit.UI.ChangeCommentItem();
            this.reviewersItem1 = new DevExpress.XtraRichEdit.UI.ReviewersItem();
            this.reviewingPaneItem1 = new DevExpress.XtraRichEdit.UI.ReviewingPaneItem();
            this.mailMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.MailMergeRibbonPageGroup();
            this.mailingsRibbonPage1 = new DevExpress.XtraRichEdit.UI.MailingsRibbonPage();
            this.insertMergeFieldItem1 = new DevExpress.XtraRichEdit.UI.InsertMergeFieldItem();
            this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
            this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
            this.toggleViewMergedDataItem1 = new DevExpress.XtraRichEdit.UI.ToggleViewMergedDataItem();
            this.tableOfContentsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableOfContentsRibbonPageGroup();
            this.referencesRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReferencesRibbonPage();
            this.insertTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfContentsItem();
            this.updateTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfContentsItem();
            this.addParagraphsToTableOfContentItem1 = new DevExpress.XtraRichEdit.UI.AddParagraphsToTableOfContentItem();
            this.setParagraphHeadingLevelItem1 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem2 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem3 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem4 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem5 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem6 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem7 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem8 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem9 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem10 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.captionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CaptionsRibbonPageGroup();
            this.insertCaptionPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertCaptionPlaceholderItem();
            this.insertFiguresCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertFiguresCaptionItems();
            this.insertTablesCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertTablesCaptionItems();
            this.insertEquationsCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertEquationsCaptionItems();
            this.insertTableOfFiguresPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresPlaceholderItem();
            this.insertTableOfFiguresItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresItems();
            this.insertTableOfTablesItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfTablesItems();
            this.insertTableOfEquationsItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfEquationsItems();
            this.updateTableOfFiguresItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfFiguresItem();
            this.pageSetupRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageSetupRibbonPageGroup();
            this.pageLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.PageLayoutRibbonPage();
            this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
            this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
            this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
            this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
            this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
            this.showPageMarginsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowPageMarginsSetupFormItem();
            this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
            this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
            this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
            this.changeSectionPaperKindItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPaperKindItem();
            this.changeSectionColumnsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionColumnsItem();
            this.setSectionOneColumnItem1 = new DevExpress.XtraRichEdit.UI.SetSectionOneColumnItem();
            this.setSectionTwoColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionTwoColumnsItem();
            this.setSectionThreeColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionThreeColumnsItem();
            this.showColumnsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowColumnsSetupFormItem();
            this.insertBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertBreakItem();
            this.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
            this.insertColumnBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertColumnBreakItem();
            this.insertSectionBreakNextPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakNextPageItem();
            this.insertSectionBreakEvenPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakEvenPageItem();
            this.insertSectionBreakOddPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakOddPageItem();
            this.changeSectionLineNumberingItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionLineNumberingItem();
            this.setSectionLineNumberingNoneItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingNoneItem();
            this.setSectionLineNumberingContinuousItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingContinuousItem();
            this.setSectionLineNumberingRestartNewPageItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewPageItem();
            this.setSectionLineNumberingRestartNewSectionItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewSectionItem();
            this.toggleParagraphSuppressLineNumbersItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphSuppressLineNumbersItem();
            this.showLineNumberingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineNumberingFormItem();
            this.pageBackgroundRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageBackgroundRibbonPageGroup();
            this.changePageColorItem1 = new DevExpress.XtraRichEdit.UI.ChangePageColorItem();
            this.pagesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PagesRibbonPageGroup();
            this.insertRibbonPage1 = new DevExpress.XtraRichEdit.UI.InsertRibbonPage();
            this.insertPageBreakItem21 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem2();
            this.tablesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TablesRibbonPageGroup();
            this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
            this.illustrationsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.IllustrationsRibbonPageGroup();
            this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
            this.insertFloatingPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertFloatingPictureItem();
            this.linksRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.LinksRibbonPageGroup();
            this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
            this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
            this.headerFooterRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterRibbonPageGroup();
            this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
            this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
            this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
            this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
            this.textRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TextRibbonPageGroup();
            this.insertTextBoxItem1 = new DevExpress.XtraRichEdit.UI.InsertTextBoxItem();
            this.symbolsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.SymbolsRibbonPageGroup();
            this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
            this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).BeginInit();
            this.popupControlContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
            this.popupControlContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl
            // 
            this.ribbonControl.ApplicationButtonDropDownControl = this.appMenu;
            this.ribbonControl.ApplicationButtonText = null;
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Images = this.ribbonImageCollection;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.iExit,
            this.iHelp,
            this.iAbout,
            this.siStatus,
            this.siInfo,
            this.rgbiSkins,
            this.changeFloatingObjectFillColorItem1,
            this.changeFloatingObjectOutlineColorItem1,
            this.changeFloatingObjectOutlineWeightItem1,
            this.changeFloatingObjectTextWrapTypeItem1,
            this.setFloatingObjectSquareTextWrapTypeItem1,
            this.setFloatingObjectTightTextWrapTypeItem1,
            this.setFloatingObjectThroughTextWrapTypeItem1,
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1,
            this.setFloatingObjectBehindTextWrapTypeItem1,
            this.setFloatingObjectInFrontOfTextWrapTypeItem1,
            this.changeFloatingObjectAlignmentItem1,
            this.setFloatingObjectTopLeftAlignmentItem1,
            this.setFloatingObjectTopCenterAlignmentItem1,
            this.setFloatingObjectTopRightAlignmentItem1,
            this.setFloatingObjectMiddleLeftAlignmentItem1,
            this.setFloatingObjectMiddleCenterAlignmentItem1,
            this.setFloatingObjectMiddleRightAlignmentItem1,
            this.setFloatingObjectBottomLeftAlignmentItem1,
            this.setFloatingObjectBottomCenterAlignmentItem1,
            this.setFloatingObjectBottomRightAlignmentItem1,
            this.floatingObjectBringForwardSubItem1,
            this.floatingObjectBringForwardItem1,
            this.floatingObjectBringToFrontItem1,
            this.floatingObjectBringInFrontOfTextItem1,
            this.floatingObjectSendBackwardSubItem1,
            this.floatingObjectSendBackwardItem1,
            this.floatingObjectSendToBackItem1,
            this.floatingObjectSendBehindTextItem1,
            this.toggleFirstRowItem1,
            this.toggleLastRowItem1,
            this.toggleBandedRowsItem1,
            this.toggleFirstColumnItem1,
            this.toggleLastColumnItem1,
            this.toggleBandedColumnsItem1,
            this.galleryChangeTableStyleItem1,
            this.changeTableBorderLineStyleItem1,
            this.changeTableBorderLineWeightItem1,
            this.changeTableBorderColorItem1,
            this.changeTableBordersItem1,
            this.toggleTableCellsBottomBorderItem1,
            this.toggleTableCellsTopBorderItem1,
            this.toggleTableCellsLeftBorderItem1,
            this.toggleTableCellsRightBorderItem1,
            this.resetTableCellsAllBordersItem1,
            this.toggleTableCellsAllBordersItem1,
            this.toggleTableCellsOutsideBorderItem1,
            this.toggleTableCellsInsideBorderItem1,
            this.toggleTableCellsInsideHorizontalBorderItem1,
            this.toggleTableCellsInsideVerticalBorderItem1,
            this.toggleShowTableGridLinesItem1,
            this.changeTableCellsShadingItem1,
            this.selectTableElementsItem1,
            this.selectTableCellItem1,
            this.selectTableColumnItem1,
            this.selectTableRowItem1,
            this.selectTableItem1,
            this.showTablePropertiesFormItem1,
            this.deleteTableElementsItem1,
            this.showDeleteTableCellsFormItem1,
            this.deleteTableColumnsItem1,
            this.deleteTableRowsItem1,
            this.deleteTableItem1,
            this.insertTableRowAboveItem1,
            this.insertTableRowBelowItem1,
            this.insertTableColumnToLeftItem1,
            this.insertTableColumnToRightItem1,
            this.mergeTableCellsItem1,
            this.showSplitTableCellsForm1,
            this.splitTableItem1,
            this.toggleTableAutoFitItem1,
            this.toggleTableAutoFitContentsItem1,
            this.toggleTableAutoFitWindowItem1,
            this.toggleTableFixedColumnWidthItem1,
            this.toggleTableCellsTopLeftAlignmentItem1,
            this.toggleTableCellsMiddleLeftAlignmentItem1,
            this.toggleTableCellsBottomLeftAlignmentItem1,
            this.toggleTableCellsTopCenterAlignmentItem1,
            this.toggleTableCellsMiddleCenterAlignmentItem1,
            this.toggleTableCellsBottomCenterAlignmentItem1,
            this.toggleTableCellsTopRightAlignmentItem1,
            this.toggleTableCellsMiddleRightAlignmentItem1,
            this.toggleTableCellsBottomRightAlignmentItem1,
            this.showTableOptionsFormItem1,
            this.goToPageHeaderItem1,
            this.goToPageFooterItem1,
            this.goToNextHeaderFooterItem1,
            this.goToPreviousHeaderFooterItem1,
            this.toggleLinkToPreviousItem1,
            this.toggleDifferentFirstPageItem1,
            this.toggleDifferentOddAndEvenPagesItem1,
            this.closePageHeaderFooterItem1,
            this.switchToSimpleViewItem1,
            this.switchToDraftViewItem1,
            this.switchToPrintLayoutViewItem1,
            this.toggleShowHorizontalRulerItem1,
            this.toggleShowVerticalRulerItem1,
            this.zoomOutItem1,
            this.zoomInItem1,
            this.checkSpellingItem1,
            this.changeLanguageItem1,
            this.protectDocumentItem1,
            this.changeRangeEditingPermissionsItem1,
            this.unprotectDocumentItem1,
            this.newCommentItem1,
            this.deleteCommentsItem1,
            this.deleteOneCommentItem1,
            this.deleteAllCommentsShownItem1,
            this.deleteAllCommentsItem1,
            this.previousCommentItem1,
            this.nextCommentItem1,
            this.changeCommentItem1,
            this.reviewersItem1,
            this.reviewingPaneItem1,
            this.insertMergeFieldItem1,
            this.showAllFieldCodesItem1,
            this.showAllFieldResultsItem1,
            this.toggleViewMergedDataItem1,
            this.insertTableOfContentsItem1,
            this.updateTableOfContentsItem1,
            this.addParagraphsToTableOfContentItem1,
            this.setParagraphHeadingLevelItem1,
            this.setParagraphHeadingLevelItem2,
            this.setParagraphHeadingLevelItem3,
            this.setParagraphHeadingLevelItem4,
            this.setParagraphHeadingLevelItem5,
            this.setParagraphHeadingLevelItem6,
            this.setParagraphHeadingLevelItem7,
            this.setParagraphHeadingLevelItem8,
            this.setParagraphHeadingLevelItem9,
            this.setParagraphHeadingLevelItem10,
            this.insertCaptionPlaceholderItem1,
            this.insertFiguresCaptionItems1,
            this.insertTablesCaptionItems1,
            this.insertEquationsCaptionItems1,
            this.insertTableOfFiguresPlaceholderItem1,
            this.insertTableOfFiguresItems1,
            this.insertTableOfTablesItems1,
            this.insertTableOfEquationsItems1,
            this.updateTableOfFiguresItem1,
            this.changeSectionPageMarginsItem1,
            this.setNormalSectionPageMarginsItem1,
            this.setNarrowSectionPageMarginsItem1,
            this.setModerateSectionPageMarginsItem1,
            this.setWideSectionPageMarginsItem1,
            this.showPageMarginsSetupFormItem1,
            this.changeSectionPageOrientationItem1,
            this.setPortraitPageOrientationItem1,
            this.setLandscapePageOrientationItem1,
            this.changeSectionPaperKindItem1,
            this.changeSectionColumnsItem1,
            this.setSectionOneColumnItem1,
            this.setSectionTwoColumnsItem1,
            this.setSectionThreeColumnsItem1,
            this.showColumnsSetupFormItem1,
            this.insertBreakItem1,
            this.insertPageBreakItem1,
            this.insertColumnBreakItem1,
            this.insertSectionBreakNextPageItem1,
            this.insertSectionBreakEvenPageItem1,
            this.insertSectionBreakOddPageItem1,
            this.changeSectionLineNumberingItem1,
            this.setSectionLineNumberingNoneItem1,
            this.setSectionLineNumberingContinuousItem1,
            this.setSectionLineNumberingRestartNewPageItem1,
            this.setSectionLineNumberingRestartNewSectionItem1,
            this.toggleParagraphSuppressLineNumbersItem1,
            this.showLineNumberingFormItem1,
            this.changePageColorItem1,
            this.insertPageBreakItem21,
            this.insertTableItem1,
            this.insertPictureItem1,
            this.insertFloatingPictureItem1,
            this.insertBookmarkItem1,
            this.insertHyperlinkItem1,
            this.editPageHeaderItem1,
            this.editPageFooterItem1,
            this.insertPageNumberItem1,
            this.insertPageCountItem1,
            this.insertTextBoxItem1,
            this.insertSymbolItem1,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.undoItem1,
            this.redoItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1});
            this.ribbonControl.LargeImages = this.ribbonImageCollectionLarge;
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 305;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.floatingPictureToolsRibbonPageCategory1,
            this.tableToolsRibbonPageCategory1,
            this.headerFooterToolsRibbonPageCategory1});
            this.ribbonControl.PageHeaderItemLinks.Add(this.iAbout);
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.insertRibbonPage1,
            this.pageLayoutRibbonPage1,
            this.referencesRibbonPage1,
            this.mailingsRibbonPage1,
            this.reviewRibbonPage1,
            this.viewRibbonPage1,
            this.ribbonPageSkins,
            this.helpRibbonPage});
            this.ribbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFloatingObjectOutlineWeight1,
            this.repositoryItemBorderLineStyle1,
            this.repositoryItemBorderLineWeight1,
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1});
            this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl.Size = new System.Drawing.Size(1100, 143);
            this.ribbonControl.StatusBar = this.ribbonStatusBar;
            this.ribbonControl.Toolbar.ItemLinks.Add(this.iHelp);
            // 
            // appMenu
            // 
            this.appMenu.BottomPaneControlContainer = this.popupControlContainer2;
            this.appMenu.ItemLinks.Add(this.iExit);
            this.appMenu.Name = "appMenu";
            this.appMenu.Ribbon = this.ribbonControl;
            this.appMenu.RightPaneControlContainer = this.popupControlContainer1;
            this.appMenu.ShowRightPane = true;
            // 
            // popupControlContainer2
            // 
            this.popupControlContainer2.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.popupControlContainer2.Appearance.Options.UseBackColor = true;
            this.popupControlContainer2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainer2.Controls.Add(this.buttonEdit);
            this.popupControlContainer2.Location = new System.Drawing.Point(238, 289);
            this.popupControlContainer2.Name = "popupControlContainer2";
            this.popupControlContainer2.Ribbon = this.ribbonControl;
            this.popupControlContainer2.Size = new System.Drawing.Size(118, 28);
            this.popupControlContainer2.TabIndex = 3;
            this.popupControlContainer2.Visible = false;
            // 
            // buttonEdit
            // 
            this.buttonEdit.EditValue = "Some Text";
            this.buttonEdit.Location = new System.Drawing.Point(3, 5);
            this.buttonEdit.MenuManager = this.ribbonControl;
            this.buttonEdit.Name = "buttonEdit";
            this.buttonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.buttonEdit.Size = new System.Drawing.Size(100, 20);
            this.buttonEdit.TabIndex = 0;
            // 
            // iExit
            // 
            this.iExit.Caption = "Exit";
            this.iExit.Description = "Closes this program after prompting you to save unsaved data.";
            this.iExit.Hint = "Closes this program after prompting you to save unsaved data";
            this.iExit.Id = 20;
            this.iExit.ImageIndex = 6;
            this.iExit.LargeImageIndex = 6;
            this.iExit.Name = "iExit";
            // 
            // popupControlContainer1
            // 
            this.popupControlContainer1.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.popupControlContainer1.Appearance.Options.UseBackColor = true;
            this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainer1.Controls.Add(this.someLabelControl2);
            this.popupControlContainer1.Controls.Add(this.someLabelControl1);
            this.popupControlContainer1.Location = new System.Drawing.Point(111, 197);
            this.popupControlContainer1.Name = "popupControlContainer1";
            this.popupControlContainer1.Ribbon = this.ribbonControl;
            this.popupControlContainer1.Size = new System.Drawing.Size(76, 70);
            this.popupControlContainer1.TabIndex = 2;
            this.popupControlContainer1.Visible = false;
            // 
            // someLabelControl2
            // 
            this.someLabelControl2.Location = new System.Drawing.Point(3, 57);
            this.someLabelControl2.Name = "someLabelControl2";
            this.someLabelControl2.Size = new System.Drawing.Size(49, 13);
            this.someLabelControl2.TabIndex = 0;
            this.someLabelControl2.Text = "Some Info";
            // 
            // someLabelControl1
            // 
            this.someLabelControl1.Location = new System.Drawing.Point(3, 3);
            this.someLabelControl1.Name = "someLabelControl1";
            this.someLabelControl1.Size = new System.Drawing.Size(49, 13);
            this.someLabelControl1.TabIndex = 0;
            this.someLabelControl1.Text = "Some Info";
            // 
            // ribbonImageCollection
            // 
            this.ribbonImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollection.ImageStream")));
            this.ribbonImageCollection.Images.SetKeyName(0, "Ribbon_Exit_16x16.png");
            this.ribbonImageCollection.Images.SetKeyName(1, "Ribbon_Content_16x16.png");
            this.ribbonImageCollection.Images.SetKeyName(2, "Ribbon_Info_16x16.png");
            // 
            // iHelp
            // 
            this.iHelp.Caption = "Help";
            this.iHelp.Description = "Start the program help system.";
            this.iHelp.Hint = "Start the program help system";
            this.iHelp.Id = 22;
            this.iHelp.ImageIndex = 7;
            this.iHelp.LargeImageIndex = 7;
            this.iHelp.Name = "iHelp";
            // 
            // iAbout
            // 
            this.iAbout.Caption = "About";
            this.iAbout.Description = "Displays general program information.";
            this.iAbout.Hint = "Displays general program information";
            this.iAbout.Id = 24;
            this.iAbout.ImageIndex = 8;
            this.iAbout.LargeImageIndex = 8;
            this.iAbout.Name = "iAbout";
            // 
            // siStatus
            // 
            this.siStatus.Caption = "Some Status Info";
            this.siStatus.Id = 31;
            this.siStatus.Name = "siStatus";
            this.siStatus.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // siInfo
            // 
            this.siInfo.Caption = "Some Info";
            this.siInfo.Id = 32;
            this.siInfo.Name = "siInfo";
            this.siInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Caption = "Skins";
            // 
            // 
            // 
            this.rgbiSkins.Gallery.AllowHoverImages = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiSkins.Gallery.ColumnCount = 4;
            this.rgbiSkins.Gallery.FixedHoverImageSize = false;
            this.rgbiSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
            this.rgbiSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.rgbiSkins.Gallery.RowCount = 4;
            this.rgbiSkins.Id = 60;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // ribbonImageCollectionLarge
            // 
            this.ribbonImageCollectionLarge.ImageSize = new System.Drawing.Size(32, 32);
            this.ribbonImageCollectionLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollectionLarge.ImageStream")));
            this.ribbonImageCollectionLarge.Images.SetKeyName(0, "Ribbon_Exit_32x32.png");
            this.ribbonImageCollectionLarge.Images.SetKeyName(1, "Ribbon_Content_32x32.png");
            this.ribbonImageCollectionLarge.Images.SetKeyName(2, "Ribbon_Info_32x32.png");
            // 
            // ribbonPageSkins
            // 
            this.ribbonPageSkins.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.skinsRibbonPageGroup});
            this.ribbonPageSkins.Name = "ribbonPageSkins";
            this.ribbonPageSkins.Text = "Skins";
            // 
            // skinsRibbonPageGroup
            // 
            this.skinsRibbonPageGroup.ItemLinks.Add(this.rgbiSkins);
            this.skinsRibbonPageGroup.Name = "skinsRibbonPageGroup";
            this.skinsRibbonPageGroup.ShowCaptionButton = false;
            this.skinsRibbonPageGroup.Text = "Skins";
            // 
            // helpRibbonPage
            // 
            this.helpRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.helpRibbonPageGroup});
            this.helpRibbonPage.Name = "helpRibbonPage";
            this.helpRibbonPage.Text = "Help";
            // 
            // helpRibbonPageGroup
            // 
            this.helpRibbonPageGroup.ItemLinks.Add(this.iHelp);
            this.helpRibbonPageGroup.ItemLinks.Add(this.iAbout);
            this.helpRibbonPageGroup.Name = "helpRibbonPageGroup";
            this.helpRibbonPageGroup.Text = "Help";
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.siStatus);
            this.ribbonStatusBar.ItemLinks.Add(this.siInfo);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 669);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbonControl;
            this.ribbonStatusBar.Size = new System.Drawing.Size(1100, 31);
            // 
            // richEditControl
            // 
            this.richEditControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.richEditControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.richEditControl.EnableToolTips = true;
            this.richEditControl.Location = new System.Drawing.Point(0, 143);
            this.richEditControl.MenuManager = this.ribbonControl;
            this.richEditControl.Name = "richEditControl";
            this.richEditControl.Options.Bookmarks.AllowNameResolution = false;
            this.richEditControl.Size = new System.Drawing.Size(1100, 526);
            this.richEditControl.SpellChecker = this.spellChecker;
            this.spellChecker.SetSpellCheckerOptions(this.richEditControl, optionsSpelling1);
            this.richEditControl.TabIndex = 1;
            // 
            // spellChecker
            // 
            this.spellChecker.Culture = new System.Globalization.CultureInfo("ru-RU");
            this.spellChecker.ParentContainer = null;
            // 
            // richEditBarController1
            // 
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectFillColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectOutlineColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectSquareTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTightTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectThroughTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopAndBottomTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBehindTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectInFrontOfTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringForwardSubItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringForwardItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringToFrontItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringInFrontOfTextItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBackwardSubItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBackwardItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendToBackItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBehindTextItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFirstRowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLastRowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBandedRowsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFirstColumnItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLastColumnItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBandedColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeTableStyleItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBorderColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
            this.richEditBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
            this.richEditBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableElementsItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableCellItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableColumnItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableRowItem1);
            this.richEditBarController1.BarItems.Add(this.selectTableItem1);
            this.richEditBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableElementsItem1);
            this.richEditBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableRowsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteTableItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableRowAboveItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableRowBelowItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
            this.richEditBarController1.BarItems.Add(this.mergeTableCellsItem1);
            this.richEditBarController1.BarItems.Add(this.showSplitTableCellsForm1);
            this.richEditBarController1.BarItems.Add(this.splitTableItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.showTableOptionsFormItem1);
            this.richEditBarController1.BarItems.Add(this.goToPageHeaderItem1);
            this.richEditBarController1.BarItems.Add(this.goToPageFooterItem1);
            this.richEditBarController1.BarItems.Add(this.goToNextHeaderFooterItem1);
            this.richEditBarController1.BarItems.Add(this.goToPreviousHeaderFooterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleLinkToPreviousItem1);
            this.richEditBarController1.BarItems.Add(this.toggleDifferentFirstPageItem1);
            this.richEditBarController1.BarItems.Add(this.toggleDifferentOddAndEvenPagesItem1);
            this.richEditBarController1.BarItems.Add(this.closePageHeaderFooterItem1);
            this.richEditBarController1.BarItems.Add(this.switchToSimpleViewItem1);
            this.richEditBarController1.BarItems.Add(this.switchToDraftViewItem1);
            this.richEditBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowHorizontalRulerItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowVerticalRulerItem1);
            this.richEditBarController1.BarItems.Add(this.zoomOutItem1);
            this.richEditBarController1.BarItems.Add(this.zoomInItem1);
            this.richEditBarController1.BarItems.Add(this.checkSpellingItem1);
            this.richEditBarController1.BarItems.Add(this.changeLanguageItem1);
            this.richEditBarController1.BarItems.Add(this.protectDocumentItem1);
            this.richEditBarController1.BarItems.Add(this.changeRangeEditingPermissionsItem1);
            this.richEditBarController1.BarItems.Add(this.unprotectDocumentItem1);
            this.richEditBarController1.BarItems.Add(this.newCommentItem1);
            this.richEditBarController1.BarItems.Add(this.deleteCommentsItem1);
            this.richEditBarController1.BarItems.Add(this.deleteOneCommentItem1);
            this.richEditBarController1.BarItems.Add(this.deleteAllCommentsShownItem1);
            this.richEditBarController1.BarItems.Add(this.deleteAllCommentsItem1);
            this.richEditBarController1.BarItems.Add(this.previousCommentItem1);
            this.richEditBarController1.BarItems.Add(this.nextCommentItem1);
            this.richEditBarController1.BarItems.Add(this.changeCommentItem1);
            this.richEditBarController1.BarItems.Add(this.reviewersItem1);
            this.richEditBarController1.BarItems.Add(this.reviewingPaneItem1);
            this.richEditBarController1.BarItems.Add(this.insertMergeFieldItem1);
            this.richEditBarController1.BarItems.Add(this.showAllFieldCodesItem1);
            this.richEditBarController1.BarItems.Add(this.showAllFieldResultsItem1);
            this.richEditBarController1.BarItems.Add(this.toggleViewMergedDataItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfContentsItem1);
            this.richEditBarController1.BarItems.Add(this.updateTableOfContentsItem1);
            this.richEditBarController1.BarItems.Add(this.addParagraphsToTableOfContentItem1);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem1);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem2);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem3);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem4);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem5);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem6);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem7);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem8);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem9);
            this.richEditBarController1.BarItems.Add(this.setParagraphHeadingLevelItem10);
            this.richEditBarController1.BarItems.Add(this.insertCaptionPlaceholderItem1);
            this.richEditBarController1.BarItems.Add(this.insertFiguresCaptionItems1);
            this.richEditBarController1.BarItems.Add(this.insertTablesCaptionItems1);
            this.richEditBarController1.BarItems.Add(this.insertEquationsCaptionItems1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfFiguresPlaceholderItem1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfFiguresItems1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfTablesItems1);
            this.richEditBarController1.BarItems.Add(this.insertTableOfEquationsItems1);
            this.richEditBarController1.BarItems.Add(this.updateTableOfFiguresItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
            this.richEditBarController1.BarItems.Add(this.showPageMarginsSetupFormItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
            this.richEditBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
            this.richEditBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionPaperKindItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionOneColumnItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionTwoColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionThreeColumnsItem1);
            this.richEditBarController1.BarItems.Add(this.showColumnsSetupFormItem1);
            this.richEditBarController1.BarItems.Add(this.insertBreakItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageBreakItem1);
            this.richEditBarController1.BarItems.Add(this.insertColumnBreakItem1);
            this.richEditBarController1.BarItems.Add(this.insertSectionBreakNextPageItem1);
            this.richEditBarController1.BarItems.Add(this.insertSectionBreakEvenPageItem1);
            this.richEditBarController1.BarItems.Add(this.insertSectionBreakOddPageItem1);
            this.richEditBarController1.BarItems.Add(this.changeSectionLineNumberingItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingNoneItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingContinuousItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewPageItem1);
            this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewSectionItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphSuppressLineNumbersItem1);
            this.richEditBarController1.BarItems.Add(this.showLineNumberingFormItem1);
            this.richEditBarController1.BarItems.Add(this.changePageColorItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageBreakItem21);
            this.richEditBarController1.BarItems.Add(this.insertTableItem1);
            this.richEditBarController1.BarItems.Add(this.insertPictureItem1);
            this.richEditBarController1.BarItems.Add(this.insertFloatingPictureItem1);
            this.richEditBarController1.BarItems.Add(this.insertBookmarkItem1);
            this.richEditBarController1.BarItems.Add(this.insertHyperlinkItem1);
            this.richEditBarController1.BarItems.Add(this.editPageHeaderItem1);
            this.richEditBarController1.BarItems.Add(this.editPageFooterItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageNumberItem1);
            this.richEditBarController1.BarItems.Add(this.insertPageCountItem1);
            this.richEditBarController1.BarItems.Add(this.insertTextBoxItem1);
            this.richEditBarController1.BarItems.Add(this.insertSymbolItem1);
            this.richEditBarController1.BarItems.Add(this.pasteItem1);
            this.richEditBarController1.BarItems.Add(this.cutItem1);
            this.richEditBarController1.BarItems.Add(this.copyItem1);
            this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.richEditBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.richEditBarController1.BarItems.Add(this.findItem1);
            this.richEditBarController1.BarItems.Add(this.replaceItem1);
            this.richEditBarController1.BarItems.Add(this.undoItem1);
            this.richEditBarController1.BarItems.Add(this.redoItem1);
            this.richEditBarController1.BarItems.Add(this.fileNewItem1);
            this.richEditBarController1.BarItems.Add(this.fileOpenItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.richEditBarController1.BarItems.Add(this.quickPrintItem1);
            this.richEditBarController1.BarItems.Add(this.printItem1);
            this.richEditBarController1.BarItems.Add(this.printPreviewItem1);
            this.richEditBarController1.Control = this.richEditControl;
            // 
            // floatingPictureToolsShapeStylesPageGroup1
            // 
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectFillColorItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineColorItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.Name = "floatingPictureToolsShapeStylesPageGroup1";
            // 
            // floatingPictureToolsFormatPage1
            // 
            this.floatingPictureToolsFormatPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.floatingPictureToolsShapeStylesPageGroup1,
            this.floatingPictureToolsArrangePageGroup1});
            this.floatingPictureToolsFormatPage1.Name = "floatingPictureToolsFormatPage1";
            // 
            // floatingPictureToolsRibbonPageCategory1
            // 
            this.floatingPictureToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(0)))), ((int)(((byte)(119)))));
            this.floatingPictureToolsRibbonPageCategory1.Control = this.richEditControl;
            this.floatingPictureToolsRibbonPageCategory1.Name = "floatingPictureToolsRibbonPageCategory1";
            this.floatingPictureToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.floatingPictureToolsFormatPage1});
            // 
            // changeFloatingObjectFillColorItem1
            // 
            this.changeFloatingObjectFillColorItem1.Id = 62;
            this.changeFloatingObjectFillColorItem1.Name = "changeFloatingObjectFillColorItem1";
            // 
            // changeFloatingObjectOutlineColorItem1
            // 
            this.changeFloatingObjectOutlineColorItem1.Id = 63;
            this.changeFloatingObjectOutlineColorItem1.Name = "changeFloatingObjectOutlineColorItem1";
            // 
            // changeFloatingObjectOutlineWeightItem1
            // 
            this.changeFloatingObjectOutlineWeightItem1.Edit = this.repositoryItemFloatingObjectOutlineWeight1;
            this.changeFloatingObjectOutlineWeightItem1.EditValue = 20;
            this.changeFloatingObjectOutlineWeightItem1.Id = 64;
            this.changeFloatingObjectOutlineWeightItem1.Name = "changeFloatingObjectOutlineWeightItem1";
            // 
            // repositoryItemFloatingObjectOutlineWeight1
            // 
            this.repositoryItemFloatingObjectOutlineWeight1.AutoHeight = false;
            this.repositoryItemFloatingObjectOutlineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemFloatingObjectOutlineWeight1.Control = this.richEditControl;
            this.repositoryItemFloatingObjectOutlineWeight1.Name = "repositoryItemFloatingObjectOutlineWeight1";
            // 
            // floatingPictureToolsArrangePageGroup1
            // 
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectAlignmentItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectBringForwardSubItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectSendBackwardSubItem1);
            this.floatingPictureToolsArrangePageGroup1.Name = "floatingPictureToolsArrangePageGroup1";
            // 
            // changeFloatingObjectTextWrapTypeItem1
            // 
            this.changeFloatingObjectTextWrapTypeItem1.Id = 65;
            this.changeFloatingObjectTextWrapTypeItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectSquareTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTightTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectThroughTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopAndBottomTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBehindTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectInFrontOfTextWrapTypeItem1)});
            this.changeFloatingObjectTextWrapTypeItem1.Name = "changeFloatingObjectTextWrapTypeItem1";
            // 
            // setFloatingObjectSquareTextWrapTypeItem1
            // 
            this.setFloatingObjectSquareTextWrapTypeItem1.Id = 66;
            this.setFloatingObjectSquareTextWrapTypeItem1.Name = "setFloatingObjectSquareTextWrapTypeItem1";
            // 
            // setFloatingObjectTightTextWrapTypeItem1
            // 
            this.setFloatingObjectTightTextWrapTypeItem1.Id = 67;
            this.setFloatingObjectTightTextWrapTypeItem1.Name = "setFloatingObjectTightTextWrapTypeItem1";
            // 
            // setFloatingObjectThroughTextWrapTypeItem1
            // 
            this.setFloatingObjectThroughTextWrapTypeItem1.Id = 68;
            this.setFloatingObjectThroughTextWrapTypeItem1.Name = "setFloatingObjectThroughTextWrapTypeItem1";
            // 
            // setFloatingObjectTopAndBottomTextWrapTypeItem1
            // 
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Id = 69;
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Name = "setFloatingObjectTopAndBottomTextWrapTypeItem1";
            // 
            // setFloatingObjectBehindTextWrapTypeItem1
            // 
            this.setFloatingObjectBehindTextWrapTypeItem1.Id = 70;
            this.setFloatingObjectBehindTextWrapTypeItem1.Name = "setFloatingObjectBehindTextWrapTypeItem1";
            // 
            // setFloatingObjectInFrontOfTextWrapTypeItem1
            // 
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Id = 71;
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Name = "setFloatingObjectInFrontOfTextWrapTypeItem1";
            // 
            // changeFloatingObjectAlignmentItem1
            // 
            this.changeFloatingObjectAlignmentItem1.Id = 72;
            this.changeFloatingObjectAlignmentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomRightAlignmentItem1)});
            this.changeFloatingObjectAlignmentItem1.Name = "changeFloatingObjectAlignmentItem1";
            // 
            // setFloatingObjectTopLeftAlignmentItem1
            // 
            this.setFloatingObjectTopLeftAlignmentItem1.Id = 73;
            this.setFloatingObjectTopLeftAlignmentItem1.Name = "setFloatingObjectTopLeftAlignmentItem1";
            // 
            // setFloatingObjectTopCenterAlignmentItem1
            // 
            this.setFloatingObjectTopCenterAlignmentItem1.Id = 74;
            this.setFloatingObjectTopCenterAlignmentItem1.Name = "setFloatingObjectTopCenterAlignmentItem1";
            // 
            // setFloatingObjectTopRightAlignmentItem1
            // 
            this.setFloatingObjectTopRightAlignmentItem1.Id = 75;
            this.setFloatingObjectTopRightAlignmentItem1.Name = "setFloatingObjectTopRightAlignmentItem1";
            // 
            // setFloatingObjectMiddleLeftAlignmentItem1
            // 
            this.setFloatingObjectMiddleLeftAlignmentItem1.Id = 76;
            this.setFloatingObjectMiddleLeftAlignmentItem1.Name = "setFloatingObjectMiddleLeftAlignmentItem1";
            // 
            // setFloatingObjectMiddleCenterAlignmentItem1
            // 
            this.setFloatingObjectMiddleCenterAlignmentItem1.Id = 77;
            this.setFloatingObjectMiddleCenterAlignmentItem1.Name = "setFloatingObjectMiddleCenterAlignmentItem1";
            // 
            // setFloatingObjectMiddleRightAlignmentItem1
            // 
            this.setFloatingObjectMiddleRightAlignmentItem1.Id = 78;
            this.setFloatingObjectMiddleRightAlignmentItem1.Name = "setFloatingObjectMiddleRightAlignmentItem1";
            // 
            // setFloatingObjectBottomLeftAlignmentItem1
            // 
            this.setFloatingObjectBottomLeftAlignmentItem1.Id = 79;
            this.setFloatingObjectBottomLeftAlignmentItem1.Name = "setFloatingObjectBottomLeftAlignmentItem1";
            // 
            // setFloatingObjectBottomCenterAlignmentItem1
            // 
            this.setFloatingObjectBottomCenterAlignmentItem1.Id = 80;
            this.setFloatingObjectBottomCenterAlignmentItem1.Name = "setFloatingObjectBottomCenterAlignmentItem1";
            // 
            // setFloatingObjectBottomRightAlignmentItem1
            // 
            this.setFloatingObjectBottomRightAlignmentItem1.Id = 81;
            this.setFloatingObjectBottomRightAlignmentItem1.Name = "setFloatingObjectBottomRightAlignmentItem1";
            // 
            // floatingObjectBringForwardSubItem1
            // 
            this.floatingObjectBringForwardSubItem1.Id = 82;
            this.floatingObjectBringForwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringForwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringToFrontItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringInFrontOfTextItem1)});
            this.floatingObjectBringForwardSubItem1.Name = "floatingObjectBringForwardSubItem1";
            // 
            // floatingObjectBringForwardItem1
            // 
            this.floatingObjectBringForwardItem1.Id = 83;
            this.floatingObjectBringForwardItem1.Name = "floatingObjectBringForwardItem1";
            // 
            // floatingObjectBringToFrontItem1
            // 
            this.floatingObjectBringToFrontItem1.Id = 84;
            this.floatingObjectBringToFrontItem1.Name = "floatingObjectBringToFrontItem1";
            // 
            // floatingObjectBringInFrontOfTextItem1
            // 
            this.floatingObjectBringInFrontOfTextItem1.Id = 85;
            this.floatingObjectBringInFrontOfTextItem1.Name = "floatingObjectBringInFrontOfTextItem1";
            // 
            // floatingObjectSendBackwardSubItem1
            // 
            this.floatingObjectSendBackwardSubItem1.Id = 86;
            this.floatingObjectSendBackwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBackwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendToBackItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBehindTextItem1)});
            this.floatingObjectSendBackwardSubItem1.Name = "floatingObjectSendBackwardSubItem1";
            // 
            // floatingObjectSendBackwardItem1
            // 
            this.floatingObjectSendBackwardItem1.Id = 87;
            this.floatingObjectSendBackwardItem1.Name = "floatingObjectSendBackwardItem1";
            // 
            // floatingObjectSendToBackItem1
            // 
            this.floatingObjectSendToBackItem1.Id = 88;
            this.floatingObjectSendToBackItem1.Name = "floatingObjectSendToBackItem1";
            // 
            // floatingObjectSendBehindTextItem1
            // 
            this.floatingObjectSendBehindTextItem1.Id = 89;
            this.floatingObjectSendBehindTextItem1.Name = "floatingObjectSendBehindTextItem1";
            // 
            // tableStyleOptionsRibbonPageGroup1
            // 
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedRowsItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedColumnsItem1);
            this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
            // 
            // tableDesignRibbonPage1
            // 
            this.tableDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableStyleOptionsRibbonPageGroup1,
            this.tableStylesRibbonPageGroup1,
            this.tableDrawBordersRibbonPageGroup1});
            this.tableDesignRibbonPage1.Name = "tableDesignRibbonPage1";
            // 
            // tableToolsRibbonPageCategory1
            // 
            this.tableToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(233)))), ((int)(((byte)(20)))));
            this.tableToolsRibbonPageCategory1.Control = this.richEditControl;
            this.tableToolsRibbonPageCategory1.Name = "tableToolsRibbonPageCategory1";
            this.tableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.tableLayoutRibbonPage1,
            this.tableDesignRibbonPage1});
            // 
            // toggleFirstRowItem1
            // 
            this.toggleFirstRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstRowItem1.Id = 90;
            this.toggleFirstRowItem1.Name = "toggleFirstRowItem1";
            // 
            // toggleLastRowItem1
            // 
            this.toggleLastRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastRowItem1.Id = 91;
            this.toggleLastRowItem1.Name = "toggleLastRowItem1";
            // 
            // toggleBandedRowsItem1
            // 
            this.toggleBandedRowsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedRowsItem1.Id = 92;
            this.toggleBandedRowsItem1.Name = "toggleBandedRowsItem1";
            // 
            // toggleFirstColumnItem1
            // 
            this.toggleFirstColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstColumnItem1.Id = 93;
            this.toggleFirstColumnItem1.Name = "toggleFirstColumnItem1";
            // 
            // toggleLastColumnItem1
            // 
            this.toggleLastColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastColumnItem1.Id = 94;
            this.toggleLastColumnItem1.Name = "toggleLastColumnItem1";
            // 
            // toggleBandedColumnsItem1
            // 
            this.toggleBandedColumnsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedColumnsItem1.Id = 95;
            this.toggleBandedColumnsItem1.Name = "toggleBandedColumnsItem1";
            // 
            // tableStylesRibbonPageGroup1
            // 
            this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableStyleItem1);
            this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
            // 
            // galleryChangeTableStyleItem1
            // 
            this.galleryChangeTableStyleItem1.CurrentItem = null;
            this.galleryChangeTableStyleItem1.CurrentItemStyle = null;
            this.galleryChangeTableStyleItem1.CurrentStyle = null;
            this.galleryChangeTableStyleItem1.DeleteItemLink = null;
            // 
            // 
            // 
            this.galleryChangeTableStyleItem1.Gallery.ColumnCount = 3;
            this.galleryChangeTableStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryChangeTableStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeTableStyleItem1.Id = 96;
            this.galleryChangeTableStyleItem1.ModifyItemLink = null;
            this.galleryChangeTableStyleItem1.Name = "galleryChangeTableStyleItem1";
            this.galleryChangeTableStyleItem1.NewItemLink = null;
            this.galleryChangeTableStyleItem1.PopupGallery = null;
            // 
            // tableDrawBordersRibbonPageGroup1
            // 
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineStyleItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineWeightItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderColorItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBordersItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableCellsShadingItem1);
            this.tableDrawBordersRibbonPageGroup1.Name = "tableDrawBordersRibbonPageGroup1";
            // 
            // changeTableBorderLineStyleItem1
            // 
            this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
            borderInfo1.Color = System.Drawing.Color.Black;
            borderInfo1.Frame = false;
            borderInfo1.Offset = 0;
            borderInfo1.Shadow = false;
            borderInfo1.Style = DevExpress.XtraRichEdit.Model.BorderLineStyle.Single;
            borderInfo1.Width = 10;
            this.changeTableBorderLineStyleItem1.EditValue = borderInfo1;
            this.changeTableBorderLineStyleItem1.Id = 97;
            this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
            // 
            // changeTableBorderLineWeightItem1
            // 
            this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
            this.changeTableBorderLineWeightItem1.EditValue = 20;
            this.changeTableBorderLineWeightItem1.Id = 98;
            this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
            // 
            // changeTableBorderColorItem1
            // 
            this.changeTableBorderColorItem1.Id = 99;
            this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
            // 
            // changeTableBordersItem1
            // 
            this.changeTableBordersItem1.Id = 100;
            this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1, true)});
            this.changeTableBordersItem1.Name = "changeTableBordersItem1";
            // 
            // toggleTableCellsBottomBorderItem1
            // 
            this.toggleTableCellsBottomBorderItem1.Id = 101;
            this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
            // 
            // toggleTableCellsTopBorderItem1
            // 
            this.toggleTableCellsTopBorderItem1.Id = 102;
            this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
            // 
            // toggleTableCellsLeftBorderItem1
            // 
            this.toggleTableCellsLeftBorderItem1.Id = 103;
            this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
            // 
            // toggleTableCellsRightBorderItem1
            // 
            this.toggleTableCellsRightBorderItem1.Id = 104;
            this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
            // 
            // resetTableCellsAllBordersItem1
            // 
            this.resetTableCellsAllBordersItem1.Id = 105;
            this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
            // 
            // toggleTableCellsAllBordersItem1
            // 
            this.toggleTableCellsAllBordersItem1.Id = 106;
            this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
            // 
            // toggleTableCellsOutsideBorderItem1
            // 
            this.toggleTableCellsOutsideBorderItem1.Id = 107;
            this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
            // 
            // toggleTableCellsInsideBorderItem1
            // 
            this.toggleTableCellsInsideBorderItem1.Id = 108;
            this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
            // 
            // toggleTableCellsInsideHorizontalBorderItem1
            // 
            this.toggleTableCellsInsideHorizontalBorderItem1.Id = 109;
            this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
            // 
            // toggleTableCellsInsideVerticalBorderItem1
            // 
            this.toggleTableCellsInsideVerticalBorderItem1.Id = 110;
            this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
            // 
            // toggleShowTableGridLinesItem1
            // 
            this.toggleShowTableGridLinesItem1.Id = 111;
            this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
            // 
            // changeTableCellsShadingItem1
            // 
            this.changeTableCellsShadingItem1.Id = 112;
            this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
            // 
            // repositoryItemBorderLineStyle1
            // 
            this.repositoryItemBorderLineStyle1.AutoHeight = false;
            this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineStyle1.Control = this.richEditControl;
            this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
            // 
            // repositoryItemBorderLineWeight1
            // 
            this.repositoryItemBorderLineWeight1.AutoHeight = false;
            this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineWeight1.Control = this.richEditControl;
            this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
            // 
            // tableTableRibbonPageGroup1
            // 
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.selectTableElementsItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.toggleShowTableGridLinesItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.showTablePropertiesFormItem1);
            this.tableTableRibbonPageGroup1.Name = "tableTableRibbonPageGroup1";
            // 
            // tableLayoutRibbonPage1
            // 
            this.tableLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableTableRibbonPageGroup1,
            this.tableRowsAndColumnsRibbonPageGroup1,
            this.tableMergeRibbonPageGroup1,
            this.tableCellSizeRibbonPageGroup1,
            this.tableAlignmentRibbonPageGroup1});
            this.tableLayoutRibbonPage1.Name = "tableLayoutRibbonPage1";
            // 
            // selectTableElementsItem1
            // 
            this.selectTableElementsItem1.Id = 113;
            this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
            this.selectTableElementsItem1.Name = "selectTableElementsItem1";
            // 
            // selectTableCellItem1
            // 
            this.selectTableCellItem1.Id = 114;
            this.selectTableCellItem1.Name = "selectTableCellItem1";
            // 
            // selectTableColumnItem1
            // 
            this.selectTableColumnItem1.Id = 115;
            this.selectTableColumnItem1.Name = "selectTableColumnItem1";
            // 
            // selectTableRowItem1
            // 
            this.selectTableRowItem1.Id = 116;
            this.selectTableRowItem1.Name = "selectTableRowItem1";
            // 
            // selectTableItem1
            // 
            this.selectTableItem1.Id = 117;
            this.selectTableItem1.Name = "selectTableItem1";
            // 
            // showTablePropertiesFormItem1
            // 
            this.showTablePropertiesFormItem1.Id = 118;
            this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
            // 
            // tableRowsAndColumnsRibbonPageGroup1
            // 
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.deleteTableElementsItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowAboveItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowBelowItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToLeftItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToRightItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.Name = "tableRowsAndColumnsRibbonPageGroup1";
            // 
            // deleteTableElementsItem1
            // 
            this.deleteTableElementsItem1.Id = 119;
            this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
            this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
            // 
            // showDeleteTableCellsFormItem1
            // 
            this.showDeleteTableCellsFormItem1.Id = 120;
            this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
            // 
            // deleteTableColumnsItem1
            // 
            this.deleteTableColumnsItem1.Id = 121;
            this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
            // 
            // deleteTableRowsItem1
            // 
            this.deleteTableRowsItem1.Id = 122;
            this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
            // 
            // deleteTableItem1
            // 
            this.deleteTableItem1.Id = 123;
            this.deleteTableItem1.Name = "deleteTableItem1";
            // 
            // insertTableRowAboveItem1
            // 
            this.insertTableRowAboveItem1.Id = 124;
            this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
            // 
            // insertTableRowBelowItem1
            // 
            this.insertTableRowBelowItem1.Id = 125;
            this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
            // 
            // insertTableColumnToLeftItem1
            // 
            this.insertTableColumnToLeftItem1.Id = 126;
            this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
            // 
            // insertTableColumnToRightItem1
            // 
            this.insertTableColumnToRightItem1.Id = 127;
            this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
            // 
            // tableMergeRibbonPageGroup1
            // 
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.mergeTableCellsItem1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.showSplitTableCellsForm1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.splitTableItem1);
            this.tableMergeRibbonPageGroup1.Name = "tableMergeRibbonPageGroup1";
            // 
            // mergeTableCellsItem1
            // 
            this.mergeTableCellsItem1.Id = 128;
            this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
            // 
            // showSplitTableCellsForm1
            // 
            this.showSplitTableCellsForm1.Id = 129;
            this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
            // 
            // splitTableItem1
            // 
            this.splitTableItem1.Id = 130;
            this.splitTableItem1.Name = "splitTableItem1";
            // 
            // tableCellSizeRibbonPageGroup1
            // 
            this.tableCellSizeRibbonPageGroup1.AllowTextClipping = false;
            this.tableCellSizeRibbonPageGroup1.ItemLinks.Add(this.toggleTableAutoFitItem1);
            this.tableCellSizeRibbonPageGroup1.Name = "tableCellSizeRibbonPageGroup1";
            // 
            // toggleTableAutoFitItem1
            // 
            this.toggleTableAutoFitItem1.Id = 131;
            this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
            this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
            // 
            // toggleTableAutoFitContentsItem1
            // 
            this.toggleTableAutoFitContentsItem1.Id = 132;
            this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
            // 
            // toggleTableAutoFitWindowItem1
            // 
            this.toggleTableAutoFitWindowItem1.Id = 133;
            this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
            // 
            // toggleTableFixedColumnWidthItem1
            // 
            this.toggleTableFixedColumnWidthItem1.Id = 134;
            this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
            // 
            // tableAlignmentRibbonPageGroup1
            // 
            this.tableAlignmentRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("tableAlignmentRibbonPageGroup1.Glyph")));
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.showTableOptionsFormItem1);
            this.tableAlignmentRibbonPageGroup1.Name = "tableAlignmentRibbonPageGroup1";
            // 
            // toggleTableCellsTopLeftAlignmentItem1
            // 
            this.toggleTableCellsTopLeftAlignmentItem1.Id = 135;
            this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
            // 
            // toggleTableCellsMiddleLeftAlignmentItem1
            // 
            this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 136;
            this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
            // 
            // toggleTableCellsBottomLeftAlignmentItem1
            // 
            this.toggleTableCellsBottomLeftAlignmentItem1.Id = 137;
            this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
            // 
            // toggleTableCellsTopCenterAlignmentItem1
            // 
            this.toggleTableCellsTopCenterAlignmentItem1.Id = 138;
            this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
            // 
            // toggleTableCellsMiddleCenterAlignmentItem1
            // 
            this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 139;
            this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
            // 
            // toggleTableCellsBottomCenterAlignmentItem1
            // 
            this.toggleTableCellsBottomCenterAlignmentItem1.Id = 140;
            this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
            // 
            // toggleTableCellsTopRightAlignmentItem1
            // 
            this.toggleTableCellsTopRightAlignmentItem1.Id = 141;
            this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
            // 
            // toggleTableCellsMiddleRightAlignmentItem1
            // 
            this.toggleTableCellsMiddleRightAlignmentItem1.Id = 142;
            this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
            // 
            // toggleTableCellsBottomRightAlignmentItem1
            // 
            this.toggleTableCellsBottomRightAlignmentItem1.Id = 143;
            this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
            // 
            // showTableOptionsFormItem1
            // 
            this.showTableOptionsFormItem1.Id = 144;
            this.showTableOptionsFormItem1.Name = "showTableOptionsFormItem1";
            // 
            // headerFooterToolsDesignNavigationRibbonPageGroup1
            // 
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageHeaderItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToNextHeaderFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPreviousHeaderFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.toggleLinkToPreviousItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.Name = "headerFooterToolsDesignNavigationRibbonPageGroup1";
            // 
            // headerFooterToolsDesignRibbonPage1
            // 
            this.headerFooterToolsDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.headerFooterToolsDesignNavigationRibbonPageGroup1,
            this.headerFooterToolsDesignOptionsRibbonPageGroup1,
            this.headerFooterToolsDesignCloseRibbonPageGroup1});
            this.headerFooterToolsDesignRibbonPage1.Name = "headerFooterToolsDesignRibbonPage1";
            // 
            // headerFooterToolsRibbonPageCategory1
            // 
            this.headerFooterToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(176)))), ((int)(((byte)(35)))));
            this.headerFooterToolsRibbonPageCategory1.Control = this.richEditControl;
            this.headerFooterToolsRibbonPageCategory1.Name = "headerFooterToolsRibbonPageCategory1";
            this.headerFooterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.headerFooterToolsDesignRibbonPage1});
            // 
            // goToPageHeaderItem1
            // 
            this.goToPageHeaderItem1.Id = 145;
            this.goToPageHeaderItem1.Name = "goToPageHeaderItem1";
            // 
            // goToPageFooterItem1
            // 
            this.goToPageFooterItem1.Id = 146;
            this.goToPageFooterItem1.Name = "goToPageFooterItem1";
            // 
            // goToNextHeaderFooterItem1
            // 
            this.goToNextHeaderFooterItem1.Id = 147;
            this.goToNextHeaderFooterItem1.Name = "goToNextHeaderFooterItem1";
            // 
            // goToPreviousHeaderFooterItem1
            // 
            this.goToPreviousHeaderFooterItem1.Id = 148;
            this.goToPreviousHeaderFooterItem1.Name = "goToPreviousHeaderFooterItem1";
            // 
            // toggleLinkToPreviousItem1
            // 
            this.toggleLinkToPreviousItem1.Id = 149;
            this.toggleLinkToPreviousItem1.Name = "toggleLinkToPreviousItem1";
            // 
            // headerFooterToolsDesignOptionsRibbonPageGroup1
            // 
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentFirstPageItem1);
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentOddAndEvenPagesItem1);
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.Name = "headerFooterToolsDesignOptionsRibbonPageGroup1";
            // 
            // toggleDifferentFirstPageItem1
            // 
            this.toggleDifferentFirstPageItem1.Id = 150;
            this.toggleDifferentFirstPageItem1.Name = "toggleDifferentFirstPageItem1";
            // 
            // toggleDifferentOddAndEvenPagesItem1
            // 
            this.toggleDifferentOddAndEvenPagesItem1.Id = 151;
            this.toggleDifferentOddAndEvenPagesItem1.Name = "toggleDifferentOddAndEvenPagesItem1";
            // 
            // headerFooterToolsDesignCloseRibbonPageGroup1
            // 
            this.headerFooterToolsDesignCloseRibbonPageGroup1.ItemLinks.Add(this.closePageHeaderFooterItem1);
            this.headerFooterToolsDesignCloseRibbonPageGroup1.Name = "headerFooterToolsDesignCloseRibbonPageGroup1";
            // 
            // closePageHeaderFooterItem1
            // 
            this.closePageHeaderFooterItem1.Id = 152;
            this.closePageHeaderFooterItem1.Name = "closePageHeaderFooterItem1";
            // 
            // documentViewsRibbonPageGroup1
            // 
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToSimpleViewItem1);
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToDraftViewItem1);
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToPrintLayoutViewItem1);
            this.documentViewsRibbonPageGroup1.Name = "documentViewsRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.documentViewsRibbonPageGroup1,
            this.showRibbonPageGroup1,
            this.zoomRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // switchToSimpleViewItem1
            // 
            this.switchToSimpleViewItem1.Id = 153;
            this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
            // 
            // switchToDraftViewItem1
            // 
            this.switchToDraftViewItem1.Id = 154;
            this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
            // 
            // switchToPrintLayoutViewItem1
            // 
            this.switchToPrintLayoutViewItem1.Id = 155;
            this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
            // 
            // showRibbonPageGroup1
            // 
            this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowHorizontalRulerItem1);
            this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowVerticalRulerItem1);
            this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
            // 
            // toggleShowHorizontalRulerItem1
            // 
            this.toggleShowHorizontalRulerItem1.Id = 156;
            this.toggleShowHorizontalRulerItem1.Name = "toggleShowHorizontalRulerItem1";
            // 
            // toggleShowVerticalRulerItem1
            // 
            this.toggleShowVerticalRulerItem1.Id = 157;
            this.toggleShowVerticalRulerItem1.Name = "toggleShowVerticalRulerItem1";
            // 
            // zoomRibbonPageGroup1
            // 
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomOutItem1);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomInItem1);
            this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
            // 
            // zoomOutItem1
            // 
            this.zoomOutItem1.Id = 158;
            this.zoomOutItem1.Name = "zoomOutItem1";
            // 
            // zoomInItem1
            // 
            this.zoomInItem1.Id = 159;
            this.zoomInItem1.Name = "zoomInItem1";
            // 
            // documentProofingRibbonPageGroup1
            // 
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.checkSpellingItem1);
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.changeLanguageItem1);
            this.documentProofingRibbonPageGroup1.Name = "documentProofingRibbonPageGroup1";
            // 
            // reviewRibbonPage1
            // 
            this.reviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.documentProofingRibbonPageGroup1,
            this.documentProtectionRibbonPageGroup1,
            this.documentCommentRibbonPageGroup1,
            this.documentTrackingRibbonPageGroup1});
            this.reviewRibbonPage1.Name = "reviewRibbonPage1";
            // 
            // checkSpellingItem1
            // 
            this.checkSpellingItem1.Id = 160;
            this.checkSpellingItem1.Name = "checkSpellingItem1";
            // 
            // changeLanguageItem1
            // 
            this.changeLanguageItem1.Id = 161;
            this.changeLanguageItem1.Name = "changeLanguageItem1";
            // 
            // documentProtectionRibbonPageGroup1
            // 
            this.documentProtectionRibbonPageGroup1.ItemLinks.Add(this.protectDocumentItem1);
            this.documentProtectionRibbonPageGroup1.ItemLinks.Add(this.changeRangeEditingPermissionsItem1);
            this.documentProtectionRibbonPageGroup1.ItemLinks.Add(this.unprotectDocumentItem1);
            this.documentProtectionRibbonPageGroup1.Name = "documentProtectionRibbonPageGroup1";
            // 
            // protectDocumentItem1
            // 
            this.protectDocumentItem1.Id = 162;
            this.protectDocumentItem1.Name = "protectDocumentItem1";
            // 
            // changeRangeEditingPermissionsItem1
            // 
            this.changeRangeEditingPermissionsItem1.Id = 163;
            this.changeRangeEditingPermissionsItem1.Name = "changeRangeEditingPermissionsItem1";
            // 
            // unprotectDocumentItem1
            // 
            this.unprotectDocumentItem1.Id = 164;
            this.unprotectDocumentItem1.Name = "unprotectDocumentItem1";
            // 
            // documentCommentRibbonPageGroup1
            // 
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.newCommentItem1);
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.deleteCommentsItem1);
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.previousCommentItem1);
            this.documentCommentRibbonPageGroup1.ItemLinks.Add(this.nextCommentItem1);
            this.documentCommentRibbonPageGroup1.Name = "documentCommentRibbonPageGroup1";
            // 
            // newCommentItem1
            // 
            this.newCommentItem1.Id = 165;
            this.newCommentItem1.Name = "newCommentItem1";
            // 
            // deleteCommentsItem1
            // 
            this.deleteCommentsItem1.Id = 166;
            this.deleteCommentsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteOneCommentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteAllCommentsShownItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteAllCommentsItem1)});
            this.deleteCommentsItem1.Name = "deleteCommentsItem1";
            // 
            // deleteOneCommentItem1
            // 
            this.deleteOneCommentItem1.Id = 167;
            this.deleteOneCommentItem1.Name = "deleteOneCommentItem1";
            // 
            // deleteAllCommentsShownItem1
            // 
            this.deleteAllCommentsShownItem1.Id = 168;
            this.deleteAllCommentsShownItem1.Name = "deleteAllCommentsShownItem1";
            // 
            // deleteAllCommentsItem1
            // 
            this.deleteAllCommentsItem1.Id = 169;
            this.deleteAllCommentsItem1.Name = "deleteAllCommentsItem1";
            // 
            // previousCommentItem1
            // 
            this.previousCommentItem1.Id = 170;
            this.previousCommentItem1.Name = "previousCommentItem1";
            // 
            // nextCommentItem1
            // 
            this.nextCommentItem1.Id = 171;
            this.nextCommentItem1.Name = "nextCommentItem1";
            // 
            // documentTrackingRibbonPageGroup1
            // 
            this.documentTrackingRibbonPageGroup1.ItemLinks.Add(this.changeCommentItem1);
            this.documentTrackingRibbonPageGroup1.ItemLinks.Add(this.reviewersItem1);
            this.documentTrackingRibbonPageGroup1.ItemLinks.Add(this.reviewingPaneItem1);
            this.documentTrackingRibbonPageGroup1.Name = "documentTrackingRibbonPageGroup1";
            // 
            // changeCommentItem1
            // 
            this.changeCommentItem1.Id = 172;
            this.changeCommentItem1.Name = "changeCommentItem1";
            // 
            // reviewersItem1
            // 
            this.reviewersItem1.Id = 173;
            this.reviewersItem1.Name = "reviewersItem1";
            // 
            // reviewingPaneItem1
            // 
            this.reviewingPaneItem1.Id = 174;
            this.reviewingPaneItem1.Name = "reviewingPaneItem1";
            // 
            // mailMergeRibbonPageGroup1
            // 
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.insertMergeFieldItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.toggleViewMergedDataItem1);
            this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
            // 
            // mailingsRibbonPage1
            // 
            this.mailingsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.mailMergeRibbonPageGroup1});
            this.mailingsRibbonPage1.Name = "mailingsRibbonPage1";
            // 
            // insertMergeFieldItem1
            // 
            this.insertMergeFieldItem1.Id = 175;
            this.insertMergeFieldItem1.Name = "insertMergeFieldItem1";
            // 
            // showAllFieldCodesItem1
            // 
            this.showAllFieldCodesItem1.Id = 176;
            this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
            // 
            // showAllFieldResultsItem1
            // 
            this.showAllFieldResultsItem1.Id = 177;
            this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
            // 
            // toggleViewMergedDataItem1
            // 
            this.toggleViewMergedDataItem1.Id = 178;
            this.toggleViewMergedDataItem1.Name = "toggleViewMergedDataItem1";
            // 
            // tableOfContentsRibbonPageGroup1
            // 
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfContentsItem1);
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfContentsItem1);
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.addParagraphsToTableOfContentItem1);
            this.tableOfContentsRibbonPageGroup1.Name = "tableOfContentsRibbonPageGroup1";
            // 
            // referencesRibbonPage1
            // 
            this.referencesRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableOfContentsRibbonPageGroup1,
            this.captionsRibbonPageGroup1});
            this.referencesRibbonPage1.Name = "referencesRibbonPage1";
            // 
            // insertTableOfContentsItem1
            // 
            this.insertTableOfContentsItem1.Id = 179;
            this.insertTableOfContentsItem1.Name = "insertTableOfContentsItem1";
            // 
            // updateTableOfContentsItem1
            // 
            this.updateTableOfContentsItem1.Id = 180;
            this.updateTableOfContentsItem1.Name = "updateTableOfContentsItem1";
            // 
            // addParagraphsToTableOfContentItem1
            // 
            this.addParagraphsToTableOfContentItem1.Id = 181;
            this.addParagraphsToTableOfContentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem4),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem6),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem7),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem8),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem9),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem10)});
            this.addParagraphsToTableOfContentItem1.Name = "addParagraphsToTableOfContentItem1";
            // 
            // setParagraphHeadingLevelItem1
            // 
            this.setParagraphHeadingLevelItem1.Id = 182;
            this.setParagraphHeadingLevelItem1.Name = "setParagraphHeadingLevelItem1";
            this.setParagraphHeadingLevelItem1.OutlineLevel = 0;
            // 
            // setParagraphHeadingLevelItem2
            // 
            this.setParagraphHeadingLevelItem2.Id = 183;
            this.setParagraphHeadingLevelItem2.Name = "setParagraphHeadingLevelItem2";
            this.setParagraphHeadingLevelItem2.OutlineLevel = 1;
            // 
            // setParagraphHeadingLevelItem3
            // 
            this.setParagraphHeadingLevelItem3.Id = 184;
            this.setParagraphHeadingLevelItem3.Name = "setParagraphHeadingLevelItem3";
            this.setParagraphHeadingLevelItem3.OutlineLevel = 2;
            // 
            // setParagraphHeadingLevelItem4
            // 
            this.setParagraphHeadingLevelItem4.Id = 185;
            this.setParagraphHeadingLevelItem4.Name = "setParagraphHeadingLevelItem4";
            this.setParagraphHeadingLevelItem4.OutlineLevel = 3;
            // 
            // setParagraphHeadingLevelItem5
            // 
            this.setParagraphHeadingLevelItem5.Id = 186;
            this.setParagraphHeadingLevelItem5.Name = "setParagraphHeadingLevelItem5";
            this.setParagraphHeadingLevelItem5.OutlineLevel = 4;
            // 
            // setParagraphHeadingLevelItem6
            // 
            this.setParagraphHeadingLevelItem6.Id = 187;
            this.setParagraphHeadingLevelItem6.Name = "setParagraphHeadingLevelItem6";
            this.setParagraphHeadingLevelItem6.OutlineLevel = 5;
            // 
            // setParagraphHeadingLevelItem7
            // 
            this.setParagraphHeadingLevelItem7.Id = 188;
            this.setParagraphHeadingLevelItem7.Name = "setParagraphHeadingLevelItem7";
            this.setParagraphHeadingLevelItem7.OutlineLevel = 6;
            // 
            // setParagraphHeadingLevelItem8
            // 
            this.setParagraphHeadingLevelItem8.Id = 189;
            this.setParagraphHeadingLevelItem8.Name = "setParagraphHeadingLevelItem8";
            this.setParagraphHeadingLevelItem8.OutlineLevel = 7;
            // 
            // setParagraphHeadingLevelItem9
            // 
            this.setParagraphHeadingLevelItem9.Id = 190;
            this.setParagraphHeadingLevelItem9.Name = "setParagraphHeadingLevelItem9";
            this.setParagraphHeadingLevelItem9.OutlineLevel = 8;
            // 
            // setParagraphHeadingLevelItem10
            // 
            this.setParagraphHeadingLevelItem10.Id = 191;
            this.setParagraphHeadingLevelItem10.Name = "setParagraphHeadingLevelItem10";
            this.setParagraphHeadingLevelItem10.OutlineLevel = 9;
            // 
            // captionsRibbonPageGroup1
            // 
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertCaptionPlaceholderItem1);
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfFiguresPlaceholderItem1);
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfFiguresItem1);
            this.captionsRibbonPageGroup1.Name = "captionsRibbonPageGroup1";
            // 
            // insertCaptionPlaceholderItem1
            // 
            this.insertCaptionPlaceholderItem1.Id = 192;
            this.insertCaptionPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertFiguresCaptionItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTablesCaptionItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertEquationsCaptionItems1)});
            this.insertCaptionPlaceholderItem1.Name = "insertCaptionPlaceholderItem1";
            // 
            // insertFiguresCaptionItems1
            // 
            this.insertFiguresCaptionItems1.Id = 193;
            this.insertFiguresCaptionItems1.Name = "insertFiguresCaptionItems1";
            // 
            // insertTablesCaptionItems1
            // 
            this.insertTablesCaptionItems1.Id = 194;
            this.insertTablesCaptionItems1.Name = "insertTablesCaptionItems1";
            // 
            // insertEquationsCaptionItems1
            // 
            this.insertEquationsCaptionItems1.Id = 195;
            this.insertEquationsCaptionItems1.Name = "insertEquationsCaptionItems1";
            // 
            // insertTableOfFiguresPlaceholderItem1
            // 
            this.insertTableOfFiguresPlaceholderItem1.Id = 196;
            this.insertTableOfFiguresPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfFiguresItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfTablesItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfEquationsItems1)});
            this.insertTableOfFiguresPlaceholderItem1.Name = "insertTableOfFiguresPlaceholderItem1";
            // 
            // insertTableOfFiguresItems1
            // 
            this.insertTableOfFiguresItems1.Id = 197;
            this.insertTableOfFiguresItems1.Name = "insertTableOfFiguresItems1";
            // 
            // insertTableOfTablesItems1
            // 
            this.insertTableOfTablesItems1.Id = 198;
            this.insertTableOfTablesItems1.Name = "insertTableOfTablesItems1";
            // 
            // insertTableOfEquationsItems1
            // 
            this.insertTableOfEquationsItems1.Id = 199;
            this.insertTableOfEquationsItems1.Name = "insertTableOfEquationsItems1";
            // 
            // updateTableOfFiguresItem1
            // 
            this.updateTableOfFiguresItem1.Id = 200;
            this.updateTableOfFiguresItem1.Name = "updateTableOfFiguresItem1";
            // 
            // pageSetupRibbonPageGroup1
            // 
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageMarginsItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageOrientationItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPaperKindItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionColumnsItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.insertBreakItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionLineNumberingItem1);
            this.pageSetupRibbonPageGroup1.Name = "pageSetupRibbonPageGroup1";
            // 
            // pageLayoutRibbonPage1
            // 
            this.pageLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pageSetupRibbonPageGroup1,
            this.pageBackgroundRibbonPageGroup1});
            this.pageLayoutRibbonPage1.Name = "pageLayoutRibbonPage1";
            // 
            // changeSectionPageMarginsItem1
            // 
            this.changeSectionPageMarginsItem1.Id = 201;
            this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showPageMarginsSetupFormItem1, true)});
            this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
            // 
            // setNormalSectionPageMarginsItem1
            // 
            this.setNormalSectionPageMarginsItem1.Id = 202;
            this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
            // 
            // setNarrowSectionPageMarginsItem1
            // 
            this.setNarrowSectionPageMarginsItem1.Id = 203;
            this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
            // 
            // setModerateSectionPageMarginsItem1
            // 
            this.setModerateSectionPageMarginsItem1.Id = 204;
            this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
            // 
            // setWideSectionPageMarginsItem1
            // 
            this.setWideSectionPageMarginsItem1.Id = 205;
            this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
            // 
            // showPageMarginsSetupFormItem1
            // 
            this.showPageMarginsSetupFormItem1.Id = 206;
            this.showPageMarginsSetupFormItem1.Name = "showPageMarginsSetupFormItem1";
            // 
            // changeSectionPageOrientationItem1
            // 
            this.changeSectionPageOrientationItem1.Id = 207;
            this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
            this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
            // 
            // setPortraitPageOrientationItem1
            // 
            this.setPortraitPageOrientationItem1.Id = 208;
            this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
            // 
            // setLandscapePageOrientationItem1
            // 
            this.setLandscapePageOrientationItem1.Id = 209;
            this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
            // 
            // changeSectionPaperKindItem1
            // 
            this.changeSectionPaperKindItem1.Id = 210;
            this.changeSectionPaperKindItem1.Name = "changeSectionPaperKindItem1";
            // 
            // changeSectionColumnsItem1
            // 
            this.changeSectionColumnsItem1.Id = 211;
            this.changeSectionColumnsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionOneColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionTwoColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionThreeColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showColumnsSetupFormItem1, true)});
            this.changeSectionColumnsItem1.Name = "changeSectionColumnsItem1";
            // 
            // setSectionOneColumnItem1
            // 
            this.setSectionOneColumnItem1.Id = 212;
            this.setSectionOneColumnItem1.Name = "setSectionOneColumnItem1";
            // 
            // setSectionTwoColumnsItem1
            // 
            this.setSectionTwoColumnsItem1.Id = 213;
            this.setSectionTwoColumnsItem1.Name = "setSectionTwoColumnsItem1";
            // 
            // setSectionThreeColumnsItem1
            // 
            this.setSectionThreeColumnsItem1.Id = 214;
            this.setSectionThreeColumnsItem1.Name = "setSectionThreeColumnsItem1";
            // 
            // showColumnsSetupFormItem1
            // 
            this.showColumnsSetupFormItem1.Id = 215;
            this.showColumnsSetupFormItem1.Name = "showColumnsSetupFormItem1";
            // 
            // insertBreakItem1
            // 
            this.insertBreakItem1.Id = 216;
            this.insertBreakItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPageBreakItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertColumnBreakItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakNextPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakEvenPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakOddPageItem1)});
            this.insertBreakItem1.Name = "insertBreakItem1";
            // 
            // insertPageBreakItem1
            // 
            this.insertPageBreakItem1.Id = 217;
            this.insertPageBreakItem1.Name = "insertPageBreakItem1";
            // 
            // insertColumnBreakItem1
            // 
            this.insertColumnBreakItem1.Id = 218;
            this.insertColumnBreakItem1.Name = "insertColumnBreakItem1";
            // 
            // insertSectionBreakNextPageItem1
            // 
            this.insertSectionBreakNextPageItem1.Id = 219;
            this.insertSectionBreakNextPageItem1.Name = "insertSectionBreakNextPageItem1";
            // 
            // insertSectionBreakEvenPageItem1
            // 
            this.insertSectionBreakEvenPageItem1.Id = 220;
            this.insertSectionBreakEvenPageItem1.Name = "insertSectionBreakEvenPageItem1";
            // 
            // insertSectionBreakOddPageItem1
            // 
            this.insertSectionBreakOddPageItem1.Id = 221;
            this.insertSectionBreakOddPageItem1.Name = "insertSectionBreakOddPageItem1";
            // 
            // changeSectionLineNumberingItem1
            // 
            this.changeSectionLineNumberingItem1.Id = 222;
            this.changeSectionLineNumberingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingNoneItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingContinuousItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewSectionItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphSuppressLineNumbersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineNumberingFormItem1, true)});
            this.changeSectionLineNumberingItem1.Name = "changeSectionLineNumberingItem1";
            // 
            // setSectionLineNumberingNoneItem1
            // 
            this.setSectionLineNumberingNoneItem1.Id = 223;
            this.setSectionLineNumberingNoneItem1.Name = "setSectionLineNumberingNoneItem1";
            // 
            // setSectionLineNumberingContinuousItem1
            // 
            this.setSectionLineNumberingContinuousItem1.Id = 224;
            this.setSectionLineNumberingContinuousItem1.Name = "setSectionLineNumberingContinuousItem1";
            // 
            // setSectionLineNumberingRestartNewPageItem1
            // 
            this.setSectionLineNumberingRestartNewPageItem1.Id = 225;
            this.setSectionLineNumberingRestartNewPageItem1.Name = "setSectionLineNumberingRestartNewPageItem1";
            // 
            // setSectionLineNumberingRestartNewSectionItem1
            // 
            this.setSectionLineNumberingRestartNewSectionItem1.Id = 226;
            this.setSectionLineNumberingRestartNewSectionItem1.Name = "setSectionLineNumberingRestartNewSectionItem1";
            // 
            // toggleParagraphSuppressLineNumbersItem1
            // 
            this.toggleParagraphSuppressLineNumbersItem1.Id = 227;
            this.toggleParagraphSuppressLineNumbersItem1.Name = "toggleParagraphSuppressLineNumbersItem1";
            // 
            // showLineNumberingFormItem1
            // 
            this.showLineNumberingFormItem1.Id = 228;
            this.showLineNumberingFormItem1.Name = "showLineNumberingFormItem1";
            // 
            // pageBackgroundRibbonPageGroup1
            // 
            this.pageBackgroundRibbonPageGroup1.AllowTextClipping = false;
            this.pageBackgroundRibbonPageGroup1.ItemLinks.Add(this.changePageColorItem1);
            this.pageBackgroundRibbonPageGroup1.Name = "pageBackgroundRibbonPageGroup1";
            // 
            // changePageColorItem1
            // 
            this.changePageColorItem1.Id = 229;
            this.changePageColorItem1.Name = "changePageColorItem1";
            // 
            // pagesRibbonPageGroup1
            // 
            this.pagesRibbonPageGroup1.AllowTextClipping = false;
            this.pagesRibbonPageGroup1.ItemLinks.Add(this.insertPageBreakItem21);
            this.pagesRibbonPageGroup1.Name = "pagesRibbonPageGroup1";
            // 
            // insertRibbonPage1
            // 
            this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pagesRibbonPageGroup1,
            this.tablesRibbonPageGroup1,
            this.illustrationsRibbonPageGroup1,
            this.linksRibbonPageGroup1,
            this.headerFooterRibbonPageGroup1,
            this.textRibbonPageGroup1,
            this.symbolsRibbonPageGroup1});
            this.insertRibbonPage1.Name = "insertRibbonPage1";
            // 
            // insertPageBreakItem21
            // 
            this.insertPageBreakItem21.Id = 230;
            this.insertPageBreakItem21.Name = "insertPageBreakItem21";
            // 
            // tablesRibbonPageGroup1
            // 
            this.tablesRibbonPageGroup1.AllowTextClipping = false;
            this.tablesRibbonPageGroup1.ItemLinks.Add(this.insertTableItem1);
            this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
            // 
            // insertTableItem1
            // 
            this.insertTableItem1.Id = 231;
            this.insertTableItem1.Name = "insertTableItem1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertPictureItem1);
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertFloatingPictureItem1);
            this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
            // 
            // insertPictureItem1
            // 
            this.insertPictureItem1.Id = 232;
            this.insertPictureItem1.Name = "insertPictureItem1";
            // 
            // insertFloatingPictureItem1
            // 
            this.insertFloatingPictureItem1.Id = 233;
            this.insertFloatingPictureItem1.Name = "insertFloatingPictureItem1";
            // 
            // linksRibbonPageGroup1
            // 
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertBookmarkItem1);
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertHyperlinkItem1);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // insertBookmarkItem1
            // 
            this.insertBookmarkItem1.Id = 234;
            this.insertBookmarkItem1.Name = "insertBookmarkItem1";
            // 
            // insertHyperlinkItem1
            // 
            this.insertHyperlinkItem1.Id = 235;
            this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
            // 
            // headerFooterRibbonPageGroup1
            // 
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageHeaderItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageFooterItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageNumberItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageCountItem1);
            this.headerFooterRibbonPageGroup1.Name = "headerFooterRibbonPageGroup1";
            // 
            // editPageHeaderItem1
            // 
            this.editPageHeaderItem1.Id = 236;
            this.editPageHeaderItem1.Name = "editPageHeaderItem1";
            // 
            // editPageFooterItem1
            // 
            this.editPageFooterItem1.Id = 237;
            this.editPageFooterItem1.Name = "editPageFooterItem1";
            // 
            // insertPageNumberItem1
            // 
            this.insertPageNumberItem1.Id = 238;
            this.insertPageNumberItem1.Name = "insertPageNumberItem1";
            // 
            // insertPageCountItem1
            // 
            this.insertPageCountItem1.Id = 239;
            this.insertPageCountItem1.Name = "insertPageCountItem1";
            // 
            // textRibbonPageGroup1
            // 
            this.textRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("textRibbonPageGroup1.Glyph")));
            this.textRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxItem1);
            this.textRibbonPageGroup1.Name = "textRibbonPageGroup1";
            // 
            // insertTextBoxItem1
            // 
            this.insertTextBoxItem1.Id = 240;
            this.insertTextBoxItem1.Name = "insertTextBoxItem1";
            // 
            // symbolsRibbonPageGroup1
            // 
            this.symbolsRibbonPageGroup1.AllowTextClipping = false;
            this.symbolsRibbonPageGroup1.ItemLinks.Add(this.insertSymbolItem1);
            this.symbolsRibbonPageGroup1.Name = "symbolsRibbonPageGroup1";
            // 
            // insertSymbolItem1
            // 
            this.insertSymbolItem1.Id = 241;
            this.insertSymbolItem1.Name = "insertSymbolItem1";
            // 
            // clipboardRibbonPageGroup1
            // 
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            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);
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 249;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 250;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 251;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 252;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // fontRibbonPageGroup1
            // 
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup2);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup3);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 253;
            this.changeFontNameItem1.Name = "changeFontNameItem1";
            // 
            // changeFontSizeItem1
            // 
            this.changeFontSizeItem1.Edit = this.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 254;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 255;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 256;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 257;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 258;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 259;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 260;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 261;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 262;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 263;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 264;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 265;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 266;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 267;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 268;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 269;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 270;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 271;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 272;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 242;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // 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";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.richEditControl;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 243;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 244;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 273;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 274;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 275;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 276;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 277;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 278;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 279;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 280;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 281;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 282;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 283;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 284;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 285;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 286;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 287;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 288;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 289;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 290;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 291;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 292;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 245;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 246;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 247;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 248;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 293;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 294;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 295;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            // 
            // undoItem1
            // 
            this.undoItem1.Id = 296;
            this.undoItem1.Name = "undoItem1";
            // 
            // redoItem1
            // 
            this.redoItem1.Id = 297;
            this.redoItem1.Name = "redoItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Id = 298;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Id = 299;
            this.fileOpenItem1.Name = "fileOpenItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 300;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Id = 301;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Id = 302;
            this.quickPrintItem1.Name = "quickPrintItem1";
            // 
            // printItem1
            // 
            this.printItem1.Id = 303;
            this.printItem1.Name = "printItem1";
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 304;
            this.printPreviewItem1.Name = "printPreviewItem1";
            // 
            // Form1
            // 
            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(1100, 700);
            this.Controls.Add(this.richEditControl);
            this.Controls.Add(this.popupControlContainer1);
            this.Controls.Add(this.popupControlContainer2);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbonControl);
            this.Name = "Form1";
            this.Ribbon = this.ribbonControl;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).EndInit();
            this.popupControlContainer2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
            this.popupControlContainer1.ResumeLayout(false);
            this.popupControlContainer1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).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(SnapReportEditor));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.Snap.Core.API.DataSourceInfo dataSourceInfo1 = new DevExpress.Snap.Core.API.DataSourceInfo();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraRichEdit.Model.BorderInfo borderInfo1 = new DevExpress.XtraRichEdit.Model.BorderInfo();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn chartControlCommandGalleryItemGroup2DColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn();
            DevExpress.XtraCharts.UI.CreateBarChartItem createBarChartItem1 = new DevExpress.XtraCharts.UI.CreateBarChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem createFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem createSideBySideFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem createSideBySideStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBarChartItem createStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedBarChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn chartControlCommandGalleryItemGroup3DColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn();
            DevExpress.XtraCharts.UI.CreateBar3DChartItem createBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem createFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateManhattanBarChartItem createManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem createSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem createSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem createStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn chartControlCommandGalleryItemGroupCylinderColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn();
            DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem createCylinderBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem createCylinderFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem createCylinderManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem createCylinderSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem createCylinderSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem createCylinderStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn chartControlCommandGalleryItemGroupConeColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn();
            DevExpress.XtraCharts.UI.CreateConeBar3DChartItem createConeBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem createConeFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem createConeManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem createConeSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem createConeSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem createConeStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn chartControlCommandGalleryItemGroupPyramidColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn();
            DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem createPyramidBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem createPyramidFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem createPyramidManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem createPyramidSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem createPyramidSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem createPyramidStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine chartControlCommandGalleryItemGroup2DLine1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine();
            DevExpress.XtraCharts.UI.CreateLineChartItem createLineChartItem1 = new DevExpress.XtraCharts.UI.CreateLineChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem createFullStackedLineChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateScatterLineChartItem createScatterLineChartItem1 = new DevExpress.XtraCharts.UI.CreateScatterLineChartItem();
            DevExpress.XtraCharts.UI.CreateSplineChartItem createSplineChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLineChartItem createStackedLineChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateStepLineChartItem createStepLineChartItem1 = new DevExpress.XtraCharts.UI.CreateStepLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine chartControlCommandGalleryItemGroup3DLine1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine();
            DevExpress.XtraCharts.UI.CreateLine3DChartItem createLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem createFullStackedLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateSpline3DChartItem createSpline3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSpline3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem createStackedLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepLine3DChartItem createStepLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStepLine3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie chartControlCommandGalleryItemGroup2DPie1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie();
            DevExpress.XtraCharts.UI.CreatePieChartItem createPieChartItem1 = new DevExpress.XtraCharts.UI.CreatePieChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnutChartItem createDoughnutChartItem1 = new DevExpress.XtraCharts.UI.CreateDoughnutChartItem();
            DevExpress.XtraCharts.UI.CreateNestedDoughnutChartItem createNestedDoughnutChartItem1 = new DevExpress.XtraCharts.UI.CreateNestedDoughnutChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie chartControlCommandGalleryItemGroup3DPie1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie();
            DevExpress.XtraCharts.UI.CreatePie3DChartItem createPie3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePie3DChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem createDoughnut3DChartItem1 = new DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar chartControlCommandGalleryItemGroup2DBar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar();
            DevExpress.XtraCharts.UI.CreateRotatedBarChartItem createRotatedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem createRotatedFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem createRotatedSideBySideFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem createRotatedSideBySideStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem createRotatedStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea chartControlCommandGalleryItemGroup2DArea1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea();
            DevExpress.XtraCharts.UI.CreateAreaChartItem createAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem createFullStackedAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem createFullStackedSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateSplineAreaChartItem createSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedAreaChartItem createStackedAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem createStackedSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStepAreaChartItem createStepAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStepAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea chartControlCommandGalleryItemGroup3DArea1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea();
            DevExpress.XtraCharts.UI.CreateArea3DChartItem createArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem createFullStackedArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem createFullStackedSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem createSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem createStackedArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem createStackedSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepArea3DChartItem createStepArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStepArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint chartControlCommandGalleryItemGroupPoint1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint();
            DevExpress.XtraCharts.UI.CreatePointChartItem createPointChartItem1 = new DevExpress.XtraCharts.UI.CreatePointChartItem();
            DevExpress.XtraCharts.UI.CreateBubbleChartItem createBubbleChartItem1 = new DevExpress.XtraCharts.UI.CreateBubbleChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel chartControlCommandGalleryItemGroupFunnel1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel();
            DevExpress.XtraCharts.UI.CreateFunnelChartItem createFunnelChartItem1 = new DevExpress.XtraCharts.UI.CreateFunnelChartItem();
            DevExpress.XtraCharts.UI.CreateFunnel3DChartItem createFunnel3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFunnel3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial chartControlCommandGalleryItemGroupFinancial1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial();
            DevExpress.XtraCharts.UI.CreateStockChartItem createStockChartItem1 = new DevExpress.XtraCharts.UI.CreateStockChartItem();
            DevExpress.XtraCharts.UI.CreateCandleStickChartItem createCandleStickChartItem1 = new DevExpress.XtraCharts.UI.CreateCandleStickChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar chartControlCommandGalleryItemGroupRadar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar();
            DevExpress.XtraCharts.UI.CreateRadarPointChartItem createRadarPointChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarPointChartItem();
            DevExpress.XtraCharts.UI.CreateRadarLineChartItem createRadarLineChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarLineChartItem();
            DevExpress.XtraCharts.UI.CreateRadarAreaChartItem createRadarAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar chartControlCommandGalleryItemGroupPolar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar();
            DevExpress.XtraCharts.UI.CreatePolarPointChartItem createPolarPointChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarPointChartItem();
            DevExpress.XtraCharts.UI.CreatePolarLineChartItem createPolarLineChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarLineChartItem();
            DevExpress.XtraCharts.UI.CreatePolarAreaChartItem createPolarAreaChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange chartControlCommandGalleryItemGroupRange1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange();
            DevExpress.XtraCharts.UI.CreateRangeBarChartItem createRangeBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem createSideBySideRangeBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateRangeAreaChartItem createRangeAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem createRangeArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt chartControlCommandGalleryItemGroupGantt1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt();
            DevExpress.XtraCharts.UI.CreateGanttChartItem createGanttChartItem1 = new DevExpress.XtraCharts.UI.CreateGanttChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem createSideBySideGanttChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem();
            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();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.snapControl = new DevExpress.Snap.SnapControl();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.commandBarItem1 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            this.commandBarItem2 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.insertPageBreakItem21 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem2();
            this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
            this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
            this.insertFloatingPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertFloatingPictureItem();
            this.commandBarItem3 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem4 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem5 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem6 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem7 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
            this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
            this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
            this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
            this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
            this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
            this.insertTextBoxItem1 = new DevExpress.XtraRichEdit.UI.InsertTextBoxItem();
            this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
            this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
            this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
            this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
            this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
            this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
            this.showPageMarginsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowPageMarginsSetupFormItem();
            this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
            this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
            this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
            this.changeSectionPaperKindItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPaperKindItem();
            this.changeSectionColumnsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionColumnsItem();
            this.setSectionOneColumnItem1 = new DevExpress.XtraRichEdit.UI.SetSectionOneColumnItem();
            this.setSectionTwoColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionTwoColumnsItem();
            this.setSectionThreeColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionThreeColumnsItem();
            this.showColumnsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowColumnsSetupFormItem();
            this.insertBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertBreakItem();
            this.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
            this.insertColumnBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertColumnBreakItem();
            this.insertSectionBreakNextPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakNextPageItem();
            this.insertSectionBreakEvenPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakEvenPageItem();
            this.insertSectionBreakOddPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakOddPageItem();
            this.changeSectionLineNumberingItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionLineNumberingItem();
            this.setSectionLineNumberingNoneItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingNoneItem();
            this.setSectionLineNumberingContinuousItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingContinuousItem();
            this.setSectionLineNumberingRestartNewPageItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewPageItem();
            this.setSectionLineNumberingRestartNewSectionItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewSectionItem();
            this.toggleParagraphSuppressLineNumbersItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphSuppressLineNumbersItem();
            this.showLineNumberingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineNumberingFormItem();
            this.changePageColorItem1 = new DevExpress.XtraRichEdit.UI.ChangePageColorItem();
            this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
            this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
            this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
            this.toggleShowHorizontalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowHorizontalRulerItem();
            this.toggleShowVerticalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowVerticalRulerItem();
            this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
            this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
            this.snapBarToolbarsListItem1 = new DevExpress.Snap.Extensions.UI.SnapBarToolbarsListItem();
            this.commandBarCheckItem1 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
            this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
            this.toggleFieldHighlightingItem1 = new DevExpress.Snap.Extensions.UI.ToggleFieldHighlightingItem();
            this.goToPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.GoToPageHeaderItem();
            this.goToPageFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPageFooterItem();
            this.goToNextHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToNextHeaderFooterItem();
            this.goToPreviousHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPreviousHeaderFooterItem();
            this.toggleLinkToPreviousItem1 = new DevExpress.XtraRichEdit.UI.ToggleLinkToPreviousItem();
            this.toggleDifferentFirstPageItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentFirstPageItem();
            this.toggleDifferentOddAndEvenPagesItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentOddAndEvenPagesItem();
            this.closePageHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.ClosePageHeaderFooterItem();
            this.toggleFirstRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstRowItem();
            this.toggleLastRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastRowItem();
            this.toggleBandedRowsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedRowsItem();
            this.toggleFirstColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstColumnItem();
            this.toggleLastColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastColumnItem();
            this.toggleBandedColumnsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedColumnsItem();
            this.galleryChangeTableStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeTableStyleItem();
            this.galleryChangeTableCellStyleItem1 = new DevExpress.Snap.Extensions.UI.GalleryChangeTableCellStyleItem();
            this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
            this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
            this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
            this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
            this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
            this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
            this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
            this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
            this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
            this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
            this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
            this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
            this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
            this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
            this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
            this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
            this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
            this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
            this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
            this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
            this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
            this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
            this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
            this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
            this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
            this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
            this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
            this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
            this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
            this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
            this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
            this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
            this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
            this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
            this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
            this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
            this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
            this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
            this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
            this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
            this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
            this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
            this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
            this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
            this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
            this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
            this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
            this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
            this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
            this.showTableOptionsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTableOptionsFormItem();
            this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
            this.insertTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfContentsItem();
            this.updateTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfContentsItem();
            this.addParagraphsToTableOfContentItem1 = new DevExpress.XtraRichEdit.UI.AddParagraphsToTableOfContentItem();
            this.setParagraphHeadingLevelItem1 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem2 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem3 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem4 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem5 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem6 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem7 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem8 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem9 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.setParagraphHeadingLevelItem10 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
            this.insertCaptionPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertCaptionPlaceholderItem();
            this.insertFiguresCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertFiguresCaptionItems();
            this.insertTablesCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertTablesCaptionItems();
            this.insertEquationsCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertEquationsCaptionItems();
            this.insertTableOfFiguresPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresPlaceholderItem();
            this.insertTableOfFiguresItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresItems();
            this.insertTableOfTablesItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfTablesItems();
            this.insertTableOfEquationsItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfEquationsItems();
            this.updateTableOfFiguresItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfFiguresItem();
            this.changeFloatingObjectFillColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectFillColorItem();
            this.changeFloatingObjectOutlineColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineColorItem();
            this.changeFloatingObjectOutlineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineWeightItem();
            this.repositoryItemFloatingObjectOutlineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemFloatingObjectOutlineWeight();
            this.changeFloatingObjectTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectTextWrapTypeItem();
            this.setFloatingObjectSquareTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectSquareTextWrapTypeItem();
            this.setFloatingObjectTightTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTightTextWrapTypeItem();
            this.setFloatingObjectThroughTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectThroughTextWrapTypeItem();
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopAndBottomTextWrapTypeItem();
            this.setFloatingObjectBehindTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBehindTextWrapTypeItem();
            this.setFloatingObjectInFrontOfTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectInFrontOfTextWrapTypeItem();
            this.changeFloatingObjectAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectAlignmentItem();
            this.setFloatingObjectTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopLeftAlignmentItem();
            this.setFloatingObjectTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopCenterAlignmentItem();
            this.setFloatingObjectTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopRightAlignmentItem();
            this.setFloatingObjectMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleLeftAlignmentItem();
            this.setFloatingObjectMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleCenterAlignmentItem();
            this.setFloatingObjectMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleRightAlignmentItem();
            this.setFloatingObjectBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomLeftAlignmentItem();
            this.setFloatingObjectBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomCenterAlignmentItem();
            this.setFloatingObjectBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomRightAlignmentItem();
            this.floatingObjectBringForwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardSubItem();
            this.floatingObjectBringForwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardItem();
            this.floatingObjectBringToFrontItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringToFrontItem();
            this.floatingObjectBringInFrontOfTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringInFrontOfTextItem();
            this.floatingObjectSendBackwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardSubItem();
            this.floatingObjectSendBackwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardItem();
            this.floatingObjectSendToBackItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendToBackItem();
            this.floatingObjectSendBehindTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBehindTextItem();
            this.themesGalleryBarItem1 = new DevExpress.Snap.Extensions.UI.ThemesGalleryBarItem();
            this.commandBarCheckItem2 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem3 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem4 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarSubItem1 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem5 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem6 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem7 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem8 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem9 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.filterPopupButtonItem1 = new DevExpress.Snap.Extensions.UI.FilterPopupButtonItem();
            this.propertiesBarButtonItem1 = new DevExpress.Snap.Extensions.UI.PropertiesBarButtonItem();
            this.commandBarSubItem2 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem10 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem11 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarSubItem3 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem12 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem13 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarItem8 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem9 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarSubItem4 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem14 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem15 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem16 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem17 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem18 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem19 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem20 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarSubItem5 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem21 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem22 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarSubItem6 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem23 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem24 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarSubItem7 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarCheckItem25 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem26 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem27 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem28 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem29 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem30 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem31 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarItem10 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem11 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem12 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.barButtonGroup8 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeEditorRowLimitItem1 = new DevExpress.Snap.Extensions.UI.ChangeEditorRowLimitItem();
            this.repositoryItemEditorRowLimitEdit1 = new DevExpress.Snap.Design.RepositoryItemEditorRowLimitEdit();
            this.createBarBaseItem1 = new DevExpress.XtraCharts.UI.CreateBarBaseItem();
            this.commandBarGalleryDropDown1 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.createLineBaseItem1 = new DevExpress.XtraCharts.UI.CreateLineBaseItem();
            this.commandBarGalleryDropDown2 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.createPieBaseItem1 = new DevExpress.XtraCharts.UI.CreatePieBaseItem();
            this.commandBarGalleryDropDown3 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.createRotatedBarBaseItem1 = new DevExpress.XtraCharts.UI.CreateRotatedBarBaseItem();
            this.commandBarGalleryDropDown4 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.createAreaBaseItem1 = new DevExpress.XtraCharts.UI.CreateAreaBaseItem();
            this.commandBarGalleryDropDown5 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.createOtherSeriesTypesBaseItem1 = new DevExpress.XtraCharts.UI.CreateOtherSeriesTypesBaseItem();
            this.commandBarGalleryDropDown6 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.changePaletteGalleryBaseItem1 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryBaseItem();
            this.commandBarGalleryDropDown7 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.changeAppearanceGalleryBaseItem1 = new DevExpress.XtraCharts.UI.ChangeAppearanceGalleryBaseItem();
            this.runWizardChartItem1 = new DevExpress.XtraCharts.UI.RunWizardChartItem();
            this.mailMergeDataSourceItem1 = new DevExpress.Snap.Extensions.UI.MailMergeDataSourceItem();
            this.commandBarCheckItem32 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem33 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.mailMergeCurrentRecordItem1 = new DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordItem();
            this.repositoryItemMailMergeCurrentRecordEdit1 = new DevExpress.Snap.Extensions.UI.RepositoryItemMailMergeCurrentRecordEdit();
            this.commandBarSubItem8 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
            this.commandBarItem13 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem14 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.commandBarItem15 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.headerFooterToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsRibbonPageCategory();
            this.headerFooterToolsDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignRibbonPage();
            this.headerFooterToolsDesignNavigationRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignNavigationRibbonPageGroup();
            this.headerFooterToolsDesignOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignOptionsRibbonPageGroup();
            this.headerFooterToolsDesignCloseRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignCloseRibbonPageGroup();
            this.tableToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.TableToolsRibbonPageCategory();
            this.tableDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableDesignRibbonPage();
            this.tableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStyleOptionsRibbonPageGroup();
            this.tableStylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStylesRibbonPageGroup();
            this.tableCellStylesRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.TableCellStylesRibbonPageGroup();
            this.tableDrawBordersRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableDrawBordersRibbonPageGroup();
            this.tableLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableLayoutRibbonPage();
            this.tableTableRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableTableRibbonPageGroup();
            this.tableRowsAndColumnsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableRowsAndColumnsRibbonPageGroup();
            this.tableMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableMergeRibbonPageGroup();
            this.tableCellSizeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableCellSizeRibbonPageGroup();
            this.tableAlignmentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableAlignmentRibbonPageGroup();
            this.floatingPictureToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsRibbonPageCategory();
            this.floatingPictureToolsFormatPage1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsFormatPage();
            this.floatingPictureToolsShapeStylesPageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsShapeStylesPageGroup();
            this.floatingPictureToolsArrangePageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsArrangePageGroup();
            this.dataToolsRibbonPageCategory1 = new DevExpress.Snap.Extensions.UI.DataToolsRibbonPageCategory();
            this.appearanceRibbonPage1 = new DevExpress.Snap.Extensions.UI.AppearanceRibbonPage();
            this.themesRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ThemesRibbonPageGroup();
            this.snMergeFieldToolsRibbonPage1 = new DevExpress.Snap.Extensions.UI.SNMergeFieldToolsRibbonPage();
            this.dataShapingRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.DataShapingRibbonPageGroup();
            this.snMergeFieldPropertiesRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.SNMergeFieldPropertiesRibbonPageGroup();
            this.groupToolsRibbonPage1 = new DevExpress.Snap.Extensions.UI.GroupToolsRibbonPage();
            this.groupingRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.GroupingRibbonPageGroup();
            this.listToolsRibbonPage1 = new DevExpress.Snap.Extensions.UI.ListToolsRibbonPage();
            this.listHeaderAndFooterRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ListHeaderAndFooterRibbonPageGroup();
            this.listCommandsRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ListCommandsRibbonPageGroup();
            this.listEditorRowLimitRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ListEditorRowLimitRibbonPageGroup();
            this.mailMergeRibbonPage1 = new DevExpress.Snap.Extensions.UI.MailMergeRibbonPage();
            this.mailMergeRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.MailMergeRibbonPageGroup();
            this.mailMergeCurrentRecordRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordRibbonPageGroup();
            this.finishAndMergeRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.FinishAndMergeRibbonPageGroup();
            this.chartRibbonPageCategory1 = new DevExpress.XtraCharts.UI.ChartRibbonPageCategory();
            this.createChartRibbonPage1 = new DevExpress.XtraCharts.UI.CreateChartRibbonPage();
            this.chartTypeRibbonPageGroup1 = new DevExpress.XtraCharts.UI.ChartTypeRibbonPageGroup();
            this.chartAppearanceRibbonPageGroup1 = new DevExpress.XtraCharts.UI.ChartAppearanceRibbonPageGroup();
            this.chartWizardRibbonPageGroup1 = new DevExpress.XtraCharts.UI.ChartWizardRibbonPageGroup();
            this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
            this.dataRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.DataRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.insertRibbonPage1 = new DevExpress.XtraRichEdit.UI.InsertRibbonPage();
            this.pagesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PagesRibbonPageGroup();
            this.tablesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TablesRibbonPageGroup();
            this.illustrationsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.IllustrationsRibbonPageGroup();
            this.toolboxRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ToolboxRibbonPageGroup();
            this.linksRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.LinksRibbonPageGroup();
            this.headerFooterRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterRibbonPageGroup();
            this.textRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TextRibbonPageGroup();
            this.symbolsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.SymbolsRibbonPageGroup();
            this.pageLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.PageLayoutRibbonPage();
            this.pageSetupRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageSetupRibbonPageGroup();
            this.pageBackgroundRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageBackgroundRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ViewRibbonPage();
            this.documentViewsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentViewsRibbonPageGroup();
            this.showRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ShowRibbonPageGroup();
            this.zoomRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ZoomRibbonPageGroup();
            this.viewRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ViewRibbonPageGroup();
            this.viewFieldsRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ViewFieldsRibbonPageGroup();
            this.reviewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReviewRibbonPage();
            this.documentProofingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProofingRibbonPageGroup();
            this.referencesRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReferencesRibbonPage();
            this.tableOfContentsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableOfContentsRibbonPageGroup();
            this.captionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CaptionsRibbonPageGroup();
            this.snapDockManager1 = new DevExpress.Snap.Extensions.SnapDockManager(this.components);
            this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.fieldListDockPanel1 = new DevExpress.Snap.Extensions.UI.FieldListDockPanel();
            this.fieldListDockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.reportExplorerDockPanel1 = new DevExpress.Snap.Extensions.UI.ReportExplorerDockPanel();
            this.reportExplorerDockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.snapDocumentManager1 = new DevExpress.Snap.Extensions.SnapDocumentManager(this.components);
            this.noDocumentsView1 = new DevExpress.XtraBars.Docking2010.Views.NoDocuments.NoDocumentsView(this.components);
            this.snapBarController1 = new DevExpress.Snap.Extensions.SnapBarController();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemEditorRowLimitEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).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.repositoryItemMailMergeCurrentRecordEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapDockManager1)).BeginInit();
            this.panelContainer1.SuspendLayout();
            this.fieldListDockPanel1.SuspendLayout();
            this.reportExplorerDockPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.snapDocumentManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.noDocumentsView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 63;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // snapControl
            // 
            dataSourceInfo1.DataSource = null;
            this.snapControl.DataSources.Add(dataSourceInfo1);
            this.snapControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.snapControl.EnableToolTips = true;
            this.snapControl.Location = new System.Drawing.Point(0, 142);
            this.snapControl.MenuManager = this.ribbonControl1;
            this.snapControl.Modified = true;
            this.snapControl.Name = "snapControl";
            this.snapControl.Options.Comments.ShowAllAuthors = true;
            this.snapControl.Options.Comments.Visibility = DevExpress.XtraRichEdit.Options.RichEditCommentVisibility.Auto;
            this.snapControl.Options.CopyPaste.MaintainDocumentSectionSettings = false;
            this.snapControl.Options.Fields.EnableEmptyFieldDataAlias = true;
            this.snapControl.Options.Fields.UseCurrentCultureDateTimeFormat = false;
            this.snapControl.Options.SnapMailMergeVisualOptions.DataSourceName = null;
            this.snapControl.Size = new System.Drawing.Size(620, 400);
            this.snapControl.TabIndex = 0;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.undoItem1,
            this.redoItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.commandBarItem1,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1,
            this.commandBarItem2,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.insertPageBreakItem21,
            this.insertTableItem1,
            this.insertPictureItem1,
            this.insertFloatingPictureItem1,
            this.commandBarItem3,
            this.commandBarItem4,
            this.commandBarItem5,
            this.commandBarItem6,
            this.commandBarItem7,
            this.insertBookmarkItem1,
            this.insertHyperlinkItem1,
            this.editPageHeaderItem1,
            this.editPageFooterItem1,
            this.insertPageNumberItem1,
            this.insertPageCountItem1,
            this.insertTextBoxItem1,
            this.insertSymbolItem1,
            this.changeSectionPageMarginsItem1,
            this.setNormalSectionPageMarginsItem1,
            this.setNarrowSectionPageMarginsItem1,
            this.setModerateSectionPageMarginsItem1,
            this.setWideSectionPageMarginsItem1,
            this.showPageMarginsSetupFormItem1,
            this.changeSectionPageOrientationItem1,
            this.setPortraitPageOrientationItem1,
            this.setLandscapePageOrientationItem1,
            this.changeSectionPaperKindItem1,
            this.changeSectionColumnsItem1,
            this.setSectionOneColumnItem1,
            this.setSectionTwoColumnsItem1,
            this.setSectionThreeColumnsItem1,
            this.showColumnsSetupFormItem1,
            this.insertBreakItem1,
            this.insertPageBreakItem1,
            this.insertColumnBreakItem1,
            this.insertSectionBreakNextPageItem1,
            this.insertSectionBreakEvenPageItem1,
            this.insertSectionBreakOddPageItem1,
            this.changeSectionLineNumberingItem1,
            this.setSectionLineNumberingNoneItem1,
            this.setSectionLineNumberingContinuousItem1,
            this.setSectionLineNumberingRestartNewPageItem1,
            this.setSectionLineNumberingRestartNewSectionItem1,
            this.toggleParagraphSuppressLineNumbersItem1,
            this.showLineNumberingFormItem1,
            this.changePageColorItem1,
            this.switchToSimpleViewItem1,
            this.switchToDraftViewItem1,
            this.switchToPrintLayoutViewItem1,
            this.toggleShowHorizontalRulerItem1,
            this.toggleShowVerticalRulerItem1,
            this.zoomOutItem1,
            this.zoomInItem1,
            this.snapBarToolbarsListItem1,
            this.commandBarCheckItem1,
            this.showAllFieldCodesItem1,
            this.showAllFieldResultsItem1,
            this.toggleFieldHighlightingItem1,
            this.goToPageHeaderItem1,
            this.goToPageFooterItem1,
            this.goToNextHeaderFooterItem1,
            this.goToPreviousHeaderFooterItem1,
            this.toggleLinkToPreviousItem1,
            this.toggleDifferentFirstPageItem1,
            this.toggleDifferentOddAndEvenPagesItem1,
            this.closePageHeaderFooterItem1,
            this.toggleFirstRowItem1,
            this.toggleLastRowItem1,
            this.toggleBandedRowsItem1,
            this.toggleFirstColumnItem1,
            this.toggleLastColumnItem1,
            this.toggleBandedColumnsItem1,
            this.galleryChangeTableStyleItem1,
            this.galleryChangeTableCellStyleItem1,
            this.changeTableBorderLineStyleItem1,
            this.changeTableBorderLineWeightItem1,
            this.changeTableBorderColorItem1,
            this.changeTableBordersItem1,
            this.toggleTableCellsBottomBorderItem1,
            this.toggleTableCellsTopBorderItem1,
            this.toggleTableCellsLeftBorderItem1,
            this.toggleTableCellsRightBorderItem1,
            this.resetTableCellsAllBordersItem1,
            this.toggleTableCellsAllBordersItem1,
            this.toggleTableCellsOutsideBorderItem1,
            this.toggleTableCellsInsideBorderItem1,
            this.toggleTableCellsInsideHorizontalBorderItem1,
            this.toggleTableCellsInsideVerticalBorderItem1,
            this.toggleShowTableGridLinesItem1,
            this.changeTableCellsShadingItem1,
            this.selectTableElementsItem1,
            this.selectTableCellItem1,
            this.selectTableColumnItem1,
            this.selectTableRowItem1,
            this.selectTableItem1,
            this.showTablePropertiesFormItem1,
            this.deleteTableElementsItem1,
            this.showDeleteTableCellsFormItem1,
            this.deleteTableColumnsItem1,
            this.deleteTableRowsItem1,
            this.deleteTableItem1,
            this.insertTableRowAboveItem1,
            this.insertTableRowBelowItem1,
            this.insertTableColumnToLeftItem1,
            this.insertTableColumnToRightItem1,
            this.mergeTableCellsItem1,
            this.showSplitTableCellsForm1,
            this.splitTableItem1,
            this.toggleTableAutoFitItem1,
            this.toggleTableAutoFitContentsItem1,
            this.toggleTableAutoFitWindowItem1,
            this.toggleTableFixedColumnWidthItem1,
            this.toggleTableCellsTopLeftAlignmentItem1,
            this.toggleTableCellsMiddleLeftAlignmentItem1,
            this.toggleTableCellsBottomLeftAlignmentItem1,
            this.toggleTableCellsTopCenterAlignmentItem1,
            this.toggleTableCellsMiddleCenterAlignmentItem1,
            this.toggleTableCellsBottomCenterAlignmentItem1,
            this.toggleTableCellsTopRightAlignmentItem1,
            this.toggleTableCellsMiddleRightAlignmentItem1,
            this.toggleTableCellsBottomRightAlignmentItem1,
            this.showTableOptionsFormItem1,
            this.checkSpellingItem1,
            this.insertTableOfContentsItem1,
            this.updateTableOfContentsItem1,
            this.addParagraphsToTableOfContentItem1,
            this.setParagraphHeadingLevelItem1,
            this.setParagraphHeadingLevelItem2,
            this.setParagraphHeadingLevelItem3,
            this.setParagraphHeadingLevelItem4,
            this.setParagraphHeadingLevelItem5,
            this.setParagraphHeadingLevelItem6,
            this.setParagraphHeadingLevelItem7,
            this.setParagraphHeadingLevelItem8,
            this.setParagraphHeadingLevelItem9,
            this.setParagraphHeadingLevelItem10,
            this.insertCaptionPlaceholderItem1,
            this.insertFiguresCaptionItems1,
            this.insertTablesCaptionItems1,
            this.insertEquationsCaptionItems1,
            this.insertTableOfFiguresPlaceholderItem1,
            this.insertTableOfFiguresItems1,
            this.insertTableOfTablesItems1,
            this.insertTableOfEquationsItems1,
            this.updateTableOfFiguresItem1,
            this.changeFloatingObjectFillColorItem1,
            this.changeFloatingObjectOutlineColorItem1,
            this.changeFloatingObjectOutlineWeightItem1,
            this.changeFloatingObjectTextWrapTypeItem1,
            this.setFloatingObjectSquareTextWrapTypeItem1,
            this.setFloatingObjectTightTextWrapTypeItem1,
            this.setFloatingObjectThroughTextWrapTypeItem1,
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1,
            this.setFloatingObjectBehindTextWrapTypeItem1,
            this.setFloatingObjectInFrontOfTextWrapTypeItem1,
            this.changeFloatingObjectAlignmentItem1,
            this.setFloatingObjectTopLeftAlignmentItem1,
            this.setFloatingObjectTopCenterAlignmentItem1,
            this.setFloatingObjectTopRightAlignmentItem1,
            this.setFloatingObjectMiddleLeftAlignmentItem1,
            this.setFloatingObjectMiddleCenterAlignmentItem1,
            this.setFloatingObjectMiddleRightAlignmentItem1,
            this.setFloatingObjectBottomLeftAlignmentItem1,
            this.setFloatingObjectBottomCenterAlignmentItem1,
            this.setFloatingObjectBottomRightAlignmentItem1,
            this.floatingObjectBringForwardSubItem1,
            this.floatingObjectBringForwardItem1,
            this.floatingObjectBringToFrontItem1,
            this.floatingObjectBringInFrontOfTextItem1,
            this.floatingObjectSendBackwardSubItem1,
            this.floatingObjectSendBackwardItem1,
            this.floatingObjectSendToBackItem1,
            this.floatingObjectSendBehindTextItem1,
            this.themesGalleryBarItem1,
            this.commandBarCheckItem2,
            this.commandBarCheckItem3,
            this.commandBarCheckItem4,
            this.commandBarSubItem1,
            this.commandBarCheckItem5,
            this.commandBarCheckItem6,
            this.commandBarCheckItem7,
            this.commandBarCheckItem8,
            this.commandBarCheckItem9,
            this.filterPopupButtonItem1,
            this.propertiesBarButtonItem1,
            this.commandBarSubItem2,
            this.commandBarCheckItem10,
            this.commandBarCheckItem11,
            this.commandBarSubItem3,
            this.commandBarCheckItem12,
            this.commandBarCheckItem13,
            this.commandBarItem8,
            this.commandBarItem9,
            this.commandBarSubItem4,
            this.commandBarCheckItem14,
            this.commandBarCheckItem15,
            this.commandBarCheckItem16,
            this.commandBarCheckItem17,
            this.commandBarCheckItem18,
            this.commandBarCheckItem19,
            this.commandBarCheckItem20,
            this.commandBarSubItem5,
            this.commandBarCheckItem21,
            this.commandBarCheckItem22,
            this.commandBarSubItem6,
            this.commandBarCheckItem23,
            this.commandBarCheckItem24,
            this.commandBarSubItem7,
            this.commandBarCheckItem25,
            this.commandBarCheckItem26,
            this.commandBarCheckItem27,
            this.commandBarCheckItem28,
            this.commandBarCheckItem29,
            this.commandBarCheckItem30,
            this.commandBarCheckItem31,
            this.commandBarItem10,
            this.commandBarItem11,
            this.commandBarItem12,
            this.barButtonGroup8,
            this.changeEditorRowLimitItem1,
            this.createBarBaseItem1,
            this.createLineBaseItem1,
            this.createPieBaseItem1,
            this.createRotatedBarBaseItem1,
            this.createAreaBaseItem1,
            this.createOtherSeriesTypesBaseItem1,
            this.changePaletteGalleryBaseItem1,
            this.changeAppearanceGalleryBaseItem1,
            this.runWizardChartItem1,
            this.mailMergeDataSourceItem1,
            this.commandBarCheckItem32,
            this.commandBarCheckItem33,
            this.mailMergeCurrentRecordItem1,
            this.commandBarSubItem8,
            this.commandBarItem13,
            this.commandBarItem14,
            this.commandBarItem15});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 304;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.headerFooterToolsRibbonPageCategory1,
            this.tableToolsRibbonPageCategory1,
            this.floatingPictureToolsRibbonPageCategory1,
            this.dataToolsRibbonPageCategory1,
            this.chartRibbonPageCategory1});
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.insertRibbonPage1,
            this.pageLayoutRibbonPage1,
            this.viewRibbonPage1,
            this.reviewRibbonPage1,
            this.referencesRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1,
            this.repositoryItemBorderLineStyle1,
            this.repositoryItemBorderLineWeight1,
            this.repositoryItemFloatingObjectOutlineWeight1,
            this.repositoryItemEditorRowLimitEdit1,
            this.repositoryItemMailMergeCurrentRecordEdit1});
            this.ribbonControl1.Size = new System.Drawing.Size(820, 142);
            // 
            // undoItem1
            // 
            this.undoItem1.Id = 1;
            this.undoItem1.Name = "undoItem1";
            // 
            // redoItem1
            // 
            this.redoItem1.Id = 2;
            this.redoItem1.Name = "redoItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Id = 3;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Id = 4;
            this.fileOpenItem1.Name = "fileOpenItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 5;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Id = 6;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            // 
            // commandBarItem1
            // 
            this.commandBarItem1.Id = 7;
            this.commandBarItem1.Name = "commandBarItem1";
            this.commandBarItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ExportDocument;
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Id = 8;
            this.quickPrintItem1.Name = "quickPrintItem1";
            // 
            // printItem1
            // 
            this.printItem1.Id = 9;
            this.printItem1.Name = "printItem1";
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 10;
            this.printPreviewItem1.Name = "printPreviewItem1";
            // 
            // commandBarItem2
            // 
            this.commandBarItem2.Id = 11;
            this.commandBarItem2.Name = "commandBarItem2";
            this.commandBarItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.NewDataSource;
            this.commandBarItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 19;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 20;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 21;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 22;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 12;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 23;
            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.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 24;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.snapControl;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 25;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 26;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 13;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 27;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 28;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 29;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 30;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 31;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 32;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 33;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 34;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 14;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 35;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 36;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 37;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 38;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 39;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 40;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 41;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 42;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 15;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 43;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 44;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 45;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 16;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 46;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 47;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 52;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 17;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 48;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 49;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 50;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 51;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 18;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 53;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 54;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 55;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 56;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 57;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 58;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 59;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 60;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 61;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 62;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 64;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 65;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // insertPageBreakItem21
            // 
            this.insertPageBreakItem21.Id = 66;
            this.insertPageBreakItem21.Name = "insertPageBreakItem21";
            // 
            // insertTableItem1
            // 
            this.insertTableItem1.Id = 67;
            this.insertTableItem1.Name = "insertTableItem1";
            // 
            // insertPictureItem1
            // 
            this.insertPictureItem1.Id = 68;
            this.insertPictureItem1.Name = "insertPictureItem1";
            // 
            // insertFloatingPictureItem1
            // 
            this.insertFloatingPictureItem1.Id = 69;
            this.insertFloatingPictureItem1.Name = "insertFloatingPictureItem1";
            // 
            // commandBarItem3
            // 
            this.commandBarItem3.Id = 70;
            this.commandBarItem3.Name = "commandBarItem3";
            this.commandBarItem3.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertBarCode;
            // 
            // commandBarItem4
            // 
            this.commandBarItem4.Id = 71;
            this.commandBarItem4.Name = "commandBarItem4";
            this.commandBarItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertCheckBox;
            // 
            // commandBarItem5
            // 
            this.commandBarItem5.Id = 72;
            this.commandBarItem5.Name = "commandBarItem5";
            this.commandBarItem5.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertChart;
            // 
            // commandBarItem6
            // 
            this.commandBarItem6.Id = 73;
            this.commandBarItem6.Name = "commandBarItem6";
            this.commandBarItem6.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSparkline;
            // 
            // commandBarItem7
            // 
            this.commandBarItem7.Id = 74;
            this.commandBarItem7.Name = "commandBarItem7";
            this.commandBarItem7.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertIndex;
            // 
            // insertBookmarkItem1
            // 
            this.insertBookmarkItem1.Id = 75;
            this.insertBookmarkItem1.Name = "insertBookmarkItem1";
            // 
            // insertHyperlinkItem1
            // 
            this.insertHyperlinkItem1.Id = 76;
            this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
            // 
            // editPageHeaderItem1
            // 
            this.editPageHeaderItem1.Id = 77;
            this.editPageHeaderItem1.Name = "editPageHeaderItem1";
            // 
            // editPageFooterItem1
            // 
            this.editPageFooterItem1.Id = 78;
            this.editPageFooterItem1.Name = "editPageFooterItem1";
            // 
            // insertPageNumberItem1
            // 
            this.insertPageNumberItem1.Id = 79;
            this.insertPageNumberItem1.Name = "insertPageNumberItem1";
            // 
            // insertPageCountItem1
            // 
            this.insertPageCountItem1.Id = 80;
            this.insertPageCountItem1.Name = "insertPageCountItem1";
            // 
            // insertTextBoxItem1
            // 
            this.insertTextBoxItem1.Id = 81;
            this.insertTextBoxItem1.Name = "insertTextBoxItem1";
            // 
            // insertSymbolItem1
            // 
            this.insertSymbolItem1.Id = 82;
            this.insertSymbolItem1.Name = "insertSymbolItem1";
            // 
            // changeSectionPageMarginsItem1
            // 
            this.changeSectionPageMarginsItem1.Id = 83;
            this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showPageMarginsSetupFormItem1, true)});
            this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
            // 
            // setNormalSectionPageMarginsItem1
            // 
            this.setNormalSectionPageMarginsItem1.Id = 84;
            this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
            // 
            // setNarrowSectionPageMarginsItem1
            // 
            this.setNarrowSectionPageMarginsItem1.Id = 85;
            this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
            // 
            // setModerateSectionPageMarginsItem1
            // 
            this.setModerateSectionPageMarginsItem1.Id = 86;
            this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
            // 
            // setWideSectionPageMarginsItem1
            // 
            this.setWideSectionPageMarginsItem1.Id = 87;
            this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
            // 
            // showPageMarginsSetupFormItem1
            // 
            this.showPageMarginsSetupFormItem1.Id = 88;
            this.showPageMarginsSetupFormItem1.Name = "showPageMarginsSetupFormItem1";
            // 
            // changeSectionPageOrientationItem1
            // 
            this.changeSectionPageOrientationItem1.Id = 89;
            this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
            this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
            // 
            // setPortraitPageOrientationItem1
            // 
            this.setPortraitPageOrientationItem1.Id = 90;
            this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
            // 
            // setLandscapePageOrientationItem1
            // 
            this.setLandscapePageOrientationItem1.Id = 91;
            this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
            // 
            // changeSectionPaperKindItem1
            // 
            this.changeSectionPaperKindItem1.Id = 92;
            this.changeSectionPaperKindItem1.Name = "changeSectionPaperKindItem1";
            // 
            // changeSectionColumnsItem1
            // 
            this.changeSectionColumnsItem1.Id = 93;
            this.changeSectionColumnsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionOneColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionTwoColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionThreeColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showColumnsSetupFormItem1, true)});
            this.changeSectionColumnsItem1.Name = "changeSectionColumnsItem1";
            // 
            // setSectionOneColumnItem1
            // 
            this.setSectionOneColumnItem1.Id = 94;
            this.setSectionOneColumnItem1.Name = "setSectionOneColumnItem1";
            // 
            // setSectionTwoColumnsItem1
            // 
            this.setSectionTwoColumnsItem1.Id = 95;
            this.setSectionTwoColumnsItem1.Name = "setSectionTwoColumnsItem1";
            // 
            // setSectionThreeColumnsItem1
            // 
            this.setSectionThreeColumnsItem1.Id = 96;
            this.setSectionThreeColumnsItem1.Name = "setSectionThreeColumnsItem1";
            // 
            // showColumnsSetupFormItem1
            // 
            this.showColumnsSetupFormItem1.Id = 97;
            this.showColumnsSetupFormItem1.Name = "showColumnsSetupFormItem1";
            // 
            // insertBreakItem1
            // 
            this.insertBreakItem1.Id = 98;
            this.insertBreakItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPageBreakItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertColumnBreakItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakNextPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakEvenPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakOddPageItem1)});
            this.insertBreakItem1.Name = "insertBreakItem1";
            // 
            // insertPageBreakItem1
            // 
            this.insertPageBreakItem1.Id = 99;
            this.insertPageBreakItem1.Name = "insertPageBreakItem1";
            // 
            // insertColumnBreakItem1
            // 
            this.insertColumnBreakItem1.Id = 100;
            this.insertColumnBreakItem1.Name = "insertColumnBreakItem1";
            // 
            // insertSectionBreakNextPageItem1
            // 
            this.insertSectionBreakNextPageItem1.Id = 101;
            this.insertSectionBreakNextPageItem1.Name = "insertSectionBreakNextPageItem1";
            // 
            // insertSectionBreakEvenPageItem1
            // 
            this.insertSectionBreakEvenPageItem1.Id = 102;
            this.insertSectionBreakEvenPageItem1.Name = "insertSectionBreakEvenPageItem1";
            // 
            // insertSectionBreakOddPageItem1
            // 
            this.insertSectionBreakOddPageItem1.Id = 103;
            this.insertSectionBreakOddPageItem1.Name = "insertSectionBreakOddPageItem1";
            // 
            // changeSectionLineNumberingItem1
            // 
            this.changeSectionLineNumberingItem1.Id = 104;
            this.changeSectionLineNumberingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingNoneItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingContinuousItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewPageItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewSectionItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphSuppressLineNumbersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineNumberingFormItem1, true)});
            this.changeSectionLineNumberingItem1.Name = "changeSectionLineNumberingItem1";
            // 
            // setSectionLineNumberingNoneItem1
            // 
            this.setSectionLineNumberingNoneItem1.Id = 105;
            this.setSectionLineNumberingNoneItem1.Name = "setSectionLineNumberingNoneItem1";
            // 
            // setSectionLineNumberingContinuousItem1
            // 
            this.setSectionLineNumberingContinuousItem1.Id = 106;
            this.setSectionLineNumberingContinuousItem1.Name = "setSectionLineNumberingContinuousItem1";
            // 
            // setSectionLineNumberingRestartNewPageItem1
            // 
            this.setSectionLineNumberingRestartNewPageItem1.Id = 107;
            this.setSectionLineNumberingRestartNewPageItem1.Name = "setSectionLineNumberingRestartNewPageItem1";
            // 
            // setSectionLineNumberingRestartNewSectionItem1
            // 
            this.setSectionLineNumberingRestartNewSectionItem1.Id = 108;
            this.setSectionLineNumberingRestartNewSectionItem1.Name = "setSectionLineNumberingRestartNewSectionItem1";
            // 
            // toggleParagraphSuppressLineNumbersItem1
            // 
            this.toggleParagraphSuppressLineNumbersItem1.Id = 109;
            this.toggleParagraphSuppressLineNumbersItem1.Name = "toggleParagraphSuppressLineNumbersItem1";
            // 
            // showLineNumberingFormItem1
            // 
            this.showLineNumberingFormItem1.Id = 110;
            this.showLineNumberingFormItem1.Name = "showLineNumberingFormItem1";
            // 
            // changePageColorItem1
            // 
            this.changePageColorItem1.Id = 111;
            this.changePageColorItem1.Name = "changePageColorItem1";
            // 
            // switchToSimpleViewItem1
            // 
            this.switchToSimpleViewItem1.Id = 112;
            this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
            // 
            // switchToDraftViewItem1
            // 
            this.switchToDraftViewItem1.Id = 113;
            this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
            // 
            // switchToPrintLayoutViewItem1
            // 
            this.switchToPrintLayoutViewItem1.Id = 114;
            this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
            // 
            // toggleShowHorizontalRulerItem1
            // 
            this.toggleShowHorizontalRulerItem1.Id = 115;
            this.toggleShowHorizontalRulerItem1.Name = "toggleShowHorizontalRulerItem1";
            // 
            // toggleShowVerticalRulerItem1
            // 
            this.toggleShowVerticalRulerItem1.Id = 116;
            this.toggleShowVerticalRulerItem1.Name = "toggleShowVerticalRulerItem1";
            // 
            // zoomOutItem1
            // 
            this.zoomOutItem1.Id = 117;
            this.zoomOutItem1.Name = "zoomOutItem1";
            // 
            // zoomInItem1
            // 
            this.zoomInItem1.Id = 118;
            this.zoomInItem1.Name = "zoomInItem1";
            // 
            // snapBarToolbarsListItem1
            // 
            this.snapBarToolbarsListItem1.Caption = "&Windows";
            this.snapBarToolbarsListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("snapBarToolbarsListItem1.Glyph")));
            this.snapBarToolbarsListItem1.Hint = "Show or hide the Data Explorer and Report Explorer windows.";
            this.snapBarToolbarsListItem1.Id = 119;
            this.snapBarToolbarsListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("snapBarToolbarsListItem1.LargeGlyph")));
            this.snapBarToolbarsListItem1.Name = "snapBarToolbarsListItem1";
            this.snapBarToolbarsListItem1.ShowCustomizationItem = false;
            this.snapBarToolbarsListItem1.ShowDockPanels = true;
            this.snapBarToolbarsListItem1.ShowToolbars = false;
            // 
            // commandBarCheckItem1
            // 
            this.commandBarCheckItem1.Id = 120;
            this.commandBarCheckItem1.Name = "commandBarCheckItem1";
            this.commandBarCheckItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.HighlightActiveElement;
            // 
            // showAllFieldCodesItem1
            // 
            this.showAllFieldCodesItem1.Id = 121;
            this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
            // 
            // showAllFieldResultsItem1
            // 
            this.showAllFieldResultsItem1.Id = 122;
            this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
            // 
            // toggleFieldHighlightingItem1
            // 
            this.toggleFieldHighlightingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.Glyph")));
            this.toggleFieldHighlightingItem1.Id = 123;
            this.toggleFieldHighlightingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.LargeGlyph")));
            this.toggleFieldHighlightingItem1.Name = "toggleFieldHighlightingItem1";
            // 
            // goToPageHeaderItem1
            // 
            this.goToPageHeaderItem1.Id = 124;
            this.goToPageHeaderItem1.Name = "goToPageHeaderItem1";
            // 
            // goToPageFooterItem1
            // 
            this.goToPageFooterItem1.Id = 125;
            this.goToPageFooterItem1.Name = "goToPageFooterItem1";
            // 
            // goToNextHeaderFooterItem1
            // 
            this.goToNextHeaderFooterItem1.Id = 126;
            this.goToNextHeaderFooterItem1.Name = "goToNextHeaderFooterItem1";
            // 
            // goToPreviousHeaderFooterItem1
            // 
            this.goToPreviousHeaderFooterItem1.Id = 127;
            this.goToPreviousHeaderFooterItem1.Name = "goToPreviousHeaderFooterItem1";
            // 
            // toggleLinkToPreviousItem1
            // 
            this.toggleLinkToPreviousItem1.Id = 128;
            this.toggleLinkToPreviousItem1.Name = "toggleLinkToPreviousItem1";
            // 
            // toggleDifferentFirstPageItem1
            // 
            this.toggleDifferentFirstPageItem1.Id = 129;
            this.toggleDifferentFirstPageItem1.Name = "toggleDifferentFirstPageItem1";
            // 
            // toggleDifferentOddAndEvenPagesItem1
            // 
            this.toggleDifferentOddAndEvenPagesItem1.Id = 130;
            this.toggleDifferentOddAndEvenPagesItem1.Name = "toggleDifferentOddAndEvenPagesItem1";
            // 
            // closePageHeaderFooterItem1
            // 
            this.closePageHeaderFooterItem1.Id = 131;
            this.closePageHeaderFooterItem1.Name = "closePageHeaderFooterItem1";
            // 
            // toggleFirstRowItem1
            // 
            this.toggleFirstRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstRowItem1.Id = 132;
            this.toggleFirstRowItem1.Name = "toggleFirstRowItem1";
            // 
            // toggleLastRowItem1
            // 
            this.toggleLastRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastRowItem1.Id = 133;
            this.toggleLastRowItem1.Name = "toggleLastRowItem1";
            // 
            // toggleBandedRowsItem1
            // 
            this.toggleBandedRowsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedRowsItem1.Id = 134;
            this.toggleBandedRowsItem1.Name = "toggleBandedRowsItem1";
            // 
            // toggleFirstColumnItem1
            // 
            this.toggleFirstColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleFirstColumnItem1.Id = 135;
            this.toggleFirstColumnItem1.Name = "toggleFirstColumnItem1";
            // 
            // toggleLastColumnItem1
            // 
            this.toggleLastColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleLastColumnItem1.Id = 136;
            this.toggleLastColumnItem1.Name = "toggleLastColumnItem1";
            // 
            // toggleBandedColumnsItem1
            // 
            this.toggleBandedColumnsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
            this.toggleBandedColumnsItem1.Id = 137;
            this.toggleBandedColumnsItem1.Name = "toggleBandedColumnsItem1";
            // 
            // galleryChangeTableStyleItem1
            // 
            this.galleryChangeTableStyleItem1.CurrentItem = null;
            this.galleryChangeTableStyleItem1.CurrentItemStyle = null;
            this.galleryChangeTableStyleItem1.CurrentStyle = null;
            this.galleryChangeTableStyleItem1.DeleteItemLink = null;
            // 
            // 
            // 
            this.galleryChangeTableStyleItem1.Gallery.ColumnCount = 3;
            this.galleryChangeTableStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.galleryChangeTableStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeTableStyleItem1.Id = 138;
            this.galleryChangeTableStyleItem1.ModifyItemLink = null;
            this.galleryChangeTableStyleItem1.Name = "galleryChangeTableStyleItem1";
            this.galleryChangeTableStyleItem1.NewItemLink = null;
            this.galleryChangeTableStyleItem1.PopupGallery = null;
            // 
            // galleryChangeTableCellStyleItem1
            // 
            this.galleryChangeTableCellStyleItem1.CurrentCellStyle = null;
            this.galleryChangeTableCellStyleItem1.CurrentItem = null;
            this.galleryChangeTableCellStyleItem1.CurrentItemCellStyle = null;
            this.galleryChangeTableCellStyleItem1.DeleteItemLink = null;
            // 
            // 
            // 
            this.galleryChangeTableCellStyleItem1.Gallery.ColumnCount = 3;
            this.galleryChangeTableCellStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup3});
            this.galleryChangeTableCellStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeTableCellStyleItem1.Id = 139;
            this.galleryChangeTableCellStyleItem1.ModifyItemLink = null;
            this.galleryChangeTableCellStyleItem1.Name = "galleryChangeTableCellStyleItem1";
            this.galleryChangeTableCellStyleItem1.NewItemLink = null;
            this.galleryChangeTableCellStyleItem1.PopupGallery = null;
            // 
            // changeTableBorderLineStyleItem1
            // 
            this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
            borderInfo1.Color = System.Drawing.Color.Black;
            borderInfo1.Frame = false;
            borderInfo1.Offset = 0;
            borderInfo1.Shadow = false;
            borderInfo1.Style = DevExpress.XtraRichEdit.Model.BorderLineStyle.Single;
            borderInfo1.Width = 10;
            this.changeTableBorderLineStyleItem1.EditValue = borderInfo1;
            this.changeTableBorderLineStyleItem1.Id = 140;
            this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
            // 
            // repositoryItemBorderLineStyle1
            // 
            this.repositoryItemBorderLineStyle1.AutoHeight = false;
            this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineStyle1.Control = this.snapControl;
            this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
            // 
            // changeTableBorderLineWeightItem1
            // 
            this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
            this.changeTableBorderLineWeightItem1.EditValue = 20;
            this.changeTableBorderLineWeightItem1.Id = 141;
            this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
            // 
            // repositoryItemBorderLineWeight1
            // 
            this.repositoryItemBorderLineWeight1.AutoHeight = false;
            this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemBorderLineWeight1.Control = this.snapControl;
            this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
            // 
            // changeTableBorderColorItem1
            // 
            this.changeTableBorderColorItem1.Id = 142;
            this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
            // 
            // changeTableBordersItem1
            // 
            this.changeTableBordersItem1.Id = 143;
            this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1, true)});
            this.changeTableBordersItem1.Name = "changeTableBordersItem1";
            // 
            // toggleTableCellsBottomBorderItem1
            // 
            this.toggleTableCellsBottomBorderItem1.Id = 144;
            this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
            // 
            // toggleTableCellsTopBorderItem1
            // 
            this.toggleTableCellsTopBorderItem1.Id = 145;
            this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
            // 
            // toggleTableCellsLeftBorderItem1
            // 
            this.toggleTableCellsLeftBorderItem1.Id = 146;
            this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
            // 
            // toggleTableCellsRightBorderItem1
            // 
            this.toggleTableCellsRightBorderItem1.Id = 147;
            this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
            // 
            // resetTableCellsAllBordersItem1
            // 
            this.resetTableCellsAllBordersItem1.Id = 148;
            this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
            // 
            // toggleTableCellsAllBordersItem1
            // 
            this.toggleTableCellsAllBordersItem1.Id = 149;
            this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
            // 
            // toggleTableCellsOutsideBorderItem1
            // 
            this.toggleTableCellsOutsideBorderItem1.Id = 150;
            this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
            // 
            // toggleTableCellsInsideBorderItem1
            // 
            this.toggleTableCellsInsideBorderItem1.Id = 151;
            this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
            // 
            // toggleTableCellsInsideHorizontalBorderItem1
            // 
            this.toggleTableCellsInsideHorizontalBorderItem1.Id = 152;
            this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
            // 
            // toggleTableCellsInsideVerticalBorderItem1
            // 
            this.toggleTableCellsInsideVerticalBorderItem1.Id = 153;
            this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
            // 
            // toggleShowTableGridLinesItem1
            // 
            this.toggleShowTableGridLinesItem1.Id = 154;
            this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
            // 
            // changeTableCellsShadingItem1
            // 
            this.changeTableCellsShadingItem1.Id = 155;
            this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
            // 
            // selectTableElementsItem1
            // 
            this.selectTableElementsItem1.Id = 156;
            this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
            this.selectTableElementsItem1.Name = "selectTableElementsItem1";
            // 
            // selectTableCellItem1
            // 
            this.selectTableCellItem1.Id = 157;
            this.selectTableCellItem1.Name = "selectTableCellItem1";
            // 
            // selectTableColumnItem1
            // 
            this.selectTableColumnItem1.Id = 158;
            this.selectTableColumnItem1.Name = "selectTableColumnItem1";
            // 
            // selectTableRowItem1
            // 
            this.selectTableRowItem1.Id = 159;
            this.selectTableRowItem1.Name = "selectTableRowItem1";
            // 
            // selectTableItem1
            // 
            this.selectTableItem1.Id = 160;
            this.selectTableItem1.Name = "selectTableItem1";
            // 
            // showTablePropertiesFormItem1
            // 
            this.showTablePropertiesFormItem1.Id = 161;
            this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
            // 
            // deleteTableElementsItem1
            // 
            this.deleteTableElementsItem1.Id = 162;
            this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
            this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
            // 
            // showDeleteTableCellsFormItem1
            // 
            this.showDeleteTableCellsFormItem1.Id = 163;
            this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
            // 
            // deleteTableColumnsItem1
            // 
            this.deleteTableColumnsItem1.Id = 164;
            this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
            // 
            // deleteTableRowsItem1
            // 
            this.deleteTableRowsItem1.Id = 165;
            this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
            // 
            // deleteTableItem1
            // 
            this.deleteTableItem1.Id = 166;
            this.deleteTableItem1.Name = "deleteTableItem1";
            // 
            // insertTableRowAboveItem1
            // 
            this.insertTableRowAboveItem1.Id = 167;
            this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
            // 
            // insertTableRowBelowItem1
            // 
            this.insertTableRowBelowItem1.Id = 168;
            this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
            // 
            // insertTableColumnToLeftItem1
            // 
            this.insertTableColumnToLeftItem1.Id = 169;
            this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
            // 
            // insertTableColumnToRightItem1
            // 
            this.insertTableColumnToRightItem1.Id = 170;
            this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
            // 
            // mergeTableCellsItem1
            // 
            this.mergeTableCellsItem1.Id = 171;
            this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
            // 
            // showSplitTableCellsForm1
            // 
            this.showSplitTableCellsForm1.Id = 172;
            this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
            // 
            // splitTableItem1
            // 
            this.splitTableItem1.Id = 173;
            this.splitTableItem1.Name = "splitTableItem1";
            // 
            // toggleTableAutoFitItem1
            // 
            this.toggleTableAutoFitItem1.Id = 174;
            this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
            this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
            // 
            // toggleTableAutoFitContentsItem1
            // 
            this.toggleTableAutoFitContentsItem1.Id = 175;
            this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
            // 
            // toggleTableAutoFitWindowItem1
            // 
            this.toggleTableAutoFitWindowItem1.Id = 176;
            this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
            // 
            // toggleTableFixedColumnWidthItem1
            // 
            this.toggleTableFixedColumnWidthItem1.Id = 177;
            this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
            // 
            // toggleTableCellsTopLeftAlignmentItem1
            // 
            this.toggleTableCellsTopLeftAlignmentItem1.Id = 178;
            this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
            // 
            // toggleTableCellsMiddleLeftAlignmentItem1
            // 
            this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 179;
            this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
            // 
            // toggleTableCellsBottomLeftAlignmentItem1
            // 
            this.toggleTableCellsBottomLeftAlignmentItem1.Id = 180;
            this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
            // 
            // toggleTableCellsTopCenterAlignmentItem1
            // 
            this.toggleTableCellsTopCenterAlignmentItem1.Id = 181;
            this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
            // 
            // toggleTableCellsMiddleCenterAlignmentItem1
            // 
            this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 182;
            this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
            // 
            // toggleTableCellsBottomCenterAlignmentItem1
            // 
            this.toggleTableCellsBottomCenterAlignmentItem1.Id = 183;
            this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
            // 
            // toggleTableCellsTopRightAlignmentItem1
            // 
            this.toggleTableCellsTopRightAlignmentItem1.Id = 184;
            this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
            // 
            // toggleTableCellsMiddleRightAlignmentItem1
            // 
            this.toggleTableCellsMiddleRightAlignmentItem1.Id = 185;
            this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
            // 
            // toggleTableCellsBottomRightAlignmentItem1
            // 
            this.toggleTableCellsBottomRightAlignmentItem1.Id = 186;
            this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
            // 
            // showTableOptionsFormItem1
            // 
            this.showTableOptionsFormItem1.Id = 187;
            this.showTableOptionsFormItem1.Name = "showTableOptionsFormItem1";
            // 
            // checkSpellingItem1
            // 
            this.checkSpellingItem1.Id = 188;
            this.checkSpellingItem1.Name = "checkSpellingItem1";
            // 
            // insertTableOfContentsItem1
            // 
            this.insertTableOfContentsItem1.Id = 189;
            this.insertTableOfContentsItem1.Name = "insertTableOfContentsItem1";
            // 
            // updateTableOfContentsItem1
            // 
            this.updateTableOfContentsItem1.Id = 190;
            this.updateTableOfContentsItem1.Name = "updateTableOfContentsItem1";
            // 
            // addParagraphsToTableOfContentItem1
            // 
            this.addParagraphsToTableOfContentItem1.Id = 191;
            this.addParagraphsToTableOfContentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem4),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem6),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem7),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem8),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem9),
            new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem10)});
            this.addParagraphsToTableOfContentItem1.Name = "addParagraphsToTableOfContentItem1";
            // 
            // setParagraphHeadingLevelItem1
            // 
            this.setParagraphHeadingLevelItem1.Id = 192;
            this.setParagraphHeadingLevelItem1.Name = "setParagraphHeadingLevelItem1";
            this.setParagraphHeadingLevelItem1.OutlineLevel = 0;
            // 
            // setParagraphHeadingLevelItem2
            // 
            this.setParagraphHeadingLevelItem2.Id = 193;
            this.setParagraphHeadingLevelItem2.Name = "setParagraphHeadingLevelItem2";
            this.setParagraphHeadingLevelItem2.OutlineLevel = 1;
            // 
            // setParagraphHeadingLevelItem3
            // 
            this.setParagraphHeadingLevelItem3.Id = 194;
            this.setParagraphHeadingLevelItem3.Name = "setParagraphHeadingLevelItem3";
            this.setParagraphHeadingLevelItem3.OutlineLevel = 2;
            // 
            // setParagraphHeadingLevelItem4
            // 
            this.setParagraphHeadingLevelItem4.Id = 195;
            this.setParagraphHeadingLevelItem4.Name = "setParagraphHeadingLevelItem4";
            this.setParagraphHeadingLevelItem4.OutlineLevel = 3;
            // 
            // setParagraphHeadingLevelItem5
            // 
            this.setParagraphHeadingLevelItem5.Id = 196;
            this.setParagraphHeadingLevelItem5.Name = "setParagraphHeadingLevelItem5";
            this.setParagraphHeadingLevelItem5.OutlineLevel = 4;
            // 
            // setParagraphHeadingLevelItem6
            // 
            this.setParagraphHeadingLevelItem6.Id = 197;
            this.setParagraphHeadingLevelItem6.Name = "setParagraphHeadingLevelItem6";
            this.setParagraphHeadingLevelItem6.OutlineLevel = 5;
            // 
            // setParagraphHeadingLevelItem7
            // 
            this.setParagraphHeadingLevelItem7.Id = 198;
            this.setParagraphHeadingLevelItem7.Name = "setParagraphHeadingLevelItem7";
            this.setParagraphHeadingLevelItem7.OutlineLevel = 6;
            // 
            // setParagraphHeadingLevelItem8
            // 
            this.setParagraphHeadingLevelItem8.Id = 199;
            this.setParagraphHeadingLevelItem8.Name = "setParagraphHeadingLevelItem8";
            this.setParagraphHeadingLevelItem8.OutlineLevel = 7;
            // 
            // setParagraphHeadingLevelItem9
            // 
            this.setParagraphHeadingLevelItem9.Id = 200;
            this.setParagraphHeadingLevelItem9.Name = "setParagraphHeadingLevelItem9";
            this.setParagraphHeadingLevelItem9.OutlineLevel = 8;
            // 
            // setParagraphHeadingLevelItem10
            // 
            this.setParagraphHeadingLevelItem10.Id = 201;
            this.setParagraphHeadingLevelItem10.Name = "setParagraphHeadingLevelItem10";
            this.setParagraphHeadingLevelItem10.OutlineLevel = 9;
            // 
            // insertCaptionPlaceholderItem1
            // 
            this.insertCaptionPlaceholderItem1.Id = 202;
            this.insertCaptionPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertFiguresCaptionItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTablesCaptionItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertEquationsCaptionItems1)});
            this.insertCaptionPlaceholderItem1.Name = "insertCaptionPlaceholderItem1";
            // 
            // insertFiguresCaptionItems1
            // 
            this.insertFiguresCaptionItems1.Id = 203;
            this.insertFiguresCaptionItems1.Name = "insertFiguresCaptionItems1";
            // 
            // insertTablesCaptionItems1
            // 
            this.insertTablesCaptionItems1.Id = 204;
            this.insertTablesCaptionItems1.Name = "insertTablesCaptionItems1";
            // 
            // insertEquationsCaptionItems1
            // 
            this.insertEquationsCaptionItems1.Id = 205;
            this.insertEquationsCaptionItems1.Name = "insertEquationsCaptionItems1";
            // 
            // insertTableOfFiguresPlaceholderItem1
            // 
            this.insertTableOfFiguresPlaceholderItem1.Id = 206;
            this.insertTableOfFiguresPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfFiguresItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfTablesItems1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfEquationsItems1)});
            this.insertTableOfFiguresPlaceholderItem1.Name = "insertTableOfFiguresPlaceholderItem1";
            // 
            // insertTableOfFiguresItems1
            // 
            this.insertTableOfFiguresItems1.Id = 207;
            this.insertTableOfFiguresItems1.Name = "insertTableOfFiguresItems1";
            // 
            // insertTableOfTablesItems1
            // 
            this.insertTableOfTablesItems1.Id = 208;
            this.insertTableOfTablesItems1.Name = "insertTableOfTablesItems1";
            // 
            // insertTableOfEquationsItems1
            // 
            this.insertTableOfEquationsItems1.Id = 209;
            this.insertTableOfEquationsItems1.Name = "insertTableOfEquationsItems1";
            // 
            // updateTableOfFiguresItem1
            // 
            this.updateTableOfFiguresItem1.Id = 210;
            this.updateTableOfFiguresItem1.Name = "updateTableOfFiguresItem1";
            // 
            // changeFloatingObjectFillColorItem1
            // 
            this.changeFloatingObjectFillColorItem1.Id = 211;
            this.changeFloatingObjectFillColorItem1.Name = "changeFloatingObjectFillColorItem1";
            // 
            // changeFloatingObjectOutlineColorItem1
            // 
            this.changeFloatingObjectOutlineColorItem1.Id = 212;
            this.changeFloatingObjectOutlineColorItem1.Name = "changeFloatingObjectOutlineColorItem1";
            // 
            // changeFloatingObjectOutlineWeightItem1
            // 
            this.changeFloatingObjectOutlineWeightItem1.Edit = this.repositoryItemFloatingObjectOutlineWeight1;
            this.changeFloatingObjectOutlineWeightItem1.EditValue = 20;
            this.changeFloatingObjectOutlineWeightItem1.Id = 213;
            this.changeFloatingObjectOutlineWeightItem1.Name = "changeFloatingObjectOutlineWeightItem1";
            // 
            // repositoryItemFloatingObjectOutlineWeight1
            // 
            this.repositoryItemFloatingObjectOutlineWeight1.AutoHeight = false;
            this.repositoryItemFloatingObjectOutlineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemFloatingObjectOutlineWeight1.Control = this.snapControl;
            this.repositoryItemFloatingObjectOutlineWeight1.Name = "repositoryItemFloatingObjectOutlineWeight1";
            // 
            // changeFloatingObjectTextWrapTypeItem1
            // 
            this.changeFloatingObjectTextWrapTypeItem1.Id = 214;
            this.changeFloatingObjectTextWrapTypeItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectSquareTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTightTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectThroughTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopAndBottomTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBehindTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectInFrontOfTextWrapTypeItem1)});
            this.changeFloatingObjectTextWrapTypeItem1.Name = "changeFloatingObjectTextWrapTypeItem1";
            // 
            // setFloatingObjectSquareTextWrapTypeItem1
            // 
            this.setFloatingObjectSquareTextWrapTypeItem1.Id = 215;
            this.setFloatingObjectSquareTextWrapTypeItem1.Name = "setFloatingObjectSquareTextWrapTypeItem1";
            // 
            // setFloatingObjectTightTextWrapTypeItem1
            // 
            this.setFloatingObjectTightTextWrapTypeItem1.Id = 216;
            this.setFloatingObjectTightTextWrapTypeItem1.Name = "setFloatingObjectTightTextWrapTypeItem1";
            // 
            // setFloatingObjectThroughTextWrapTypeItem1
            // 
            this.setFloatingObjectThroughTextWrapTypeItem1.Id = 217;
            this.setFloatingObjectThroughTextWrapTypeItem1.Name = "setFloatingObjectThroughTextWrapTypeItem1";
            // 
            // setFloatingObjectTopAndBottomTextWrapTypeItem1
            // 
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Id = 218;
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Name = "setFloatingObjectTopAndBottomTextWrapTypeItem1";
            // 
            // setFloatingObjectBehindTextWrapTypeItem1
            // 
            this.setFloatingObjectBehindTextWrapTypeItem1.Id = 219;
            this.setFloatingObjectBehindTextWrapTypeItem1.Name = "setFloatingObjectBehindTextWrapTypeItem1";
            // 
            // setFloatingObjectInFrontOfTextWrapTypeItem1
            // 
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Id = 220;
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Name = "setFloatingObjectInFrontOfTextWrapTypeItem1";
            // 
            // changeFloatingObjectAlignmentItem1
            // 
            this.changeFloatingObjectAlignmentItem1.Id = 221;
            this.changeFloatingObjectAlignmentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomRightAlignmentItem1)});
            this.changeFloatingObjectAlignmentItem1.Name = "changeFloatingObjectAlignmentItem1";
            // 
            // setFloatingObjectTopLeftAlignmentItem1
            // 
            this.setFloatingObjectTopLeftAlignmentItem1.Id = 222;
            this.setFloatingObjectTopLeftAlignmentItem1.Name = "setFloatingObjectTopLeftAlignmentItem1";
            // 
            // setFloatingObjectTopCenterAlignmentItem1
            // 
            this.setFloatingObjectTopCenterAlignmentItem1.Id = 223;
            this.setFloatingObjectTopCenterAlignmentItem1.Name = "setFloatingObjectTopCenterAlignmentItem1";
            // 
            // setFloatingObjectTopRightAlignmentItem1
            // 
            this.setFloatingObjectTopRightAlignmentItem1.Id = 224;
            this.setFloatingObjectTopRightAlignmentItem1.Name = "setFloatingObjectTopRightAlignmentItem1";
            // 
            // setFloatingObjectMiddleLeftAlignmentItem1
            // 
            this.setFloatingObjectMiddleLeftAlignmentItem1.Id = 225;
            this.setFloatingObjectMiddleLeftAlignmentItem1.Name = "setFloatingObjectMiddleLeftAlignmentItem1";
            // 
            // setFloatingObjectMiddleCenterAlignmentItem1
            // 
            this.setFloatingObjectMiddleCenterAlignmentItem1.Id = 226;
            this.setFloatingObjectMiddleCenterAlignmentItem1.Name = "setFloatingObjectMiddleCenterAlignmentItem1";
            // 
            // setFloatingObjectMiddleRightAlignmentItem1
            // 
            this.setFloatingObjectMiddleRightAlignmentItem1.Id = 227;
            this.setFloatingObjectMiddleRightAlignmentItem1.Name = "setFloatingObjectMiddleRightAlignmentItem1";
            // 
            // setFloatingObjectBottomLeftAlignmentItem1
            // 
            this.setFloatingObjectBottomLeftAlignmentItem1.Id = 228;
            this.setFloatingObjectBottomLeftAlignmentItem1.Name = "setFloatingObjectBottomLeftAlignmentItem1";
            // 
            // setFloatingObjectBottomCenterAlignmentItem1
            // 
            this.setFloatingObjectBottomCenterAlignmentItem1.Id = 229;
            this.setFloatingObjectBottomCenterAlignmentItem1.Name = "setFloatingObjectBottomCenterAlignmentItem1";
            // 
            // setFloatingObjectBottomRightAlignmentItem1
            // 
            this.setFloatingObjectBottomRightAlignmentItem1.Id = 230;
            this.setFloatingObjectBottomRightAlignmentItem1.Name = "setFloatingObjectBottomRightAlignmentItem1";
            // 
            // floatingObjectBringForwardSubItem1
            // 
            this.floatingObjectBringForwardSubItem1.Id = 231;
            this.floatingObjectBringForwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringForwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringToFrontItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringInFrontOfTextItem1)});
            this.floatingObjectBringForwardSubItem1.Name = "floatingObjectBringForwardSubItem1";
            // 
            // floatingObjectBringForwardItem1
            // 
            this.floatingObjectBringForwardItem1.Id = 232;
            this.floatingObjectBringForwardItem1.Name = "floatingObjectBringForwardItem1";
            // 
            // floatingObjectBringToFrontItem1
            // 
            this.floatingObjectBringToFrontItem1.Id = 233;
            this.floatingObjectBringToFrontItem1.Name = "floatingObjectBringToFrontItem1";
            // 
            // floatingObjectBringInFrontOfTextItem1
            // 
            this.floatingObjectBringInFrontOfTextItem1.Id = 234;
            this.floatingObjectBringInFrontOfTextItem1.Name = "floatingObjectBringInFrontOfTextItem1";
            // 
            // floatingObjectSendBackwardSubItem1
            // 
            this.floatingObjectSendBackwardSubItem1.Id = 235;
            this.floatingObjectSendBackwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBackwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendToBackItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBehindTextItem1)});
            this.floatingObjectSendBackwardSubItem1.Name = "floatingObjectSendBackwardSubItem1";
            // 
            // floatingObjectSendBackwardItem1
            // 
            this.floatingObjectSendBackwardItem1.Id = 236;
            this.floatingObjectSendBackwardItem1.Name = "floatingObjectSendBackwardItem1";
            // 
            // floatingObjectSendToBackItem1
            // 
            this.floatingObjectSendToBackItem1.Id = 237;
            this.floatingObjectSendToBackItem1.Name = "floatingObjectSendToBackItem1";
            // 
            // floatingObjectSendBehindTextItem1
            // 
            this.floatingObjectSendBehindTextItem1.Id = 238;
            this.floatingObjectSendBehindTextItem1.Name = "floatingObjectSendBehindTextItem1";
            // 
            // themesGalleryBarItem1
            // 
            // 
            // 
            // 
            this.themesGalleryBarItem1.Gallery.ColumnCount = 7;
            this.themesGalleryBarItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.themesGalleryBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleCheck;
            this.themesGalleryBarItem1.Gallery.RowCount = 1;
            this.themesGalleryBarItem1.Id = 239;
            this.themesGalleryBarItem1.Name = "themesGalleryBarItem1";
            // 
            // commandBarCheckItem2
            // 
            this.commandBarCheckItem2.Id = 240;
            this.commandBarCheckItem2.Name = "commandBarCheckItem2";
            this.commandBarCheckItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.commandBarCheckItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupByField;
            // 
            // commandBarCheckItem3
            // 
            this.commandBarCheckItem3.Id = 241;
            this.commandBarCheckItem3.Name = "commandBarCheckItem3";
            this.commandBarCheckItem3.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SnapSortFieldAscending;
            // 
            // commandBarCheckItem4
            // 
            this.commandBarCheckItem4.Id = 242;
            this.commandBarCheckItem4.Name = "commandBarCheckItem4";
            this.commandBarCheckItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SnapSortFieldDescending;
            // 
            // commandBarSubItem1
            // 
            this.commandBarSubItem1.Id = 243;
            this.commandBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem6),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem7),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem8),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem9)});
            this.commandBarSubItem1.Name = "commandBarSubItem1";
            this.commandBarSubItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryByField;
            // 
            // commandBarCheckItem5
            // 
            this.commandBarCheckItem5.Id = 244;
            this.commandBarCheckItem5.Name = "commandBarCheckItem5";
            this.commandBarCheckItem5.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryCount;
            // 
            // commandBarCheckItem6
            // 
            this.commandBarCheckItem6.Id = 245;
            this.commandBarCheckItem6.Name = "commandBarCheckItem6";
            this.commandBarCheckItem6.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummarySum;
            // 
            // commandBarCheckItem7
            // 
            this.commandBarCheckItem7.Id = 246;
            this.commandBarCheckItem7.Name = "commandBarCheckItem7";
            this.commandBarCheckItem7.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryAverage;
            // 
            // commandBarCheckItem8
            // 
            this.commandBarCheckItem8.Id = 247;
            this.commandBarCheckItem8.Name = "commandBarCheckItem8";
            this.commandBarCheckItem8.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryMax;
            // 
            // commandBarCheckItem9
            // 
            this.commandBarCheckItem9.Id = 248;
            this.commandBarCheckItem9.Name = "commandBarCheckItem9";
            this.commandBarCheckItem9.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryMin;
            // 
            // filterPopupButtonItem1
            // 
            this.filterPopupButtonItem1.ActAsDropDown = true;
            this.filterPopupButtonItem1.Id = 249;
            this.filterPopupButtonItem1.Name = "filterPopupButtonItem1";
            // 
            // propertiesBarButtonItem1
            // 
            this.propertiesBarButtonItem1.ActAsDropDown = true;
            this.propertiesBarButtonItem1.Id = 250;
            this.propertiesBarButtonItem1.Name = "propertiesBarButtonItem1";
            this.propertiesBarButtonItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            // 
            // commandBarSubItem2
            // 
            this.commandBarSubItem2.Id = 251;
            this.commandBarSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem10),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem11)});
            this.commandBarSubItem2.Name = "commandBarSubItem2";
            this.commandBarSubItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.commandBarSubItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupHeader;
            // 
            // commandBarCheckItem10
            // 
            this.commandBarCheckItem10.Id = 252;
            this.commandBarCheckItem10.Name = "commandBarCheckItem10";
            this.commandBarCheckItem10.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertGroupHeader;
            // 
            // commandBarCheckItem11
            // 
            this.commandBarCheckItem11.Id = 253;
            this.commandBarCheckItem11.Name = "commandBarCheckItem11";
            this.commandBarCheckItem11.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveGroupHeader;
            // 
            // commandBarSubItem3
            // 
            this.commandBarSubItem3.Id = 254;
            this.commandBarSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem12),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem13)});
            this.commandBarSubItem3.Name = "commandBarSubItem3";
            this.commandBarSubItem3.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupFooter;
            // 
            // commandBarCheckItem12
            // 
            this.commandBarCheckItem12.Id = 255;
            this.commandBarCheckItem12.Name = "commandBarCheckItem12";
            this.commandBarCheckItem12.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertGroupFooter;
            // 
            // commandBarCheckItem13
            // 
            this.commandBarCheckItem13.Id = 256;
            this.commandBarCheckItem13.Name = "commandBarCheckItem13";
            this.commandBarCheckItem13.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveGroupFooter;
            // 
            // commandBarItem8
            // 
            this.commandBarItem8.Id = 257;
            this.commandBarItem8.Name = "commandBarItem8";
            this.commandBarItem8.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupFieldsCollection;
            // 
            // commandBarItem9
            // 
            this.commandBarItem9.Id = 258;
            this.commandBarItem9.Name = "commandBarItem9";
            this.commandBarItem9.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ShowReportStructureEditorForm;
            // 
            // commandBarSubItem4
            // 
            this.commandBarSubItem4.Id = 259;
            this.commandBarSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem14),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem15),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem16),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem17),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem18),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem19),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem20)});
            this.commandBarSubItem4.Name = "commandBarSubItem4";
            this.commandBarSubItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertGroupSeparator;
            // 
            // commandBarCheckItem14
            // 
            this.commandBarCheckItem14.Id = 260;
            this.commandBarCheckItem14.Name = "commandBarCheckItem14";
            this.commandBarCheckItem14.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertPageBreakGroupSeparator;
            // 
            // commandBarCheckItem15
            // 
            this.commandBarCheckItem15.Id = 261;
            this.commandBarCheckItem15.Name = "commandBarCheckItem15";
            this.commandBarCheckItem15.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakNextPageGroupSeparator;
            // 
            // commandBarCheckItem16
            // 
            this.commandBarCheckItem16.Id = 262;
            this.commandBarCheckItem16.Name = "commandBarCheckItem16";
            this.commandBarCheckItem16.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakEvenPageGroupSeparator;
            // 
            // commandBarCheckItem17
            // 
            this.commandBarCheckItem17.Id = 263;
            this.commandBarCheckItem17.Name = "commandBarCheckItem17";
            this.commandBarCheckItem17.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakOddPageGroupSeparator;
            // 
            // commandBarCheckItem18
            // 
            this.commandBarCheckItem18.Id = 264;
            this.commandBarCheckItem18.Name = "commandBarCheckItem18";
            this.commandBarCheckItem18.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyParagraphGroupSeparator;
            // 
            // commandBarCheckItem19
            // 
            this.commandBarCheckItem19.Id = 265;
            this.commandBarCheckItem19.Name = "commandBarCheckItem19";
            this.commandBarCheckItem19.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyRowGroupSeparator;
            // 
            // commandBarCheckItem20
            // 
            this.commandBarCheckItem20.Id = 266;
            this.commandBarCheckItem20.Name = "commandBarCheckItem20";
            this.commandBarCheckItem20.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertNoneGroupSeparator;
            // 
            // commandBarSubItem5
            // 
            this.commandBarSubItem5.Id = 268;
            this.commandBarSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem21),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem22)});
            this.commandBarSubItem5.Name = "commandBarSubItem5";
            this.commandBarSubItem5.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.commandBarSubItem5.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ListHeader;
            // 
            // commandBarCheckItem21
            // 
            this.commandBarCheckItem21.Id = 269;
            this.commandBarCheckItem21.Name = "commandBarCheckItem21";
            this.commandBarCheckItem21.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertListHeader;
            // 
            // commandBarCheckItem22
            // 
            this.commandBarCheckItem22.Id = 270;
            this.commandBarCheckItem22.Name = "commandBarCheckItem22";
            this.commandBarCheckItem22.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveListHeader;
            // 
            // commandBarSubItem6
            // 
            this.commandBarSubItem6.Id = 271;
            this.commandBarSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem23),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem24)});
            this.commandBarSubItem6.Name = "commandBarSubItem6";
            this.commandBarSubItem6.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.commandBarSubItem6.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ListFooter;
            // 
            // commandBarCheckItem23
            // 
            this.commandBarCheckItem23.Id = 272;
            this.commandBarCheckItem23.Name = "commandBarCheckItem23";
            this.commandBarCheckItem23.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertListFooter;
            // 
            // commandBarCheckItem24
            // 
            this.commandBarCheckItem24.Id = 273;
            this.commandBarCheckItem24.Name = "commandBarCheckItem24";
            this.commandBarCheckItem24.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveListFooter;
            // 
            // commandBarSubItem7
            // 
            this.commandBarSubItem7.Id = 274;
            this.commandBarSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem25),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem26),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem27),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem28),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem29),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem30),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem31)});
            this.commandBarSubItem7.Name = "commandBarSubItem7";
            this.commandBarSubItem7.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertDataRowSeparator;
            // 
            // commandBarCheckItem25
            // 
            this.commandBarCheckItem25.Id = 275;
            this.commandBarCheckItem25.Name = "commandBarCheckItem25";
            this.commandBarCheckItem25.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertPageBreakDataRowSeparator;
            // 
            // commandBarCheckItem26
            // 
            this.commandBarCheckItem26.Id = 276;
            this.commandBarCheckItem26.Name = "commandBarCheckItem26";
            this.commandBarCheckItem26.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakNextPageDataRowSeparator;
            // 
            // commandBarCheckItem27
            // 
            this.commandBarCheckItem27.Id = 277;
            this.commandBarCheckItem27.Name = "commandBarCheckItem27";
            this.commandBarCheckItem27.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakEvenPageDataRowSeparator;
            // 
            // commandBarCheckItem28
            // 
            this.commandBarCheckItem28.Id = 278;
            this.commandBarCheckItem28.Name = "commandBarCheckItem28";
            this.commandBarCheckItem28.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakOddPageDataRowSeparator;
            // 
            // commandBarCheckItem29
            // 
            this.commandBarCheckItem29.Id = 279;
            this.commandBarCheckItem29.Name = "commandBarCheckItem29";
            this.commandBarCheckItem29.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyParagraphDataRowSeparator;
            // 
            // commandBarCheckItem30
            // 
            this.commandBarCheckItem30.Id = 280;
            this.commandBarCheckItem30.Name = "commandBarCheckItem30";
            this.commandBarCheckItem30.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyRowDataRowSeparator;
            // 
            // commandBarCheckItem31
            // 
            this.commandBarCheckItem31.Id = 281;
            this.commandBarCheckItem31.Name = "commandBarCheckItem31";
            this.commandBarCheckItem31.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertNoneDataRowSeparator;
            // 
            // commandBarItem10
            // 
            this.commandBarItem10.Id = 282;
            this.commandBarItem10.Name = "commandBarItem10";
            this.commandBarItem10.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.FilterList;
            // 
            // commandBarItem11
            // 
            this.commandBarItem11.Id = 283;
            this.commandBarItem11.Name = "commandBarItem11";
            this.commandBarItem11.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ConvertToParagraphs;
            // 
            // commandBarItem12
            // 
            this.commandBarItem12.Id = 284;
            this.commandBarItem12.Name = "commandBarItem12";
            this.commandBarItem12.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.DeleteList;
            // 
            // barButtonGroup8
            // 
            this.barButtonGroup8.Id = 267;
            this.barButtonGroup8.ItemLinks.Add(this.changeEditorRowLimitItem1);
            this.barButtonGroup8.Name = "barButtonGroup8";
            this.barButtonGroup8.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeEditorRowLimitItem1
            // 
            this.changeEditorRowLimitItem1.Edit = this.repositoryItemEditorRowLimitEdit1;
            this.changeEditorRowLimitItem1.Id = 285;
            this.changeEditorRowLimitItem1.Name = "changeEditorRowLimitItem1";
            this.changeEditorRowLimitItem1.Width = 90;
            // 
            // repositoryItemEditorRowLimitEdit1
            // 
            this.repositoryItemEditorRowLimitEdit1.AutoHeight = false;
            this.repositoryItemEditorRowLimitEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemEditorRowLimitEdit1.Control = this.snapControl;
            this.repositoryItemEditorRowLimitEdit1.Name = "repositoryItemEditorRowLimitEdit1";
            // 
            // createBarBaseItem1
            // 
            this.createBarBaseItem1.DropDownControl = this.commandBarGalleryDropDown1;
            this.createBarBaseItem1.Id = 286;
            this.createBarBaseItem1.Name = "createBarBaseItem1";
            // 
            // commandBarGalleryDropDown1
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown1.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown1.Gallery.ColumnCount = 4;
            chartControlCommandGalleryItemGroup2DColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBarChartItem1,
            createFullStackedBarChartItem1,
            createSideBySideFullStackedBarChartItem1,
            createSideBySideStackedBarChartItem1,
            createStackedBarChartItem1});
            chartControlCommandGalleryItemGroup3DColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBar3DChartItem1,
            createFullStackedBar3DChartItem1,
            createManhattanBarChartItem1,
            createSideBySideFullStackedBar3DChartItem1,
            createSideBySideStackedBar3DChartItem1,
            createStackedBar3DChartItem1});
            chartControlCommandGalleryItemGroupCylinderColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createCylinderBar3DChartItem1,
            createCylinderFullStackedBar3DChartItem1,
            createCylinderManhattanBarChartItem1,
            createCylinderSideBySideFullStackedBar3DChartItem1,
            createCylinderSideBySideStackedBar3DChartItem1,
            createCylinderStackedBar3DChartItem1});
            chartControlCommandGalleryItemGroupConeColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createConeBar3DChartItem1,
            createConeFullStackedBar3DChartItem1,
            createConeManhattanBarChartItem1,
            createConeSideBySideFullStackedBar3DChartItem1,
            createConeSideBySideStackedBar3DChartItem1,
            createConeStackedBar3DChartItem1});
            chartControlCommandGalleryItemGroupPyramidColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPyramidBar3DChartItem1,
            createPyramidFullStackedBar3DChartItem1,
            createPyramidManhattanBarChartItem1,
            createPyramidSideBySideFullStackedBar3DChartItem1,
            createPyramidSideBySideStackedBar3DChartItem1,
            createPyramidStackedBar3DChartItem1});
            this.commandBarGalleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DColumn1,
            chartControlCommandGalleryItemGroup3DColumn1,
            chartControlCommandGalleryItemGroupCylinderColumn1,
            chartControlCommandGalleryItemGroupConeColumn1,
            chartControlCommandGalleryItemGroupPyramidColumn1});
            this.commandBarGalleryDropDown1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown1.Gallery.RowCount = 10;
            this.commandBarGalleryDropDown1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown1.Name = "commandBarGalleryDropDown1";
            this.commandBarGalleryDropDown1.Ribbon = this.ribbonControl1;
            // 
            // createLineBaseItem1
            // 
            this.createLineBaseItem1.DropDownControl = this.commandBarGalleryDropDown2;
            this.createLineBaseItem1.Id = 287;
            this.createLineBaseItem1.Name = "createLineBaseItem1";
            // 
            // commandBarGalleryDropDown2
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown2.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown2.Gallery.ColumnCount = 3;
            chartControlCommandGalleryItemGroup2DLine1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLineChartItem1,
            createFullStackedLineChartItem1,
            createScatterLineChartItem1,
            createSplineChartItem1,
            createStackedLineChartItem1,
            createStepLineChartItem1});
            chartControlCommandGalleryItemGroup3DLine1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLine3DChartItem1,
            createFullStackedLine3DChartItem1,
            createSpline3DChartItem1,
            createStackedLine3DChartItem1,
            createStepLine3DChartItem1});
            this.commandBarGalleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DLine1,
            chartControlCommandGalleryItemGroup3DLine1});
            this.commandBarGalleryDropDown2.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown2.Gallery.RowCount = 4;
            this.commandBarGalleryDropDown2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown2.Name = "commandBarGalleryDropDown2";
            this.commandBarGalleryDropDown2.Ribbon = this.ribbonControl1;
            // 
            // createPieBaseItem1
            // 
            this.createPieBaseItem1.DropDownControl = this.commandBarGalleryDropDown3;
            this.createPieBaseItem1.Id = 288;
            this.createPieBaseItem1.Name = "createPieBaseItem1";
            // 
            // commandBarGalleryDropDown3
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown3.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown3.Gallery.ColumnCount = 3;
            chartControlCommandGalleryItemGroup2DPie1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPieChartItem1,
            createDoughnutChartItem1,
            createNestedDoughnutChartItem1});
            chartControlCommandGalleryItemGroup3DPie1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPie3DChartItem1,
            createDoughnut3DChartItem1});
            this.commandBarGalleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DPie1,
            chartControlCommandGalleryItemGroup3DPie1});
            this.commandBarGalleryDropDown3.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown3.Gallery.RowCount = 2;
            this.commandBarGalleryDropDown3.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown3.Name = "commandBarGalleryDropDown3";
            this.commandBarGalleryDropDown3.Ribbon = this.ribbonControl1;
            // 
            // createRotatedBarBaseItem1
            // 
            this.createRotatedBarBaseItem1.DropDownControl = this.commandBarGalleryDropDown4;
            this.createRotatedBarBaseItem1.Id = 289;
            this.createRotatedBarBaseItem1.Name = "createRotatedBarBaseItem1";
            // 
            // commandBarGalleryDropDown4
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown4.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown4.Gallery.ColumnCount = 3;
            chartControlCommandGalleryItemGroup2DBar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRotatedBarChartItem1,
            createRotatedFullStackedBarChartItem1,
            createRotatedSideBySideFullStackedBarChartItem1,
            createRotatedSideBySideStackedBarChartItem1,
            createRotatedStackedBarChartItem1});
            this.commandBarGalleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DBar1});
            this.commandBarGalleryDropDown4.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown4.Gallery.RowCount = 2;
            this.commandBarGalleryDropDown4.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown4.Name = "commandBarGalleryDropDown4";
            this.commandBarGalleryDropDown4.Ribbon = this.ribbonControl1;
            // 
            // createAreaBaseItem1
            // 
            this.createAreaBaseItem1.DropDownControl = this.commandBarGalleryDropDown5;
            this.createAreaBaseItem1.Id = 290;
            this.createAreaBaseItem1.Name = "createAreaBaseItem1";
            // 
            // commandBarGalleryDropDown5
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown5.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown5.Gallery.ColumnCount = 4;
            chartControlCommandGalleryItemGroup2DArea1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createAreaChartItem1,
            createFullStackedAreaChartItem1,
            createFullStackedSplineAreaChartItem1,
            createSplineAreaChartItem1,
            createStackedAreaChartItem1,
            createStackedSplineAreaChartItem1,
            createStepAreaChartItem1});
            chartControlCommandGalleryItemGroup3DArea1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createArea3DChartItem1,
            createFullStackedArea3DChartItem1,
            createFullStackedSplineArea3DChartItem1,
            createSplineArea3DChartItem1,
            createStackedArea3DChartItem1,
            createStackedSplineArea3DChartItem1,
            createStepArea3DChartItem1});
            this.commandBarGalleryDropDown5.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DArea1,
            chartControlCommandGalleryItemGroup3DArea1});
            this.commandBarGalleryDropDown5.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown5.Gallery.RowCount = 4;
            this.commandBarGalleryDropDown5.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown5.Name = "commandBarGalleryDropDown5";
            this.commandBarGalleryDropDown5.Ribbon = this.ribbonControl1;
            // 
            // createOtherSeriesTypesBaseItem1
            // 
            this.createOtherSeriesTypesBaseItem1.DropDownControl = this.commandBarGalleryDropDown6;
            this.createOtherSeriesTypesBaseItem1.Id = 291;
            this.createOtherSeriesTypesBaseItem1.Name = "createOtherSeriesTypesBaseItem1";
            // 
            // commandBarGalleryDropDown6
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown6.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown6.Gallery.ColumnCount = 4;
            chartControlCommandGalleryItemGroupPoint1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPointChartItem1,
            createBubbleChartItem1});
            chartControlCommandGalleryItemGroupFunnel1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createFunnelChartItem1,
            createFunnel3DChartItem1});
            chartControlCommandGalleryItemGroupFinancial1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createStockChartItem1,
            createCandleStickChartItem1});
            chartControlCommandGalleryItemGroupRadar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRadarPointChartItem1,
            createRadarLineChartItem1,
            createRadarAreaChartItem1});
            chartControlCommandGalleryItemGroupPolar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPolarPointChartItem1,
            createPolarLineChartItem1,
            createPolarAreaChartItem1});
            chartControlCommandGalleryItemGroupRange1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRangeBarChartItem1,
            createSideBySideRangeBarChartItem1,
            createRangeAreaChartItem1,
            createRangeArea3DChartItem1});
            chartControlCommandGalleryItemGroupGantt1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createGanttChartItem1,
            createSideBySideGanttChartItem1});
            this.commandBarGalleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroupPoint1,
            chartControlCommandGalleryItemGroupFunnel1,
            chartControlCommandGalleryItemGroupFinancial1,
            chartControlCommandGalleryItemGroupRadar1,
            chartControlCommandGalleryItemGroupPolar1,
            chartControlCommandGalleryItemGroupRange1,
            chartControlCommandGalleryItemGroupGantt1});
            this.commandBarGalleryDropDown6.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.commandBarGalleryDropDown6.Gallery.RowCount = 7;
            this.commandBarGalleryDropDown6.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown6.Name = "commandBarGalleryDropDown6";
            this.commandBarGalleryDropDown6.Ribbon = this.ribbonControl1;
            // 
            // changePaletteGalleryBaseItem1
            // 
            this.changePaletteGalleryBaseItem1.DropDownControl = this.commandBarGalleryDropDown7;
            this.changePaletteGalleryBaseItem1.Id = 292;
            this.changePaletteGalleryBaseItem1.Name = "changePaletteGalleryBaseItem1";
            // 
            // commandBarGalleryDropDown7
            // 
            // 
            // 
            // 
            this.commandBarGalleryDropDown7.Gallery.AllowFilter = false;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseFont = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseTextOptions = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseFont = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseFont = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseTextOptions = true;
            this.commandBarGalleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.commandBarGalleryDropDown7.Gallery.ColumnCount = 1;
            this.commandBarGalleryDropDown7.Gallery.ImageSize = new System.Drawing.Size(160, 10);
            this.commandBarGalleryDropDown7.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.commandBarGalleryDropDown7.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Right;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.commandBarGalleryDropDown7.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -3;
            skinPaddingEdges2.Top = -3;
            this.commandBarGalleryDropDown7.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.commandBarGalleryDropDown7.Gallery.RowCount = 10;
            this.commandBarGalleryDropDown7.Gallery.ShowGroupCaption = false;
            this.commandBarGalleryDropDown7.Gallery.ShowItemText = true;
            this.commandBarGalleryDropDown7.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.commandBarGalleryDropDown7.Name = "commandBarGalleryDropDown7";
            this.commandBarGalleryDropDown7.Ribbon = this.ribbonControl1;
            // 
            // changeAppearanceGalleryBaseItem1
            // 
            // 
            // 
            // 
            this.changeAppearanceGalleryBaseItem1.Gallery.ColumnCount = 7;
            this.changeAppearanceGalleryBaseItem1.Gallery.ImageSize = new System.Drawing.Size(80, 50);
            this.changeAppearanceGalleryBaseItem1.Gallery.RowCount = 4;
            this.changeAppearanceGalleryBaseItem1.Id = 293;
            this.changeAppearanceGalleryBaseItem1.Name = "changeAppearanceGalleryBaseItem1";
            // 
            // runWizardChartItem1
            // 
            this.runWizardChartItem1.Id = 294;
            this.runWizardChartItem1.Name = "runWizardChartItem1";
            // 
            // mailMergeDataSourceItem1
            // 
            this.mailMergeDataSourceItem1.Id = 295;
            this.mailMergeDataSourceItem1.Name = "mailMergeDataSourceItem1";
            // 
            // commandBarCheckItem32
            // 
            this.commandBarCheckItem32.Id = 296;
            this.commandBarCheckItem32.Name = "commandBarCheckItem32";
            this.commandBarCheckItem32.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.MailMergeFilters;
            // 
            // commandBarCheckItem33
            // 
            this.commandBarCheckItem33.Id = 297;
            this.commandBarCheckItem33.Name = "commandBarCheckItem33";
            this.commandBarCheckItem33.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.MailMergeSorting;
            // 
            // mailMergeCurrentRecordItem1
            // 
            this.mailMergeCurrentRecordItem1.Description = resources.GetString("mailMergeCurrentRecordItem1.Description");
            this.mailMergeCurrentRecordItem1.Edit = this.repositoryItemMailMergeCurrentRecordEdit1;
            this.mailMergeCurrentRecordItem1.Id = 298;
            this.mailMergeCurrentRecordItem1.Name = "mailMergeCurrentRecordItem1";
            this.mailMergeCurrentRecordItem1.Width = 90;
            // 
            // repositoryItemMailMergeCurrentRecordEdit1
            // 
            this.repositoryItemMailMergeCurrentRecordEdit1.AutoHeight = false;
            this.repositoryItemMailMergeCurrentRecordEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "Previous", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Prev, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleRight, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons1"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "Next", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Next, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons2"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "First", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.First, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleRight, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons3"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "Last", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Last, null, true)});
            this.repositoryItemMailMergeCurrentRecordEdit1.Name = "repositoryItemMailMergeCurrentRecordEdit1";
            // 
            // commandBarSubItem8
            // 
            this.commandBarSubItem8.Id = 299;
            this.commandBarSubItem8.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem13),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem14),
            new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem15)});
            this.commandBarSubItem8.Name = "commandBarSubItem8";
            this.commandBarSubItem8.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.commandBarSubItem8.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.FinishAndMerge;
            // 
            // commandBarItem13
            // 
            this.commandBarItem13.Id = 300;
            this.commandBarItem13.Name = "commandBarItem13";
            this.commandBarItem13.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SnapMailMergeExportDocument;
            // 
            // commandBarItem14
            // 
            this.commandBarItem14.Id = 301;
            this.commandBarItem14.Name = "commandBarItem14";
            this.commandBarItem14.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SnapMailMergePrint;
            // 
            // commandBarItem15
            // 
            this.commandBarItem15.Id = 302;
            this.commandBarItem15.Name = "commandBarItem15";
            this.commandBarItem15.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SnapMailMergePrintPreview;
            // 
            // headerFooterToolsRibbonPageCategory1
            // 
            this.headerFooterToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(176)))), ((int)(((byte)(35)))));
            this.headerFooterToolsRibbonPageCategory1.Control = this.snapControl;
            this.headerFooterToolsRibbonPageCategory1.Name = "headerFooterToolsRibbonPageCategory1";
            this.headerFooterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.headerFooterToolsDesignRibbonPage1});
            this.headerFooterToolsRibbonPageCategory1.Visible = false;
            // 
            // headerFooterToolsDesignRibbonPage1
            // 
            this.headerFooterToolsDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.headerFooterToolsDesignNavigationRibbonPageGroup1,
            this.headerFooterToolsDesignOptionsRibbonPageGroup1,
            this.headerFooterToolsDesignCloseRibbonPageGroup1});
            this.headerFooterToolsDesignRibbonPage1.Name = "headerFooterToolsDesignRibbonPage1";
            this.headerFooterToolsDesignRibbonPage1.Visible = false;
            // 
            // headerFooterToolsDesignNavigationRibbonPageGroup1
            // 
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageHeaderItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToNextHeaderFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPreviousHeaderFooterItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.toggleLinkToPreviousItem1);
            this.headerFooterToolsDesignNavigationRibbonPageGroup1.Name = "headerFooterToolsDesignNavigationRibbonPageGroup1";
            // 
            // headerFooterToolsDesignOptionsRibbonPageGroup1
            // 
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentFirstPageItem1);
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentOddAndEvenPagesItem1);
            this.headerFooterToolsDesignOptionsRibbonPageGroup1.Name = "headerFooterToolsDesignOptionsRibbonPageGroup1";
            // 
            // headerFooterToolsDesignCloseRibbonPageGroup1
            // 
            this.headerFooterToolsDesignCloseRibbonPageGroup1.ItemLinks.Add(this.closePageHeaderFooterItem1);
            this.headerFooterToolsDesignCloseRibbonPageGroup1.Name = "headerFooterToolsDesignCloseRibbonPageGroup1";
            // 
            // tableToolsRibbonPageCategory1
            // 
            this.tableToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(233)))), ((int)(((byte)(20)))));
            this.tableToolsRibbonPageCategory1.Control = this.snapControl;
            this.tableToolsRibbonPageCategory1.Name = "tableToolsRibbonPageCategory1";
            this.tableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.tableDesignRibbonPage1,
            this.tableLayoutRibbonPage1});
            this.tableToolsRibbonPageCategory1.Visible = false;
            // 
            // tableDesignRibbonPage1
            // 
            this.tableDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableStyleOptionsRibbonPageGroup1,
            this.tableStylesRibbonPageGroup1,
            this.tableCellStylesRibbonPageGroup1,
            this.tableDrawBordersRibbonPageGroup1});
            this.tableDesignRibbonPage1.Name = "tableDesignRibbonPage1";
            this.tableDesignRibbonPage1.Visible = false;
            // 
            // tableStyleOptionsRibbonPageGroup1
            // 
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastRowItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedRowsItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastColumnItem1);
            this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedColumnsItem1);
            this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
            // 
            // tableStylesRibbonPageGroup1
            // 
            this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableStyleItem1);
            this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
            // 
            // tableCellStylesRibbonPageGroup1
            // 
            this.tableCellStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableCellStyleItem1);
            this.tableCellStylesRibbonPageGroup1.Name = "tableCellStylesRibbonPageGroup1";
            // 
            // tableDrawBordersRibbonPageGroup1
            // 
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineStyleItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineWeightItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderColorItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBordersItem1);
            this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableCellsShadingItem1);
            this.tableDrawBordersRibbonPageGroup1.Name = "tableDrawBordersRibbonPageGroup1";
            // 
            // tableLayoutRibbonPage1
            // 
            this.tableLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableTableRibbonPageGroup1,
            this.tableRowsAndColumnsRibbonPageGroup1,
            this.tableMergeRibbonPageGroup1,
            this.tableCellSizeRibbonPageGroup1,
            this.tableAlignmentRibbonPageGroup1});
            this.tableLayoutRibbonPage1.Name = "tableLayoutRibbonPage1";
            this.tableLayoutRibbonPage1.Visible = false;
            // 
            // tableTableRibbonPageGroup1
            // 
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.selectTableElementsItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.toggleShowTableGridLinesItem1);
            this.tableTableRibbonPageGroup1.ItemLinks.Add(this.showTablePropertiesFormItem1);
            this.tableTableRibbonPageGroup1.Name = "tableTableRibbonPageGroup1";
            // 
            // tableRowsAndColumnsRibbonPageGroup1
            // 
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.deleteTableElementsItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowAboveItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowBelowItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToLeftItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToRightItem1);
            this.tableRowsAndColumnsRibbonPageGroup1.Name = "tableRowsAndColumnsRibbonPageGroup1";
            // 
            // tableMergeRibbonPageGroup1
            // 
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.mergeTableCellsItem1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.showSplitTableCellsForm1);
            this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.splitTableItem1);
            this.tableMergeRibbonPageGroup1.Name = "tableMergeRibbonPageGroup1";
            // 
            // tableCellSizeRibbonPageGroup1
            // 
            this.tableCellSizeRibbonPageGroup1.AllowTextClipping = false;
            this.tableCellSizeRibbonPageGroup1.ItemLinks.Add(this.toggleTableAutoFitItem1);
            this.tableCellSizeRibbonPageGroup1.Name = "tableCellSizeRibbonPageGroup1";
            // 
            // tableAlignmentRibbonPageGroup1
            // 
            this.tableAlignmentRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("tableAlignmentRibbonPageGroup1.Glyph")));
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.showTableOptionsFormItem1);
            this.tableAlignmentRibbonPageGroup1.Name = "tableAlignmentRibbonPageGroup1";
            // 
            // floatingPictureToolsRibbonPageCategory1
            // 
            this.floatingPictureToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(0)))), ((int)(((byte)(119)))));
            this.floatingPictureToolsRibbonPageCategory1.Control = this.snapControl;
            this.floatingPictureToolsRibbonPageCategory1.Name = "floatingPictureToolsRibbonPageCategory1";
            this.floatingPictureToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.floatingPictureToolsFormatPage1});
            this.floatingPictureToolsRibbonPageCategory1.Visible = false;
            // 
            // floatingPictureToolsFormatPage1
            // 
            this.floatingPictureToolsFormatPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.floatingPictureToolsShapeStylesPageGroup1,
            this.floatingPictureToolsArrangePageGroup1});
            this.floatingPictureToolsFormatPage1.Name = "floatingPictureToolsFormatPage1";
            this.floatingPictureToolsFormatPage1.Visible = false;
            // 
            // floatingPictureToolsShapeStylesPageGroup1
            // 
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectFillColorItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineColorItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.floatingPictureToolsShapeStylesPageGroup1.Name = "floatingPictureToolsShapeStylesPageGroup1";
            // 
            // floatingPictureToolsArrangePageGroup1
            // 
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectAlignmentItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectBringForwardSubItem1);
            this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectSendBackwardSubItem1);
            this.floatingPictureToolsArrangePageGroup1.Name = "floatingPictureToolsArrangePageGroup1";
            // 
            // dataToolsRibbonPageCategory1
            // 
            this.dataToolsRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(166)))), ((int)(((byte)(207)))));
            this.dataToolsRibbonPageCategory1.Control = this.snapControl;
            this.dataToolsRibbonPageCategory1.Name = "dataToolsRibbonPageCategory1";
            this.dataToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.appearanceRibbonPage1,
            this.snMergeFieldToolsRibbonPage1,
            this.groupToolsRibbonPage1,
            this.listToolsRibbonPage1,
            this.mailMergeRibbonPage1});
            // 
            // appearanceRibbonPage1
            // 
            this.appearanceRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.themesRibbonPageGroup1});
            this.appearanceRibbonPage1.Name = "appearanceRibbonPage1";
            // 
            // themesRibbonPageGroup1
            // 
            this.themesRibbonPageGroup1.ItemLinks.Add(this.themesGalleryBarItem1);
            this.themesRibbonPageGroup1.Name = "themesRibbonPageGroup1";
            // 
            // snMergeFieldToolsRibbonPage1
            // 
            this.snMergeFieldToolsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.dataShapingRibbonPageGroup1,
            this.snMergeFieldPropertiesRibbonPageGroup1});
            this.snMergeFieldToolsRibbonPage1.Name = "snMergeFieldToolsRibbonPage1";
            this.snMergeFieldToolsRibbonPage1.Visible = false;
            // 
            // dataShapingRibbonPageGroup1
            // 
            this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem2);
            this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem3);
            this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem4);
            this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem1);
            this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.filterPopupButtonItem1);
            this.dataShapingRibbonPageGroup1.Name = "dataShapingRibbonPageGroup1";
            // 
            // snMergeFieldPropertiesRibbonPageGroup1
            // 
            this.snMergeFieldPropertiesRibbonPageGroup1.ItemLinks.Add(this.propertiesBarButtonItem1);
            this.snMergeFieldPropertiesRibbonPageGroup1.Name = "snMergeFieldPropertiesRibbonPageGroup1";
            // 
            // groupToolsRibbonPage1
            // 
            this.groupToolsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.groupingRibbonPageGroup1});
            this.groupToolsRibbonPage1.Name = "groupToolsRibbonPage1";
            this.groupToolsRibbonPage1.Visible = false;
            // 
            // groupingRibbonPageGroup1
            // 
            this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem2);
            this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem3);
            this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarItem8);
            this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarItem9);
            this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem4);
            this.groupingRibbonPageGroup1.Name = "groupingRibbonPageGroup1";
            // 
            // listToolsRibbonPage1
            // 
            this.listToolsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.listHeaderAndFooterRibbonPageGroup1,
            this.listCommandsRibbonPageGroup1,
            this.listEditorRowLimitRibbonPageGroup1});
            this.listToolsRibbonPage1.Name = "listToolsRibbonPage1";
            this.listToolsRibbonPage1.Visible = false;
            // 
            // listHeaderAndFooterRibbonPageGroup1
            // 
            this.listHeaderAndFooterRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem5);
            this.listHeaderAndFooterRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem6);
            this.listHeaderAndFooterRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem7);
            this.listHeaderAndFooterRibbonPageGroup1.Name = "listHeaderAndFooterRibbonPageGroup1";
            // 
            // listCommandsRibbonPageGroup1
            // 
            this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem10);
            this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem11);
            this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem12);
            this.listCommandsRibbonPageGroup1.Name = "listCommandsRibbonPageGroup1";
            // 
            // listEditorRowLimitRibbonPageGroup1
            // 
            this.listEditorRowLimitRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup8);
            this.listEditorRowLimitRibbonPageGroup1.Name = "listEditorRowLimitRibbonPageGroup1";
            // 
            // mailMergeRibbonPage1
            // 
            this.mailMergeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.mailMergeRibbonPageGroup1,
            this.mailMergeCurrentRecordRibbonPageGroup1,
            this.finishAndMergeRibbonPageGroup1});
            this.mailMergeRibbonPage1.Name = "mailMergeRibbonPage1";
            // 
            // mailMergeRibbonPageGroup1
            // 
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.mailMergeDataSourceItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem32);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem33);
            this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
            // 
            // mailMergeCurrentRecordRibbonPageGroup1
            // 
            this.mailMergeCurrentRecordRibbonPageGroup1.ItemLinks.Add(this.mailMergeCurrentRecordItem1);
            this.mailMergeCurrentRecordRibbonPageGroup1.Name = "mailMergeCurrentRecordRibbonPageGroup1";
            // 
            // finishAndMergeRibbonPageGroup1
            // 
            this.finishAndMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem8);
            this.finishAndMergeRibbonPageGroup1.Name = "finishAndMergeRibbonPageGroup1";
            // 
            // chartRibbonPageCategory1
            // 
            this.chartRibbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(76)))), ((int)(((byte)(76)))));
            this.chartRibbonPageCategory1.Control = null;
            this.chartRibbonPageCategory1.Name = "chartRibbonPageCategory1";
            this.chartRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.createChartRibbonPage1});
            this.chartRibbonPageCategory1.Visible = false;
            // 
            // createChartRibbonPage1
            // 
            this.createChartRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.chartTypeRibbonPageGroup1,
            this.chartAppearanceRibbonPageGroup1,
            this.chartWizardRibbonPageGroup1});
            this.createChartRibbonPage1.Name = "createChartRibbonPage1";
            this.createChartRibbonPage1.Visible = false;
            // 
            // chartTypeRibbonPageGroup1
            // 
            this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createBarBaseItem1);
            this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createLineBaseItem1);
            this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createPieBaseItem1);
            this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createRotatedBarBaseItem1);
            this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createAreaBaseItem1);
            this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createOtherSeriesTypesBaseItem1);
            this.chartTypeRibbonPageGroup1.Name = "chartTypeRibbonPageGroup1";
            // 
            // chartAppearanceRibbonPageGroup1
            // 
            this.chartAppearanceRibbonPageGroup1.ItemLinks.Add(this.changePaletteGalleryBaseItem1);
            this.chartAppearanceRibbonPageGroup1.ItemLinks.Add(this.changeAppearanceGalleryBaseItem1);
            this.chartAppearanceRibbonPageGroup1.Name = "chartAppearanceRibbonPageGroup1";
            // 
            // chartWizardRibbonPageGroup1
            // 
            this.chartWizardRibbonPageGroup1.AllowMinimize = false;
            this.chartWizardRibbonPageGroup1.ItemLinks.Add(this.runWizardChartItem1);
            this.chartWizardRibbonPageGroup1.Name = "chartWizardRibbonPageGroup1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1,
            this.dataRibbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.commandBarItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // dataRibbonPageGroup1
            // 
            this.dataRibbonPageGroup1.ItemLinks.Add(this.commandBarItem2);
            this.dataRibbonPageGroup1.Name = "dataRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            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.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            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.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // insertRibbonPage1
            // 
            this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pagesRibbonPageGroup1,
            this.tablesRibbonPageGroup1,
            this.illustrationsRibbonPageGroup1,
            this.toolboxRibbonPageGroup1,
            this.linksRibbonPageGroup1,
            this.headerFooterRibbonPageGroup1,
            this.textRibbonPageGroup1,
            this.symbolsRibbonPageGroup1});
            this.insertRibbonPage1.Name = "insertRibbonPage1";
            // 
            // pagesRibbonPageGroup1
            // 
            this.pagesRibbonPageGroup1.AllowTextClipping = false;
            this.pagesRibbonPageGroup1.ItemLinks.Add(this.insertPageBreakItem21);
            this.pagesRibbonPageGroup1.Name = "pagesRibbonPageGroup1";
            // 
            // tablesRibbonPageGroup1
            // 
            this.tablesRibbonPageGroup1.AllowTextClipping = false;
            this.tablesRibbonPageGroup1.ItemLinks.Add(this.insertTableItem1);
            this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
            // 
            // illustrationsRibbonPageGroup1
            // 
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertPictureItem1);
            this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertFloatingPictureItem1);
            this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
            // 
            // toolboxRibbonPageGroup1
            // 
            this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem3);
            this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem4);
            this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem5);
            this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem6);
            this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem7);
            this.toolboxRibbonPageGroup1.Name = "toolboxRibbonPageGroup1";
            // 
            // linksRibbonPageGroup1
            // 
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertBookmarkItem1);
            this.linksRibbonPageGroup1.ItemLinks.Add(this.insertHyperlinkItem1);
            this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
            // 
            // headerFooterRibbonPageGroup1
            // 
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageHeaderItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageFooterItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageNumberItem1);
            this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageCountItem1);
            this.headerFooterRibbonPageGroup1.Name = "headerFooterRibbonPageGroup1";
            // 
            // textRibbonPageGroup1
            // 
            this.textRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("textRibbonPageGroup1.Glyph")));
            this.textRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxItem1);
            this.textRibbonPageGroup1.Name = "textRibbonPageGroup1";
            // 
            // symbolsRibbonPageGroup1
            // 
            this.symbolsRibbonPageGroup1.AllowTextClipping = false;
            this.symbolsRibbonPageGroup1.ItemLinks.Add(this.insertSymbolItem1);
            this.symbolsRibbonPageGroup1.Name = "symbolsRibbonPageGroup1";
            // 
            // pageLayoutRibbonPage1
            // 
            this.pageLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pageSetupRibbonPageGroup1,
            this.pageBackgroundRibbonPageGroup1});
            this.pageLayoutRibbonPage1.Name = "pageLayoutRibbonPage1";
            // 
            // pageSetupRibbonPageGroup1
            // 
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageMarginsItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageOrientationItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPaperKindItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionColumnsItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.insertBreakItem1);
            this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionLineNumberingItem1);
            this.pageSetupRibbonPageGroup1.Name = "pageSetupRibbonPageGroup1";
            // 
            // pageBackgroundRibbonPageGroup1
            // 
            this.pageBackgroundRibbonPageGroup1.AllowTextClipping = false;
            this.pageBackgroundRibbonPageGroup1.ItemLinks.Add(this.changePageColorItem1);
            this.pageBackgroundRibbonPageGroup1.Name = "pageBackgroundRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.documentViewsRibbonPageGroup1,
            this.showRibbonPageGroup1,
            this.zoomRibbonPageGroup1,
            this.viewRibbonPageGroup1,
            this.viewFieldsRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // documentViewsRibbonPageGroup1
            // 
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToSimpleViewItem1);
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToDraftViewItem1);
            this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToPrintLayoutViewItem1);
            this.documentViewsRibbonPageGroup1.Name = "documentViewsRibbonPageGroup1";
            // 
            // showRibbonPageGroup1
            // 
            this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowHorizontalRulerItem1);
            this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowVerticalRulerItem1);
            this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
            // 
            // zoomRibbonPageGroup1
            // 
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomOutItem1);
            this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomInItem1);
            this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
            // 
            // viewRibbonPageGroup1
            // 
            this.viewRibbonPageGroup1.ItemLinks.Add(this.snapBarToolbarsListItem1);
            this.viewRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem1);
            this.viewRibbonPageGroup1.Name = "viewRibbonPageGroup1";
            // 
            // viewFieldsRibbonPageGroup1
            // 
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.toggleFieldHighlightingItem1);
            this.viewFieldsRibbonPageGroup1.Name = "viewFieldsRibbonPageGroup1";
            // 
            // reviewRibbonPage1
            // 
            this.reviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.documentProofingRibbonPageGroup1});
            this.reviewRibbonPage1.Name = "reviewRibbonPage1";
            // 
            // documentProofingRibbonPageGroup1
            // 
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.checkSpellingItem1);
            this.documentProofingRibbonPageGroup1.Name = "documentProofingRibbonPageGroup1";
            // 
            // referencesRibbonPage1
            // 
            this.referencesRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.tableOfContentsRibbonPageGroup1,
            this.captionsRibbonPageGroup1});
            this.referencesRibbonPage1.Name = "referencesRibbonPage1";
            // 
            // tableOfContentsRibbonPageGroup1
            // 
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfContentsItem1);
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfContentsItem1);
            this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.addParagraphsToTableOfContentItem1);
            this.tableOfContentsRibbonPageGroup1.Name = "tableOfContentsRibbonPageGroup1";
            // 
            // captionsRibbonPageGroup1
            // 
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertCaptionPlaceholderItem1);
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfFiguresPlaceholderItem1);
            this.captionsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfFiguresItem1);
            this.captionsRibbonPageGroup1.Name = "captionsRibbonPageGroup1";
            // 
            // snapDockManager1
            // 
            this.snapDockManager1.Form = this;
            this.snapDockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.panelContainer1});
            this.snapDockManager1.SnapControl = this.snapControl;
            this.snapDockManager1.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"});
            // 
            // panelContainer1
            // 
            this.panelContainer1.Controls.Add(this.fieldListDockPanel1);
            this.panelContainer1.Controls.Add(this.reportExplorerDockPanel1);
            this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.panelContainer1.ID = new System.Guid("4359aa12-0d16-492b-87a6-1dba350bde7e");
            this.panelContainer1.Location = new System.Drawing.Point(620, 142);
            this.panelContainer1.Name = "panelContainer1";
            this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
            this.panelContainer1.Size = new System.Drawing.Size(200, 400);
            this.panelContainer1.Text = "panelContainer1";
            // 
            // fieldListDockPanel1
            // 
            this.fieldListDockPanel1.Controls.Add(this.fieldListDockPanel1_Container);
            this.fieldListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.fieldListDockPanel1.ID = new System.Guid("4ff32304-9e6f-4700-8fd4-fe84d1bb8e90");
            this.fieldListDockPanel1.Location = new System.Drawing.Point(0, 0);
            this.fieldListDockPanel1.Name = "fieldListDockPanel1";
            this.fieldListDockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
            this.fieldListDockPanel1.Size = new System.Drawing.Size(200, 200);
            this.fieldListDockPanel1.SnapControl = this.snapControl;
            // 
            // fieldListDockPanel1_Container
            // 
            this.fieldListDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
            this.fieldListDockPanel1_Container.Name = "fieldListDockPanel1_Container";
            this.fieldListDockPanel1_Container.Size = new System.Drawing.Size(192, 173);
            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("371b03d1-84fb-49d8-a3bc-cc925dcdc072");
            this.reportExplorerDockPanel1.Location = new System.Drawing.Point(0, 200);
            this.reportExplorerDockPanel1.Name = "reportExplorerDockPanel1";
            this.reportExplorerDockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
            this.reportExplorerDockPanel1.Size = new System.Drawing.Size(200, 200);
            this.reportExplorerDockPanel1.SnapControl = this.snapControl;
            // 
            // 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(192, 173);
            this.reportExplorerDockPanel1_Container.TabIndex = 0;
            // 
            // snapDocumentManager1
            // 
            this.snapDocumentManager1.ClientControl = this.snapControl;
            this.snapDocumentManager1.ShowThumbnailsInTaskBar = DevExpress.Utils.DefaultBoolean.False;
            this.snapDocumentManager1.View = this.noDocumentsView1;
            this.snapDocumentManager1.ViewCollection.AddRange(new DevExpress.XtraBars.Docking2010.Views.BaseView[] {
            this.noDocumentsView1});
            // 
            // snapBarController1
            // 
            this.snapBarController1.BarItems.Add(this.undoItem1);
            this.snapBarController1.BarItems.Add(this.redoItem1);
            this.snapBarController1.BarItems.Add(this.fileNewItem1);
            this.snapBarController1.BarItems.Add(this.fileOpenItem1);
            this.snapBarController1.BarItems.Add(this.fileSaveItem1);
            this.snapBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.snapBarController1.BarItems.Add(this.commandBarItem1);
            this.snapBarController1.BarItems.Add(this.quickPrintItem1);
            this.snapBarController1.BarItems.Add(this.printItem1);
            this.snapBarController1.BarItems.Add(this.printPreviewItem1);
            this.snapBarController1.BarItems.Add(this.commandBarItem2);
            this.snapBarController1.BarItems.Add(this.pasteItem1);
            this.snapBarController1.BarItems.Add(this.cutItem1);
            this.snapBarController1.BarItems.Add(this.copyItem1);
            this.snapBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.snapBarController1.BarItems.Add(this.changeFontNameItem1);
            this.snapBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.snapBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.snapBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.snapBarController1.BarItems.Add(this.changeFontColorItem1);
            this.snapBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.snapBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.snapBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.snapBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.snapBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.snapBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.snapBarController1.BarItems.Add(this.clearFormattingItem1);
            this.snapBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.snapBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.snapBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.snapBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.snapBarController1.BarItems.Add(this.increaseIndentItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.snapBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.snapBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.snapBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.snapBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.snapBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.snapBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.snapBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.snapBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.snapBarController1.BarItems.Add(this.findItem1);
            this.snapBarController1.BarItems.Add(this.replaceItem1);
            this.snapBarController1.BarItems.Add(this.insertPageBreakItem21);
            this.snapBarController1.BarItems.Add(this.insertTableItem1);
            this.snapBarController1.BarItems.Add(this.insertPictureItem1);
            this.snapBarController1.BarItems.Add(this.insertFloatingPictureItem1);
            this.snapBarController1.BarItems.Add(this.commandBarItem3);
            this.snapBarController1.BarItems.Add(this.commandBarItem4);
            this.snapBarController1.BarItems.Add(this.commandBarItem5);
            this.snapBarController1.BarItems.Add(this.commandBarItem6);
            this.snapBarController1.BarItems.Add(this.commandBarItem7);
            this.snapBarController1.BarItems.Add(this.insertBookmarkItem1);
            this.snapBarController1.BarItems.Add(this.insertHyperlinkItem1);
            this.snapBarController1.BarItems.Add(this.editPageHeaderItem1);
            this.snapBarController1.BarItems.Add(this.editPageFooterItem1);
            this.snapBarController1.BarItems.Add(this.insertPageNumberItem1);
            this.snapBarController1.BarItems.Add(this.insertPageCountItem1);
            this.snapBarController1.BarItems.Add(this.insertTextBoxItem1);
            this.snapBarController1.BarItems.Add(this.insertSymbolItem1);
            this.snapBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
            this.snapBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
            this.snapBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
            this.snapBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
            this.snapBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
            this.snapBarController1.BarItems.Add(this.showPageMarginsSetupFormItem1);
            this.snapBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
            this.snapBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
            this.snapBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
            this.snapBarController1.BarItems.Add(this.changeSectionPaperKindItem1);
            this.snapBarController1.BarItems.Add(this.changeSectionColumnsItem1);
            this.snapBarController1.BarItems.Add(this.setSectionOneColumnItem1);
            this.snapBarController1.BarItems.Add(this.setSectionTwoColumnsItem1);
            this.snapBarController1.BarItems.Add(this.setSectionThreeColumnsItem1);
            this.snapBarController1.BarItems.Add(this.showColumnsSetupFormItem1);
            this.snapBarController1.BarItems.Add(this.insertBreakItem1);
            this.snapBarController1.BarItems.Add(this.insertPageBreakItem1);
            this.snapBarController1.BarItems.Add(this.insertColumnBreakItem1);
            this.snapBarController1.BarItems.Add(this.insertSectionBreakNextPageItem1);
            this.snapBarController1.BarItems.Add(this.insertSectionBreakEvenPageItem1);
            this.snapBarController1.BarItems.Add(this.insertSectionBreakOddPageItem1);
            this.snapBarController1.BarItems.Add(this.changeSectionLineNumberingItem1);
            this.snapBarController1.BarItems.Add(this.setSectionLineNumberingNoneItem1);
            this.snapBarController1.BarItems.Add(this.setSectionLineNumberingContinuousItem1);
            this.snapBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewPageItem1);
            this.snapBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewSectionItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphSuppressLineNumbersItem1);
            this.snapBarController1.BarItems.Add(this.showLineNumberingFormItem1);
            this.snapBarController1.BarItems.Add(this.changePageColorItem1);
            this.snapBarController1.BarItems.Add(this.switchToSimpleViewItem1);
            this.snapBarController1.BarItems.Add(this.switchToDraftViewItem1);
            this.snapBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
            this.snapBarController1.BarItems.Add(this.toggleShowHorizontalRulerItem1);
            this.snapBarController1.BarItems.Add(this.toggleShowVerticalRulerItem1);
            this.snapBarController1.BarItems.Add(this.zoomOutItem1);
            this.snapBarController1.BarItems.Add(this.zoomInItem1);
            this.snapBarController1.BarItems.Add(this.snapBarToolbarsListItem1);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem1);
            this.snapBarController1.BarItems.Add(this.showAllFieldCodesItem1);
            this.snapBarController1.BarItems.Add(this.showAllFieldResultsItem1);
            this.snapBarController1.BarItems.Add(this.toggleFieldHighlightingItem1);
            this.snapBarController1.BarItems.Add(this.goToPageHeaderItem1);
            this.snapBarController1.BarItems.Add(this.goToPageFooterItem1);
            this.snapBarController1.BarItems.Add(this.goToNextHeaderFooterItem1);
            this.snapBarController1.BarItems.Add(this.goToPreviousHeaderFooterItem1);
            this.snapBarController1.BarItems.Add(this.toggleLinkToPreviousItem1);
            this.snapBarController1.BarItems.Add(this.toggleDifferentFirstPageItem1);
            this.snapBarController1.BarItems.Add(this.toggleDifferentOddAndEvenPagesItem1);
            this.snapBarController1.BarItems.Add(this.closePageHeaderFooterItem1);
            this.snapBarController1.BarItems.Add(this.toggleFirstRowItem1);
            this.snapBarController1.BarItems.Add(this.toggleLastRowItem1);
            this.snapBarController1.BarItems.Add(this.toggleBandedRowsItem1);
            this.snapBarController1.BarItems.Add(this.toggleFirstColumnItem1);
            this.snapBarController1.BarItems.Add(this.toggleLastColumnItem1);
            this.snapBarController1.BarItems.Add(this.toggleBandedColumnsItem1);
            this.snapBarController1.BarItems.Add(this.galleryChangeTableStyleItem1);
            this.snapBarController1.BarItems.Add(this.galleryChangeTableCellStyleItem1);
            this.snapBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
            this.snapBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
            this.snapBarController1.BarItems.Add(this.changeTableBorderColorItem1);
            this.snapBarController1.BarItems.Add(this.changeTableBordersItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
            this.snapBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
            this.snapBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
            this.snapBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
            this.snapBarController1.BarItems.Add(this.selectTableElementsItem1);
            this.snapBarController1.BarItems.Add(this.selectTableCellItem1);
            this.snapBarController1.BarItems.Add(this.selectTableColumnItem1);
            this.snapBarController1.BarItems.Add(this.selectTableRowItem1);
            this.snapBarController1.BarItems.Add(this.selectTableItem1);
            this.snapBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
            this.snapBarController1.BarItems.Add(this.deleteTableElementsItem1);
            this.snapBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
            this.snapBarController1.BarItems.Add(this.deleteTableColumnsItem1);
            this.snapBarController1.BarItems.Add(this.deleteTableRowsItem1);
            this.snapBarController1.BarItems.Add(this.deleteTableItem1);
            this.snapBarController1.BarItems.Add(this.insertTableRowAboveItem1);
            this.snapBarController1.BarItems.Add(this.insertTableRowBelowItem1);
            this.snapBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
            this.snapBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
            this.snapBarController1.BarItems.Add(this.mergeTableCellsItem1);
            this.snapBarController1.BarItems.Add(this.showSplitTableCellsForm1);
            this.snapBarController1.BarItems.Add(this.splitTableItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.showTableOptionsFormItem1);
            this.snapBarController1.BarItems.Add(this.checkSpellingItem1);
            this.snapBarController1.BarItems.Add(this.insertTableOfContentsItem1);
            this.snapBarController1.BarItems.Add(this.updateTableOfContentsItem1);
            this.snapBarController1.BarItems.Add(this.addParagraphsToTableOfContentItem1);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem1);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem2);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem3);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem4);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem5);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem6);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem7);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem8);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem9);
            this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem10);
            this.snapBarController1.BarItems.Add(this.insertCaptionPlaceholderItem1);
            this.snapBarController1.BarItems.Add(this.insertFiguresCaptionItems1);
            this.snapBarController1.BarItems.Add(this.insertTablesCaptionItems1);
            this.snapBarController1.BarItems.Add(this.insertEquationsCaptionItems1);
            this.snapBarController1.BarItems.Add(this.insertTableOfFiguresPlaceholderItem1);
            this.snapBarController1.BarItems.Add(this.insertTableOfFiguresItems1);
            this.snapBarController1.BarItems.Add(this.insertTableOfTablesItems1);
            this.snapBarController1.BarItems.Add(this.insertTableOfEquationsItems1);
            this.snapBarController1.BarItems.Add(this.updateTableOfFiguresItem1);
            this.snapBarController1.BarItems.Add(this.changeFloatingObjectFillColorItem1);
            this.snapBarController1.BarItems.Add(this.changeFloatingObjectOutlineColorItem1);
            this.snapBarController1.BarItems.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.snapBarController1.BarItems.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectSquareTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectTightTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectThroughTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectTopAndBottomTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectBehindTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectInFrontOfTextWrapTypeItem1);
            this.snapBarController1.BarItems.Add(this.changeFloatingObjectAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectTopLeftAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectTopCenterAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectTopRightAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectMiddleLeftAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectMiddleCenterAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectMiddleRightAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectBottomLeftAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectBottomCenterAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.setFloatingObjectBottomRightAlignmentItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectBringForwardSubItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectBringForwardItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectBringToFrontItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectBringInFrontOfTextItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectSendBackwardSubItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectSendBackwardItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectSendToBackItem1);
            this.snapBarController1.BarItems.Add(this.floatingObjectSendBehindTextItem1);
            this.snapBarController1.BarItems.Add(this.themesGalleryBarItem1);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem2);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem3);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem4);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem1);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem5);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem6);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem7);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem8);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem9);
            this.snapBarController1.BarItems.Add(this.filterPopupButtonItem1);
            this.snapBarController1.BarItems.Add(this.propertiesBarButtonItem1);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem2);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem10);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem11);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem3);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem12);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem13);
            this.snapBarController1.BarItems.Add(this.commandBarItem8);
            this.snapBarController1.BarItems.Add(this.commandBarItem9);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem4);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem14);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem15);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem16);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem17);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem18);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem19);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem20);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem5);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem21);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem22);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem6);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem23);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem24);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem7);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem25);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem26);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem27);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem28);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem29);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem30);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem31);
            this.snapBarController1.BarItems.Add(this.commandBarItem10);
            this.snapBarController1.BarItems.Add(this.commandBarItem11);
            this.snapBarController1.BarItems.Add(this.commandBarItem12);
            this.snapBarController1.BarItems.Add(this.changeEditorRowLimitItem1);
            this.snapBarController1.BarItems.Add(this.createBarBaseItem1);
            this.snapBarController1.BarItems.Add(this.createLineBaseItem1);
            this.snapBarController1.BarItems.Add(this.createPieBaseItem1);
            this.snapBarController1.BarItems.Add(this.createRotatedBarBaseItem1);
            this.snapBarController1.BarItems.Add(this.createAreaBaseItem1);
            this.snapBarController1.BarItems.Add(this.createOtherSeriesTypesBaseItem1);
            this.snapBarController1.BarItems.Add(this.changePaletteGalleryBaseItem1);
            this.snapBarController1.BarItems.Add(this.changeAppearanceGalleryBaseItem1);
            this.snapBarController1.BarItems.Add(this.runWizardChartItem1);
            this.snapBarController1.BarItems.Add(this.mailMergeDataSourceItem1);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem32);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem33);
            this.snapBarController1.BarItems.Add(this.mailMergeCurrentRecordItem1);
            this.snapBarController1.BarItems.Add(this.commandBarSubItem8);
            this.snapBarController1.BarItems.Add(this.commandBarItem13);
            this.snapBarController1.BarItems.Add(this.commandBarItem14);
            this.snapBarController1.BarItems.Add(this.commandBarItem15);
            this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.headerFooterToolsRibbonPageCategory1));
            this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.tableToolsRibbonPageCategory1));
            this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.floatingPictureToolsRibbonPageCategory1));
            this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.dataToolsRibbonPageCategory1));
            this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.chartRibbonPageCategory1));
            this.snapBarController1.Control = this.snapControl;
            this.snapBarController1.RibbonControl = this.ribbonControl1;
            this.snapBarController1.SnapDockManager = this.snapDockManager1;
            // 
            // SnapReportEditor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.snapControl);
            this.Controls.Add(this.panelContainer1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "SnapReportEditor";
            this.Size = new System.Drawing.Size(820, 542);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemEditorRowLimitEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).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.repositoryItemMailMergeCurrentRecordEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapDockManager1)).EndInit();
            this.panelContainer1.ResumeLayout(false);
            this.fieldListDockPanel1.ResumeLayout(false);
            this.reportExplorerDockPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.snapDocumentManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.noDocumentsView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #35
0
        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.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = 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.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            this.iWeb = new DevExpress.XtraBars.BarButtonItem();
            this.iAbout = new DevExpress.XtraBars.BarButtonItem();
            this.iCopy = new DevExpress.XtraBars.BarButtonItem();
            this.iCut = new DevExpress.XtraBars.BarButtonItem();
            this.iPaste = new DevExpress.XtraBars.BarButtonItem();
            this.iClear = new DevExpress.XtraBars.BarButtonItem();
            this.iFont = new DevExpress.XtraBars.BarButtonItem();
            this.beiFontSize = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.bbiFontColorPopup = new DevExpress.XtraBars.BarButtonItem();
            this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.pmAppMain = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.idNew = new DevExpress.XtraBars.BarButtonItem();
            this.pmNew = new DevExpress.XtraBars.PopupMenu(this.components);
            this.iNew = new DevExpress.XtraBars.BarButtonItem();
            this.iTemplate = new DevExpress.XtraBars.BarButtonItem();
            this.iOpen = new DevExpress.XtraBars.BarButtonItem();
            this.sbiSave = new DevExpress.XtraBars.BarSubItem();
            this.iSave = new DevExpress.XtraBars.BarButtonItem();
            this.iSaveAs = new DevExpress.XtraBars.BarButtonItem();
            this.iPrint = new DevExpress.XtraBars.BarButtonItem();
            this.iClose = new DevExpress.XtraBars.BarButtonItem();
            this.iExit = new DevExpress.XtraBars.BarButtonItem();
            this.imageCollection2 = new DevExpress.Utils.ImageCollection(this.components);
            this.iReplace = new DevExpress.XtraBars.BarButtonItem();
            this.iFind = new DevExpress.XtraBars.BarButtonItem();
            this.iFontColor = new DevExpress.XtraBars.BarButtonItem();
            this.siPosition = new DevExpress.XtraBars.BarButtonItem();
            this.siModified = new DevExpress.XtraBars.BarButtonItem();
            this.siDocName = new DevExpress.XtraBars.BarStaticItem();
            this.sbiPaste = new DevExpress.XtraBars.BarSubItem();
            this.iPasteSpecial = new DevExpress.XtraBars.BarButtonItem();
            this.sbiFind = new DevExpress.XtraBars.BarSubItem();
            this.iLargeUndo = new DevExpress.XtraBars.BarLargeButtonItem();
            this.iPaintStyle = new DevExpress.XtraBars.BarSubItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            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.barButtonItem_Select = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ZoomIn = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ZoomOut = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Pan = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ProView = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_NextView = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_FullView = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Identify = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Attribute = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Find = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem_layer = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barSubItem_AddGeoData = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItem_AddImageData = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_AddVectorData = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_DrawingToolBox = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ZoomActualSize = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemTrackBar();
            this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ImageAnalyseToolbox = new DevExpress.XtraBars.BarButtonItem();
            this.barListItem1 = new DevExpress.XtraBars.BarListItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_MapCoord = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_ScreenCoord = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_Reference = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_Unit = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            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.openTemplate = new DevExpress.XtraBars.BarButtonItem();
            this.pageZoomIn = new DevExpress.XtraBars.BarButtonItem();
            this.pageZoomOut = new DevExpress.XtraBars.BarButtonItem();
            this.pagePan = new DevExpress.XtraBars.BarButtonItem();
            this.pagePreView = new DevExpress.XtraBars.BarButtonItem();
            this.pageAfterView = new DevExpress.XtraBars.BarButtonItem();
            this.commonPoint = new DevExpress.XtraBars.BarButtonItem();
            this.commonLine = new DevExpress.XtraBars.BarButtonItem();
            this.commonPolygon = new DevExpress.XtraBars.BarButtonItem();
            this.selectMarkTool = new DevExpress.XtraBars.BarButtonItem();
            this.textMark = new DevExpress.XtraBars.BarButtonItem();
            this.pageFullExtent = new DevExpress.XtraBars.BarButtonItem();
            this.pageRealSize = new DevExpress.XtraBars.BarButtonItem();
            this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
            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.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageLayoutPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.pagelayoutButtons = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.markToolPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
            this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.repositoryItemPictureEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
            this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
            this.pmMain = new DevExpress.XtraBars.PopupMenu(this.components);
            this.imageCollection3 = new DevExpress.Utils.ImageCollection(this.components);
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel_Drawing = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel5_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.simpleButton_DrawLine = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Text = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawAny = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawCurve = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Rect = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawElement_Polygon = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawPoint = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_SelectElement = new DevExpress.XtraEditors.SimpleButton();
            this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel_Overview = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel3_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.dockPanel2 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.dockPanel_ImageAnalyse = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel4_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer1 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.checkButton_FlashLayer = new DevExpress.XtraEditors.CheckButton();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.pictureEdit4 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Gamma = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_FlashTime = new DevExpress.XtraEditors.SpinEdit();
            this.spinEdit_Gamma = new DevExpress.XtraEditors.SpinEdit();
            this.pictureEdit3 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Transparency = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_Transparency = new DevExpress.XtraEditors.SpinEdit();
            this.pictureEdit2 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Contrast = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_Contrast = new DevExpress.XtraEditors.SpinEdit();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Bright = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_Bright = new DevExpress.XtraEditors.SpinEdit();
            this.navBarGroupControlContainer2 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
            this.xtraTabControl = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_Map = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage_Layout = new DevExpress.XtraTab.XtraTabPage();
            this.imageCollection4 = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.iUndo = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.barButtonItem23 = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItemLayers = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonAddImage = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonAddShp = new DevExpress.XtraBars.BarButtonItem();
            this.axusMapControl1 = new AxusMapControlLib.AxusMapControl();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmAppMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel_Drawing.SuspendLayout();
            this.dockPanel5_Container.SuspendLayout();
            this.panelContainer1.SuspendLayout();
            this.dockPanel_Overview.SuspendLayout();
            this.dockPanel2.SuspendLayout();
            this.dockPanel_ImageAnalyse.SuspendLayout();
            this.dockPanel4_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.navBarControl1.SuspendLayout();
            this.navBarGroupControlContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_FlashTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Gamma.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Transparency.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Contrast.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Bright.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).BeginInit();
            this.xtraTabControl.SuspendLayout();
            this.xtraTabPage_Map.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.axusMapControl1)).BeginInit();
            this.SuspendLayout();
            // 
            // iWeb
            // 
            this.iWeb.Id = 253;
            this.iWeb.Name = "iWeb";
            // 
            // iAbout
            // 
            this.iAbout.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.iAbout.Caption = "&About";
            this.iAbout.CategoryGuid = new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b");
            this.iAbout.Description = "Displays the description of this program.";
            this.iAbout.Hint = "Displays the About dialog";
            this.iAbout.Id = 22;
            this.iAbout.ImageIndex = 28;
            this.iAbout.Name = "iAbout";
            this.iAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAbout_ItemClick);
            // 
            // iCopy
            // 
            this.iCopy.Id = 249;
            this.iCopy.Name = "iCopy";
            // 
            // iCut
            // 
            this.iCut.Id = 248;
            this.iCut.Name = "iCut";
            // 
            // iPaste
            // 
            this.iPaste.Id = 250;
            this.iPaste.Name = "iPaste";
            // 
            // iClear
            // 
            this.iClear.Id = 251;
            this.iClear.Name = "iClear";
            // 
            // iFont
            // 
            this.iFont.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.iFont.Caption = "字体...";
            this.iFont.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iFont.Description = "Changes the font and character spacing formats of the selected text.";
            this.iFont.Hint = "Font Dialog";
            this.iFont.Id = 17;
            this.iFont.ImageIndex = 4;
            this.iFont.Name = "iFont";
            this.iFont.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // beiFontSize
            // 
            this.beiFontSize.Caption = "Font Size";
            this.beiFontSize.Edit = this.repositoryItemSpinEdit1;
            this.beiFontSize.Hint = "Font Size";
            this.beiFontSize.Id = 27;
            this.beiFontSize.Name = "beiFontSize";
            // 
            // 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[] {
            50,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            6,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // bbiFontColorPopup
            // 
            this.bbiFontColorPopup.ActAsDropDown = true;
            this.bbiFontColorPopup.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.bbiFontColorPopup.Caption = "Font Color";
            this.bbiFontColorPopup.Description = "Formats the selected text with the color you click";
            this.bbiFontColorPopup.DropDownControl = this.popupControlContainer1;
            this.bbiFontColorPopup.Hint = "Formats the selected text with the color you click";
            this.bbiFontColorPopup.Id = 36;
            this.bbiFontColorPopup.Name = "bbiFontColorPopup";
            // 
            // popupControlContainer1
            // 
            this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainer1.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainer1.Name = "popupControlContainer1";
            this.popupControlContainer1.Size = new System.Drawing.Size(200, 100);
            this.popupControlContainer1.TabIndex = 0;
            this.popupControlContainer1.Visible = false;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.pmAppMain;
            this.ribbonControl1.ApplicationButtonText = null;
            this.ribbonControl1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            new DevExpress.XtraBars.BarManagerCategory("File", new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f")),
            new DevExpress.XtraBars.BarManagerCategory("Edit", new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1")),
            new DevExpress.XtraBars.BarManagerCategory("Format", new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258")),
            new DevExpress.XtraBars.BarManagerCategory("Help", new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b")),
            new DevExpress.XtraBars.BarManagerCategory("Status", new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d"))});
            // 
            // 
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.ExpandCollapseItem.Name = "";
            this.ribbonControl1.Images = this.imageCollection2;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.iOpen,
            this.iSave,
            this.iReplace,
            this.idNew,
            this.iClose,
            this.iSaveAs,
            this.iPrint,
            this.iExit,
            this.iCut,
            this.iCopy,
            this.iPaste,
            this.iClear,
            this.iFind,
            this.iFont,
            this.iWeb,
            this.iAbout,
            this.iFontColor,
            this.siPosition,
            this.siModified,
            this.siDocName,
            this.sbiSave,
            this.sbiPaste,
            this.sbiFind,
            this.iPasteSpecial,
            this.iNew,
            this.iLargeUndo,
            this.iTemplate,
            this.iPaintStyle,
            this.rgbiSkins,
            this.beiFontSize,
            this.bbiFontColorPopup,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barButtonItem_Select,
            this.barButtonItem_ZoomIn,
            this.barButtonItem_ZoomOut,
            this.barButtonItem_Pan,
            this.barButtonItem_ProView,
            this.barButtonItem_NextView,
            this.barButtonItem_FullView,
            this.barButtonItem_Identify,
            this.barButtonItem_Attribute,
            this.barButtonItem_Find,
            this.barEditItem_layer,
            this.barSubItem_AddGeoData,
            this.barButtonItem_AddVectorData,
            this.barButtonItem_AddImageData,
            this.barButtonItem_DrawingToolBox,
            this.barButtonItem_ZoomActualSize,
            this.barEditItem3,
            this.barButtonItem_Refresh,
            this.barButtonItem_ImageAnalyseToolbox,
            this.barListItem1,
            this.barStaticItem1,
            this.barStaticItem_MapCoord,
            this.barStaticItem_ScreenCoord,
            this.barStaticItem_Reference,
            this.barStaticItem_Unit,
            this.barButtonItem5,
            this.barButtonItem6,
            this.barButtonItem7,
            this.barButtonItem8,
            this.barButtonItem9,
            this.openTemplate,
            this.pageZoomIn,
            this.pageZoomOut,
            this.pagePan,
            this.pagePreView,
            this.pageAfterView,
            this.commonPoint,
            this.commonLine,
            this.commonPolygon,
            this.selectMarkTool,
            this.textMark,
            this.pageFullExtent,
            this.pageRealSize,
            this.barEditItemLayers,
            this.barSubItem2,
            this.barButtonAddImage,
            this.barButtonAddShp});
            this.ribbonControl1.LargeImages = this.imageCollection1;
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 263;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Right;
            this.ribbonControl1.PageHeaderItemLinks.Add(this.iAbout);
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPageLayoutPage,
            this.markToolPage});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1,
            this.repositoryItemPictureEdit1,
            this.repositoryItemSpinEdit2,
            this.repositoryItemButtonEdit1,
            this.repositoryItemComboBox1,
            this.repositoryItemComboBox2,
            this.repositoryItemComboBox3,
            this.repositoryItemImageEdit1,
            this.repositoryItemPictureEdit2,
            this.repositoryItemPictureEdit3,
            this.repositoryItemTrackBar1,
            this.repositoryItemComboBox4,
            this.repositoryItemButtonEdit2,
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2});
            this.ribbonControl1.SelectedPage = this.ribbonPage1;
            this.ribbonControl1.Size = new System.Drawing.Size(1107, 148);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem5);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem6);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem7);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem9);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem8);
            this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            this.ribbonControl1.TransparentEditors = true;
            this.ribbonControl1.ApplicationButtonDoubleClick += new System.EventHandler(this.ribbonControl1_ApplicationButtonDoubleClick);
            // 
            // pmAppMain
            // 
            this.pmAppMain.ItemLinks.Add(this.idNew);
            this.pmAppMain.ItemLinks.Add(this.iOpen);
            this.pmAppMain.ItemLinks.Add(this.sbiSave, true);
            this.pmAppMain.ItemLinks.Add(this.iPrint);
            this.pmAppMain.ItemLinks.Add(this.iClose, true);
            this.pmAppMain.ItemLinks.Add(this.iExit);
            this.pmAppMain.Name = "pmAppMain";
            this.pmAppMain.Ribbon = this.ribbonControl1;
            this.pmAppMain.ShowRightPane = true;
            // 
            // idNew
            // 
            this.idNew.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.idNew.Caption = "新建";
            this.idNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.idNew.Description = "Creates a new, blank file.";
            this.idNew.DropDownControl = this.pmNew;
            this.idNew.Hint = "Creates a new, blank file";
            this.idNew.Id = 0;
            this.idNew.LargeImageIndex = 31;
            this.idNew.Name = "idNew";
            this.idNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.idNew_ItemClick);
            // 
            // pmNew
            // 
            this.pmNew.ItemLinks.Add(this.iNew);
            this.pmNew.ItemLinks.Add(this.iTemplate);
            this.pmNew.Name = "pmNew";
            this.pmNew.Ribbon = this.ribbonControl1;
            // 
            // iNew
            // 
            this.iNew.Caption = "&New";
            this.iNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iNew.Description = "Creates a new, blank file.";
            this.iNew.Hint = "Creates a new, blank file";
            this.iNew.Id = 0;
            this.iNew.ImageIndex = 6;
            this.iNew.LargeImageIndex = 0;
            this.iNew.Name = "iNew";
            this.iNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.idNew_ItemClick);
            // 
            // iTemplate
            // 
            this.iTemplate.Caption = "Template...";
            this.iTemplate.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iTemplate.Description = "Creates a new template";
            this.iTemplate.Enabled = false;
            this.iTemplate.Hint = "Creates a new template";
            this.iTemplate.Id = 1;
            this.iTemplate.ImageIndex = 6;
            this.iTemplate.Name = "iTemplate";
            // 
            // iOpen
            // 
            this.iOpen.Caption = "打开...";
            this.iOpen.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iOpen.Description = "Opens a file.";
            this.iOpen.Hint = "Open a file";
            this.iOpen.Id = 1;
            this.iOpen.ImageIndex = 7;
            this.iOpen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
            this.iOpen.Name = "iOpen";
            this.iOpen.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpen_ItemClick);
            // 
            // sbiSave
            // 
            this.sbiSave.Caption = "保存";
            this.sbiSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.sbiSave.Description = "Saves the active document";
            this.sbiSave.Hint = "Saves the active document";
            this.sbiSave.Id = 0;
            this.sbiSave.ImageIndex = 21;
            this.sbiSave.LargeImageIndex = 32;
            this.sbiSave.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.iSaveAs)});
            this.sbiSave.Name = "sbiSave";
            // 
            // iSave
            // 
            this.iSave.Caption = "保存";
            this.iSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iSave.Description = "Saves the active document with its current file name.";
            this.iSave.Hint = "Saves the active document with its current file name";
            this.iSave.Id = 3;
            this.iSave.ImageIndex = 10;
            this.iSave.LargeImageIndex = 7;
            this.iSave.Name = "iSave";
            this.iSave.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.iSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSave_ItemClick);
            // 
            // iSaveAs
            // 
            this.iSaveAs.Caption = "保存为...";
            this.iSaveAs.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iSaveAs.Description = "Saves the active document with a different file name.";
            this.iSaveAs.Hint = "Saves the active document with a different file name";
            this.iSaveAs.Id = 4;
            this.iSaveAs.ImageIndex = 21;
            this.iSaveAs.LargeImageIndex = 2;
            this.iSaveAs.Name = "iSaveAs";
            this.iSaveAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveAs_ItemClick);
            // 
            // iPrint
            // 
            this.iPrint.Caption = "打印";
            this.iPrint.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iPrint.Description = "Prints the active document.";
            this.iPrint.Hint = "Prints the active document";
            this.iPrint.Id = 5;
            this.iPrint.ImageIndex = 9;
            this.iPrint.LargeImageIndex = 6;
            this.iPrint.Name = "iPrint";
            this.iPrint.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPrint_ItemClick);
            // 
            // iClose
            // 
            this.iClose.Caption = "关闭";
            this.iClose.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iClose.Description = "Closes the active document.";
            this.iClose.Hint = "Closes the active document";
            this.iClose.Id = 2;
            this.iClose.ImageIndex = 12;
            this.iClose.LargeImageIndex = 8;
            this.iClose.Name = "iClose";
            this.iClose.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iClose_ItemClick);
            // 
            // iExit
            // 
            this.iExit.Caption = "退出系统";
            this.iExit.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iExit.Description = "Closes this program after prompting you to save unsaved document.";
            this.iExit.Hint = "Closes this program after prompting you to save unsaved document.";
            this.iExit.Id = 6;
            this.iExit.ImageIndex = 22;
            this.iExit.LargeImageIndex = 34;
            this.iExit.Name = "iExit";
            this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
            // 
            // imageCollection2
            // 
            this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
            this.imageCollection2.Images.SetKeyName(0, "add.png");
            this.imageCollection2.Images.SetKeyName(1, "AddData.png");
            this.imageCollection2.Images.SetKeyName(2, "Map_Full_Extent.PNG");
            this.imageCollection2.Images.SetKeyName(3, "Map_Zoom_In.PNG");
            this.imageCollection2.Images.SetKeyName(4, "Map_Zoom_Out.PNG");
            this.imageCollection2.Images.SetKeyName(5, "Pointer_Arrow.png");
            this.imageCollection2.Images.SetKeyName(6, "Map_Pan.png");
            // 
            // iReplace
            // 
            this.iReplace.Id = 247;
            this.iReplace.Name = "iReplace";
            // 
            // iFind
            // 
            this.iFind.Id = 252;
            this.iFind.Name = "iFind";
            // 
            // iFontColor
            // 
            this.iFontColor.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.iFontColor.Caption = "字体颜色";
            this.iFontColor.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iFontColor.Description = "Formats the selected text with the color you click.";
            this.iFontColor.Hint = "Font Color";
            this.iFontColor.Id = 30;
            this.iFontColor.ImageIndex = 5;
            this.iFontColor.Name = "iFontColor";
            // 
            // siPosition
            // 
            this.siPosition.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siPosition.Id = 0;
            this.siPosition.ImageIndex = 30;
            this.siPosition.Name = "siPosition";
            // 
            // siModified
            // 
            this.siModified.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siModified.Id = 1;
            this.siModified.Name = "siModified";
            // 
            // siDocName
            // 
            this.siDocName.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siDocName.Id = 2;
            this.siDocName.Name = "siDocName";
            this.siDocName.TextAlignment = System.Drawing.StringAlignment.Near;
            this.siDocName.Width = 20;
            // 
            // sbiPaste
            // 
            this.sbiPaste.Caption = "粘贴";
            this.sbiPaste.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.sbiPaste.Description = "Inserts the contents of the Clipboard at the insertion point";
            this.sbiPaste.Hint = "Inserts the contents of the Clipboard at the insertion point";
            this.sbiPaste.Id = 1;
            this.sbiPaste.ImageIndex = 8;
            this.sbiPaste.LargeImageIndex = 3;
            this.sbiPaste.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iPaste),
            new DevExpress.XtraBars.LinkPersistInfo(this.iPasteSpecial)});
            this.sbiPaste.Name = "sbiPaste";
            // 
            // iPasteSpecial
            // 
            this.iPasteSpecial.Caption = "Paste &Special...";
            this.iPasteSpecial.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iPasteSpecial.Description = "Opens the Paste Special dialog";
            this.iPasteSpecial.Enabled = false;
            this.iPasteSpecial.Hint = "Opens the Paste Special dialog";
            this.iPasteSpecial.Id = 3;
            this.iPasteSpecial.ImageIndex = 8;
            this.iPasteSpecial.Name = "iPasteSpecial";
            // 
            // sbiFind
            // 
            this.sbiFind.Caption = "Find";
            this.sbiFind.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.sbiFind.Description = "Searches for the specified text";
            this.sbiFind.Hint = "Searches for the specified text";
            this.sbiFind.Id = 2;
            this.sbiFind.ImageIndex = 3;
            this.sbiFind.LargeImageIndex = 4;
            this.sbiFind.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iFind),
            new DevExpress.XtraBars.LinkPersistInfo(this.iReplace)});
            this.sbiFind.Name = "sbiFind";
            this.sbiFind.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                        | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // iLargeUndo
            // 
            this.iLargeUndo.Id = 254;
            this.iLargeUndo.Name = "iLargeUndo";
            // 
            // iPaintStyle
            // 
            this.iPaintStyle.Caption = "Paint style";
            this.iPaintStyle.Description = "Select a paint scheme";
            this.iPaintStyle.Hint = "Select a paint scheme";
            this.iPaintStyle.Id = 7;
            this.iPaintStyle.ImageIndex = 26;
            this.iPaintStyle.Name = "iPaintStyle";
            this.iPaintStyle.Popup += new System.EventHandler(this.iPaintStyle_Popup);
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Caption = "Skins";
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Gallery.AllowHoverImages = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaption.Options.UseFont = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaption.Options.UseTextOptions = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiSkins.Gallery.ColumnCount = 4;
            this.rgbiSkins.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Main Skins";
            galleryItemGroup2.Caption = "Office Skins";
            galleryItemGroup3.Caption = "Group1";
            this.rgbiSkins.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3});
            this.rgbiSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
            this.rgbiSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.rgbiSkins.Gallery.RowCount = 4;
            this.rgbiSkins.Gallery.InitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiSkins_Gallery_InitDropDownGallery);
            this.rgbiSkins.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiSkins_Gallery_ItemClick);
            this.rgbiSkins.Id = 13;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barBut";
            this.barButtonItem1.Id = 116;
            this.barButtonItem1.ImageIndex = 39;
            this.barButtonItem1.LargeImageIndex = 10;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 117;
            this.barButtonItem2.ImageIndex = 33;
            this.barButtonItem2.LargeImageIndex = 11;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "barButtonItem3";
            this.barButtonItem3.Id = 118;
            this.barButtonItem3.LargeImageIndex = 14;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "barButtonItem4";
            this.barButtonItem4.Id = 119;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barButtonItem_Select
            // 
            this.barButtonItem_Select.Caption = "取消";
            this.barButtonItem_Select.Id = 123;
            this.barButtonItem_Select.LargeImageIndex = 20;
            this.barButtonItem_Select.Name = "barButtonItem_Select";
            this.barButtonItem_Select.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Select_ItemClick);
            // 
            // barButtonItem_ZoomIn
            // 
            this.barButtonItem_ZoomIn.Caption = "放大";
            this.barButtonItem_ZoomIn.Id = 124;
            this.barButtonItem_ZoomIn.LargeImageIndex = 16;
            this.barButtonItem_ZoomIn.Name = "barButtonItem_ZoomIn";
            this.barButtonItem_ZoomIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ZoomIn_ItemClick);
            // 
            // barButtonItem_ZoomOut
            // 
            this.barButtonItem_ZoomOut.Caption = "缩小";
            this.barButtonItem_ZoomOut.Id = 125;
            this.barButtonItem_ZoomOut.LargeImageIndex = 17;
            this.barButtonItem_ZoomOut.Name = "barButtonItem_ZoomOut";
            this.barButtonItem_ZoomOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ZoomOut_ItemClick);
            // 
            // barButtonItem_Pan
            // 
            this.barButtonItem_Pan.Caption = "平移";
            this.barButtonItem_Pan.Id = 126;
            this.barButtonItem_Pan.ImageIndex = 32;
            this.barButtonItem_Pan.LargeImageIndex = 15;
            this.barButtonItem_Pan.Name = "barButtonItem_Pan";
            this.barButtonItem_Pan.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Pan_ItemClick);
            // 
            // barButtonItem_ProView
            // 
            this.barButtonItem_ProView.Caption = "前视图";
            this.barButtonItem_ProView.Id = 127;
            this.barButtonItem_ProView.LargeImageIndex = 18;
            this.barButtonItem_ProView.Name = "barButtonItem_ProView";
            this.barButtonItem_ProView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ProView_ItemClick);
            // 
            // barButtonItem_NextView
            // 
            this.barButtonItem_NextView.Caption = "后视图";
            this.barButtonItem_NextView.Id = 128;
            this.barButtonItem_NextView.LargeImageIndex = 27;
            this.barButtonItem_NextView.Name = "barButtonItem_NextView";
            this.barButtonItem_NextView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_NextView_ItemClick);
            // 
            // barButtonItem_FullView
            // 
            this.barButtonItem_FullView.Caption = "全图";
            this.barButtonItem_FullView.Id = 129;
            this.barButtonItem_FullView.LargeImageIndex = 13;
            this.barButtonItem_FullView.Name = "barButtonItem_FullView";
            this.barButtonItem_FullView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_FullView_ItemClick);
            // 
            // barButtonItem_Identify
            // 
            this.barButtonItem_Identify.Caption = "识别";
            this.barButtonItem_Identify.Id = 130;
            this.barButtonItem_Identify.LargeImageIndex = 24;
            this.barButtonItem_Identify.Name = "barButtonItem_Identify";
            this.barButtonItem_Identify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Identify_ItemClick);
            // 
            // barButtonItem_Attribute
            // 
            this.barButtonItem_Attribute.Caption = "属性";
            this.barButtonItem_Attribute.Id = 131;
            this.barButtonItem_Attribute.LargeImageIndex = 14;
            this.barButtonItem_Attribute.Name = "barButtonItem_Attribute";
            this.barButtonItem_Attribute.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Attribute_ItemClick);
            // 
            // barButtonItem_Find
            // 
            this.barButtonItem_Find.Caption = "查找";
            this.barButtonItem_Find.Id = 132;
            this.barButtonItem_Find.LargeImageIndex = 30;
            this.barButtonItem_Find.Name = "barButtonItem_Find";
            this.barButtonItem_Find.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Find_ItemClick);
            // 
            // barEditItem_layer
            // 
            this.barEditItem_layer.Caption = "图层";
            this.barEditItem_layer.Edit = this.repositoryItemComboBox3;
            this.barEditItem_layer.Id = 158;
            this.barEditItem_layer.Name = "barEditItem_layer";
            this.barEditItem_layer.Width = 120;
            this.barEditItem_layer.EditValueChanged += new System.EventHandler(this.barEditItem_layer_EditValueChanged);
            // 
            // repositoryItemComboBox3
            // 
            this.repositoryItemComboBox3.AutoHeight = false;
            this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
            this.repositoryItemComboBox3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.repositoryItemComboBox3.UseParentBackground = true;
            // 
            // barSubItem_AddGeoData
            // 
            this.barSubItem_AddGeoData.Caption = "加载地理数据";
            this.barSubItem_AddGeoData.Id = 166;
            this.barSubItem_AddGeoData.ImageIndex = 1;
            this.barSubItem_AddGeoData.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_AddImageData),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_AddVectorData)});
            this.barSubItem_AddGeoData.Name = "barSubItem_AddGeoData";
            // 
            // barButtonItem_AddImageData
            // 
            this.barButtonItem_AddImageData.Caption = "影像数据";
            this.barButtonItem_AddImageData.Id = 168;
            this.barButtonItem_AddImageData.Name = "barButtonItem_AddImageData";
            this.barButtonItem_AddImageData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_AddImageData_ItemClick);
            // 
            // barButtonItem_AddVectorData
            // 
            this.barButtonItem_AddVectorData.Caption = "矢量数据";
            this.barButtonItem_AddVectorData.Id = 167;
            this.barButtonItem_AddVectorData.Name = "barButtonItem_AddVectorData";
            this.barButtonItem_AddVectorData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_AddVectorData_ItemClick);
            // 
            // barButtonItem_DrawingToolBox
            // 
            this.barButtonItem_DrawingToolBox.Caption = "标绘工具";
            this.barButtonItem_DrawingToolBox.Id = 196;
            this.barButtonItem_DrawingToolBox.LargeImageIndex = 31;
            this.barButtonItem_DrawingToolBox.Name = "barButtonItem_DrawingToolBox";
            this.barButtonItem_DrawingToolBox.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DrawingToolBox_ItemClick);
            // 
            // barButtonItem_ZoomActualSize
            // 
            this.barButtonItem_ZoomActualSize.Caption = "1:1";
            this.barButtonItem_ZoomActualSize.Id = 213;
            this.barButtonItem_ZoomActualSize.LargeImageIndex = 33;
            this.barButtonItem_ZoomActualSize.Name = "barButtonItem_ZoomActualSize";
            this.barButtonItem_ZoomActualSize.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_SrcView_ItemClick);
            // 
            // barEditItem3
            // 
            this.barEditItem3.Caption = "barEditItem3";
            this.barEditItem3.Edit = this.repositoryItemTrackBar1;
            this.barEditItem3.Id = 219;
            this.barEditItem3.Name = "barEditItem3";
            // 
            // repositoryItemTrackBar1
            // 
            this.repositoryItemTrackBar1.Name = "repositoryItemTrackBar1";
            this.repositoryItemTrackBar1.UseParentBackground = true;
            // 
            // barButtonItem_Refresh
            // 
            this.barButtonItem_Refresh.Caption = "刷新";
            this.barButtonItem_Refresh.Id = 220;
            this.barButtonItem_Refresh.LargeImageIndex = 22;
            this.barButtonItem_Refresh.Name = "barButtonItem_Refresh";
            this.barButtonItem_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Refresh_ItemClick);
            // 
            // barButtonItem_ImageAnalyseToolbox
            // 
            this.barButtonItem_ImageAnalyseToolbox.Caption = "影像分析工具";
            this.barButtonItem_ImageAnalyseToolbox.Id = 221;
            this.barButtonItem_ImageAnalyseToolbox.LargeImageIndex = 32;
            this.barButtonItem_ImageAnalyseToolbox.Name = "barButtonItem_ImageAnalyseToolbox";
            this.barButtonItem_ImageAnalyseToolbox.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ImageAnalyseToolbox_ItemClick);
            // 
            // barListItem1
            // 
            this.barListItem1.Caption = "barListItem1";
            this.barListItem1.Id = 222;
            this.barListItem1.Name = "barListItem1";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "barStaticItem1";
            this.barStaticItem1.Id = 224;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_MapCoord
            // 
            this.barStaticItem_MapCoord.Caption = "地理坐标:";
            this.barStaticItem_MapCoord.Id = 225;
            this.barStaticItem_MapCoord.Name = "barStaticItem_MapCoord";
            this.barStaticItem_MapCoord.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_ScreenCoord
            // 
            this.barStaticItem_ScreenCoord.Caption = "屏幕坐标:";
            this.barStaticItem_ScreenCoord.Id = 226;
            this.barStaticItem_ScreenCoord.Name = "barStaticItem_ScreenCoord";
            this.barStaticItem_ScreenCoord.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_Reference
            // 
            this.barStaticItem_Reference.Caption = "坐标系:";
            this.barStaticItem_Reference.Id = 227;
            this.barStaticItem_Reference.Name = "barStaticItem_Reference";
            this.barStaticItem_Reference.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_Unit
            // 
            this.barStaticItem_Unit.Caption = "单位:";
            this.barStaticItem_Unit.Id = 228;
            this.barStaticItem_Unit.Name = "barStaticItem_Unit";
            this.barStaticItem_Unit.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Caption = "barButtonItem5";
            this.barButtonItem5.Id = 229;
            this.barButtonItem5.ImageIndex = 5;
            this.barButtonItem5.Name = "barButtonItem5";
            // 
            // barButtonItem6
            // 
            this.barButtonItem6.Caption = "barButtonItem6";
            this.barButtonItem6.Id = 230;
            this.barButtonItem6.ImageIndex = 3;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // barButtonItem7
            // 
            this.barButtonItem7.Caption = "barButtonItem7";
            this.barButtonItem7.Id = 231;
            this.barButtonItem7.ImageIndex = 4;
            this.barButtonItem7.Name = "barButtonItem7";
            // 
            // barButtonItem8
            // 
            this.barButtonItem8.Caption = "barButtonItem8";
            this.barButtonItem8.Id = 232;
            this.barButtonItem8.ImageIndex = 2;
            this.barButtonItem8.Name = "barButtonItem8";
            // 
            // barButtonItem9
            // 
            this.barButtonItem9.Caption = "barButtonItem9";
            this.barButtonItem9.Id = 233;
            this.barButtonItem9.ImageIndex = 6;
            this.barButtonItem9.Name = "barButtonItem9";
            // 
            // openTemplate
            // 
            this.openTemplate.Caption = "打开模板";
            this.openTemplate.Id = 234;
            this.openTemplate.ImageIndex = 1;
            this.openTemplate.LargeImageIndex = 3;
            this.openTemplate.Name = "openTemplate";
            this.openTemplate.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openTemplate_ItemClick);
            // 
            // pageZoomIn
            // 
            this.pageZoomIn.Caption = "放大";
            this.pageZoomIn.Id = 235;
            this.pageZoomIn.ImageIndex = 3;
            this.pageZoomIn.LargeImageIndex = 16;
            this.pageZoomIn.Name = "pageZoomIn";
            this.pageZoomIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageZoomIn_ItemClick);
            // 
            // pageZoomOut
            // 
            this.pageZoomOut.Caption = "缩小";
            this.pageZoomOut.Id = 236;
            this.pageZoomOut.ImageIndex = 4;
            this.pageZoomOut.LargeImageIndex = 16;
            this.pageZoomOut.Name = "pageZoomOut";
            this.pageZoomOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageZoomOut_ItemClick);
            // 
            // pagePan
            // 
            this.pagePan.Caption = "漫游";
            this.pagePan.Id = 237;
            this.pagePan.ImageIndex = 6;
            this.pagePan.LargeImageIndex = 15;
            this.pagePan.Name = "pagePan";
            this.pagePan.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pagePan_ItemClick);
            // 
            // pagePreView
            // 
            this.pagePreView.Caption = "前视图";
            this.pagePreView.Id = 238;
            this.pagePreView.LargeImageIndex = 18;
            this.pagePreView.Name = "pagePreView";
            this.pagePreView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pagePreView_ItemClick);
            // 
            // pageAfterView
            // 
            this.pageAfterView.Caption = "后视图";
            this.pageAfterView.Id = 239;
            this.pageAfterView.LargeImageIndex = 27;
            this.pageAfterView.Name = "pageAfterView";
            this.pageAfterView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageAfterView_ItemClick);
            // 
            // commonPoint
            // 
            this.commonPoint.Caption = "点";
            this.commonPoint.Id = 240;
            this.commonPoint.ImageIndex = 0;
            this.commonPoint.LargeImageIndex = 7;
            this.commonPoint.Name = "commonPoint";
            this.commonPoint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.commonPoint_ItemClick);
            // 
            // commonLine
            // 
            this.commonLine.Caption = "线";
            this.commonLine.Id = 241;
            this.commonLine.ImageIndex = 1;
            this.commonLine.LargeImageIndex = 6;
            this.commonLine.Name = "commonLine";
            this.commonLine.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.commonLine_ItemClick);
            // 
            // commonPolygon
            // 
            this.commonPolygon.Caption = "面";
            this.commonPolygon.Id = 242;
            this.commonPolygon.ImageIndex = 2;
            this.commonPolygon.LargeImageIndex = 5;
            this.commonPolygon.Name = "commonPolygon";
            this.commonPolygon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.commonPolygon_ItemClick);
            // 
            // selectMarkTool
            // 
            this.selectMarkTool.Caption = "选择";
            this.selectMarkTool.Id = 243;
            this.selectMarkTool.LargeImageIndex = 20;
            this.selectMarkTool.Name = "selectMarkTool";
            this.selectMarkTool.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.selectMarkTool_ItemClick);
            // 
            // textMark
            // 
            this.textMark.Caption = "标注";
            this.textMark.Id = 244;
            this.textMark.LargeImageIndex = 26;
            this.textMark.Name = "textMark";
            this.textMark.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.textMark_ItemClick);
            // 
            // pageFullExtent
            // 
            this.pageFullExtent.Caption = "全图";
            this.pageFullExtent.Id = 245;
            this.pageFullExtent.LargeImageIndex = 13;
            this.pageFullExtent.Name = "pageFullExtent";
            this.pageFullExtent.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageFullExtent_ItemClick);
            // 
            // pageRealSize
            // 
            this.pageRealSize.Caption = "1:1";
            this.pageRealSize.Id = 246;
            this.pageRealSize.LargeImageIndex = 33;
            this.pageRealSize.Name = "pageRealSize";
            this.pageRealSize.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageRealSize_ItemClick);
            // 
            // imageCollection1
            // 
            this.imageCollection1.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
            this.imageCollection1.Images.SetKeyName(0, "2008103113025298.png");
            this.imageCollection1.Images.SetKeyName(1, "2008103113025332.png");
            this.imageCollection1.Images.SetKeyName(2, "add.png");
            this.imageCollection1.Images.SetKeyName(3, "AddData.png");
            this.imageCollection1.Images.SetKeyName(4, "Clear_Selection.png");
            this.imageCollection1.Images.SetKeyName(5, "draw_polygon.png");
            this.imageCollection1.Images.SetKeyName(6, "Drawline.png");
            this.imageCollection1.Images.SetKeyName(7, "drawpoint.png");
            this.imageCollection1.Images.SetKeyName(8, "drawpoly.png");
            this.imageCollection1.Images.SetKeyName(9, "drawpoly副本.bmp");
            this.imageCollection1.Images.SetKeyName(10, "drawrect.png");
            this.imageCollection1.Images.SetKeyName(11, "freeline.png");
            this.imageCollection1.Images.SetKeyName(12, "freepoly.png");
            this.imageCollection1.Images.SetKeyName(13, "Map_Full_Extent.PNG");
            this.imageCollection1.Images.SetKeyName(14, "Map_Identify.png");
            this.imageCollection1.Images.SetKeyName(15, "Map_Pan.png");
            this.imageCollection1.Images.SetKeyName(16, "Map_Zoom_In.PNG");
            this.imageCollection1.Images.SetKeyName(17, "Map_Zoom_Out.PNG");
            this.imageCollection1.Images.SetKeyName(18, "Map_Zoom_To_Last_Extent_Back.png");
            this.imageCollection1.Images.SetKeyName(19, "Open_Doc.png");
            this.imageCollection1.Images.SetKeyName(20, "Pointer_Arrow.png");
            this.imageCollection1.Images.SetKeyName(21, "Pointer_Arrow副本.bmp");
            this.imageCollection1.Images.SetKeyName(22, "refresh2.png");
            this.imageCollection1.Images.SetKeyName(23, "Search.png");
            this.imageCollection1.Images.SetKeyName(24, "Select_Features.png");
            this.imageCollection1.Images.SetKeyName(25, "Select_Features副本.bmp");
            this.imageCollection1.Images.SetKeyName(26, "text-font.png");
            this.imageCollection1.Images.SetKeyName(27, "Zoom_To_Last_Extent_Forward.png");
            this.imageCollection1.Images.SetKeyName(28, "标绘工具.png");
            this.imageCollection1.Images.SetKeyName(29, "标绘工具副本.bmp");
            this.imageCollection1.Images.SetKeyName(30, "影像分析工具.png");
            this.imageCollection1.Images.SetKeyName(31, "1.png");
            this.imageCollection1.Images.SetKeyName(32, "2.png");
            this.imageCollection1.Images.SetKeyName(33, "1比1.PNG");
            this.imageCollection1.Images.SetKeyName(34, "3.png");
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup10});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "文件&视图";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ImageIndex = 1;
            this.ribbonPageGroup1.ItemLinks.Add(this.idNew);
            this.ribbonPageGroup1.ItemLinks.Add(this.iOpen, true);
            this.ribbonPageGroup1.ItemLinks.Add(this.iClose);
            this.ribbonPageGroup1.ItemLinks.Add(this.iPrint);
            this.ribbonPageGroup1.ItemLinks.Add(this.sbiSave, true);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            toolTipTitleItem1.Text = "Open File Dialog";
            toolTipItem1.Appearance.Options.UseImage = true;
            toolTipItem1.Text = "Show the Open file dialog box";
            toolTipTitleItem2.Appearance.Options.UseImage = true;
            toolTipTitleItem2.Text = "For more information see help";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.Items.Add(toolTipSeparatorItem1);
            superToolTip1.Items.Add(toolTipTitleItem2);
            this.ribbonPageGroup1.SuperTip = superToolTip1;
            this.ribbonPageGroup1.Text = "文件";
            this.ribbonPageGroup1.CaptionButtonClick += new DevExpress.XtraBars.Ribbon.RibbonPageGroupEventHandler(this.ribbonPageGroup1_CaptionButtonClick);
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.barEditItemLayers);
            this.ribbonPageGroup2.ItemLinks.Add(this.barSubItem2);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ImageIndex = 26;
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Select);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ZoomIn);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ZoomOut);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Pan);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ProView);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_NextView);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_FullView);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ZoomActualSize);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Refresh);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Attribute);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "浏览";
            // 
            // ribbonPageGroup10
            // 
            this.ribbonPageGroup10.ItemLinks.Add(this.rgbiSkins);
            this.ribbonPageGroup10.Name = "ribbonPageGroup10";
            this.ribbonPageGroup10.ShowCaptionButton = false;
            this.ribbonPageGroup10.Text = "界面皮肤";
            // 
            // ribbonPageLayoutPage
            // 
            this.ribbonPageLayoutPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup7,
            this.pagelayoutButtons});
            this.ribbonPageLayoutPage.Name = "ribbonPageLayoutPage";
            this.ribbonPageLayoutPage.Text = "制图工具";
            this.ribbonPageLayoutPage.Visible = false;
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.ItemLinks.Add(this.openTemplate);
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.Text = "模板管理";
            // 
            // pagelayoutButtons
            // 
            this.pagelayoutButtons.ItemLinks.Add(this.pageZoomIn);
            this.pagelayoutButtons.ItemLinks.Add(this.pageZoomOut);
            this.pagelayoutButtons.ItemLinks.Add(this.pagePan);
            this.pagelayoutButtons.ItemLinks.Add(this.pagePreView);
            this.pagelayoutButtons.ItemLinks.Add(this.pageAfterView);
            this.pagelayoutButtons.ItemLinks.Add(this.pageFullExtent);
            this.pagelayoutButtons.ItemLinks.Add(this.pageRealSize);
            this.pagelayoutButtons.Name = "pagelayoutButtons";
            this.pagelayoutButtons.Text = "页面浏览";
            // 
            // markToolPage
            // 
            this.markToolPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup5});
            this.markToolPage.Name = "markToolPage";
            this.markToolPage.Text = "标绘";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.selectMarkTool);
            this.ribbonPageGroup5.ItemLinks.Add(this.commonPoint);
            this.ribbonPageGroup5.ItemLinks.Add(this.commonLine);
            this.ribbonPageGroup5.ItemLinks.Add(this.commonPolygon);
            this.ribbonPageGroup5.ItemLinks.Add(this.textMark);
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.Text = "基础标绘";
            // 
            // repositoryItemPictureEdit1
            // 
            this.repositoryItemPictureEdit1.AllowFocused = false;
            this.repositoryItemPictureEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
            this.repositoryItemPictureEdit1.UseParentBackground = true;
            // 
            // repositoryItemSpinEdit2
            // 
            this.repositoryItemSpinEdit2.AutoHeight = false;
            this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
            this.repositoryItemSpinEdit2.UseParentBackground = true;
            // 
            // repositoryItemButtonEdit1
            // 
            this.repositoryItemButtonEdit1.AutoHeight = false;
            this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
            this.repositoryItemButtonEdit1.UseParentBackground = true;
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            this.repositoryItemComboBox1.UseParentBackground = true;
            // 
            // repositoryItemComboBox2
            // 
            this.repositoryItemComboBox2.AutoHeight = false;
            this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
            this.repositoryItemComboBox2.UseParentBackground = true;
            // 
            // repositoryItemImageEdit1
            // 
            this.repositoryItemImageEdit1.AutoHeight = false;
            this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
            this.repositoryItemImageEdit1.UseParentBackground = true;
            // 
            // repositoryItemPictureEdit2
            // 
            this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
            this.repositoryItemPictureEdit2.UseParentBackground = true;
            // 
            // repositoryItemPictureEdit3
            // 
            this.repositoryItemPictureEdit3.Name = "repositoryItemPictureEdit3";
            this.repositoryItemPictureEdit3.UseParentBackground = true;
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.siPosition);
            this.ribbonStatusBar1.ItemLinks.Add(this.siModified, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.siDocName, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_Reference);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_Unit);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_ScreenCoord);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_MapCoord);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 614);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(1107, 26);
            // 
            // defaultLookAndFeel1
            // 
            this.defaultLookAndFeel1.LookAndFeel.SkinName = "Caramel";
            // 
            // xtraTabbedMdiManager1
            // 
            this.xtraTabbedMdiManager1.MdiParent = this;
            // 
            // pmMain
            // 
            this.pmMain.ItemLinks.Add(this.iCopy, true);
            this.pmMain.ItemLinks.Add(this.iCut);
            this.pmMain.ItemLinks.Add(this.iPaste);
            this.pmMain.ItemLinks.Add(this.iClear);
            this.pmMain.ItemLinks.Add(this.iFont, true);
            this.pmMain.MenuCaption = "Edit Menu";
            this.pmMain.Name = "pmMain";
            this.pmMain.Ribbon = this.ribbonControl1;
            this.pmMain.ShowCaption = true;
            // 
            // imageCollection3
            // 
            this.imageCollection3.ImageSize = new System.Drawing.Size(15, 15);
            this.imageCollection3.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection3.ImageStream")));
            this.imageCollection3.Images.SetKeyName(0, "1比1.PNG");
            this.imageCollection3.Images.SetKeyName(1, "Map_Zoom_In.PNG");
            this.imageCollection3.Images.SetKeyName(2, "Map_Zoom_Out.PNG");
            // 
            // dockManager1
            // 
            this.dockManager1.Form = this;
            this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel_Drawing});
            this.dockManager1.Images = this.imageCollection1;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.panelContainer1,
            this.dockPanel_ImageAnalyse});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // dockPanel_Drawing
            // 
            this.dockPanel_Drawing.Controls.Add(this.dockPanel5_Container);
            this.dockPanel_Drawing.Dock = DevExpress.XtraBars.Docking.DockingStyle.Float;
            this.dockPanel_Drawing.FloatLocation = new System.Drawing.Point(596, 131);
            this.dockPanel_Drawing.FloatSize = new System.Drawing.Size(167, 200);
            this.dockPanel_Drawing.ID = new System.Guid("651c0132-7d7a-4f2c-93a0-8b4b2be4d067");
            this.dockPanel_Drawing.Location = new System.Drawing.Point(-32768, -32768);
            this.dockPanel_Drawing.Name = "dockPanel_Drawing";
            this.dockPanel_Drawing.OriginalSize = new System.Drawing.Size(200, 200);
            this.dockPanel_Drawing.SavedIndex = 2;
            this.dockPanel_Drawing.Size = new System.Drawing.Size(167, 200);
            this.dockPanel_Drawing.Text = "标绘工具";
            this.dockPanel_Drawing.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            // 
            // dockPanel5_Container
            // 
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawLine);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_Text);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawAny);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawCurve);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_Rect);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawElement_Polygon);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawPoint);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_SelectElement);
            this.dockPanel5_Container.Location = new System.Drawing.Point(3, 22);
            this.dockPanel5_Container.Name = "dockPanel5_Container";
            this.dockPanel5_Container.Size = new System.Drawing.Size(161, 175);
            this.dockPanel5_Container.TabIndex = 0;
            // 
            // simpleButton_DrawLine
            // 
            this.simpleButton_DrawLine.ImageIndex = 35;
            this.simpleButton_DrawLine.ImageList = this.imageCollection1;
            this.simpleButton_DrawLine.Location = new System.Drawing.Point(90, 3);
            this.simpleButton_DrawLine.Name = "simpleButton_DrawLine";
            this.simpleButton_DrawLine.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_DrawLine.TabIndex = 7;
            this.simpleButton_DrawLine.Click += new System.EventHandler(this.simpleButton_DrawLine_Click);
            // 
            // simpleButton_Text
            // 
            this.simpleButton_Text.ImageIndex = 33;
            this.simpleButton_Text.ImageList = this.imageCollection1;
            this.simpleButton_Text.Location = new System.Drawing.Point(11, 88);
            this.simpleButton_Text.Name = "simpleButton_Text";
            this.simpleButton_Text.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_Text.TabIndex = 6;
            this.simpleButton_Text.Text = "simpleButton9";
            this.simpleButton_Text.Click += new System.EventHandler(this.simpleButton_Text_Click);
            // 
            // simpleButton_DrawAny
            // 
            this.simpleButton_DrawAny.ImageList = this.imageCollection1;
            this.simpleButton_DrawAny.Location = new System.Drawing.Point(51, 88);
            this.simpleButton_DrawAny.Name = "simpleButton_DrawAny";
            this.simpleButton_DrawAny.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_DrawAny.TabIndex = 5;
            this.simpleButton_DrawAny.Tag = "徒手绘制";
            this.simpleButton_DrawAny.Text = "simpleButton8";
            this.simpleButton_DrawAny.Click += new System.EventHandler(this.simpleButton_DrawAny_Click);
            // 
            // simpleButton_DrawCurve
            // 
            this.simpleButton_DrawCurve.ImageIndex = 39;
            this.simpleButton_DrawCurve.ImageList = this.imageCollection1;
            this.simpleButton_DrawCurve.Location = new System.Drawing.Point(51, 46);
            this.simpleButton_DrawCurve.Name = "simpleButton_DrawCurve";
            this.simpleButton_DrawCurve.Size = new System.Drawing.Size(34, 31);
            this.simpleButton_DrawCurve.TabIndex = 4;
            this.simpleButton_DrawCurve.Text = "simpleButton7";
            this.simpleButton_DrawCurve.Click += new System.EventHandler(this.simpleButton_DrawCurve_Click);
            // 
            // simpleButton_Rect
            // 
            this.simpleButton_Rect.ImageIndex = 38;
            this.simpleButton_Rect.ImageList = this.imageCollection1;
            this.simpleButton_Rect.Location = new System.Drawing.Point(90, 46);
            this.simpleButton_Rect.Name = "simpleButton_Rect";
            this.simpleButton_Rect.Size = new System.Drawing.Size(34, 31);
            this.simpleButton_Rect.TabIndex = 3;
            this.simpleButton_Rect.Text = "simpleButton6";
            this.simpleButton_Rect.Click += new System.EventHandler(this.simpleButton_Rect_Click);
            // 
            // simpleButton_DrawElement_Polygon
            // 
            this.simpleButton_DrawElement_Polygon.ImageIndex = 37;
            this.simpleButton_DrawElement_Polygon.ImageList = this.imageCollection1;
            this.simpleButton_DrawElement_Polygon.Location = new System.Drawing.Point(11, 46);
            this.simpleButton_DrawElement_Polygon.Name = "simpleButton_DrawElement_Polygon";
            this.simpleButton_DrawElement_Polygon.Size = new System.Drawing.Size(34, 31);
            this.simpleButton_DrawElement_Polygon.TabIndex = 2;
            this.simpleButton_DrawElement_Polygon.Click += new System.EventHandler(this.simpleButton_DrawElement_Polygon_Click);
            // 
            // simpleButton_DrawPoint
            // 
            this.simpleButton_DrawPoint.ImageIndex = 36;
            this.simpleButton_DrawPoint.ImageList = this.imageCollection1;
            this.simpleButton_DrawPoint.Location = new System.Drawing.Point(51, 3);
            this.simpleButton_DrawPoint.Name = "simpleButton_DrawPoint";
            this.simpleButton_DrawPoint.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_DrawPoint.TabIndex = 1;
            this.simpleButton_DrawPoint.Click += new System.EventHandler(this.simpleButton_DrawPoint_Click);
            // 
            // simpleButton_SelectElement
            // 
            this.simpleButton_SelectElement.ImageIndex = 18;
            this.simpleButton_SelectElement.ImageList = this.imageCollection1;
            this.simpleButton_SelectElement.Location = new System.Drawing.Point(11, 3);
            this.simpleButton_SelectElement.Name = "simpleButton_SelectElement";
            this.simpleButton_SelectElement.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_SelectElement.TabIndex = 0;
            this.simpleButton_SelectElement.Click += new System.EventHandler(this.simpleButton_SelectElement_Click);
            // 
            // panelContainer1
            // 
            this.panelContainer1.Controls.Add(this.dockPanel_Overview);
            this.panelContainer1.Controls.Add(this.dockPanel2);
            this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.panelContainer1.ID = new System.Guid("3c878de6-7a27-48bc-8e79-241c55e74b0d");
            this.panelContainer1.Location = new System.Drawing.Point(0, 148);
            this.panelContainer1.Name = "panelContainer1";
            this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
            this.panelContainer1.Size = new System.Drawing.Size(200, 466);
            this.panelContainer1.Text = "panelContainer1";
            // 
            // dockPanel_Overview
            // 
            this.dockPanel_Overview.Controls.Add(this.dockPanel3_Container);
            this.dockPanel_Overview.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.dockPanel_Overview.ID = new System.Guid("0abce358-5cf4-4b53-98f8-2bf91a0e7127");
            this.dockPanel_Overview.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.dockPanel_Overview.Location = new System.Drawing.Point(0, 0);
            this.dockPanel_Overview.Name = "dockPanel_Overview";
            this.dockPanel_Overview.OriginalSize = new System.Drawing.Size(200, 159);
            this.dockPanel_Overview.Size = new System.Drawing.Size(200, 160);
            this.dockPanel_Overview.Text = "缩略图";
            // 
            // dockPanel3_Container
            // 
            this.dockPanel3_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel3_Container.Name = "dockPanel3_Container";
            this.dockPanel3_Container.Size = new System.Drawing.Size(194, 132);
            this.dockPanel3_Container.TabIndex = 0;
            // 
            // dockPanel2
            // 
            this.dockPanel2.Controls.Add(this.dockPanel2_Container);
            this.dockPanel2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.dockPanel2.ID = new System.Guid("3ac20aec-2847-4832-9ca8-5a53a5113e15");
            this.dockPanel2.Location = new System.Drawing.Point(0, 160);
            this.dockPanel2.Name = "dockPanel2";
            this.dockPanel2.OriginalSize = new System.Drawing.Size(200, 304);
            this.dockPanel2.Size = new System.Drawing.Size(200, 306);
            this.dockPanel2.Text = "图层管理";
            // 
            // dockPanel2_Container
            // 
            this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel2_Container.Name = "dockPanel2_Container";
            this.dockPanel2_Container.Size = new System.Drawing.Size(194, 278);
            this.dockPanel2_Container.TabIndex = 0;
            // 
            // dockPanel_ImageAnalyse
            // 
            this.dockPanel_ImageAnalyse.Controls.Add(this.dockPanel4_Container);
            this.dockPanel_ImageAnalyse.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.dockPanel_ImageAnalyse.FloatSize = new System.Drawing.Size(206, 285);
            this.dockPanel_ImageAnalyse.ID = new System.Guid("7d7e9922-daf6-4319-b838-ecd3fa40514f");
            this.dockPanel_ImageAnalyse.Location = new System.Drawing.Point(907, 148);
            this.dockPanel_ImageAnalyse.Name = "dockPanel_ImageAnalyse";
            this.dockPanel_ImageAnalyse.OriginalSize = new System.Drawing.Size(200, 200);
            this.dockPanel_ImageAnalyse.Size = new System.Drawing.Size(200, 466);
            this.dockPanel_ImageAnalyse.Text = "影像分析";
            // 
            // dockPanel4_Container
            // 
            this.dockPanel4_Container.Controls.Add(this.navBarControl1);
            this.dockPanel4_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel4_Container.Name = "dockPanel4_Container";
            this.dockPanel4_Container.Size = new System.Drawing.Size(194, 438);
            this.dockPanel4_Container.TabIndex = 0;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            this.navBarControl1.ContentButtonHint = null;
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer1);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer2);
            this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarGroup1,
            this.navBarGroup2});
            this.navBarControl1.Location = new System.Drawing.Point(0, 0);
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth = 20;
            this.navBarControl1.Size = new System.Drawing.Size(194, 438);
            this.navBarControl1.TabIndex = 0;
            this.navBarControl1.Text = "navBarControl1";
            // 
            // navBarGroup1
            // 
            this.navBarGroup1.Caption = "显示";
            this.navBarGroup1.ControlContainer = this.navBarGroupControlContainer1;
            this.navBarGroup1.Expanded = true;
            this.navBarGroup1.GroupClientHeight = 199;
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup1.Name = "navBarGroup1";
            // 
            // navBarGroupControlContainer1
            // 
            this.navBarGroupControlContainer1.Controls.Add(this.checkButton_FlashLayer);
            this.navBarGroupControlContainer1.Controls.Add(this.simpleButton2);
            this.navBarGroupControlContainer1.Controls.Add(this.simpleButton1);
            this.navBarGroupControlContainer1.Controls.Add(this.comboBoxEdit2);
            this.navBarGroupControlContainer1.Controls.Add(this.comboBoxEdit1);
            this.navBarGroupControlContainer1.Controls.Add(this.labelControl2);
            this.navBarGroupControlContainer1.Controls.Add(this.labelControl1);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit4);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Gamma);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_FlashTime);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Gamma);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit3);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Transparency);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Transparency);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit2);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Contrast);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Contrast);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit1);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Bright);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Bright);
            this.navBarGroupControlContainer1.Name = "navBarGroupControlContainer1";
            this.navBarGroupControlContainer1.Size = new System.Drawing.Size(190, 197);
            this.navBarGroupControlContainer1.TabIndex = 0;
            // 
            // checkButton_FlashLayer
            // 
            this.checkButton_FlashLayer.Image = global::HYMain.Properties.Resources.卷帘;
            this.checkButton_FlashLayer.Location = new System.Drawing.Point(77, 171);
            this.checkButton_FlashLayer.Name = "checkButton_FlashLayer";
            this.checkButton_FlashLayer.Size = new System.Drawing.Size(28, 18);
            this.checkButton_FlashLayer.TabIndex = 17;
            this.checkButton_FlashLayer.Click += new System.EventHandler(this.checkButton_FlashLayer_Click);
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(39, 171);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(26, 18);
            this.simpleButton2.TabIndex = 16;
            this.simpleButton2.Text = "simpleButton2";
            // 
            // simpleButton1
            // 
            this.simpleButton1.Image = global::HYMain.Properties.Resources.flash;
            this.simpleButton1.Location = new System.Drawing.Point(9, 171);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(25, 18);
            this.simpleButton1.TabIndex = 15;
            this.simpleButton1.Text = "simpleButton1";
            // 
            // comboBoxEdit2
            // 
            this.comboBoxEdit2.Location = new System.Drawing.Point(55, 140);
            this.comboBoxEdit2.Name = "comboBoxEdit2";
            this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit2.Size = new System.Drawing.Size(109, 21);
            this.comboBoxEdit2.TabIndex = 14;
            // 
            // comboBoxEdit1
            // 
            this.comboBoxEdit1.EditValue = "不拉伸";
            this.comboBoxEdit1.Location = new System.Drawing.Point(55, 115);
            this.comboBoxEdit1.MenuManager = this.ribbonControl1;
            this.comboBoxEdit1.Name = "comboBoxEdit1";
            this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
            "不拉伸",
            "线性拉伸",
            "直方图均衡",
            "直方图均匀化",
            "指数增强",
            "对数增强"});
            this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit1.Size = new System.Drawing.Size(109, 21);
            this.comboBoxEdit1.TabIndex = 14;
            this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
            // 
            // labelControl2
            // 
            this.labelControl2.Location = new System.Drawing.Point(9, 143);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(36, 14);
            this.labelControl2.TabIndex = 13;
            this.labelControl2.Text = "重采样";
            // 
            // labelControl1
            // 
            this.labelControl1.Location = new System.Drawing.Point(9, 118);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(24, 14);
            this.labelControl1.TabIndex = 13;
            this.labelControl1.Text = "拉伸";
            // 
            // pictureEdit4
            // 
            this.pictureEdit4.EditValue = global::HYMain.Properties.Resources.gamma;
            this.pictureEdit4.Location = new System.Drawing.Point(9, 84);
            this.pictureEdit4.MenuManager = this.ribbonControl1;
            this.pictureEdit4.Name = "pictureEdit4";
            this.pictureEdit4.Size = new System.Drawing.Size(17, 16);
            this.pictureEdit4.TabIndex = 12;
            this.pictureEdit4.ToolTip = "调整gamma";
            // 
            // trackBarControl_Gamma
            // 
            this.trackBarControl_Gamma.EditValue = 10;
            this.trackBarControl_Gamma.Location = new System.Drawing.Point(38, 81);
            this.trackBarControl_Gamma.Name = "trackBarControl_Gamma";
            this.trackBarControl_Gamma.Properties.Maximum = 19;
            this.trackBarControl_Gamma.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Gamma.TabIndex = 11;
            this.trackBarControl_Gamma.Value = 10;
            this.trackBarControl_Gamma.EditValueChanged += new System.EventHandler(this.trackBarControl_Gamma_EditValueChanged);
            // 
            // spinEdit_FlashTime
            // 
            this.spinEdit_FlashTime.EditValue = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.spinEdit_FlashTime.Location = new System.Drawing.Point(111, 171);
            this.spinEdit_FlashTime.Name = "spinEdit_FlashTime";
            this.spinEdit_FlashTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_FlashTime.Size = new System.Drawing.Size(53, 21);
            this.spinEdit_FlashTime.TabIndex = 10;
            // 
            // spinEdit_Gamma
            // 
            this.spinEdit_Gamma.EditValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.spinEdit_Gamma.Enabled = false;
            this.spinEdit_Gamma.Location = new System.Drawing.Point(132, 84);
            this.spinEdit_Gamma.MenuManager = this.ribbonControl1;
            this.spinEdit_Gamma.Name = "spinEdit_Gamma";
            this.spinEdit_Gamma.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Gamma.Properties.MaxValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.spinEdit_Gamma.Properties.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.spinEdit_Gamma.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Gamma.TabIndex = 10;
            this.spinEdit_Gamma.EditValueChanged += new System.EventHandler(this.spinEdit_Gamma_EditValueChanged);
            // 
            // pictureEdit3
            // 
            this.pictureEdit3.EditValue = global::HYMain.Properties.Resources.transparency;
            this.pictureEdit3.Location = new System.Drawing.Point(9, 60);
            this.pictureEdit3.MenuManager = this.ribbonControl1;
            this.pictureEdit3.Name = "pictureEdit3";
            this.pictureEdit3.Size = new System.Drawing.Size(17, 16);
            this.pictureEdit3.TabIndex = 9;
            this.pictureEdit3.ToolTip = "调整透明度";
            // 
            // trackBarControl_Transparency
            // 
            this.trackBarControl_Transparency.EditValue = null;
            this.trackBarControl_Transparency.Location = new System.Drawing.Point(38, 56);
            this.trackBarControl_Transparency.Name = "trackBarControl_Transparency";
            this.trackBarControl_Transparency.Properties.Maximum = 100;
            this.trackBarControl_Transparency.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Transparency.TabIndex = 8;
            this.trackBarControl_Transparency.EditValueChanged += new System.EventHandler(this.trackBarControl_Transparency_EditValueChanged);
            // 
            // spinEdit_Transparency
            // 
            this.spinEdit_Transparency.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spinEdit_Transparency.Location = new System.Drawing.Point(132, 59);
            this.spinEdit_Transparency.MenuManager = this.ribbonControl1;
            this.spinEdit_Transparency.Name = "spinEdit_Transparency";
            this.spinEdit_Transparency.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Transparency.Properties.MaxValue = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.spinEdit_Transparency.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Transparency.TabIndex = 7;
            this.spinEdit_Transparency.EditValueChanged += new System.EventHandler(this.spinEdit_Transparency_EditValueChanged);
            // 
            // pictureEdit2
            // 
            this.pictureEdit2.EditValue = global::HYMain.Properties.Resources.contrast;
            this.pictureEdit2.Location = new System.Drawing.Point(9, 36);
            this.pictureEdit2.MenuManager = this.ribbonControl1;
            this.pictureEdit2.Name = "pictureEdit2";
            this.pictureEdit2.Size = new System.Drawing.Size(17, 15);
            this.pictureEdit2.TabIndex = 6;
            this.pictureEdit2.ToolTip = "调整对比度";
            // 
            // trackBarControl_Contrast
            // 
            this.trackBarControl_Contrast.EditValue = 50;
            this.trackBarControl_Contrast.Location = new System.Drawing.Point(38, 32);
            this.trackBarControl_Contrast.Name = "trackBarControl_Contrast";
            this.trackBarControl_Contrast.Properties.Maximum = 100;
            this.trackBarControl_Contrast.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Contrast.TabIndex = 5;
            this.trackBarControl_Contrast.Value = 50;
            this.trackBarControl_Contrast.EditValueChanged += new System.EventHandler(this.trackBarControl_Contrast_EditValueChanged);
            // 
            // spinEdit_Contrast
            // 
            this.spinEdit_Contrast.EditValue = new decimal(new int[] {
            50,
            0,
            0,
            0});
            this.spinEdit_Contrast.Location = new System.Drawing.Point(132, 35);
            this.spinEdit_Contrast.MenuManager = this.ribbonControl1;
            this.spinEdit_Contrast.Name = "spinEdit_Contrast";
            this.spinEdit_Contrast.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Contrast.Properties.MaxValue = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.spinEdit_Contrast.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Contrast.TabIndex = 4;
            this.spinEdit_Contrast.EditValueChanged += new System.EventHandler(this.spinEdit_Contrast_EditValueChanged);
            // 
            // pictureEdit1
            // 
            this.pictureEdit1.EditValue = global::HYMain.Properties.Resources.bright;
            this.pictureEdit1.Location = new System.Drawing.Point(9, 11);
            this.pictureEdit1.MenuManager = this.ribbonControl1;
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Size = new System.Drawing.Size(17, 16);
            this.pictureEdit1.TabIndex = 3;
            this.pictureEdit1.ToolTip = "调整亮度";
            // 
            // trackBarControl_Bright
            // 
            this.trackBarControl_Bright.EditValue = 50;
            this.trackBarControl_Bright.Location = new System.Drawing.Point(38, 7);
            this.trackBarControl_Bright.Name = "trackBarControl_Bright";
            this.trackBarControl_Bright.Properties.Maximum = 100;
            this.trackBarControl_Bright.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Bright.TabIndex = 1;
            this.trackBarControl_Bright.Value = 50;
            this.trackBarControl_Bright.EditValueChanged += new System.EventHandler(this.trackBarControl_Bright_EditValueChanged);
            // 
            // spinEdit_Bright
            // 
            this.spinEdit_Bright.EditValue = new decimal(new int[] {
            50,
            0,
            0,
            0});
            this.spinEdit_Bright.Location = new System.Drawing.Point(132, 10);
            this.spinEdit_Bright.MenuManager = this.ribbonControl1;
            this.spinEdit_Bright.Name = "spinEdit_Bright";
            this.spinEdit_Bright.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Bright.Properties.MaxValue = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.spinEdit_Bright.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Bright.TabIndex = 0;
            this.spinEdit_Bright.EditValueChanged += new System.EventHandler(this.spinEdit_Bright_EditValueChanged);
            // 
            // navBarGroupControlContainer2
            // 
            this.navBarGroupControlContainer2.Name = "navBarGroupControlContainer2";
            this.navBarGroupControlContainer2.Size = new System.Drawing.Size(184, 87);
            this.navBarGroupControlContainer2.TabIndex = 1;
            // 
            // navBarGroup2
            // 
            this.navBarGroup2.Caption = "处理";
            this.navBarGroup2.ControlContainer = this.navBarGroupControlContainer2;
            this.navBarGroup2.GroupClientHeight = 94;
            this.navBarGroup2.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup2.Name = "navBarGroup2";
            // 
            // xtraTabControl
            // 
            this.xtraTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xtraTabControl.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Never;
            this.xtraTabControl.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
            this.xtraTabControl.Location = new System.Drawing.Point(200, 148);
            this.xtraTabControl.Name = "xtraTabControl";
            this.xtraTabControl.SelectedTabPage = this.xtraTabPage_Map;
            this.xtraTabControl.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.False;
            this.xtraTabControl.ShowTabHeader = DevExpress.Utils.DefaultBoolean.True;
            this.xtraTabControl.Size = new System.Drawing.Size(707, 466);
            this.xtraTabControl.TabIndex = 4;
            this.xtraTabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_Map,
            this.xtraTabPage_Layout});
            this.xtraTabControl.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
            // 
            // xtraTabPage_Map
            // 
            this.xtraTabPage_Map.Controls.Add(this.axusMapControl1);
            this.xtraTabPage_Map.Name = "xtraTabPage_Map";
            this.xtraTabPage_Map.Size = new System.Drawing.Size(700, 436);
            this.xtraTabPage_Map.Text = "Map";
            // 
            // xtraTabPage_Layout
            // 
            this.xtraTabPage_Layout.Name = "xtraTabPage_Layout";
            this.xtraTabPage_Layout.Size = new System.Drawing.Size(700, 436);
            this.xtraTabPage_Layout.Text = "Layout";
            // 
            // imageCollection4
            // 
            this.imageCollection4.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection4.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection4.ImageStream")));
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
            this.ribbonGalleryBarItem1.Id = 156;
            this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
            // 
            // iUndo
            // 
            this.iUndo.Id = -1;
            this.iUndo.Name = "iUndo";
            // 
            // barButtonItem11
            // 
            this.barButtonItem11.Caption = "redo";
            this.barButtonItem11.Id = 159;
            this.barButtonItem11.Name = "barButtonItem11";
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "保存";
            this.barSubItem1.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.barSubItem1.Description = "Saves the active document";
            this.barSubItem1.Hint = "Saves the active document";
            this.barSubItem1.Id = 0;
            this.barSubItem1.ImageIndex = 10;
            this.barSubItem1.LargeImageIndex = 2;
            this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.iSaveAs)});
            this.barSubItem1.Name = "barSubItem1";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ImageIndex = 26;
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Select);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ZoomIn);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ZoomOut);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Pan);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ProView);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_NextView);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_FullView);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Identify, true);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Attribute);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Find);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "浏览";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.ImageIndex = 1;
            this.ribbonPageGroup6.ItemLinks.Add(this.idNew);
            this.ribbonPageGroup6.ItemLinks.Add(this.iOpen);
            this.ribbonPageGroup6.ItemLinks.Add(this.iSave);
            this.ribbonPageGroup6.ItemLinks.Add(this.iPrint);
            this.ribbonPageGroup6.ItemLinks.Add(this.iCut, true);
            this.ribbonPageGroup6.ItemLinks.Add(this.iCopy);
            this.ribbonPageGroup6.ItemLinks.Add(this.iPaste);
            this.ribbonPageGroup6.ItemLinks.Add(this.iLargeUndo);
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Standard";
            // 
            // barButtonItem23
            // 
            this.barButtonItem23.Caption = "绘制点";
            this.barButtonItem23.Id = 186;
            this.barButtonItem23.LargeImageIndex = 24;
            this.barButtonItem23.Name = "barButtonItem23";
            // 
            // barEditItemLayers
            // 
            this.barEditItemLayers.Caption = "图层:";
            this.barEditItemLayers.Edit = this.repositoryItemComboBox4;
            this.barEditItemLayers.Id = 255;
            this.barEditItemLayers.Name = "barEditItemLayers";
            this.barEditItemLayers.Width = 120;
            // 
            // repositoryItemComboBox4
            // 
            this.repositoryItemComboBox4.AutoHeight = false;
            this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
            this.repositoryItemComboBox4.UseParentBackground = true;
            // 
            // repositoryItemButtonEdit2
            // 
            this.repositoryItemButtonEdit2.AutoHeight = false;
            this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
            this.repositoryItemButtonEdit2.UseParentBackground = true;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            this.repositoryItemTextEdit1.UseParentBackground = true;
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            this.repositoryItemTextEdit2.UseParentBackground = true;
            // 
            // barSubItem2
            // 
            this.barSubItem2.Caption = "加载地理数据";
            this.barSubItem2.Id = 260;
            this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonAddImage),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonAddShp)});
            this.barSubItem2.Name = "barSubItem2";
            // 
            // barButtonAddImage
            // 
            this.barButtonAddImage.Caption = "加载栅格";
            this.barButtonAddImage.Id = 261;
            this.barButtonAddImage.ImageIndex = 0;
            this.barButtonAddImage.Name = "barButtonAddImage";
            this.barButtonAddImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonAddImage_ItemClick);
            // 
            // barButtonAddShp
            // 
            this.barButtonAddShp.Caption = "加载矢量";
            this.barButtonAddShp.Id = 262;
            this.barButtonAddShp.ImageIndex = 1;
            this.barButtonAddShp.Name = "barButtonAddShp";
            this.barButtonAddShp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonAddShp_ItemClick);
            // 
            // axusMapControl1
            // 
            this.axusMapControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.axusMapControl1.Enabled = true;
            this.axusMapControl1.Location = new System.Drawing.Point(0, 0);
            this.axusMapControl1.Name = "axusMapControl1";
            this.axusMapControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axusMapControl1.OcxState")));
            this.axusMapControl1.Size = new System.Drawing.Size(700, 436);
            this.axusMapControl1.TabIndex = 0;
            // 
            // frmMain
            // 
            this.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Appearance.Options.UseFont = true;
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
            this.AutoSize = true;
            this.ClientSize = new System.Drawing.Size(1107, 640);
            this.Controls.Add(this.xtraTabControl);
            this.Controls.Add(this.dockPanel_ImageAnalyse);
            this.Controls.Add(this.panelContainer1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.IsMdiContainer = true;
            this.Name = "frmMain";
            this.Ribbon = this.ribbonControl1;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.StatusBar = this.ribbonStatusBar1;
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.Shown += new System.EventHandler(this.frmMain_Shown);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
            this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmAppMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel_Drawing.ResumeLayout(false);
            this.dockPanel5_Container.ResumeLayout(false);
            this.panelContainer1.ResumeLayout(false);
            this.dockPanel_Overview.ResumeLayout(false);
            this.dockPanel2.ResumeLayout(false);
            this.dockPanel_ImageAnalyse.ResumeLayout(false);
            this.dockPanel4_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.navBarControl1.ResumeLayout(false);
            this.navBarGroupControlContainer1.ResumeLayout(false);
            this.navBarGroupControlContainer1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_FlashTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Gamma.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Transparency.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Contrast.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Bright.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).EndInit();
            this.xtraTabControl.ResumeLayout(false);
            this.xtraTabPage_Map.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.axusMapControl1)).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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PLWord));
            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.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.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            this.iOpen = new DevExpress.XtraBars.BarButtonItem();
            this.pmMain = new DevExpress.XtraBars.PopupMenu(this.components);
            this.iUndo = new DevExpress.XtraBars.BarButtonItem();
            this.iCopy = new DevExpress.XtraBars.BarButtonItem();
            this.iCut = new DevExpress.XtraBars.BarButtonItem();
            this.iPaste = new DevExpress.XtraBars.BarButtonItem();
            this.iClear = new DevExpress.XtraBars.BarButtonItem();
            this.iSelectAll = new DevExpress.XtraBars.BarButtonItem();
            this.iFont = new DevExpress.XtraBars.BarButtonItem();
            this.gddFont = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.beiFontSize = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.bbiFontColorPopup = new DevExpress.XtraBars.BarButtonItem();
            this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.imageCollection2 = new DevExpress.Utils.ImageCollection(this.components);
            this.iSaveAs = new DevExpress.XtraBars.BarButtonItem();
            this.iPrint = new DevExpress.XtraBars.BarButtonItem();
            this.iExit = new DevExpress.XtraBars.BarButtonItem();
            this.iReplace = new DevExpress.XtraBars.BarButtonItem();
            this.iFind = new DevExpress.XtraBars.BarButtonItem();
            this.iBullets = new DevExpress.XtraBars.BarButtonItem();
            this.iProtected = new DevExpress.XtraBars.BarButtonItem();
            this.iBold = new DevExpress.XtraBars.BarButtonItem();
            this.iItalic = new DevExpress.XtraBars.BarButtonItem();
            this.iUnderline = new DevExpress.XtraBars.BarButtonItem();
            this.iAlignLeft = new DevExpress.XtraBars.BarButtonItem();
            this.iCenter = new DevExpress.XtraBars.BarButtonItem();
            this.iAlignRight = new DevExpress.XtraBars.BarButtonItem();
            this.iFontColor = new DevExpress.XtraBars.BarButtonItem();
            this.gddFontColor = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.siPosition = new DevExpress.XtraBars.BarButtonItem();
            this.siModified = new DevExpress.XtraBars.BarButtonItem();
            this.siDocName = new DevExpress.XtraBars.BarStaticItem();
            this.bgFontStyle = new DevExpress.XtraBars.BarButtonGroup();
            this.bgAlign = new DevExpress.XtraBars.BarButtonGroup();
            this.bgFont = new DevExpress.XtraBars.BarButtonGroup();
            this.bgBullets = new DevExpress.XtraBars.BarButtonGroup();
            this.sbiSave = new DevExpress.XtraBars.BarSubItem();
            this.barbtnSave = new DevExpress.XtraBars.BarButtonItem();
            this.sbiFind = new DevExpress.XtraBars.BarSubItem();
            this.iNew = new DevExpress.XtraBars.BarButtonItem();
            this.iLargeUndo = new DevExpress.XtraBars.BarLargeButtonItem();
            this.iTemplate = new DevExpress.XtraBars.BarButtonItem();
            this.rgbiFont = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.rgbiFontColor = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.barInsertImage = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barChonMau = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemChonTemplate = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barChonLoaiMau = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemLoaiMau = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barQLMau = new DevExpress.XtraBars.BarButtonItem();
            this.barXemTruoc = new DevExpress.XtraBars.BarButtonItem();
            this.barChon = new DevExpress.XtraBars.BarButtonItem();
            this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonPageCategory1 = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
            this.ribbonPage4 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup12 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup13 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            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.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup14 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageTemplate = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.iSave = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgFont = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgFontColor = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemRichTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.pcAppMenuFileLabels = new DevExpress.XtraEditors.PanelControl();
            this.rtbData = new System.Windows.Forms.RichTextBox();
            this.imageCollection3 = new DevExpress.Utils.ImageCollection(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.pmMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gddFont)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gddFontColor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemChonTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLoaiMau)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcAppMenuFileLabels)).BeginInit();
            this.pcAppMenuFileLabels.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).BeginInit();
            this.SuspendLayout();
            // 
            // iOpen
            // 
            this.iOpen.Caption = "&Open...";
            this.iOpen.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iOpen.Description = "Opens a file.";
            this.iOpen.Hint = "Open a file";
            this.iOpen.Id = 1;
            this.iOpen.ImageIndex = 7;
            this.iOpen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
            this.iOpen.LargeImageIndex = 9;
            this.iOpen.Name = "iOpen";
            this.iOpen.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iOpen.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.iOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpen_ItemClick);
            // 
            // pmMain
            // 
            this.pmMain.ItemLinks.Add(this.iUndo);
            this.pmMain.ItemLinks.Add(this.iCopy, true);
            this.pmMain.ItemLinks.Add(this.iCut);
            this.pmMain.ItemLinks.Add(this.iPaste);
            this.pmMain.ItemLinks.Add(this.iClear);
            this.pmMain.ItemLinks.Add(this.iSelectAll);
            this.pmMain.ItemLinks.Add(this.iFont, true);
            this.pmMain.ItemLinks.Add(this.iBullets);
            this.pmMain.MenuCaption = "Edit Menu";
            this.pmMain.Name = "pmMain";
            this.pmMain.Ribbon = this.ribbonControl1;
            this.pmMain.ShowCaption = true;
            // 
            // iUndo
            // 
            this.iUndo.Caption = "&Undo";
            this.iUndo.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iUndo.Description = "Reverses the last command or deletes the last entry you typed.";
            this.iUndo.Hint = "Undo";
            this.iUndo.Id = 8;
            this.iUndo.ImageIndex = 11;
            this.iUndo.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z));
            this.iUndo.Name = "iUndo";
            this.iUndo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iUndo_ItemClick);
            // 
            // iCopy
            // 
            this.iCopy.Caption = "&Copy";
            this.iCopy.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iCopy.Description = "Copies the selection to the Clipboard.";
            this.iCopy.Hint = "Copy";
            this.iCopy.Id = 10;
            this.iCopy.ImageIndex = 1;
            this.iCopy.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C));
            this.iCopy.Name = "iCopy";
            this.iCopy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCopy_ItemClick);
            // 
            // iCut
            // 
            this.iCut.Caption = "Cu&t";
            this.iCut.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iCut.Description = "Removes the selection from the active document and places it on the Clipboard.";
            this.iCut.Hint = "Cut";
            this.iCut.Id = 9;
            this.iCut.ImageIndex = 2;
            this.iCut.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X));
            this.iCut.Name = "iCut";
            this.iCut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCut_ItemClick);
            // 
            // iPaste
            // 
            this.iPaste.Caption = "&Paste";
            this.iPaste.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iPaste.Description = "Inserts the contents of the Clipboard at the insertion point, and replaces any se" +
                "lection. This command is available only if you have cut or copied a text.";
            this.iPaste.Hint = "Paste";
            this.iPaste.Id = 11;
            this.iPaste.ImageIndex = 8;
            this.iPaste.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V));
            this.iPaste.Name = "iPaste";
            this.iPaste.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPaste_ItemClick);
            // 
            // iClear
            // 
            this.iClear.Caption = "Cle&ar";
            this.iClear.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iClear.Description = "Deletes the selected text without putting it on the Clipboard. This command is av" +
                "ailable only if a text is selected. ";
            this.iClear.Hint = "Clear";
            this.iClear.Id = 12;
            this.iClear.Name = "iClear";
            this.iClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iClear_ItemClick);
            // 
            // iSelectAll
            // 
            this.iSelectAll.Caption = "Select A&ll";
            this.iSelectAll.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iSelectAll.Description = "Selects all text in the active document.";
            this.iSelectAll.Hint = "Selects all text in the active document.";
            this.iSelectAll.Id = 13;
            this.iSelectAll.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A));
            this.iSelectAll.Name = "iSelectAll";
            this.iSelectAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSelectAll_ItemClick);
            // 
            // iFont
            // 
            this.iFont.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.iFont.Caption = "&Font...";
            this.iFont.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iFont.Description = "Changes the font and character spacing formats of the selected text.";
            this.iFont.DropDownControl = this.gddFont;
            this.iFont.Hint = "Font Dialog";
            this.iFont.Id = 17;
            this.iFont.ImageIndex = 4;
            this.iFont.Name = "iFont";
            this.iFont.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.iFont.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iFont_ItemClick);
            // 
            // gddFont
            // 
            // 
            // 
            // 
            this.gddFont.Gallery.Appearance.ItemCaption.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.gddFont.Gallery.Appearance.ItemCaption.Options.UseFont = true;
            this.gddFont.Gallery.Appearance.ItemCaption.Options.UseTextOptions = true;
            this.gddFont.Gallery.Appearance.ItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gddFont.Gallery.Appearance.ItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gddFont.Gallery.Appearance.ItemDescription.Options.UseTextOptions = true;
            this.gddFont.Gallery.Appearance.ItemDescription.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gddFont.Gallery.Appearance.ItemDescription.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gddFont.Gallery.ColumnCount = 1;
            this.gddFont.Gallery.FixedImageSize = false;
            galleryItemGroup1.Caption = "Main Skins";
            this.gddFont.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.gddFont.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.gddFont.Gallery.RowCount = 6;
            this.gddFont.Gallery.ShowGroupCaption = false;
            this.gddFont.Gallery.ShowItemText = true;
            this.gddFont.Gallery.SizeMode = DevExpress.XtraBars.Ribbon.GallerySizeMode.Vertical;
            this.gddFont.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.gddFont_Gallery_ItemClick);
            this.gddFont.Gallery.CustomDrawItemText += new DevExpress.XtraBars.Ribbon.GalleryItemCustomDrawEventHandler(this.gddFont_Gallery_CustomDrawItemText);
            this.gddFont.ItemLinks.Add(this.beiFontSize);
            this.gddFont.ItemLinks.Add(this.bbiFontColorPopup);
            this.gddFont.Name = "gddFont";
            this.gddFont.Ribbon = this.ribbonControl1;
            this.gddFont.Popup += new System.EventHandler(this.gddFont_Popup);
            // 
            // beiFontSize
            // 
            this.beiFontSize.Caption = "Font Size";
            this.beiFontSize.Edit = this.repositoryItemSpinEdit1;
            this.beiFontSize.Hint = "Font Size";
            this.beiFontSize.Id = 27;
            this.beiFontSize.Name = "beiFontSize";
            // 
            // 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[] {
            50,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            6,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // bbiFontColorPopup
            // 
            this.bbiFontColorPopup.ActAsDropDown = true;
            this.bbiFontColorPopup.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.bbiFontColorPopup.Caption = "Font Color";
            this.bbiFontColorPopup.Description = "Formats the selected text with the color you click";
            this.bbiFontColorPopup.DropDownControl = this.popupControlContainer1;
            this.bbiFontColorPopup.Hint = "Formats the selected text with the color you click";
            this.bbiFontColorPopup.Id = 36;
            this.bbiFontColorPopup.Name = "bbiFontColorPopup";
            // 
            // popupControlContainer1
            // 
            this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainer1.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainer1.Name = "popupControlContainer1";
            this.popupControlContainer1.Size = new System.Drawing.Size(0, 0);
            this.popupControlContainer1.TabIndex = 6;
            this.popupControlContainer1.Visible = false;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonKeyTip = "";
            this.ribbonControl1.ApplicationIcon = null;
            this.ribbonControl1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            new DevExpress.XtraBars.BarManagerCategory("File", new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f")),
            new DevExpress.XtraBars.BarManagerCategory("Edit", new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1")),
            new DevExpress.XtraBars.BarManagerCategory("Format", new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258")),
            new DevExpress.XtraBars.BarManagerCategory("Help", new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b")),
            new DevExpress.XtraBars.BarManagerCategory("Status", new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d"))});
            this.ribbonControl1.Images = this.imageCollection2;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.iOpen,
            this.iUndo,
            this.iSaveAs,
            this.iPrint,
            this.iExit,
            this.iReplace,
            this.iCut,
            this.iCopy,
            this.iPaste,
            this.iClear,
            this.iSelectAll,
            this.iFind,
            this.iFont,
            this.iBullets,
            this.iProtected,
            this.iBold,
            this.iItalic,
            this.iUnderline,
            this.iAlignLeft,
            this.iCenter,
            this.iAlignRight,
            this.iFontColor,
            this.siPosition,
            this.siModified,
            this.siDocName,
            this.bgFontStyle,
            this.bgAlign,
            this.bgFont,
            this.bgBullets,
            this.sbiSave,
            this.sbiFind,
            this.iNew,
            this.iLargeUndo,
            this.iTemplate,
            this.beiFontSize,
            this.rgbiFont,
            this.bbiFontColorPopup,
            this.rgbiFontColor,
            this.barEditItem1,
            this.barInsertImage,
            this.barButtonItem1,
            this.barbtnSave,
            this.barChonMau,
            this.barChonLoaiMau,
            this.barQLMau,
            this.barXemTruoc,
            this.barChon});
            this.ribbonControl1.LargeImages = this.imageCollection1;
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 161;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.ribbonPageCategory1});
            this.ribbonControl1.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Right;
            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.repositoryItemSpinEdit1,
            this.repositoryItemPictureEdit1,
            this.repositoryItemRichTextEdit1,
            this.repositoryItemChonTemplate,
            this.repositoryItemLoaiMau});
            this.ribbonControl1.SelectedPage = this.ribbonPage1;
            this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Show;
            this.ribbonControl1.ShowToolbarCustomizeItem = false;
            this.ribbonControl1.Size = new System.Drawing.Size(799, 115);
            this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
            this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
            // 
            // imageCollection2
            // 
            this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
            // 
            // iSaveAs
            // 
            this.iSaveAs.Caption = "Save &As...";
            this.iSaveAs.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iSaveAs.Description = "Saves the active document with a different file name.";
            this.iSaveAs.Hint = "Saves the active document with a different file name";
            this.iSaveAs.Id = 4;
            this.iSaveAs.ImageIndex = 21;
            this.iSaveAs.Name = "iSaveAs";
            this.iSaveAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveAs_ItemClick);
            // 
            // iPrint
            // 
            this.iPrint.Caption = "&Print";
            this.iPrint.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iPrint.Description = "Prints the active document.";
            this.iPrint.Hint = "Prints the active document";
            this.iPrint.Id = 5;
            this.iPrint.ImageIndex = 9;
            this.iPrint.Name = "iPrint";
            this.iPrint.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // iExit
            // 
            this.iExit.Caption = "E&xit";
            this.iExit.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iExit.Description = "Closes this program after prompting you to save unsaved document.";
            this.iExit.Hint = "Closes this program after prompting you to save unsaved document.";
            this.iExit.Id = 6;
            this.iExit.Name = "iExit";
            // 
            // iReplace
            // 
            this.iReplace.Caption = "R&eplace...";
            this.iReplace.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iReplace.Description = "Searches for and replaces the specified text.";
            this.iReplace.Hint = "Replace";
            this.iReplace.Id = 15;
            this.iReplace.ImageIndex = 14;
            this.iReplace.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H));
            this.iReplace.Name = "iReplace";
            this.iReplace.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iReplace_ItemClick);
            // 
            // iFind
            // 
            this.iFind.Caption = "&Find...";
            this.iFind.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iFind.Description = "Searches for the specified text.";
            this.iFind.Hint = "Find";
            this.iFind.Id = 14;
            this.iFind.ImageIndex = 3;
            this.iFind.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F));
            this.iFind.Name = "iFind";
            this.iFind.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iFind_ItemClick);
            // 
            // iBullets
            // 
            this.iBullets.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iBullets.Caption = "&Bullets";
            this.iBullets.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iBullets.Description = "Adds bullets to or removes bullets from selected paragraphs.";
            this.iBullets.Hint = "Bullets";
            this.iBullets.Id = 18;
            this.iBullets.ImageIndex = 0;
            this.iBullets.Name = "iBullets";
            this.iBullets.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBullets_ItemClick);
            // 
            // iProtected
            // 
            this.iProtected.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iProtected.Caption = "P&rotected";
            this.iProtected.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iProtected.Description = "Protects the selected text.";
            this.iProtected.Hint = "Protects the selected text";
            this.iProtected.Id = 19;
            this.iProtected.Name = "iProtected";
            this.iProtected.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iProtected_ItemClick);
            // 
            // iBold
            // 
            this.iBold.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iBold.Caption = "&Bold";
            this.iBold.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iBold.Description = "Makes selected text and numbers bold. If the selection is already bold, clicking " +
                "button removes bold formatting.";
            this.iBold.Hint = "Bold";
            this.iBold.Id = 24;
            this.iBold.ImageIndex = 15;
            this.iBold.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B));
            this.iBold.Name = "iBold";
            this.iBold.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBold_ItemClick);
            // 
            // iItalic
            // 
            this.iItalic.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iItalic.Caption = "&Italic";
            this.iItalic.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iItalic.Description = "Makes selected text and numbers italic. If the selection is already italic, click" +
                "ing button removes italic formatting.";
            this.iItalic.Hint = "Italic";
            this.iItalic.Id = 25;
            this.iItalic.ImageIndex = 16;
            this.iItalic.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I));
            this.iItalic.Name = "iItalic";
            this.iItalic.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iItalic_ItemClick);
            // 
            // iUnderline
            // 
            this.iUnderline.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iUnderline.Caption = "&Underline";
            this.iUnderline.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iUnderline.Description = "Underlines selected text and numbers. If the selection is already underlined, cli" +
                "cking button removes underlining.";
            this.iUnderline.Hint = "Underline";
            this.iUnderline.Id = 26;
            this.iUnderline.ImageIndex = 17;
            this.iUnderline.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U));
            this.iUnderline.Name = "iUnderline";
            this.iUnderline.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iUnderline_ItemClick);
            // 
            // iAlignLeft
            // 
            this.iAlignLeft.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iAlignLeft.Caption = "Align &Left";
            this.iAlignLeft.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iAlignLeft.Description = "Aligns the selected text to the left.";
            this.iAlignLeft.GroupIndex = 1;
            this.iAlignLeft.Hint = "Align Left";
            this.iAlignLeft.Id = 27;
            this.iAlignLeft.ImageIndex = 18;
            this.iAlignLeft.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L));
            this.iAlignLeft.Name = "iAlignLeft";
            this.iAlignLeft.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAlignLeft_ItemClick);
            // 
            // iCenter
            // 
            this.iCenter.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iCenter.Caption = "&Center";
            this.iCenter.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iCenter.Description = "Centers the selected text.";
            this.iCenter.GroupIndex = 1;
            this.iCenter.Hint = "Center";
            this.iCenter.Id = 28;
            this.iCenter.ImageIndex = 19;
            this.iCenter.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E));
            this.iCenter.Name = "iCenter";
            this.iCenter.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCenter_ItemClick);
            // 
            // iAlignRight
            // 
            this.iAlignRight.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.iAlignRight.Caption = "Align &Right";
            this.iAlignRight.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iAlignRight.Description = "Aligns the selected text to the right.";
            this.iAlignRight.GroupIndex = 1;
            this.iAlignRight.Hint = "Align Right";
            this.iAlignRight.Id = 29;
            this.iAlignRight.ImageIndex = 20;
            this.iAlignRight.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R));
            this.iAlignRight.Name = "iAlignRight";
            this.iAlignRight.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAlignRight_ItemClick);
            // 
            // iFontColor
            // 
            this.iFontColor.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.iFontColor.Caption = "Font C&olor";
            this.iFontColor.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iFontColor.Description = "Formats the selected text with the color you click.";
            this.iFontColor.DropDownControl = this.gddFontColor;
            this.iFontColor.Hint = "Font Color";
            this.iFontColor.Id = 30;
            this.iFontColor.ImageIndex = 5;
            this.iFontColor.Name = "iFontColor";
            this.iFontColor.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iFontColor_ItemClick);
            // 
            // gddFontColor
            // 
            // 
            // 
            // 
            this.gddFontColor.Gallery.Appearance.ItemCaption.Font = new System.Drawing.Font("Tahoma", 6.75F);
            this.gddFontColor.Gallery.Appearance.ItemCaption.Options.UseFont = true;
            this.gddFontColor.Gallery.Appearance.ItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gddFontColor.Gallery.FilterCaption = "All Colors";
            this.gddFontColor.Gallery.FixedImageSize = false;
            galleryItemGroup2.Caption = "Web Colors";
            galleryItemGroup3.Caption = "System Colors";
            this.gddFontColor.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2,
            galleryItemGroup3});
            this.gddFontColor.Gallery.ImageSize = new System.Drawing.Size(48, 16);
            this.gddFontColor.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.gddFontColor.Gallery.RowCount = 5;
            this.gddFontColor.Gallery.ShowItemText = true;
            this.gddFontColor.Gallery.SizeMode = DevExpress.XtraBars.Ribbon.GallerySizeMode.Both;
            this.gddFontColor.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.gddFontColor_Gallery_ItemClick);
            this.gddFontColor.Gallery.CustomDrawItemImage += new DevExpress.XtraBars.Ribbon.GalleryItemCustomDrawEventHandler(this.gddFontColor_Gallery_CustomDrawItemImage);
            this.gddFontColor.Name = "gddFontColor";
            this.gddFontColor.Ribbon = this.ribbonControl1;
            // 
            // siPosition
            // 
            this.siPosition.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siPosition.Id = 0;
            this.siPosition.Name = "siPosition";
            // 
            // siModified
            // 
            this.siModified.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siModified.Id = 1;
            this.siModified.Name = "siModified";
            // 
            // siDocName
            // 
            this.siDocName.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siDocName.Id = 2;
            this.siDocName.Name = "siDocName";
            this.siDocName.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // bgFontStyle
            // 
            this.bgFontStyle.Caption = "FontStyle";
            this.bgFontStyle.Id = 0;
            this.bgFontStyle.ItemLinks.Add(this.iBold);
            this.bgFontStyle.ItemLinks.Add(this.iItalic);
            this.bgFontStyle.ItemLinks.Add(this.iUnderline);
            this.bgFontStyle.Name = "bgFontStyle";
            // 
            // bgAlign
            // 
            this.bgAlign.Caption = "Align";
            this.bgAlign.Id = 0;
            this.bgAlign.ItemLinks.Add(this.iAlignLeft);
            this.bgAlign.ItemLinks.Add(this.iCenter);
            this.bgAlign.ItemLinks.Add(this.iAlignRight);
            this.bgAlign.Name = "bgAlign";
            // 
            // bgFont
            // 
            this.bgFont.Caption = "Font";
            this.bgFont.Id = 0;
            this.bgFont.ItemLinks.Add(this.iFont);
            this.bgFont.ItemLinks.Add(this.iFontColor);
            this.bgFont.Name = "bgFont";
            // 
            // bgBullets
            // 
            this.bgBullets.Caption = "Bullets";
            this.bgBullets.Id = 1;
            this.bgBullets.ItemLinks.Add(this.iBullets);
            this.bgBullets.ItemLinks.Add(this.iProtected);
            this.bgBullets.Name = "bgBullets";
            // 
            // sbiSave
            // 
            this.sbiSave.Caption = "Save";
            this.sbiSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.sbiSave.Description = "Saves the active document";
            this.sbiSave.Hint = "Saves the active document";
            this.sbiSave.Id = 0;
            this.sbiSave.LargeImageIndex = 2;
            this.sbiSave.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barbtnSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.iSaveAs)});
            this.sbiSave.Name = "sbiSave";
            this.sbiSave.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // barbtnSave
            // 
            this.barbtnSave.Caption = "Save";
            this.barbtnSave.Id = 122;
            this.barbtnSave.ImageIndex = 10;
            this.barbtnSave.Name = "barbtnSave";
            this.barbtnSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnSave_ItemClick);
            // 
            // sbiFind
            // 
            this.sbiFind.Caption = "Find";
            this.sbiFind.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.sbiFind.Description = "Searches for the specified text";
            this.sbiFind.Hint = "Searches for the specified text";
            this.sbiFind.Id = 2;
            this.sbiFind.LargeImageIndex = 4;
            this.sbiFind.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iReplace),
            new DevExpress.XtraBars.LinkPersistInfo(this.iFind)});
            this.sbiFind.Name = "sbiFind";
            this.sbiFind.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                        | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // iNew
            // 
            this.iNew.Caption = "&New";
            this.iNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iNew.Description = "Creates a new, blank file.";
            this.iNew.Hint = "Creates a new, blank file";
            this.iNew.Id = 0;
            this.iNew.Name = "iNew";
            // 
            // iLargeUndo
            // 
            this.iLargeUndo.Caption = "&Undo";
            this.iLargeUndo.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iLargeUndo.Hint = "Undo";
            this.iLargeUndo.Id = 0;
            this.iLargeUndo.LargeImageIndex = 5;
            this.iLargeUndo.Name = "iLargeUndo";
            this.iLargeUndo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iLargeUndo_ItemClick);
            // 
            // iTemplate
            // 
            this.iTemplate.Caption = "Template...";
            this.iTemplate.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iTemplate.Description = "Creates a new template";
            this.iTemplate.Enabled = false;
            this.iTemplate.Hint = "Creates a new template";
            this.iTemplate.Id = 1;
            this.iTemplate.Name = "iTemplate";
            // 
            // rgbiFont
            // 
            this.rgbiFont.Caption = "Font";
            // 
            // 
            // 
            this.rgbiFont.Gallery.AllowHoverImages = true;
            galleryItemGroup4.Caption = "System Colors";
            this.rgbiFont.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup4});
            this.rgbiFont.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiFont_Gallery_ItemClick);
            this.rgbiFont.GalleryDropDown = this.gddFont;
            this.rgbiFont.Id = 29;
            this.rgbiFont.Name = "rgbiFont";
            // 
            // rgbiFontColor
            // 
            this.rgbiFontColor.Caption = "Color";
            // 
            // 
            // 
            this.rgbiFontColor.Gallery.ColumnCount = 10;
            galleryItemGroup5.Caption = "Main";
            this.rgbiFontColor.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup5});
            this.rgbiFontColor.Gallery.ImageSize = new System.Drawing.Size(10, 7);
            this.rgbiFontColor.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiFontColor_Gallery_ItemClick);
            this.rgbiFontColor.Gallery.CustomDrawItemImage += new DevExpress.XtraBars.Ribbon.GalleryItemCustomDrawEventHandler(this.gddFontColor_Gallery_CustomDrawItemImage);
            this.rgbiFontColor.GalleryDropDown = this.gddFontColor;
            this.rgbiFontColor.Id = 37;
            this.rgbiFontColor.Name = "rgbiFontColor";
            // 
            // barEditItem1
            // 
            this.barEditItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barEditItem1.CanOpenEdit = false;
            this.barEditItem1.Edit = this.repositoryItemPictureEdit1;
            this.barEditItem1.Id = 94;
            this.barEditItem1.Name = "barEditItem1";
            this.barEditItem1.Width = 130;
            // 
            // repositoryItemPictureEdit1
            // 
            this.repositoryItemPictureEdit1.AllowFocused = false;
            this.repositoryItemPictureEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
            // 
            // barInsertImage
            // 
            this.barInsertImage.Caption = "Insert Image";
            this.barInsertImage.Id = 105;
            this.barInsertImage.LargeImageIndex = 5;
            this.barInsertImage.LargeWidth = 50;
            this.barInsertImage.Name = "barInsertImage";
            this.barInsertImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barInsertImage_ItemClick);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Save";
            this.barButtonItem1.Id = 120;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barChonMau
            // 
            this.barChonMau.Caption = "Chọn mẫu";
            this.barChonMau.Edit = this.repositoryItemChonTemplate;
            this.barChonMau.Id = 154;
            this.barChonMau.Name = "barChonMau";
            this.barChonMau.Width = 150;
            // 
            // repositoryItemChonTemplate
            // 
            this.repositoryItemChonTemplate.AutoHeight = false;
            this.repositoryItemChonTemplate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemChonTemplate.Name = "repositoryItemChonTemplate";
            // 
            // barChonLoaiMau
            // 
            this.barChonLoaiMau.Caption = "Loại mẫu  ";
            this.barChonLoaiMau.Edit = this.repositoryItemLoaiMau;
            this.barChonLoaiMau.Id = 156;
            this.barChonLoaiMau.Name = "barChonLoaiMau";
            this.barChonLoaiMau.Width = 150;
            // 
            // repositoryItemLoaiMau
            // 
            this.repositoryItemLoaiMau.AutoHeight = false;
            this.repositoryItemLoaiMau.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemLoaiMau.Name = "repositoryItemLoaiMau";
            // 
            // barQLMau
            // 
            this.barQLMau.Caption = "Kho mẫu";
            this.barQLMau.Id = 157;
            this.barQLMau.Name = "barQLMau";
            this.barQLMau.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barQLMau_ItemClick);
            // 
            // barXemTruoc
            // 
            this.barXemTruoc.Caption = "Xem mẫu";
            this.barXemTruoc.Id = 158;
            this.barXemTruoc.Name = "barXemTruoc";
            this.barXemTruoc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barXemTruoc_ItemClick);
            // 
            // barChon
            // 
            this.barChon.Caption = "<Chọn>";
            this.barChon.Id = 159;
            this.barChon.Name = "barChon";
            this.barChon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barChon_ItemClick);
            // 
            // imageCollection1
            // 
            this.imageCollection1.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
            // 
            // ribbonPageCategory1
            // 
            this.ribbonPageCategory1.Name = "ribbonPageCategory1";
            this.ribbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage4});
            this.ribbonPageCategory1.Text = "Selection";
            // 
            // ribbonPage4
            // 
            this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup12,
            this.ribbonPageGroup13});
            this.ribbonPage4.KeyTip = "";
            this.ribbonPage4.Name = "ribbonPage4";
            this.ribbonPage4.Text = "Selection";
            // 
            // ribbonPageGroup12
            // 
            this.ribbonPageGroup12.ItemLinks.Add(this.iCut, true);
            this.ribbonPageGroup12.ItemLinks.Add(this.iCopy);
            this.ribbonPageGroup12.ItemLinks.Add(this.iClear);
            this.ribbonPageGroup12.KeyTip = "";
            this.ribbonPageGroup12.Name = "ribbonPageGroup12";
            this.ribbonPageGroup12.ShowCaptionButton = false;
            this.ribbonPageGroup12.Text = "Edit";
            // 
            // ribbonPageGroup13
            // 
            this.ribbonPageGroup13.ItemLinks.Add(this.iBold);
            this.ribbonPageGroup13.ItemLinks.Add(this.iItalic);
            this.ribbonPageGroup13.ItemLinks.Add(this.iUnderline);
            this.ribbonPageGroup13.ItemLinks.Add(this.rgbiFont);
            this.ribbonPageGroup13.ItemLinks.Add(this.rgbiFontColor);
            this.ribbonPageGroup13.KeyTip = "";
            this.ribbonPageGroup13.Name = "ribbonPageGroup13";
            this.ribbonPageGroup13.ShowCaptionButton = false;
            this.ribbonPageGroup13.Text = "Format";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup4,
            this.ribbonPageGroup14,
            this.ribbonPageTemplate});
            this.ribbonPage1.KeyTip = "";
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "Home";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.iOpen);
            this.ribbonPageGroup1.ItemLinks.Add(this.iPrint);
            this.ribbonPageGroup1.ItemLinks.Add(this.sbiSave, true);
            this.ribbonPageGroup1.KeyTip = "";
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            toolTipTitleItem1.Text = "Open File Dialog";
            toolTipItem1.Appearance.Options.UseImage = true;
            toolTipItem1.Text = "Show the Open file dialog box";
            toolTipTitleItem2.Appearance.Options.UseImage = true;
            toolTipTitleItem2.Text = "For more information see help";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.Items.Add(toolTipSeparatorItem1);
            superToolTip1.Items.Add(toolTipTitleItem2);
            this.ribbonPageGroup1.SuperTip = superToolTip1;
            this.ribbonPageGroup1.Text = "File";
            this.ribbonPageGroup1.CaptionButtonClick += new DevExpress.XtraBars.Ribbon.RibbonPageGroupEventHandler(this.ribbonPageGroup1_CaptionButtonClick);
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.iPaste);
            this.ribbonPageGroup2.ItemLinks.Add(this.iCut);
            this.ribbonPageGroup2.ItemLinks.Add(this.iCopy);
            this.ribbonPageGroup2.ItemLinks.Add(this.iUndo, true);
            this.ribbonPageGroup2.ItemLinks.Add(this.iSelectAll);
            this.ribbonPageGroup2.ItemLinks.Add(this.iClear);
            this.ribbonPageGroup2.KeyTip = "";
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            toolTipTitleItem3.Text = "Edit Popup Menu";
            toolTipItem2.Appearance.Options.UseImage = true;
            toolTipItem2.Text = "Show the Edit popup menu";
            superToolTip2.Items.Add(toolTipTitleItem3);
            superToolTip2.Items.Add(toolTipItem2);
            this.ribbonPageGroup2.SuperTip = superToolTip2;
            this.ribbonPageGroup2.Text = "Edit";
            this.ribbonPageGroup2.CaptionButtonClick += new DevExpress.XtraBars.Ribbon.RibbonPageGroupEventHandler(this.ribbonPageGroup2_CaptionButtonClick);
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.bgFontStyle);
            this.ribbonPageGroup3.ItemLinks.Add(this.bgFont);
            this.ribbonPageGroup3.ItemLinks.Add(this.bgBullets);
            this.ribbonPageGroup3.ItemLinks.Add(this.bgAlign);
            this.ribbonPageGroup3.KeyTip = "";
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Format";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.sbiFind);
            this.ribbonPageGroup4.KeyTip = "";
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "Find";
            // 
            // ribbonPageGroup14
            // 
            this.ribbonPageGroup14.ItemLinks.Add(this.barInsertImage);
            this.ribbonPageGroup14.KeyTip = "";
            this.ribbonPageGroup14.Name = "ribbonPageGroup14";
            this.ribbonPageGroup14.ShowCaptionButton = false;
            this.ribbonPageGroup14.Text = "Image";
            // 
            // ribbonPageTemplate
            // 
            this.ribbonPageTemplate.ItemLinks.Add(this.barChonLoaiMau);
            this.ribbonPageTemplate.ItemLinks.Add(this.barChonMau);
            this.ribbonPageTemplate.ItemLinks.Add(this.barXemTruoc, true);
            this.ribbonPageTemplate.ItemLinks.Add(this.barQLMau);
            this.ribbonPageTemplate.ItemLinks.Add(this.barChon);
            this.ribbonPageTemplate.KeyTip = "";
            this.ribbonPageTemplate.Name = "ribbonPageTemplate";
            this.ribbonPageTemplate.Text = "Tập tin mẫu";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup5,
            this.ribbonPageGroup6,
            this.ribbonPageGroup7});
            this.ribbonPage2.KeyTip = "";
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "Alternative Page";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.iPrint);
            this.ribbonPageGroup5.ItemLinks.Add(this.iOpen);
            this.ribbonPageGroup5.ItemLinks.Add(this.iSave);
            this.ribbonPageGroup5.ItemLinks.Add(this.iCut, true);
            this.ribbonPageGroup5.ItemLinks.Add(this.iCopy);
            this.ribbonPageGroup5.ItemLinks.Add(this.iPaste);
            this.ribbonPageGroup5.ItemLinks.Add(this.iLargeUndo);
            this.ribbonPageGroup5.KeyTip = "";
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Standard";
            // 
            // iSave
            // 
            this.iSave.Caption = "&Save";
            this.iSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iSave.Description = "Saves the active document with its current file name.";
            this.iSave.Hint = "Saves the active document with its current file name";
            this.iSave.Id = 3;
            this.iSave.ImageIndex = 10;
            this.iSave.Name = "iSave";
            this.iSave.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.iSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSave_ItemClick);
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.ItemLinks.Add(this.iBold);
            this.ribbonPageGroup6.ItemLinks.Add(this.iItalic);
            this.ribbonPageGroup6.ItemLinks.Add(this.iUnderline);
            this.ribbonPageGroup6.ItemLinks.Add(this.iAlignLeft, true);
            this.ribbonPageGroup6.ItemLinks.Add(this.iCenter);
            this.ribbonPageGroup6.ItemLinks.Add(this.iAlignRight);
            this.ribbonPageGroup6.ItemLinks.Add(this.iBullets, true);
            this.ribbonPageGroup6.ItemLinks.Add(this.iProtected);
            this.ribbonPageGroup6.KeyTip = "";
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Format";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.ItemLinks.Add(this.iFont);
            this.ribbonPageGroup7.ItemLinks.Add(this.iFontColor);
            this.ribbonPageGroup7.KeyTip = "";
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.ShowCaptionButton = false;
            this.ribbonPageGroup7.Text = "Font";
            // 
            // ribbonPage3
            // 
            this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgFont,
            this.rpgFontColor});
            this.ribbonPage3.KeyTip = "";
            this.ribbonPage3.Name = "ribbonPage3";
            this.ribbonPage3.Text = "Gallery Page";
            // 
            // rpgFont
            // 
            this.rpgFont.ItemLinks.Add(this.rgbiFont);
            this.rpgFont.KeyTip = "";
            this.rpgFont.Name = "rpgFont";
            toolTipTitleItem4.Text = "Font Dialog";
            toolTipItem3.Appearance.Options.UseImage = true;
            toolTipItem3.Text = "Show the Font dialog box";
            superToolTip3.Items.Add(toolTipTitleItem4);
            superToolTip3.Items.Add(toolTipItem3);
            this.rpgFont.SuperTip = superToolTip3;
            this.rpgFont.Text = "Font";
            this.rpgFont.CaptionButtonClick += new DevExpress.XtraBars.Ribbon.RibbonPageGroupEventHandler(this.rpgFont_CaptionButtonClick);
            // 
            // rpgFontColor
            // 
            this.rpgFontColor.ItemLinks.Add(this.rgbiFontColor);
            this.rpgFontColor.KeyTip = "";
            this.rpgFontColor.Name = "rpgFontColor";
            this.rpgFontColor.ShowCaptionButton = false;
            toolTipTitleItem5.Text = "Color Edit";
            toolTipItem4.Appearance.Options.UseImage = true;
            toolTipItem4.Text = "Show the Color edit popup";
            superToolTip4.Items.Add(toolTipTitleItem5);
            superToolTip4.Items.Add(toolTipItem4);
            this.rpgFontColor.SuperTip = superToolTip4;
            this.rpgFontColor.Text = "Font Color";
            // 
            // repositoryItemRichTextEdit1
            // 
            this.repositoryItemRichTextEdit1.Name = "repositoryItemRichTextEdit1";
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.labelControl1.Appearance.Options.UseFont = true;
            this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
            this.labelControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
            this.labelControl1.LineVisible = true;
            this.labelControl1.Location = new System.Drawing.Point(10, 0);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(300, 19);
            this.labelControl1.TabIndex = 0;
            this.labelControl1.Text = "Recent Documents:";
            // 
            // panelControl1
            // 
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelControl1.Location = new System.Drawing.Point(0, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(10, 162);
            this.panelControl1.TabIndex = 1;
            // 
            // pcAppMenuFileLabels
            // 
            this.pcAppMenuFileLabels.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pcAppMenuFileLabels.Controls.Add(this.rtbData);
            this.pcAppMenuFileLabels.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pcAppMenuFileLabels.Location = new System.Drawing.Point(0, 115);
            this.pcAppMenuFileLabels.Name = "pcAppMenuFileLabels";
            this.pcAppMenuFileLabels.Size = new System.Drawing.Size(799, 402);
            this.pcAppMenuFileLabels.TabIndex = 2;
            // 
            // rtbData
            // 
            this.rtbData.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rtbData.Location = new System.Drawing.Point(0, 0);
            this.rtbData.Name = "rtbData";
            this.rtbData.Size = new System.Drawing.Size(799, 402);
            this.rtbData.TabIndex = 2;
            this.rtbData.Text = "";
            this.rtbData.SelectionChanged += new System.EventHandler(this.richTextBox1_SelectionChanged);
            this.rtbData.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
            // 
            // imageCollection3
            // 
            this.imageCollection3.ImageSize = new System.Drawing.Size(15, 15);
            this.imageCollection3.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection3.ImageStream")));
            // 
            // PLWord
            // 
            this.Controls.Add(this.pcAppMenuFileLabels);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "PLWord";
            this.Size = new System.Drawing.Size(799, 517);
            this.Load += new System.EventHandler(this.WordEditor_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pmMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gddFont)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gddFontColor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemChonTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLoaiMau)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcAppMenuFileLabels)).EndInit();
            this.pcAppMenuFileLabels.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).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(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();
     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();
 }
        /// <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(EmployeeMailMerge));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.Snap.Core.API.DataSourceInfo dataSourceInfo1 = new DevExpress.Snap.Core.API.DataSourceInfo();
            DevExpress.XtraSpellChecker.OptionsSpelling optionsSpelling1 = new DevExpress.XtraSpellChecker.OptionsSpelling();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            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.bindingSource = new System.Windows.Forms.BindingSource();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biClose = new DevExpress.XtraBars.BarButtonItem();
            this.commandBarCheckItem1 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem2 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.commandBarItem4 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.snapControl = new DevExpress.Snap.SnapControl();
            this.spellChecker1 = new DevExpress.XtraSpellChecker.SpellChecker();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
            this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
            this.toggleFieldHighlightingItem1 = new DevExpress.Snap.Extensions.UI.ToggleFieldHighlightingItem();
            this.toggleSpellCheckAsYouTypeItem1 = new DevExpress.XtraRichEdit.UI.ToggleSpellCheckAsYouType();
            this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
            this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.documentProofingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProofingRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.mailMergeRibbonPage1 = new DevExpress.Snap.Extensions.UI.MailMergeRibbonPage();
            this.mailMergeRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.MailMergeRibbonPageGroup();
            this.viewFieldsRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ViewFieldsRibbonPageGroup();
            this.repositoryItemMailMergeCurrentRecordEdit1 = new DevExpress.Snap.Extensions.UI.RepositoryItemMailMergeCurrentRecordEdit();
            this.zoomLevelTrackBar = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.beZoomLevel = new DevExpress.XtraBars.BarEditItem();
            this.bbiZoomDialog = new DevExpress.XtraBars.BarButtonItem();
            this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
            this.searchControl = new DevExpress.XtraEditors.SearchControl();
            this.employeesList = new DevExpress.XtraGrid.GridControl();
            this.gridView = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.colPhoto = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.colFullName = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.colTitle = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.cbMailTemplate = new DevExpress.XtraEditors.ImageComboBoxEdit();
            this.FullNameLabel = new DevExpress.XtraEditors.LabelControl();
            this.TitleLabel = new DevExpress.XtraEditors.LabelControl();
            this.PhotoPictureEdit = new DevExpress.XtraEditors.PictureEdit();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.ItemForSnapControl = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlMailMergeSetting = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.ItemForTitle = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForFullName = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForPhoto = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForEmployeesList = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForTemplates = new DevExpress.XtraLayout.LayoutControlItem();
            this.ItemForSearchControl = new DevExpress.XtraLayout.LayoutControlItem();
            this.simpleSeparator1 = new DevExpress.XtraLayout.SimpleSeparator();
            this.snapBarController1 = new DevExpress.Snap.Extensions.SnapBarController();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.biGetStarted = new DevExpress.XtraBars.BarButtonItem();
            this.biGetSupport = new DevExpress.XtraBars.BarButtonItem();
            this.biBuyNow = new DevExpress.XtraBars.BarButtonItem();
            this.biAbout = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.barNavigationItem = new DevExpress.XtraBars.BarSubItem();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.biFolderPaneSubItem = new DevExpress.XtraBars.BarSubItem();
            this.bmiFolderNormal = new DevExpress.XtraBars.BarCheckItem();
            this.bmiFolderMinimized = new DevExpress.XtraBars.BarCheckItem();
            this.bmiFolderOff = new DevExpress.XtraBars.BarCheckItem();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMailMergeCurrentRecordEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.zoomLevelTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
            this.dataLayoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.searchControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.employeesList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbMailTemplate.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PhotoPictureEdit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSnapControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlMailMergeSetting)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTitle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForFullName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForPhoto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForEmployeesList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTemplates)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSearchControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Employee);
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 87;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // ribbonControl
            // 
            this.ribbonControl.ApplicationDocumentCaption = "Mail Merge";
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biClose,
            this.commandBarCheckItem1,
            this.commandBarCheckItem2,
            this.undoItem1,
            this.redoItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.commandBarItem4,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.showAllFieldCodesItem1,
            this.showAllFieldResultsItem1,
            this.toggleFieldHighlightingItem1,
            this.toggleSpellCheckAsYouTypeItem1,
            this.checkSpellingItem1});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.Margin = new System.Windows.Forms.Padding(2);
            this.ribbonControl.MaxItemId = 103;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.mailMergeRibbonPage1});
            this.ribbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemMailMergeCurrentRecordEdit1,
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1,
            this.zoomLevelTrackBar});
            this.ribbonControl.Size = new System.Drawing.Size(1280, 142);
            this.ribbonControl.StatusBar = this.ribbonStatusBar1;
            // 
            // 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";
            // 
            // commandBarCheckItem1
            // 
            this.commandBarCheckItem1.Id = 6;
            this.commandBarCheckItem1.Name = "commandBarCheckItem1";
            this.commandBarCheckItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.MailMergeFilters;
            // 
            // commandBarCheckItem2
            // 
            this.commandBarCheckItem2.Id = 7;
            this.commandBarCheckItem2.Name = "commandBarCheckItem2";
            this.commandBarCheckItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.MailMergeSorting;
            // 
            // undoItem1
            // 
            this.undoItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_undo_16;
            this.undoItem1.Id = 13;
            this.undoItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_undo_32;
            this.undoItem1.Name = "undoItem1";
            // 
            // redoItem1
            // 
            this.redoItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_redo_16;
            this.redoItem1.Id = 14;
            this.redoItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_redo_32;
            this.redoItem1.Name = "redoItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_doc_16;
            this.fileNewItem1.Id = 15;
            this.fileNewItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_doc_32;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_open_doc_16;
            this.fileOpenItem1.Id = 16;
            this.fileOpenItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_open_doc_32;
            this.fileOpenItem1.Name = "fileOpenItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 17;
            this.fileSaveItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_32;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_as_16;
            this.fileSaveAsItem1.Id = 18;
            this.fileSaveAsItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_as_32;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            // 
            // commandBarItem4
            // 
            this.commandBarItem4.Id = 19;
            this.commandBarItem4.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_export_32;
            this.commandBarItem4.Name = "commandBarItem4";
            this.commandBarItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ExportDocument;
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_quick_16;
            this.quickPrintItem1.Id = 20;
            this.quickPrintItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_quick_32;
            this.quickPrintItem1.Name = "quickPrintItem1";
            // 
            // printItem1
            // 
            this.printItem1.Id = 21;
            this.printItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.printItem1.Name = "printItem1";
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 22;
            this.printPreviewItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_preview_32;
            this.printPreviewItem1.Name = "printPreviewItem1";
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 43;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 44;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 45;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 46;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 36;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 47;
            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.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 48;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.snapControl;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // snapControl
            // 
            this.snapControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            dataSourceInfo1.DataSource = this.bindingSource;
            dataSourceInfo1.DataSourceName = "Employee";
            this.snapControl.DataSources.Add(dataSourceInfo1);
            this.snapControl.EnableToolTips = true;
            this.snapControl.Location = new System.Drawing.Point(0, 0);
            this.snapControl.MenuManager = this.ribbonControl;
            this.snapControl.Modified = true;
            this.snapControl.Name = "snapControl";
            this.snapControl.Options.Comments.ShowAllAuthors = false;
            this.snapControl.Options.CopyPaste.MaintainDocumentSectionSettings = false;
            this.snapControl.Options.Fields.HighlightMode = DevExpress.XtraRichEdit.FieldsHighlightMode.Always;
            this.snapControl.Options.Fields.UseCurrentCultureDateTimeFormat = false;
            this.snapControl.Options.SnapMailMergeVisualOptions.DataSource = this.bindingSource;
            this.snapControl.Options.SnapMailMergeVisualOptions.DataSourceName = "Employee";
            this.spellChecker1.SetShowSpellCheckMenu(this.snapControl, false);
            this.snapControl.Size = new System.Drawing.Size(925, 658);
            this.snapControl.SpellChecker = this.spellChecker1;
            this.spellChecker1.SetSpellCheckerOptions(this.snapControl, optionsSpelling1);
            this.snapControl.TabIndex = 18;
            // 
            // spellChecker1
            // 
            this.spellChecker1.Culture = new System.Globalization.CultureInfo("en-US");
            this.spellChecker1.ParentContainer = null;
            this.spellChecker1.SpellCheckMode = DevExpress.XtraSpellChecker.SpellCheckMode.AsYouType;
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 49;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 50;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 37;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 51;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 52;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 53;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 54;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 55;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 56;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 57;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 58;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 38;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 59;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 60;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 61;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            this.changeTextCaseItem1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 62;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 63;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 64;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 65;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 66;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 39;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 67;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 68;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 69;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 40;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 70;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 71;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 76;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 41;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 72;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 73;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 74;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 75;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 42;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 77;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            this.changeParagraphLineSpacingItem1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 78;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 79;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 80;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 81;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 82;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 83;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 84;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 85;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 86;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 88;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 89;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // showAllFieldCodesItem1
            // 
            this.showAllFieldCodesItem1.Id = 99;
            this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
            // 
            // showAllFieldResultsItem1
            // 
            this.showAllFieldResultsItem1.Id = 100;
            this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
            // 
            // toggleFieldHighlightingItem1
            // 
            this.toggleFieldHighlightingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.Glyph")));
            this.toggleFieldHighlightingItem1.Id = 101;
            this.toggleFieldHighlightingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.LargeGlyph")));
            this.toggleFieldHighlightingItem1.Name = "toggleFieldHighlightingItem1";
            // 
            // toggleSpellCheckAsYouTypeItem1
            // 
            this.toggleSpellCheckAsYouTypeItem1.Id = 103;
            this.toggleSpellCheckAsYouTypeItem1.Name = "toggleSpellCheckAsYouTypeItem1";
            // 
            // checkSpellingItem1
            // 
            this.checkSpellingItem1.Id = 102;
            this.checkSpellingItem1.Name = "checkSpellingItem1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1,
            this.ribbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            this.fileRibbonPage1.Text = "FILE";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.commandBarItem4);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
            this.commonRibbonPageGroup1.MergeOrder = 0;
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.biClose);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "Close";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.documentProofingRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            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);
            this.homeRibbonPage1.Text = "HOME";
            // 
            // clipboardRibbonPageGroup1
            // 
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
            // 
            // documentProofingRibbonPageGroup1
            // 
            this.documentProofingRibbonPageGroup1.AllowTextClipping = false;
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.checkSpellingItem1);
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.toggleSpellCheckAsYouTypeItem1);
            this.documentProofingRibbonPageGroup1.Name = "documentProofingRibbonPageGroup1";
            // 
            // fontRibbonPageGroup1
            // 
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup2);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup3);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // mailMergeRibbonPage1
            // 
            this.mailMergeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.mailMergeRibbonPageGroup1,
            this.viewFieldsRibbonPageGroup1});
            this.mailMergeRibbonPage1.Name = "mailMergeRibbonPage1";
            this.mailMergeRibbonPage1.Text = "MAIL MERGE";
            // 
            // mailMergeRibbonPageGroup1
            // 
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem2);
            this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
            // 
            // viewFieldsRibbonPageGroup1
            // 
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.toggleFieldHighlightingItem1);
            this.viewFieldsRibbonPageGroup1.Name = "viewFieldsRibbonPageGroup1";
            // 
            // repositoryItemMailMergeCurrentRecordEdit1
            // 
            this.repositoryItemMailMergeCurrentRecordEdit1.AutoHeight = false;
            this.repositoryItemMailMergeCurrentRecordEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "Previous", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Prev, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleRight, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons1"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "Next", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Next, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons2"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "First", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.First, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleRight, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons3"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "Last", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Last, null, true)});
            this.repositoryItemMailMergeCurrentRecordEdit1.Name = "repositoryItemMailMergeCurrentRecordEdit1";
            // 
            // zoomLevelTrackBar
            // 
            this.zoomLevelTrackBar.Alignment = DevExpress.Utils.VertAlignment.Center;
            this.zoomLevelTrackBar.AllowUseMiddleValue = true;
            this.zoomLevelTrackBar.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.zoomLevelTrackBar.Maximum = 20;
            this.zoomLevelTrackBar.Middle = 10;
            this.zoomLevelTrackBar.Minimum = 1;
            this.zoomLevelTrackBar.Name = "zoomLevelTrackBar";
            this.zoomLevelTrackBar.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.beZoomLevel);
            this.ribbonStatusBar1.ItemLinks.Add(this.bbiZoomDialog);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 773);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(1280, 27);
            // 
            // beZoomLevel
            // 
            this.beZoomLevel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.beZoomLevel.Edit = this.zoomLevelTrackBar;
            this.beZoomLevel.EditValue = 10;
            this.beZoomLevel.Id = 9;
            this.beZoomLevel.Name = "beZoomLevel";
            this.beZoomLevel.Width = 150;
            // 
            // bbiZoomDialog
            // 
            this.bbiZoomDialog.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.bbiZoomDialog.Caption = "100%";
            this.bbiZoomDialog.Id = 11;
            this.bbiZoomDialog.Name = "bbiZoomDialog";
            this.bbiZoomDialog.SmallWithTextWidth = 50;
            // 
            // dataLayoutControl1
            // 
            this.dataLayoutControl1.AllowCustomizationMenu = false;
            this.dataLayoutControl1.Controls.Add(this.searchControl);
            this.dataLayoutControl1.Controls.Add(this.employeesList);
            this.dataLayoutControl1.Controls.Add(this.cbMailTemplate);
            this.dataLayoutControl1.Controls.Add(this.snapControl);
            this.dataLayoutControl1.Controls.Add(this.FullNameLabel);
            this.dataLayoutControl1.Controls.Add(this.TitleLabel);
            this.dataLayoutControl1.Controls.Add(this.PhotoPictureEdit);
            this.dataLayoutControl1.DataSource = this.bindingSource;
            this.dataLayoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataLayoutControl1.Location = new System.Drawing.Point(0, 142);
            this.dataLayoutControl1.Margin = new System.Windows.Forms.Padding(0);
            this.dataLayoutControl1.Name = "dataLayoutControl1";
            this.dataLayoutControl1.Root = this.layoutControlGroup1;
            this.dataLayoutControl1.Size = new System.Drawing.Size(1280, 658);
            this.dataLayoutControl1.TabIndex = 1;
            this.dataLayoutControl1.Text = "dataLayoutControl1";
            // 
            // searchControl
            // 
            this.searchControl.Client = this.employeesList;
            this.searchControl.Location = new System.Drawing.Point(941, 190);
            this.searchControl.Name = "searchControl";
            this.searchControl.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Repository.ClearButton(),
            new DevExpress.XtraEditors.Repository.SearchButton()});
            this.searchControl.Size = new System.Drawing.Size(325, 20);
            this.searchControl.StyleController = this.dataLayoutControl1;
            this.searchControl.TabIndex = 21;
            // 
            // employeesList
            // 
            this.employeesList.DataSource = this.bindingSource;
            this.employeesList.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2);
            this.employeesList.Location = new System.Drawing.Point(941, 214);
            this.employeesList.MainView = this.gridView;
            this.employeesList.Margin = new System.Windows.Forms.Padding(6);
            this.employeesList.Name = "employeesList";
            this.employeesList.ShowOnlyPredefinedDetails = true;
            this.employeesList.Size = new System.Drawing.Size(325, 434);
            this.employeesList.TabIndex = 20;
            this.employeesList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView});
            // 
            // gridView
            // 
            this.gridView.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1,
            this.gridBand2});
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.colPhoto,
            this.colFullName,
            this.colTitle});
            this.gridView.CustomizationFormBounds = new System.Drawing.Rectangle(1111, 708, 216, 215);
            this.gridView.GridControl = this.employeesList;
            this.gridView.Name = "gridView";
            this.gridView.OptionsBehavior.Editable = false;
            this.gridView.OptionsFind.AllowFindPanel = false;
            this.gridView.OptionsView.ColumnAutoWidth = true;
            this.gridView.OptionsView.ShowBands = false;
            this.gridView.OptionsView.ShowColumnHeaders = false;
            this.gridView.OptionsView.ShowGroupPanel = false;
            this.gridView.OptionsView.ShowHorizontalLines = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.OptionsView.ShowIndicator = false;
            this.gridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            this.gridView.RowHeight = 25;
            // 
            // gridBand1
            // 
            this.gridBand1.Columns.Add(this.colPhoto);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.OptionsBand.AllowSize = false;
            this.gridBand1.OptionsBand.FixedWidth = true;
            this.gridBand1.VisibleIndex = 0;
            this.gridBand1.Width = 50;
            // 
            // colPhoto
            // 
            this.colPhoto.FieldName = "Photo";
            this.colPhoto.Name = "colPhoto";
            this.colPhoto.OptionsColumn.AllowEdit = false;
            this.colPhoto.OptionsColumn.AllowFocus = false;
            this.colPhoto.RowCount = 2;
            this.colPhoto.Visible = true;
            this.colPhoto.Width = 50;
            // 
            // gridBand2
            // 
            this.gridBand2.Columns.Add(this.colFullName);
            this.gridBand2.Columns.Add(this.colTitle);
            this.gridBand2.Name = "gridBand2";
            this.gridBand2.VisibleIndex = 1;
            this.gridBand2.Width = 218;
            // 
            // colFullName
            // 
            this.colFullName.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 12F);
            this.colFullName.AppearanceCell.Options.UseFont = true;
            this.colFullName.FieldName = "FullNameBindable";
            this.colFullName.Name = "colFullName";
            this.colFullName.OptionsColumn.AllowEdit = false;
            this.colFullName.OptionsColumn.AllowFocus = false;
            this.colFullName.Visible = true;
            this.colFullName.Width = 218;
            // 
            // colTitle
            // 
            this.colTitle.AppearanceCell.Options.UseTextOptions = true;
            this.colTitle.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
            this.colTitle.FieldName = "Title";
            this.colTitle.Name = "colTitle";
            this.colTitle.OptionsColumn.AllowEdit = false;
            this.colTitle.OptionsColumn.AllowFocus = false;
            this.colTitle.RowIndex = 1;
            this.colTitle.Visible = true;
            this.colTitle.Width = 218;
            // 
            // cbMailTemplate
            // 
            this.cbMailTemplate.Location = new System.Drawing.Point(1088, 127);
            this.cbMailTemplate.Margin = new System.Windows.Forms.Padding(6);
            this.cbMailTemplate.Name = "cbMailTemplate";
            this.cbMailTemplate.Properties.AllowMouseWheel = false;
            this.cbMailTemplate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.DropDown)});
            this.cbMailTemplate.Size = new System.Drawing.Size(178, 20);
            this.cbMailTemplate.StyleController = this.dataLayoutControl1;
            this.cbMailTemplate.TabIndex = 19;
            this.cbMailTemplate.TabStop = false;
            // 
            // FullNameLabel
            // 
            this.FullNameLabel.Appearance.Font = new System.Drawing.Font("Segoe UI", 16F);
            this.FullNameLabel.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "FullNameBindable", true));
            this.FullNameLabel.Location = new System.Drawing.Point(1090, 12);
            this.FullNameLabel.Margin = new System.Windows.Forms.Padding(6);
            this.FullNameLabel.Name = "FullNameLabel";
            this.FullNameLabel.Size = new System.Drawing.Size(174, 30);
            this.FullNameLabel.StyleController = this.dataLayoutControl1;
            this.FullNameLabel.TabIndex = 8;
            // 
            // TitleLabel
            // 
            this.TitleLabel.Appearance.Font = new System.Drawing.Font("Segoe UI", 11F);
            this.TitleLabel.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Title", true));
            this.TitleLabel.Location = new System.Drawing.Point(1090, 46);
            this.TitleLabel.Margin = new System.Windows.Forms.Padding(6);
            this.TitleLabel.Name = "TitleLabel";
            this.TitleLabel.Size = new System.Drawing.Size(174, 20);
            this.TitleLabel.StyleController = this.dataLayoutControl1;
            this.TitleLabel.TabIndex = 8;
            // 
            // PhotoPictureEdit
            // 
            this.PhotoPictureEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "Photo", true));
            this.PhotoPictureEdit.Location = new System.Drawing.Point(941, 10);
            this.PhotoPictureEdit.Margin = new System.Windows.Forms.Padding(6);
            this.PhotoPictureEdit.MenuManager = this.ribbonControl;
            this.PhotoPictureEdit.Name = "PhotoPictureEdit";
            this.PhotoPictureEdit.Properties.ReadOnly = true;
            this.PhotoPictureEdit.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
            this.PhotoPictureEdit.Size = new System.Drawing.Size(135, 137);
            this.PhotoPictureEdit.StyleController = this.dataLayoutControl1;
            this.PhotoPictureEdit.TabIndex = 17;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.False;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlGroup2});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.OptionsItemText.TextToControlDistance = 6;
            this.layoutControlGroup1.Size = new System.Drawing.Size(1280, 658);
            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.ItemForSnapControl,
            this.layoutControlMailMergeSetting,
            this.simpleSeparator1});
            this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup2.Name = "autoGeneratedGroup0";
            this.layoutControlGroup2.OptionsItemText.TextToControlDistance = 6;
            this.layoutControlGroup2.Size = new System.Drawing.Size(1280, 658);
            this.layoutControlGroup2.Text = "autoGeneratedGroup0";
            // 
            // ItemForSnapControl
            // 
            this.ItemForSnapControl.Control = this.snapControl;
            this.ItemForSnapControl.CustomizationFormText = "layoutControlItem1";
            this.ItemForSnapControl.Location = new System.Drawing.Point(0, 0);
            this.ItemForSnapControl.Name = "layoutControlItem1";
            this.ItemForSnapControl.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.ItemForSnapControl.Size = new System.Drawing.Size(925, 658);
            this.ItemForSnapControl.Text = "layoutControlItem1";
            this.ItemForSnapControl.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForSnapControl.TextToControlDistance = 0;
            this.ItemForSnapControl.TextVisible = false;
            // 
            // layoutControlMailMergeSetting
            // 
            this.layoutControlMailMergeSetting.CustomizationFormText = "layoutControlGroup3";
            this.layoutControlMailMergeSetting.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlMailMergeSetting.GroupBordersVisible = false;
            this.layoutControlMailMergeSetting.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.emptySpaceItem2,
            this.ItemForTitle,
            this.ItemForFullName,
            this.ItemForPhoto,
            this.ItemForEmployeesList,
            this.ItemForTemplates,
            this.ItemForSearchControl});
            this.layoutControlMailMergeSetting.Location = new System.Drawing.Point(927, 0);
            this.layoutControlMailMergeSetting.Name = "layoutControlGroup3";
            this.layoutControlMailMergeSetting.OptionsItemText.TextToControlDistance = 6;
            this.layoutControlMailMergeSetting.Padding = new DevExpress.XtraLayout.Utils.Padding(12, 12, 8, 8);
            this.layoutControlMailMergeSetting.Size = new System.Drawing.Size(353, 658);
            this.layoutControlMailMergeSetting.Text = "layoutControlGroup3";
            this.layoutControlMailMergeSetting.TextVisible = false;
            // 
            // emptySpaceItem2
            // 
            this.emptySpaceItem2.AllowHotTrack = false;
            this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
            this.emptySpaceItem2.Location = new System.Drawing.Point(147, 58);
            this.emptySpaceItem2.MaxSize = new System.Drawing.Size(178, 0);
            this.emptySpaceItem2.MinSize = new System.Drawing.Size(178, 10);
            this.emptySpaceItem2.Name = "emptySpaceItem2";
            this.emptySpaceItem2.Size = new System.Drawing.Size(178, 40);
            this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.emptySpaceItem2.Text = "emptySpaceItem2";
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
            // 
            // ItemForTitle
            // 
            this.ItemForTitle.Control = this.TitleLabel;
            this.ItemForTitle.CustomizationFormText = "Title";
            this.ItemForTitle.Location = new System.Drawing.Point(147, 34);
            this.ItemForTitle.Name = "ItemForTitle";
            this.ItemForTitle.Size = new System.Drawing.Size(178, 24);
            this.ItemForTitle.Text = "Title";
            this.ItemForTitle.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForTitle.TextToControlDistance = 0;
            this.ItemForTitle.TextVisible = false;
            // 
            // ItemForFullName
            // 
            this.ItemForFullName.Control = this.FullNameLabel;
            this.ItemForFullName.CustomizationFormText = "Full Name";
            this.ItemForFullName.Location = new System.Drawing.Point(147, 0);
            this.ItemForFullName.Name = "ItemForFullName";
            this.ItemForFullName.Size = new System.Drawing.Size(178, 34);
            this.ItemForFullName.Text = "Full Name";
            this.ItemForFullName.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForFullName.TextToControlDistance = 0;
            this.ItemForFullName.TextVisible = false;
            // 
            // ItemForPhoto
            // 
            this.ItemForPhoto.Control = this.PhotoPictureEdit;
            this.ItemForPhoto.CustomizationFormText = "Photo";
            this.ItemForPhoto.Location = new System.Drawing.Point(0, 0);
            this.ItemForPhoto.MaxSize = new System.Drawing.Size(147, 161);
            this.ItemForPhoto.MinSize = new System.Drawing.Size(147, 161);
            this.ItemForPhoto.Name = "ItemForPhoto";
            this.ItemForPhoto.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 12, 0, 24);
            this.ItemForPhoto.Size = new System.Drawing.Size(147, 161);
            this.ItemForPhoto.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.ItemForPhoto.Text = "Photo";
            this.ItemForPhoto.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForPhoto.TextToControlDistance = 0;
            this.ItemForPhoto.TextVisible = false;
            // 
            // ItemForEmployeesList
            // 
            this.ItemForEmployeesList.Control = this.employeesList;
            this.ItemForEmployeesList.CustomizationFormText = "Select Employee";
            this.ItemForEmployeesList.Location = new System.Drawing.Point(0, 204);
            this.ItemForEmployeesList.Name = "layoutControlItem3";
            this.ItemForEmployeesList.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.ItemForEmployeesList.Size = new System.Drawing.Size(325, 434);
            this.ItemForEmployeesList.Text = "layoutControlItem3";
            this.ItemForEmployeesList.TextLocation = DevExpress.Utils.Locations.Top;
            this.ItemForEmployeesList.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForEmployeesList.TextToControlDistance = 0;
            this.ItemForEmployeesList.TextVisible = false;
            // 
            // ItemForTemplates
            // 
            this.ItemForTemplates.Control = this.cbMailTemplate;
            this.ItemForTemplates.CustomizationFormText = "Mail Template";
            this.ItemForTemplates.Location = new System.Drawing.Point(147, 98);
            this.ItemForTemplates.Name = "layoutControlItem2";
            this.ItemForTemplates.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 24);
            this.ItemForTemplates.Size = new System.Drawing.Size(178, 63);
            this.ItemForTemplates.Text = "Letter Template:";
            this.ItemForTemplates.TextLocation = DevExpress.Utils.Locations.Top;
            this.ItemForTemplates.TextSize = new System.Drawing.Size(126, 13);
            // 
            // ItemForSearchControl
            // 
            this.ItemForSearchControl.Control = this.searchControl;
            this.ItemForSearchControl.CustomizationFormText = "Select Employee from List:";
            this.ItemForSearchControl.Location = new System.Drawing.Point(0, 161);
            this.ItemForSearchControl.Name = "layoutControlItem4";
            this.ItemForSearchControl.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 4);
            this.ItemForSearchControl.Size = new System.Drawing.Size(325, 43);
            this.ItemForSearchControl.Text = "Select Employee from List:";
            this.ItemForSearchControl.TextLocation = DevExpress.Utils.Locations.Top;
            this.ItemForSearchControl.TextSize = new System.Drawing.Size(126, 13);
            // 
            // simpleSeparator1
            // 
            this.simpleSeparator1.AllowHotTrack = false;
            this.simpleSeparator1.CustomizationFormText = "simpleSeparator1";
            this.simpleSeparator1.Location = new System.Drawing.Point(925, 0);
            this.simpleSeparator1.Name = "simpleSeparator1";
            this.simpleSeparator1.Size = new System.Drawing.Size(2, 658);
            this.simpleSeparator1.Text = "simpleSeparator1";
            // 
            // snapBarController1
            // 
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem1);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem2);
            this.snapBarController1.BarItems.Add(this.undoItem1);
            this.snapBarController1.BarItems.Add(this.redoItem1);
            this.snapBarController1.BarItems.Add(this.fileNewItem1);
            this.snapBarController1.BarItems.Add(this.fileOpenItem1);
            this.snapBarController1.BarItems.Add(this.fileSaveItem1);
            this.snapBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.snapBarController1.BarItems.Add(this.commandBarItem4);
            this.snapBarController1.BarItems.Add(this.quickPrintItem1);
            this.snapBarController1.BarItems.Add(this.printItem1);
            this.snapBarController1.BarItems.Add(this.printPreviewItem1);
            this.snapBarController1.BarItems.Add(this.pasteItem1);
            this.snapBarController1.BarItems.Add(this.cutItem1);
            this.snapBarController1.BarItems.Add(this.copyItem1);
            this.snapBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.snapBarController1.BarItems.Add(this.changeFontNameItem1);
            this.snapBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.snapBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.snapBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.snapBarController1.BarItems.Add(this.changeFontColorItem1);
            this.snapBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.snapBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.snapBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.snapBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.snapBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.snapBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.snapBarController1.BarItems.Add(this.clearFormattingItem1);
            this.snapBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.snapBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.snapBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.snapBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.snapBarController1.BarItems.Add(this.increaseIndentItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.snapBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.snapBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.snapBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.snapBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.snapBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.snapBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.snapBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.snapBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.snapBarController1.BarItems.Add(this.findItem1);
            this.snapBarController1.BarItems.Add(this.replaceItem1);
            this.snapBarController1.BarItems.Add(this.showAllFieldCodesItem1);
            this.snapBarController1.BarItems.Add(this.showAllFieldResultsItem1);
            this.snapBarController1.BarItems.Add(this.toggleFieldHighlightingItem1);
            this.snapBarController1.BarItems.Add(this.toggleSpellCheckAsYouTypeItem1);
            this.snapBarController1.BarItems.Add(this.checkSpellingItem1);
            this.snapBarController1.Control = this.snapControl;
            this.snapBarController1.RibbonControl = this.ribbonControl;
            this.snapBarController1.SnapDockManager = null;
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup4});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "HOME";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.biGetStarted);
            this.ribbonPageGroup4.ItemLinks.Add(this.biGetSupport);
            this.ribbonPageGroup4.ItemLinks.Add(this.biBuyNow);
            this.ribbonPageGroup4.ItemLinks.Add(this.biAbout);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "DevExpress";
            // 
            // biGetStarted
            // 
            this.biGetStarted.Caption = "Getting Started";
            this.biGetStarted.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_getting_started_16;
            this.biGetStarted.Id = 3;
            this.biGetStarted.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_getting_started_32;
            this.biGetStarted.Name = "biGetStarted";
            // 
            // biGetSupport
            // 
            this.biGetSupport.Caption = "Get Free Support";
            this.biGetSupport.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_support_16;
            this.biGetSupport.Id = 4;
            this.biGetSupport.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_support_32;
            this.biGetSupport.Name = "biGetSupport";
            // 
            // biBuyNow
            // 
            this.biBuyNow.Caption = "Buy Now";
            this.biBuyNow.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_buy_16;
            this.biBuyNow.Id = 5;
            this.biBuyNow.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_buy_32;
            this.biBuyNow.Name = "biBuyNow";
            // 
            // biAbout
            // 
            this.biAbout.Caption = "About";
            this.biAbout.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_about_16;
            this.biAbout.Id = 6;
            this.biAbout.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.F1);
            this.biAbout.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_about_32;
            this.biAbout.Name = "biAbout";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup3,
            this.ribbonPageGroup2,
            this.ribbonPageGroup5});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "VIEW";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.AllowTextClipping = false;
            this.ribbonPageGroup3.ItemLinks.Add(this.barNavigationItem);
            this.ribbonPageGroup3.MergeOrder = 0;
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Module";
            // 
            // barNavigationItem
            // 
            this.barNavigationItem.Caption = "Navigation";
            this.barNavigationItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_navigate_16;
            this.barNavigationItem.Id = 2;
            this.barNavigationItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_navigate_32;
            this.barNavigationItem.LargeImageIndex = 43;
            this.barNavigationItem.Name = "barNavigationItem";
            this.barNavigationItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.biFolderPaneSubItem);
            this.ribbonPageGroup2.MergeOrder = 1;
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Layout";
            // 
            // biFolderPaneSubItem
            // 
            this.biFolderPaneSubItem.Caption = "Folder Pane";
            this.biFolderPaneSubItem.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_folder_panel_16;
            this.biFolderPaneSubItem.Id = 10;
            this.biFolderPaneSubItem.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_folder_panel_32;
            this.biFolderPaneSubItem.LargeImageIndex = 42;
            this.biFolderPaneSubItem.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiFolderNormal),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiFolderMinimized),
            new DevExpress.XtraBars.LinkPersistInfo(this.bmiFolderOff)});
            this.biFolderPaneSubItem.Name = "biFolderPaneSubItem";
            this.biFolderPaneSubItem.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // bmiFolderNormal
            // 
            this.bmiFolderNormal.Caption = "Normal";
            this.bmiFolderNormal.GroupIndex = 4;
            this.bmiFolderNormal.Id = 6;
            this.bmiFolderNormal.Name = "bmiFolderNormal";
            // 
            // bmiFolderMinimized
            // 
            this.bmiFolderMinimized.Caption = "Minimized";
            this.bmiFolderMinimized.GroupIndex = 4;
            this.bmiFolderMinimized.Id = 7;
            this.bmiFolderMinimized.Name = "bmiFolderMinimized";
            // 
            // bmiFolderOff
            // 
            this.bmiFolderOff.Caption = "Off";
            this.bmiFolderOff.GroupIndex = 4;
            this.bmiFolderOff.Id = 7;
            this.bmiFolderOff.Name = "bmiFolderOff";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.AllowTextClipping = false;
            this.ribbonPageGroup5.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
            this.ribbonPageGroup5.MergeOrder = 2;
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.ShowCaptionButton = false;
            this.ribbonPageGroup5.Text = "Appearance";
            // 
            // skinRibbonGalleryBarItem1
            // 
            this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
            this.skinRibbonGalleryBarItem1.Id = 1;
            this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
            // 
            // EmployeeMailMerge
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.dataLayoutControl1);
            this.Controls.Add(this.ribbonControl);
            this.Margin = new System.Windows.Forms.Padding(6);
            this.Name = "EmployeeMailMerge";
            this.Size = new System.Drawing.Size(1280, 800);
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMailMergeCurrentRecordEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.zoomLevelTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
            this.dataLayoutControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.searchControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.employeesList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbMailTemplate.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PhotoPictureEdit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSnapControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlMailMergeSetting)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTitle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForFullName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForPhoto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForEmployeesList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForTemplates)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSearchControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #40
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();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.imageMain = new DevExpress.XtraEditors.PictureEdit();
            this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
            this.lblPicAreaName = new DevExpress.XtraEditors.LabelControl();
            this.lblPicTitle = new DevExpress.XtraEditors.LabelControl();
            this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.galleryControl = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.hideContainerLeft = new DevExpress.XtraBars.Docking.AutoHideContainer();
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.btnGetImageFromDisk = new DevExpress.XtraBars.BarButtonItem();
            this.btnGetImageFromUrl = 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();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageMain.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
            this.layoutControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl)).BeginInit();
            this.galleryControl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.hideContainerLeft.SuspendLayout();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            this.SuspendLayout();
            // 
            // pictureEdit1
            // 
            this.pictureEdit1.Location = new System.Drawing.Point(39, 12);
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Size = new System.Drawing.Size(419, 22);
            this.pictureEdit1.TabIndex = 4;
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(462, 12);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(20, 22);
            this.simpleButton2.TabIndex = 6;
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(12, 12);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(23, 22);
            this.simpleButton1.TabIndex = 5;
            // 
            // imageMain
            // 
            this.imageMain.AllowDrop = true;
            this.imageMain.EditValue = global::YANFOE.Properties.Resources.picturefaded128;
            this.imageMain.Location = new System.Drawing.Point(2, 2);
            this.imageMain.Name = "imageMain";
            this.barManager1.SetPopupContextMenu(this.imageMain, this.popupMenu1);
            this.imageMain.Properties.ShowMenu = false;
            this.imageMain.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
            this.imageMain.Size = new System.Drawing.Size(775, 443);
            this.imageMain.StyleController = this.layoutControl2;
            this.imageMain.TabIndex = 5;
            this.imageMain.ImageChanged += new System.EventHandler(this.ImageMain_ImageChanged);
            this.imageMain.DragDrop += new System.Windows.Forms.DragEventHandler(this.imageMain_DragDrop);
            this.imageMain.DragOver += new System.Windows.Forms.DragEventHandler(this.imageMain_DragOver);
            // 
            // layoutControl2
            // 
            this.layoutControl2.Controls.Add(this.lblPicAreaName);
            this.layoutControl2.Controls.Add(this.lblPicTitle);
            this.layoutControl2.Controls.Add(this.imageMain);
            this.layoutControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.layoutControl2.Location = new System.Drawing.Point(19, 0);
            this.layoutControl2.Name = "layoutControl2";
            this.layoutControl2.OptionsView.AllowHotTrack = true;
            this.layoutControl2.OptionsView.UseDefaultDragAndDropRendering = false;
            this.layoutControl2.Root = this.layoutControlGroup2;
            this.layoutControl2.Size = new System.Drawing.Size(779, 464);
            this.layoutControl2.TabIndex = 2;
            this.layoutControl2.Text = "layoutControl2";
            // 
            // lblPicAreaName
            // 
            this.lblPicAreaName.Location = new System.Drawing.Point(2, 449);
            this.lblPicAreaName.Name = "lblPicAreaName";
            this.lblPicAreaName.Size = new System.Drawing.Size(23, 13);
            this.lblPicAreaName.StyleController = this.layoutControl2;
            this.lblPicAreaName.TabIndex = 8;
            this.lblPicAreaName.Text = "Area";
            // 
            // lblPicTitle
            // 
            this.lblPicTitle.Location = new System.Drawing.Point(29, 449);
            this.lblPicTitle.Name = "lblPicTitle";
            this.lblPicTitle.Size = new System.Drawing.Size(50, 13);
            this.lblPicTitle.StyleController = this.layoutControl2;
            this.lblPicTitle.TabIndex = 7;
            this.lblPicTitle.Text = "Resolution";
            // 
            // layoutControlGroup2
            // 
            this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
            this.layoutControlGroup2.GroupBordersVisible = false;
            this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem2,
            this.layoutControlItem1,
            this.layoutControlItem3});
            this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup2.Name = "layoutControlGroup2";
            this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.layoutControlGroup2.Size = new System.Drawing.Size(779, 464);
            this.layoutControlGroup2.Text = "layoutControlGroup2";
            this.layoutControlGroup2.TextVisible = false;
            // 
            // layoutControlItem2
            // 
            this.layoutControlItem2.Control = this.imageMain;
            this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
            this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem2.Name = "layoutControlItem2";
            this.layoutControlItem2.Size = new System.Drawing.Size(779, 447);
            this.layoutControlItem2.Text = "layoutControlItem2";
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem2.TextToControlDistance = 0;
            this.layoutControlItem2.TextVisible = false;
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Control = this.lblPicTitle;
            this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
            this.layoutControlItem1.Location = new System.Drawing.Point(27, 447);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.Size = new System.Drawing.Size(752, 17);
            this.layoutControlItem1.Text = "layoutControlItem1";
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem1.TextToControlDistance = 0;
            this.layoutControlItem1.TextVisible = false;
            // 
            // layoutControlItem3
            // 
            this.layoutControlItem3.Control = this.lblPicAreaName;
            this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
            this.layoutControlItem3.Location = new System.Drawing.Point(0, 447);
            this.layoutControlItem3.Name = "layoutControlItem3";
            this.layoutControlItem3.Size = new System.Drawing.Size(27, 17);
            this.layoutControlItem3.Text = "Area";
            this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem3.TextToControlDistance = 0;
            this.layoutControlItem3.TextVisible = false;
            // 
            // galleryControl
            // 
            this.galleryControl.Controls.Add(this.galleryControlClient1);
            this.galleryControl.DesignGalleryGroupIndex = 0;
            this.galleryControl.DesignGalleryItemIndex = 0;
            this.galleryControl.Dock = System.Windows.Forms.DockStyle.Fill;
            // 
            // galleryControlGallery1
            // 
            galleryItemGroup1.Caption = "Group6";
            galleryItemGroup1.CaptionAlignment = DevExpress.XtraBars.Ribbon.GalleryItemGroupCaptionAlignment.Center;
            galleryItemGroup1.CaptionControlSize = new System.Drawing.Size(1, 1);
            this.galleryControl.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControl.Gallery.ImageSize = new System.Drawing.Size(45, 60);
            this.galleryControl.Gallery.ScrollMode = DevExpress.XtraBars.Ribbon.Gallery.GalleryScrollMode.Smooth;
            this.galleryControl.Gallery.ShowGroupCaption = false;
            this.galleryControl.Gallery.ShowItemText = true;
            this.galleryControl.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryControl.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.GalleryControlGallery1_ItemClick);
            this.galleryControl.Location = new System.Drawing.Point(0, 0);
            this.galleryControl.Margin = new System.Windows.Forms.Padding(0);
            this.galleryControl.Name = "galleryControl";
            this.galleryControl.Size = new System.Drawing.Size(144, 684);
            this.galleryControl.TabIndex = 0;
            this.galleryControl.Text = "galleryControl";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl;
            this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
            this.galleryControlClient1.Size = new System.Drawing.Size(140, 680);
            // 
            // dockManager1
            // 
            this.dockManager1.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
            this.hideContainerLeft});
            this.dockManager1.DockingOptions.HideImmediatelyOnAutoHide = true;
            this.dockManager1.DockingOptions.ShowCloseButton = false;
            this.dockManager1.Form = this;
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // hideContainerLeft
            // 
            this.hideContainerLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.hideContainerLeft.Controls.Add(this.dockPanel1);
            this.hideContainerLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.hideContainerLeft.Location = new System.Drawing.Point(0, 0);
            this.hideContainerLeft.Name = "hideContainerLeft";
            this.hideContainerLeft.Size = new System.Drawing.Size(19, 464);
            // 
            // dockPanel1
            // 
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.dockPanel1.DockVertical = DevExpress.Utils.DefaultBoolean.False;
            this.dockPanel1.ID = new System.Guid("c91c77d0-08d7-4881-9143-e4622502dff9");
            this.dockPanel1.Location = new System.Drawing.Point(0, 0);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.OriginalSize = new System.Drawing.Size(152, 711);
            this.dockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.dockPanel1.SavedIndex = 0;
            this.dockPanel1.Size = new System.Drawing.Size(152, 711);
            this.dockPanel1.Text = "Alts";
            this.dockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
            // 
            // dockPanel1_Container
            // 
            this.dockPanel1_Container.Controls.Add(this.galleryControl);
            this.dockPanel1_Container.Location = new System.Drawing.Point(4, 23);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(144, 684);
            this.dockPanel1_Container.TabIndex = 0;
            // 
            // 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.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.btnGetImageFromDisk,
            this.btnGetImageFromUrl});
            this.barManager1.MaxItemId = 2;
            // 
            // popupMenu1
            // 
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnGetImageFromDisk),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnGetImageFromUrl)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            // 
            // btnGetImageFromDisk
            // 
            this.btnGetImageFromDisk.Caption = "Get Image From Disk";
            this.btnGetImageFromDisk.Glyph = global::YANFOE.Properties.Resources.folder32;
            this.btnGetImageFromDisk.Id = 0;
            this.btnGetImageFromDisk.Name = "btnGetImageFromDisk";
            this.btnGetImageFromDisk.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnGetImageFromDisk_ItemClick);
            // 
            // btnGetImageFromUrl
            // 
            this.btnGetImageFromUrl.Caption = "Get Image From URL";
            this.btnGetImageFromUrl.Glyph = global::YANFOE.Properties.Resources.globe32;
            this.btnGetImageFromUrl.Id = 1;
            this.btnGetImageFromUrl.Name = "btnGetImageFromUrl";
            this.btnGetImageFromUrl.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnGetImageFromUrl_ItemClick);
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(798, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 464);
            this.barDockControlBottom.Size = new System.Drawing.Size(798, 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.Size = new System.Drawing.Size(0, 464);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(798, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 464);
            // 
            // DisplayPictureUserControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.layoutControl2);
            this.Controls.Add(this.hideContainerLeft);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.DoubleBuffered = true;
            this.Name = "DisplayPictureUserControl";
            this.Size = new System.Drawing.Size(798, 464);
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageMain.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
            this.layoutControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl)).EndInit();
            this.galleryControl.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.hideContainerLeft.ResumeLayout(false);
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).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    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();
     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();
 }
Beispiel #44
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();
     this.panel1                = new DevExpress.XtraEditors.PanelControl();
     this.compareButton         = new DevExpress.XtraEditors.SimpleButton();
     this.label3                = new System.Windows.Forms.Label();
     this.groupBox3             = new DevExpress.XtraEditors.GroupControl();
     this.currentPic            = new System.Windows.Forms.PictureBox();
     this.groupBox2             = new DevExpress.XtraEditors.GroupControl();
     this.label2                = new System.Windows.Forms.Label();
     this.label1                = new System.Windows.Forms.Label();
     this.searchTo              = new DevExpress.XtraEditors.TimeEdit();
     this.searchFrom            = new DevExpress.XtraEditors.TimeEdit();
     this.choosePic             = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox1             = new DevExpress.XtraEditors.GroupControl();
     this.targetPic             = new System.Windows.Forms.PictureBox();
     this.cancelButton          = new DevExpress.XtraEditors.SimpleButton();
     this.splitter1             = new System.Windows.Forms.Splitter();
     this.imageList1            = new System.Windows.Forms.ImageList();
     this.openFileDialog1       = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1         = new DevExpress.XtraEditors.GroupControl();
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.barManager1           = new DevExpress.XtraBars.BarManager();
     this.bar3                       = new DevExpress.XtraBars.Bar();
     this.accuracyLabel              = new DevExpress.XtraBars.BarButtonItem();
     this.accuracyTrackContainer     = new DevExpress.XtraBars.PopupControlContainer();
     this.accuracyTrackBar           = new DevExpress.XtraEditors.TrackBarControl();
     this.counter                    = new DevExpress.XtraBars.BarStaticItem();
     this.progressBar                = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     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.barSubItem2                = new DevExpress.XtraBars.BarSubItem();
     this.repositoryItemTrackBar1    = new DevExpress.XtraEditors.Repository.RepositoryItemTrackBar();
     this.faceCollection             = new DevExpress.Xpo.XPCollection();
     this.popupContainerControl1     = new DevExpress.XtraEditors.PopupContainerControl();
     this.labelControl1              = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2              = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3              = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panel1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox3)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.currentPic)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox2)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.searchTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.targetPic)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackContainer)).BeginInit();
     this.accuracyTrackContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.faceCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.compareButton);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.groupBox3);
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.choosePic);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.cancelButton);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(233, 814);
     this.panel1.TabIndex = 0;
     //
     // compareButton
     //
     this.compareButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.compareButton.Enabled  = false;
     this.compareButton.Location = new System.Drawing.Point(73, 516);
     this.compareButton.Name     = "compareButton";
     this.compareButton.Size     = new System.Drawing.Size(87, 25);
     this.compareButton.TabIndex = 5;
     this.compareButton.Text     = "比对";
     this.compareButton.Click   += new System.EventHandler(this.compareButton_Click);
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(7, 10);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(212, 68);
     this.label3.TabIndex = 4;
     this.label3.Text     = "选定一张照片后,从数据库中比较与该照片相似的图片";
     //
     // groupBox3
     //
     this.groupBox3.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.groupBox3.Controls.Add(this.currentPic);
     this.groupBox3.Location = new System.Drawing.Point(3, 553);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(226, 255);
     this.groupBox3.TabIndex = 3;
     this.groupBox3.Text     = "待比较图片";
     //
     // currentPic
     //
     this.currentPic.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.currentPic.Location = new System.Drawing.Point(2, 23);
     this.currentPic.Name     = "currentPic";
     this.currentPic.Size     = new System.Drawing.Size(222, 230);
     this.currentPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.currentPic.TabIndex = 0;
     this.currentPic.TabStop  = false;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.searchTo);
     this.groupBox2.Controls.Add(this.searchFrom);
     this.groupBox2.Location = new System.Drawing.Point(3, 339);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(226, 140);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.Text     = "比对参数";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 83);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(59, 14);
     this.label2.TabIndex = 3;
     this.label2.Text     = "结束时间:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(13, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(59, 14);
     this.label1.TabIndex = 2;
     this.label1.Text     = "起始时间:";
     //
     // searchTo
     //
     this.searchTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.searchTo.EditValue = new System.DateTime(2010, 3, 19, 0, 0, 0, 0);
     this.searchTo.Location  = new System.Drawing.Point(10, 98);
     this.searchTo.Name      = "searchTo";
     this.searchTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.searchTo.Properties.Mask.EditMask = "f";
     this.searchTo.Size     = new System.Drawing.Size(209, 21);
     this.searchTo.TabIndex = 1;
     //
     // searchFrom
     //
     this.searchFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.searchFrom.EditValue = new System.DateTime(2010, 3, 19, 0, 0, 0, 0);
     this.searchFrom.Location  = new System.Drawing.Point(10, 43);
     this.searchFrom.Name      = "searchFrom";
     this.searchFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.searchFrom.Properties.Mask.EditMask = "f";
     this.searchFrom.Size     = new System.Drawing.Size(209, 21);
     this.searchFrom.TabIndex = 0;
     //
     // choosePic
     //
     this.choosePic.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.choosePic.Location = new System.Drawing.Point(73, 285);
     this.choosePic.Name     = "choosePic";
     this.choosePic.Size     = new System.Drawing.Size(87, 25);
     this.choosePic.TabIndex = 1;
     this.choosePic.Text     = "浏览";
     this.choosePic.Click   += new System.EventHandler(this.choosePic_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.targetPic);
     this.groupBox1.Location = new System.Drawing.Point(0, 81);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(233, 198);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.Text     = "选定目标";
     //
     // targetPic
     //
     this.targetPic.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.targetPic.Location = new System.Drawing.Point(2, 23);
     this.targetPic.Name     = "targetPic";
     this.targetPic.Size     = new System.Drawing.Size(229, 173);
     this.targetPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.targetPic.TabIndex = 0;
     this.targetPic.TabStop  = false;
     //
     // cancelButton
     //
     this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.Location = new System.Drawing.Point(73, 516);
     this.cancelButton.Name     = "cancelButton";
     this.cancelButton.Size     = new System.Drawing.Size(87, 25);
     this.cancelButton.TabIndex = 6;
     this.cancelButton.Text     = "取消";
     this.cancelButton.Visible  = false;
     this.cancelButton.Click   += new System.EventHandler(this.cancelButton_Click);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(233, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 814);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(128, 128);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // openFileDialog1
     //
     this.openFileDialog1.Filter           = "Jpeg 文件|*.jpg";
     this.openFileDialog1.RestoreDirectory = true;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.galleryControl1);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(236, 0);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(655, 814);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text     = "比较结果";
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // galleryControl1
     //
     galleryItemGroup1.Caption = "Group1";
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.galleryControl1.Gallery.ImageSize        = new System.Drawing.Size(88, 88);
     this.galleryControl1.Gallery.ItemImageLayout  = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
     this.galleryControl1.Gallery.ShowGroupCaption = false;
     this.galleryControl1.Gallery.ShowItemText     = true;
     this.galleryControl1.Location = new System.Drawing.Point(2, 23);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(651, 789);
     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(630, 785);
     //
     // barManager1
     //
     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.progressBar,
         this.counter,
         this.barSubItem2,
         this.accuracyLabel
     });
     this.barManager1.MaxItemId = 9;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemProgressBar1,
         this.repositoryItemTrackBar1
     });
     this.barManager1.StatusBar = this.bar3;
     //
     // 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.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.accuracyLabel, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.counter),
         new DevExpress.XtraBars.LinkPersistInfo(this.progressBar)
     });
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder          = false;
     this.bar3.OptionsBar.UseWholeRow             = true;
     this.bar3.Text = "Status bar";
     //
     // accuracyLabel
     //
     this.accuracyLabel.ButtonStyle     = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.accuracyLabel.Caption         = "准确度:中";
     this.accuracyLabel.DropDownControl = this.accuracyTrackContainer;
     this.accuracyLabel.Hint            = "调整比对的准确度";
     this.accuracyLabel.Id   = 8;
     this.accuracyLabel.Name = "accuracyLabel";
     //
     // accuracyTrackContainer
     //
     this.accuracyTrackContainer.AutoSize     = true;
     this.accuracyTrackContainer.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.accuracyTrackContainer.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.accuracyTrackContainer.Controls.Add(this.labelControl3);
     this.accuracyTrackContainer.Controls.Add(this.labelControl2);
     this.accuracyTrackContainer.Controls.Add(this.labelControl1);
     this.accuracyTrackContainer.Controls.Add(this.accuracyTrackBar);
     this.accuracyTrackContainer.Location = new System.Drawing.Point(0, 0);
     this.accuracyTrackContainer.Manager  = this.barManager1;
     this.accuracyTrackContainer.Name     = "accuracyTrackContainer";
     this.accuracyTrackContainer.Size     = new System.Drawing.Size(48, 153);
     this.accuracyTrackContainer.TabIndex = 10;
     this.accuracyTrackContainer.Visible  = false;
     this.accuracyTrackContainer.CloseUp += new System.EventHandler(this.accuracyTrackContainer_CloseUp);
     //
     // accuracyTrackBar
     //
     this.accuracyTrackBar.EditValue              = 1;
     this.accuracyTrackBar.Location               = new System.Drawing.Point(0, 0);
     this.accuracyTrackBar.MenuManager            = this.barManager1;
     this.accuracyTrackBar.Name                   = "accuracyTrackBar";
     this.accuracyTrackBar.Properties.Maximum     = 2;
     this.accuracyTrackBar.Properties.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.accuracyTrackBar.Size                   = new System.Drawing.Size(45, 150);
     this.accuracyTrackBar.TabIndex               = 0;
     this.accuracyTrackBar.Value                  = 1;
     //
     // counter
     //
     this.counter.Alignment     = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.counter.Caption       = "已比对: 0  待比对: 0";
     this.counter.Id            = 2;
     this.counter.Name          = "counter";
     this.counter.TextAlignment = System.Drawing.StringAlignment.Near;
     this.counter.Visibility    = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // progressBar
     //
     this.progressBar.Alignment  = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.progressBar.Caption    = "progress";
     this.progressBar.Edit       = this.repositoryItemProgressBar1;
     this.progressBar.EditValue  = "0";
     this.progressBar.Id         = 1;
     this.progressBar.Name       = "progressBar";
     this.progressBar.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.progressBar.Width      = 152;
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size             = new System.Drawing.Size(891, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 814);
     this.barDockControlBottom.Size             = new System.Drawing.Size(891, 28);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 814);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(891, 0);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 814);
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "barSubItem2";
     this.barSubItem2.Id      = 4;
     this.barSubItem2.Name    = "barSubItem2";
     //
     // repositoryItemTrackBar1
     //
     this.repositoryItemTrackBar1.Name = "repositoryItemTrackBar1";
     //
     // faceCollection
     //
     this.faceCollection.LoadingEnabled = false;
     this.faceCollection.ObjectType     = typeof(Damany.PortraitCapturer.DAL.DTO.Portrait);
     //
     // popupContainerControl1
     //
     this.popupContainerControl1.Location = new System.Drawing.Point(159, 488);
     this.popupContainerControl1.Name     = "popupContainerControl1";
     this.popupContainerControl1.Size     = new System.Drawing.Size(152, 205);
     this.popupContainerControl1.TabIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(33, 5);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(12, 14);
     this.labelControl1.TabIndex = 1;
     this.labelControl1.Text     = "高";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(33, 69);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(12, 14);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text     = "中";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(33, 130);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(12, 14);
     this.labelControl3.TabIndex = 3;
     this.labelControl3.Text     = "低";
     //
     // FaceCompare
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(891, 842);
     this.Controls.Add(this.accuracyTrackContainer);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name          = "FaceCompare";
     this.ShowInTaskbar = false;
     this.Text          = "人脸比对查询";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FaceCompare_FormClosing);
     this.Load         += new System.EventHandler(this.FaceCompare_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panel1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupBox3)).EndInit();
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.currentPic)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox2)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.searchTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.targetPic)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackContainer)).EndInit();
     this.accuracyTrackContainer.ResumeLayout(false);
     this.accuracyTrackContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.faceCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #45
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);
 }
        /// <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(OrderMailMerge));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.Snap.Core.API.DataSourceInfo dataSourceInfo1 = new DevExpress.Snap.Core.API.DataSourceInfo();
            DevExpress.XtraSpellChecker.OptionsSpelling optionsSpelling1 = new DevExpress.XtraSpellChecker.OptionsSpelling();
            DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
            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.bindingSource = new System.Windows.Forms.BindingSource();
            this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
            this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.biClose = new DevExpress.XtraBars.BarButtonItem();
            this.commandBarCheckItem1 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.commandBarCheckItem2 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.commandBarItem4 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.snapControl = new DevExpress.Snap.SnapControl();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.capitalizeEachWordCaseItem1 = new DevExpress.XtraRichEdit.UI.CapitalizeEachWordCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.bbiThisMonth = new DevExpress.XtraBars.BarButtonItem();
            this.bbiPrevMonth = new DevExpress.XtraBars.BarButtonItem();
            this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
            this.toggleSpellCheckAsYouTypeItem1 = new DevExpress.XtraRichEdit.UI.ToggleSpellCheckAsYouType();
            this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
            this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
            this.toggleFieldHighlightingItem1 = new DevExpress.Snap.Extensions.UI.ToggleFieldHighlightingItem();
            this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
            this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
            this.rpbReportRange = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
            this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
            this.documentProofingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProofingRibbonPageGroup();
            this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
            this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
            this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
            this.mailMergeRibbonPage1 = new DevExpress.Snap.Extensions.UI.MailMergeRibbonPage();
            this.mailMergeRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.MailMergeRibbonPageGroup();
            this.viewFieldsRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ViewFieldsRibbonPageGroup();
            this.repositoryItemMailMergeCurrentRecordEdit1 = new DevExpress.Snap.Extensions.UI.RepositoryItemMailMergeCurrentRecordEdit();
            this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.ItemForSnapControl = new DevExpress.XtraLayout.LayoutControlItem();
            this.snapBarController1 = new DevExpress.Snap.Extensions.SnapBarController();
            this.spellChecker1 = new DevExpress.XtraSpellChecker.SpellChecker();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMailMergeCurrentRecordEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
            this.dataLayoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSnapControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // bindingSource
            // 
            this.bindingSource.DataSource = typeof(DevExpress.DevAV.Order);
            // 
            // stylesRibbonPageGroup1
            // 
            this.stylesRibbonPageGroup1.Glyph = ((System.Drawing.Image)(resources.GetObject("stylesRibbonPageGroup1.Glyph")));
            this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
            this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
            // 
            // galleryChangeStyleItem1
            // 
            // 
            // 
            // 
            this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
            this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
            this.galleryChangeStyleItem1.Id = 87;
            this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
            // 
            // ribbonControl
            // 
            this.ribbonControl.ExpandCollapseItem.Id = 0;
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl.ExpandCollapseItem,
            this.biClose,
            this.commandBarCheckItem1,
            this.commandBarCheckItem2,
            this.undoItem1,
            this.redoItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.commandBarItem4,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.barButtonGroup1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.barButtonGroup2,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.barButtonGroup3,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.capitalizeEachWordCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.barButtonGroup4,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.barButtonGroup5,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.barButtonGroup6,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.barButtonGroup7,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.galleryChangeStyleItem1,
            this.findItem1,
            this.replaceItem1,
            this.bbiThisMonth,
            this.bbiPrevMonth,
            this.checkSpellingItem1,
            this.toggleSpellCheckAsYouTypeItem1,
            this.showAllFieldCodesItem1,
            this.showAllFieldResultsItem1,
            this.toggleFieldHighlightingItem1});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.Margin = new System.Windows.Forms.Padding(2);
            this.ribbonControl.MaxItemId = 117;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.fileRibbonPage1,
            this.homeRibbonPage1,
            this.mailMergeRibbonPage1});
            this.ribbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemMailMergeCurrentRecordEdit1,
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1});
            this.ribbonControl.Size = new System.Drawing.Size(1280, 142);
            // 
            // 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";
            // 
            // commandBarCheckItem1
            // 
            this.commandBarCheckItem1.Id = 6;
            this.commandBarCheckItem1.Name = "commandBarCheckItem1";
            this.commandBarCheckItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.MailMergeFilters;
            // 
            // commandBarCheckItem2
            // 
            this.commandBarCheckItem2.Id = 7;
            this.commandBarCheckItem2.Name = "commandBarCheckItem2";
            this.commandBarCheckItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.MailMergeSorting;
            // 
            // undoItem1
            // 
            this.undoItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_undo_16;
            this.undoItem1.Id = 13;
            this.undoItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_undo_32;
            this.undoItem1.Name = "undoItem1";
            // 
            // redoItem1
            // 
            this.redoItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_redo_16;
            this.redoItem1.Id = 14;
            this.redoItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_redo_32;
            this.redoItem1.Name = "redoItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_doc_16;
            this.fileNewItem1.Id = 15;
            this.fileNewItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_new_doc_32;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_open_doc_16;
            this.fileOpenItem1.Id = 16;
            this.fileOpenItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_open_doc_32;
            this.fileOpenItem1.Name = "fileOpenItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 17;
            this.fileSaveItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_32;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_as_16;
            this.fileSaveAsItem1.Id = 18;
            this.fileSaveAsItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_save_as_32;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            // 
            // commandBarItem4
            // 
            this.commandBarItem4.Id = 19;
            this.commandBarItem4.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_export_32;
            this.commandBarItem4.Name = "commandBarItem4";
            this.commandBarItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ExportDocument;
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_quick_16;
            this.quickPrintItem1.Id = 20;
            this.quickPrintItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_quick_32;
            this.quickPrintItem1.Name = "quickPrintItem1";
            // 
            // printItem1
            // 
            this.printItem1.Id = 21;
            this.printItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_32;
            this.printItem1.Name = "printItem1";
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 22;
            this.printPreviewItem1.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_print_preview_32;
            this.printPreviewItem1.Name = "printPreviewItem1";
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 43;
            this.pasteItem1.Name = "pasteItem1";
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 44;
            this.cutItem1.Name = "cutItem1";
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 45;
            this.copyItem1.Name = "copyItem1";
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 46;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Id = 36;
            this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
            this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
            this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
            this.barButtonGroup1.Name = "barButtonGroup1";
            this.barButtonGroup1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 47;
            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.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 48;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.snapControl;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // snapControl
            // 
            this.snapControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            dataSourceInfo1.DataSource = this.bindingSource;
            dataSourceInfo1.DataSourceName = "Employee";
            this.snapControl.DataSources.Add(dataSourceInfo1);
            this.snapControl.EnableToolTips = true;
            this.snapControl.Location = new System.Drawing.Point(0, 0);
            this.snapControl.MenuManager = this.ribbonControl;
            this.snapControl.Modified = true;
            this.snapControl.Name = "snapControl";
            this.snapControl.Options.Comments.ShowAllAuthors = false;
            this.snapControl.Options.CopyPaste.MaintainDocumentSectionSettings = false;
            this.snapControl.Options.Fields.HighlightMode = DevExpress.XtraRichEdit.FieldsHighlightMode.Always;
            this.snapControl.Options.Fields.UseCurrentCultureDateTimeFormat = false;
            this.snapControl.Options.SnapMailMergeVisualOptions.DataSource = this.bindingSource;
            this.snapControl.Options.SnapMailMergeVisualOptions.DataSourceName = "Employee";
            this.spellChecker1.SetShowSpellCheckMenu(this.snapControl, false);
            this.snapControl.Size = new System.Drawing.Size(1280, 658);
            this.snapControl.SpellChecker = this.spellChecker1;
            this.spellChecker1.SetSpellCheckerOptions(this.snapControl, optionsSpelling1);
            this.snapControl.TabIndex = 18;
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 49;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 50;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Id = 37;
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
            this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
            this.barButtonGroup2.Name = "barButtonGroup2";
            this.barButtonGroup2.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 51;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 52;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 53;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 54;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 55;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 56;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 57;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 58;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Id = 38;
            this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
            this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
            this.barButtonGroup3.Name = "barButtonGroup3";
            this.barButtonGroup3.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 59;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 60;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 61;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.capitalizeEachWordCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            this.changeTextCaseItem1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 62;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 63;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // capitalizeEachWordCaseItem1
            // 
            this.capitalizeEachWordCaseItem1.Id = 64;
            this.capitalizeEachWordCaseItem1.Name = "capitalizeEachWordCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 65;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 66;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // barButtonGroup4
            // 
            this.barButtonGroup4.Id = 39;
            this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
            this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
            this.barButtonGroup4.Name = "barButtonGroup4";
            this.barButtonGroup4.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 67;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 68;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 69;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // barButtonGroup5
            // 
            this.barButtonGroup5.Id = 40;
            this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
            this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
            this.barButtonGroup5.Name = "barButtonGroup5";
            this.barButtonGroup5.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 70;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 71;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 76;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // barButtonGroup6
            // 
            this.barButtonGroup6.Id = 41;
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
            this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.barButtonGroup6.Name = "barButtonGroup6";
            this.barButtonGroup6.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 72;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 73;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 74;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 75;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // barButtonGroup7
            // 
            this.barButtonGroup7.Id = 42;
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
            this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
            this.barButtonGroup7.Name = "barButtonGroup7";
            this.barButtonGroup7.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 77;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            this.changeParagraphLineSpacingItem1.ShowNavigationHeader = DevExpress.Utils.DefaultBoolean.True;
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 78;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 79;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 80;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 81;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 82;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 83;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 84;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 85;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 86;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 88;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 89;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // bbiThisMonth
            // 
            this.bbiThisMonth.Caption = "This Month";
            this.bbiThisMonth.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_period_month_16;
            this.bbiThisMonth.Id = 90;
            this.bbiThisMonth.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_period_month_32;
            this.bbiThisMonth.Name = "bbiThisMonth";
            // 
            // bbiPrevMonth
            // 
            this.bbiPrevMonth.Caption = "Last Month";
            this.bbiPrevMonth.Glyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_period_month_16;
            this.bbiPrevMonth.Id = 91;
            this.bbiPrevMonth.LargeGlyph = global::DevExpress.OutlookInspiredApp.Win.Properties.Resources.icon_sales_period_month_32;
            this.bbiPrevMonth.Name = "bbiPrevMonth";
            // 
            // checkSpellingItem1
            // 
            this.checkSpellingItem1.Id = 92;
            this.checkSpellingItem1.Name = "checkSpellingItem1";
            // 
            // toggleSpellCheckAsYouTypeItem1
            // 
            this.toggleSpellCheckAsYouTypeItem1.Id = 116;
            this.toggleSpellCheckAsYouTypeItem1.Name = "toggleSpellCheckAsYouTypeItem1";
            // 
            // showAllFieldCodesItem1
            // 
            this.showAllFieldCodesItem1.Id = 113;
            this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
            // 
            // showAllFieldResultsItem1
            // 
            this.showAllFieldResultsItem1.Id = 114;
            this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
            // 
            // toggleFieldHighlightingItem1
            // 
            this.toggleFieldHighlightingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.Glyph")));
            this.toggleFieldHighlightingItem1.Id = 115;
            this.toggleFieldHighlightingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.LargeGlyph")));
            this.toggleFieldHighlightingItem1.Name = "toggleFieldHighlightingItem1";
            // 
            // fileRibbonPage1
            // 
            this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonRibbonPageGroup1,
            this.rpbReportRange,
            this.ribbonPageGroup1});
            this.fileRibbonPage1.Name = "fileRibbonPage1";
            this.fileRibbonPage1.Text = "FILE";
            // 
            // commonRibbonPageGroup1
            // 
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.commandBarItem4);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
            this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
            this.commonRibbonPageGroup1.MergeOrder = 0;
            this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
            // 
            // rpbReportRange
            // 
            this.rpbReportRange.AllowTextClipping = false;
            this.rpbReportRange.ItemLinks.Add(this.bbiThisMonth);
            this.rpbReportRange.ItemLinks.Add(this.bbiPrevMonth);
            this.rpbReportRange.MergeOrder = 0;
            this.rpbReportRange.Name = "rpbReportRange";
            this.rpbReportRange.ShowCaptionButton = false;
            this.rpbReportRange.Text = "Report Range";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.biClose);
            this.ribbonPageGroup1.MergeOrder = 0;
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "Close";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.clipboardRibbonPageGroup1,
            this.documentProofingRibbonPageGroup1,
            this.fontRibbonPageGroup1,
            this.paragraphRibbonPageGroup1,
            this.stylesRibbonPageGroup1,
            this.editingRibbonPageGroup1});
            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);
            this.homeRibbonPage1.Text = "HOME";
            // 
            // clipboardRibbonPageGroup1
            // 
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
            this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
            this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
            // 
            // documentProofingRibbonPageGroup1
            // 
            this.documentProofingRibbonPageGroup1.AllowTextClipping = false;
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.checkSpellingItem1);
            this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.toggleSpellCheckAsYouTypeItem1);
            this.documentProofingRibbonPageGroup1.MergeOrder = 0;
            this.documentProofingRibbonPageGroup1.Name = "documentProofingRibbonPageGroup1";
            // 
            // fontRibbonPageGroup1
            // 
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup2);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup3);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.changeTextCaseItem1);
            this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
            this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
            // 
            // paragraphRibbonPageGroup1
            // 
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
            this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
            this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
            // 
            // editingRibbonPageGroup1
            // 
            this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
            this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
            this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
            // 
            // mailMergeRibbonPage1
            // 
            this.mailMergeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.mailMergeRibbonPageGroup1,
            this.viewFieldsRibbonPageGroup1});
            this.mailMergeRibbonPage1.Name = "mailMergeRibbonPage1";
            this.mailMergeRibbonPage1.Text = "MAIL MERGE";
            // 
            // mailMergeRibbonPageGroup1
            // 
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem1);
            this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem2);
            this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
            // 
            // viewFieldsRibbonPageGroup1
            // 
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
            this.viewFieldsRibbonPageGroup1.ItemLinks.Add(this.toggleFieldHighlightingItem1);
            this.viewFieldsRibbonPageGroup1.Name = "viewFieldsRibbonPageGroup1";
            // 
            // repositoryItemMailMergeCurrentRecordEdit1
            // 
            this.repositoryItemMailMergeCurrentRecordEdit1.AutoHeight = false;
            this.repositoryItemMailMergeCurrentRecordEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "Previous", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Prev, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleRight, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons1"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "Next", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Next, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons2"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "First", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.First, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", 6, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleRight, ((System.Drawing.Image)(resources.GetObject("repositoryItemMailMergeCurrentRecordEdit1.Buttons3"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "Last", DevExpress.Snap.Extensions.UI.MailMergeCurrentRecordEditorButtonTag.Last, null, true)});
            this.repositoryItemMailMergeCurrentRecordEdit1.Name = "repositoryItemMailMergeCurrentRecordEdit1";
            // 
            // dataLayoutControl1
            // 
            this.dataLayoutControl1.AllowCustomizationMenu = false;
            this.dataLayoutControl1.Controls.Add(this.snapControl);
            this.dataLayoutControl1.DataSource = this.bindingSource;
            this.dataLayoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataLayoutControl1.Location = new System.Drawing.Point(0, 142);
            this.dataLayoutControl1.Margin = new System.Windows.Forms.Padding(0);
            this.dataLayoutControl1.Name = "dataLayoutControl1";
            this.dataLayoutControl1.Root = this.layoutControlGroup1;
            this.dataLayoutControl1.Size = new System.Drawing.Size(1280, 658);
            this.dataLayoutControl1.TabIndex = 1;
            this.dataLayoutControl1.Text = "dataLayoutControl1";
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.CustomizationFormText = "Root";
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.False;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlGroup2});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.OptionsItemText.TextToControlDistance = 6;
            this.layoutControlGroup1.Size = new System.Drawing.Size(1280, 658);
            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.ItemForSnapControl});
            this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup2.Name = "autoGeneratedGroup0";
            this.layoutControlGroup2.OptionsItemText.TextToControlDistance = 6;
            this.layoutControlGroup2.Size = new System.Drawing.Size(1280, 658);
            this.layoutControlGroup2.Text = "autoGeneratedGroup0";
            // 
            // ItemForSnapControl
            // 
            this.ItemForSnapControl.Control = this.snapControl;
            this.ItemForSnapControl.CustomizationFormText = "layoutControlItem1";
            this.ItemForSnapControl.Location = new System.Drawing.Point(0, 0);
            this.ItemForSnapControl.Name = "layoutControlItem1";
            this.ItemForSnapControl.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.ItemForSnapControl.Size = new System.Drawing.Size(1280, 658);
            this.ItemForSnapControl.Text = "layoutControlItem1";
            this.ItemForSnapControl.TextSize = new System.Drawing.Size(0, 0);
            this.ItemForSnapControl.TextToControlDistance = 0;
            this.ItemForSnapControl.TextVisible = false;
            // 
            // snapBarController1
            // 
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem1);
            this.snapBarController1.BarItems.Add(this.commandBarCheckItem2);
            this.snapBarController1.BarItems.Add(this.undoItem1);
            this.snapBarController1.BarItems.Add(this.redoItem1);
            this.snapBarController1.BarItems.Add(this.fileNewItem1);
            this.snapBarController1.BarItems.Add(this.fileOpenItem1);
            this.snapBarController1.BarItems.Add(this.fileSaveItem1);
            this.snapBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.snapBarController1.BarItems.Add(this.commandBarItem4);
            this.snapBarController1.BarItems.Add(this.quickPrintItem1);
            this.snapBarController1.BarItems.Add(this.printItem1);
            this.snapBarController1.BarItems.Add(this.printPreviewItem1);
            this.snapBarController1.BarItems.Add(this.pasteItem1);
            this.snapBarController1.BarItems.Add(this.cutItem1);
            this.snapBarController1.BarItems.Add(this.copyItem1);
            this.snapBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.snapBarController1.BarItems.Add(this.changeFontNameItem1);
            this.snapBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.snapBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.snapBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.snapBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.snapBarController1.BarItems.Add(this.changeFontColorItem1);
            this.snapBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.snapBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.snapBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.snapBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.snapBarController1.BarItems.Add(this.capitalizeEachWordCaseItem1);
            this.snapBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.snapBarController1.BarItems.Add(this.clearFormattingItem1);
            this.snapBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.snapBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.snapBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.snapBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.snapBarController1.BarItems.Add(this.increaseIndentItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.snapBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.snapBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.snapBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.snapBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.snapBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.snapBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.snapBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.snapBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.snapBarController1.BarItems.Add(this.galleryChangeStyleItem1);
            this.snapBarController1.BarItems.Add(this.findItem1);
            this.snapBarController1.BarItems.Add(this.replaceItem1);
            this.snapBarController1.BarItems.Add(this.checkSpellingItem1);
            this.snapBarController1.BarItems.Add(this.toggleSpellCheckAsYouTypeItem1);
            this.snapBarController1.BarItems.Add(this.showAllFieldCodesItem1);
            this.snapBarController1.BarItems.Add(this.showAllFieldResultsItem1);
            this.snapBarController1.BarItems.Add(this.toggleFieldHighlightingItem1);
            this.snapBarController1.Control = this.snapControl;
            this.snapBarController1.RibbonControl = this.ribbonControl;
            this.snapBarController1.SnapDockManager = null;
            // 
            // spellChecker1
            // 
            this.spellChecker1.Culture = new System.Globalization.CultureInfo("en-US");
            this.spellChecker1.ParentContainer = null;
            // 
            // OrderMailMerge
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dataLayoutControl1);
            this.Controls.Add(this.ribbonControl);
            this.Margin = new System.Windows.Forms.Padding(6);
            this.Name = "OrderMailMerge";
            this.Size = new System.Drawing.Size(1280, 800);
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMailMergeCurrentRecordEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
            this.dataLayoutControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemForSnapControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).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(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);
 }
Beispiel #48
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);

        }
Beispiel #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();
     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();
 }
Beispiel #50
0
 /// <summary>
 /// Tasarımcı desteği için gerekli metot - bu metodun
 ///içeriğini kod düzenleyici ile değiştirmeyin.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(anaForm));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = 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.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     this.ribbonPageGroup1                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonControl1                     = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.btnIlaç                            = new DevExpress.XtraBars.BarButtonItem();
     this.btnHasta                           = new DevExpress.XtraBars.BarButtonItem();
     this.btnBankalar                        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8                     = new DevExpress.XtraBars.BarButtonItem();
     this.btnStok                            = new DevExpress.XtraBars.BarButtonItem();
     this.btnFirma                           = new DevExpress.XtraBars.BarButtonItem();
     this.btnBanka                           = new DevExpress.XtraBars.BarButtonItem();
     this.btnFatura                          = new DevExpress.XtraBars.BarButtonItem();
     this.btnPersonel                        = new DevExpress.XtraBars.BarButtonItem();
     this.btnNot                             = new DevExpress.XtraBars.BarButtonItem();
     this.btnKasa                            = new DevExpress.XtraBars.BarButtonItem();
     this.btnGider                           = new DevExpress.XtraBars.BarButtonItem();
     this.btnAyar                            = new DevExpress.XtraBars.BarButtonItem();
     this.btnMail                            = new DevExpress.XtraBars.BarButtonItem();
     this.skinRibbonGalleryBarItem1          = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.ribbonGalleryBarItem2              = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.ribbonGalleryBarItem3              = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.btnHareket                         = new DevExpress.XtraBars.BarButtonItem();
     this.btnRapor                           = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup7                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage4                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup4                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage6                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup5                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage8                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup6                   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemHeightType1          = new DevExpress.XtraRichEdit.Design.RepositoryItemHeightType();
     this.repositoryItemCheckedComboBoxEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit();
     this.ribbonPage3                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.xtraTabbedMdiManager1              = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ribbonPage5                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPage7                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPage9                        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHeightType1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckedComboBoxEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "SEÇENEKLER";
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(56)))));
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.btnIlaç,
         this.btnHasta,
         this.btnBankalar,
         this.barButtonItem8,
         this.btnStok,
         this.btnFirma,
         this.btnBanka,
         this.btnFatura,
         this.btnPersonel,
         this.btnNot,
         this.btnKasa,
         this.btnGider,
         this.btnAyar,
         this.btnMail,
         this.skinRibbonGalleryBarItem1,
         this.ribbonGalleryBarItem2,
         this.ribbonGalleryBarItem3,
         this.btnHareket,
         this.btnRapor
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 37;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage2,
         this.ribbonPage4,
         this.ribbonPage6,
         this.ribbonPage8
     });
     this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemHeightType1,
         this.repositoryItemCheckedComboBoxEdit1
     });
     this.ribbonControl1.Size = new System.Drawing.Size(1904, 160);
     //
     // btnIlaç
     //
     this.btnIlaç.Caption                               = "İLAÇLAR";
     this.btnIlaç.Id                                    = 2;
     this.btnIlaç.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnIlaç.ImageOptions.Image")));
     this.btnIlaç.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnIlaç.ImageOptions.LargeImage")));
     this.btnIlaç.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnIlaç.ItemAppearance.Normal.Options.UseFont = true;
     this.btnIlaç.Name                                  = "btnIlaç";
     this.btnIlaç.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick_1);
     //
     // btnHasta
     //
     this.btnHasta.Caption                               = "HASTALAR";
     this.btnHasta.Id                                    = 3;
     this.btnHasta.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnHasta.ImageOptions.Image")));
     this.btnHasta.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnHasta.ImageOptions.LargeImage")));
     this.btnHasta.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnHasta.ItemAppearance.Normal.Options.UseFont = true;
     this.btnHasta.Name                                  = "btnHasta";
     this.btnHasta.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // btnBankalar
     //
     this.btnBankalar.Caption                               = "BANKALAR";
     this.btnBankalar.Id                                    = 8;
     this.btnBankalar.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnBankalar.ImageOptions.Image")));
     this.btnBankalar.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnBankalar.ImageOptions.LargeImage")));
     this.btnBankalar.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnBankalar.ItemAppearance.Normal.Options.UseFont = true;
     this.btnBankalar.Name                                  = "btnBankalar";
     this.btnBankalar.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption                                = "ANASAYFA";
     this.barButtonItem8.Id                                     = 9;
     this.barButtonItem8.ImageOptions.Image                     = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.ImageOptions.Image")));
     this.barButtonItem8.ImageOptions.LargeImage                = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.ImageOptions.LargeImage")));
     this.barButtonItem8.ItemAppearance.Hovered.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem8.ItemAppearance.Hovered.Options.UseFont = true;
     this.barButtonItem8.ItemAppearance.Normal.Font             = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem8.ItemAppearance.Normal.Options.UseFont  = true;
     this.barButtonItem8.Name                                   = "barButtonItem8";
     this.barButtonItem8.ItemClick                             += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // btnStok
     //
     this.btnStok.Caption                               = "STOK";
     this.btnStok.Id                                    = 10;
     this.btnStok.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnStok.ImageOptions.Image")));
     this.btnStok.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnStok.ImageOptions.LargeImage")));
     this.btnStok.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnStok.ItemAppearance.Normal.Options.UseFont = true;
     this.btnStok.Name                                  = "btnStok";
     this.btnStok.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStok_ItemClick);
     //
     // btnFirma
     //
     this.btnFirma.Caption                               = "FİRMALAR";
     this.btnFirma.Id                                    = 15;
     this.btnFirma.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnFirma.ImageOptions.Image")));
     this.btnFirma.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnFirma.ImageOptions.LargeImage")));
     this.btnFirma.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnFirma.ItemAppearance.Normal.Options.UseFont = true;
     this.btnFirma.Name                                  = "btnFirma";
     this.btnFirma.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.btnFirmalar_ItemClick_1);
     //
     // btnBanka
     //
     this.btnBanka.Caption                               = "BANKALAR";
     this.btnBanka.Id                                    = 16;
     this.btnBanka.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnBanka.ImageOptions.Image")));
     this.btnBanka.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnBanka.ImageOptions.LargeImage")));
     this.btnBanka.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnBanka.ItemAppearance.Normal.Options.UseFont = true;
     this.btnBanka.Name                                  = "btnBanka";
     this.btnBanka.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem13_ItemClick);
     //
     // btnFatura
     //
     this.btnFatura.Caption                               = "FATURALAR";
     this.btnFatura.Id                                    = 20;
     this.btnFatura.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnFatura.ImageOptions.Image")));
     this.btnFatura.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnFatura.ImageOptions.LargeImage")));
     this.btnFatura.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnFatura.ItemAppearance.Normal.Options.UseFont = true;
     this.btnFatura.Name                                  = "btnFatura";
     this.btnFatura.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick_2);
     //
     // btnPersonel
     //
     this.btnPersonel.Caption                               = "PERSONELLER";
     this.btnPersonel.Id                                    = 21;
     this.btnPersonel.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnPersonel.ImageOptions.Image")));
     this.btnPersonel.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnPersonel.ImageOptions.LargeImage")));
     this.btnPersonel.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnPersonel.ItemAppearance.Normal.Options.UseFont = true;
     this.btnPersonel.Name                                  = "btnPersonel";
     this.btnPersonel.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick_1);
     //
     // btnNot
     //
     this.btnNot.Caption                               = "NOTLAR";
     this.btnNot.Id                                    = 22;
     this.btnNot.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnNot.ImageOptions.Image")));
     this.btnNot.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnNot.ImageOptions.LargeImage")));
     this.btnNot.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnNot.ItemAppearance.Normal.Options.UseFont = true;
     this.btnNot.Name                                  = "btnNot";
     this.btnNot.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick_1);
     //
     // btnKasa
     //
     this.btnKasa.Caption                               = "KASA";
     this.btnKasa.Id                                    = 23;
     this.btnKasa.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnKasa.ImageOptions.Image")));
     this.btnKasa.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnKasa.ImageOptions.LargeImage")));
     this.btnKasa.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnKasa.ItemAppearance.Normal.Options.UseFont = true;
     this.btnKasa.Name                                  = "btnKasa";
     this.btnKasa.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.btnKasa_ItemClick_1);
     //
     // btnGider
     //
     this.btnGider.Caption                               = "GİDERLER";
     this.btnGider.Id                                    = 24;
     this.btnGider.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnGider.ImageOptions.Image")));
     this.btnGider.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnGider.ImageOptions.LargeImage")));
     this.btnGider.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnGider.ItemAppearance.Normal.Options.UseFont = true;
     this.btnGider.Name                                  = "btnGider";
     this.btnGider.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick_1);
     //
     // btnAyar
     //
     this.btnAyar.Caption                               = "AYARLAR";
     this.btnAyar.Id                                    = 25;
     this.btnAyar.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnAyar.ImageOptions.Image")));
     this.btnAyar.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnAyar.ImageOptions.LargeImage")));
     this.btnAyar.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnAyar.ItemAppearance.Normal.Options.UseFont = true;
     this.btnAyar.Name                                  = "btnAyar";
     //
     // btnMail
     //
     this.btnMail.Caption                               = "MAİL";
     this.btnMail.Id                                    = 26;
     this.btnMail.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnMail.ImageOptions.Image")));
     this.btnMail.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnMail.ImageOptions.LargeImage")));
     this.btnMail.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnMail.ItemAppearance.Normal.Options.UseFont = true;
     this.btnMail.Name                                  = "btnMail";
     this.btnMail.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick_1);
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     this.skinRibbonGalleryBarItem1.Id      = 27;
     this.skinRibbonGalleryBarItem1.Name    = "skinRibbonGalleryBarItem1";
     //
     // ribbonGalleryBarItem2
     //
     this.ribbonGalleryBarItem2.Caption = "InplaceGallery1";
     //
     //
     //
     galleryItemGroup1.Caption = "Group1";
     this.ribbonGalleryBarItem2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.ribbonGalleryBarItem2.Id   = 32;
     this.ribbonGalleryBarItem2.Name = "ribbonGalleryBarItem2";
     //
     // ribbonGalleryBarItem3
     //
     this.ribbonGalleryBarItem3.Caption = "InplaceGallery2";
     //
     //
     //
     galleryItemGroup2.Caption = "Group4";
     this.ribbonGalleryBarItem3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup2
     });
     this.ribbonGalleryBarItem3.Id   = 33;
     this.ribbonGalleryBarItem3.Name = "ribbonGalleryBarItem3";
     //
     // btnHareket
     //
     this.btnHareket.Caption                               = "HARAKETLER";
     this.btnHareket.Id                                    = 35;
     this.btnHareket.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnHareket.ImageOptions.Image")));
     this.btnHareket.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnHareket.ImageOptions.LargeImage")));
     this.btnHareket.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnHareket.ItemAppearance.Normal.Options.UseFont = true;
     this.btnHareket.Name                                  = "btnHareket";
     this.btnHareket.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.btnHareket_ItemClick);
     //
     // btnRapor
     //
     this.btnRapor.Caption                               = "RAPORLAR";
     this.btnRapor.Id                                    = 36;
     this.btnRapor.ImageOptions.Image                    = ((System.Drawing.Image)(resources.GetObject("btnRapor.ImageOptions.Image")));
     this.btnRapor.ImageOptions.LargeImage               = ((System.Drawing.Image)(resources.GetObject("btnRapor.ImageOptions.LargeImage")));
     this.btnRapor.ItemAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnRapor.ItemAppearance.Normal.Options.UseFont = true;
     this.btnRapor.Name                                  = "btnRapor";
     this.btnRapor.ItemClick                            += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRapor_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Appearance.BackColor              = System.Drawing.Color.Transparent;
     this.ribbonPage1.Appearance.BackColor2             = System.Drawing.Color.Transparent;
     this.ribbonPage1.Appearance.BorderColor            = System.Drawing.Color.Transparent;
     this.ribbonPage1.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.ribbonPage1.Appearance.Options.UseBackColor   = true;
     this.ribbonPage1.Appearance.Options.UseBorderColor = true;
     this.ribbonPage1.Appearance.Options.UseFont        = true;
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup2,
         this.ribbonPageGroup7
     });
     this.ribbonPage1.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("ribbonPage1.ImageOptions.SvgImage")));
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ECZANEM";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPageGroup2.ImageOptions.Image")));
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup2.ItemLinks.Add(this.btnHasta);
     this.ribbonPageGroup2.ItemLinks.Add(this.btnIlaç);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     toolTipTitleItem1.ImageOptions.ImageUri.Uri = "AlignCenter";
     toolTipItem1.ImageOptions.SvgImage          = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("resource.SvgImage")));
     toolTipItem1.LeftIndent = 6;
     toolTipTitleItem2.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     toolTipTitleItem2.LeftIndent         = 6;
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     superToolTip1.Items.Add(toolTipTitleItem2);
     this.ribbonPageGroup2.SuperTip = superToolTip1;
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.btnStok);
     this.ribbonPageGroup7.ItemLinks.Add(this.btnHareket);
     this.ribbonPageGroup7.ItemLinks.Add(this.btnRapor);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.ribbonPage2.Appearance.Options.UseFont = true;
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3
     });
     this.ribbonPage2.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("ribbonPage2.ImageOptions.SvgImage")));
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "FİRMAM";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.btnBanka);
     this.ribbonPageGroup3.ItemLinks.Add(this.btnFirma);
     this.ribbonPageGroup3.ItemLinks.Add(this.btnFatura);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     //
     // ribbonPage4
     //
     this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup4
     });
     this.ribbonPage4.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("ribbonPage4.ImageOptions.SvgImage")));
     this.ribbonPage4.Name = "ribbonPage4";
     this.ribbonPage4.Text = "PERSONELİM";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.btnPersonel);
     this.ribbonPageGroup4.ItemLinks.Add(this.btnNot);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     //
     // ribbonPage6
     //
     this.ribbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5
     });
     this.ribbonPage6.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("ribbonPage6.ImageOptions.SvgImage")));
     this.ribbonPage6.Name = "ribbonPage6";
     this.ribbonPage6.Text = "CARİ";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.btnKasa);
     this.ribbonPageGroup5.ItemLinks.Add(this.btnGider);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     //
     // ribbonPage8
     //
     this.ribbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup6
     });
     this.ribbonPage8.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("ribbonPage8.ImageOptions.SvgImage")));
     this.ribbonPage8.Name = "ribbonPage8";
     this.ribbonPage8.Text = "DESTEK";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.btnMail);
     this.ribbonPageGroup6.ItemLinks.Add(this.btnAyar);
     this.ribbonPageGroup6.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     //
     // repositoryItemHeightType1
     //
     this.repositoryItemHeightType1.AutoHeight = false;
     this.repositoryItemHeightType1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemHeightType1.Name = "repositoryItemHeightType1";
     //
     // repositoryItemCheckedComboBoxEdit1
     //
     this.repositoryItemCheckedComboBoxEdit1.AutoHeight = false;
     this.repositoryItemCheckedComboBoxEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemCheckedComboBoxEdit1.Name = "repositoryItemCheckedComboBoxEdit1";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "ribbonPage3";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // ribbonPage5
     //
     this.ribbonPage5.Name = "ribbonPage5";
     this.ribbonPage5.Text = "ribbonPage5";
     //
     // ribbonPage7
     //
     this.ribbonPage7.Name = "ribbonPage7";
     this.ribbonPage7.Text = "ribbonPage7";
     //
     // ribbonPage9
     //
     this.ribbonPage9.Name = "ribbonPage9";
     this.ribbonPage9.Text = "ribbonPage9";
     //
     // anaForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1904, 1041);
     this.Controls.Add(this.ribbonControl1);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name           = "anaForm";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "E/O";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.anaForm_FormClosing);
     this.Load          += new System.EventHandler(this.anaForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHeightType1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckedComboBoxEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #51
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);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraSplashScreen.SplashScreenManager splashScreenManager = new DevExpress.XtraSplashScreen.SplashScreenManager(this, null, true, true);
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmThuVienHinhAnh));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.btnOK = new DevExpress.XtraEditors.SimpleButton();
            this.btnImageCancel = new DevExpress.XtraEditors.SimpleButton();
            this.galleryControlImage = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControlImage)).BeginInit();
            this.galleryControlImage.SuspendLayout();
            this.SuspendLayout();
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl1.Appearance.ForeColor = System.Drawing.Color.OrangeRed;
            this.labelControl1.Location = new System.Drawing.Point(12, 6);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(155, 16);
            this.labelControl1.TabIndex = 2;
            this.labelControl1.Text = "Chọn hình ảnh cần thêm";
            // 
            // btnOK
            // 
            this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
            this.btnOK.Location = new System.Drawing.Point(407, 252);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(75, 23);
            this.btnOK.TabIndex = 8;
            this.btnOK.Text = "OK";
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // btnImageCancel
            // 
            this.btnImageCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnImageCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnImageCancel.Image")));
            this.btnImageCancel.Location = new System.Drawing.Point(488, 252);
            this.btnImageCancel.Name = "btnImageCancel";
            this.btnImageCancel.Size = new System.Drawing.Size(75, 23);
            this.btnImageCancel.TabIndex = 7;
            this.btnImageCancel.Text = "Đóng";
            this.btnImageCancel.Click += new System.EventHandler(this.btnImageCancel_Click);
            // 
            // galleryControlImage
            // 
            this.galleryControlImage.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.galleryControlImage.Controls.Add(this.galleryControlClient1);
            this.galleryControlImage.DesignGalleryGroupIndex = 0;
            this.galleryControlImage.DesignGalleryItemIndex = 0;
            // 
            // galleryControlGallery1
            // 
            this.galleryControlImage.Gallery.AllowHoverImages = true;
            this.galleryControlImage.Gallery.AllowMarqueeSelection = true;
            galleryItemGroup1.Caption = "Danh sách hình ảnh đang dùng";
            this.galleryControlImage.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControlImage.Gallery.HoverImageSize = new System.Drawing.Size(200, 200);
            this.galleryControlImage.Gallery.ImageSize = new System.Drawing.Size(100, 100);
            this.galleryControlImage.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.Multiple;
            this.galleryControlImage.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
            this.galleryControlImage.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Left;
            this.galleryControlImage.Gallery.ShowItemText = true;
            this.galleryControlImage.Location = new System.Drawing.Point(0, 28);
            this.galleryControlImage.Name = "galleryControlImage";
            this.galleryControlImage.Size = new System.Drawing.Size(584, 218);
            this.galleryControlImage.TabIndex = 9;
            this.galleryControlImage.Text = "galleryControlImage";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControlImage;
            this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
            this.galleryControlClient1.Size = new System.Drawing.Size(563, 214);
            // 
            // frmThuVienHinhAnh
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(584, 282);
            this.Controls.Add(this.galleryControlImage);
            this.Controls.Add(this.btnOK);
            this.Controls.Add(this.btnImageCancel);
            this.Controls.Add(this.labelControl1);
            this.MinimumSize = new System.Drawing.Size(450, 200);
            this.Name = "frmThuVienHinhAnh";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Thư viện hình ảnh";
            ((System.ComponentModel.ISupportInitialize)(this.galleryControlImage)).EndInit();
            this.galleryControlImage.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #53
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);
 }
Beispiel #54
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();
 }
 /// <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()
        {
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.panel1 = new DevExpress.XtraEditors.PanelControl();
            this.compareButton = new DevExpress.XtraEditors.SimpleButton();
            this.label3 = new System.Windows.Forms.Label();
            this.groupBox3 = new DevExpress.XtraEditors.GroupControl();
            this.currentPic = new System.Windows.Forms.PictureBox();
            this.groupBox2 = new DevExpress.XtraEditors.GroupControl();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.searchTo = new DevExpress.XtraEditors.TimeEdit();
            this.searchFrom = new DevExpress.XtraEditors.TimeEdit();
            this.choosePic = new DevExpress.XtraEditors.SimpleButton();
            this.groupBox1 = new DevExpress.XtraEditors.GroupControl();
            this.targetPic = new System.Windows.Forms.PictureBox();
            this.cancelButton = new DevExpress.XtraEditors.SimpleButton();
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.imageList1 = new System.Windows.Forms.ImageList();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.barManager1 = new DevExpress.XtraBars.BarManager();
            this.bar3 = new DevExpress.XtraBars.Bar();
            this.accuracyLabel = new DevExpress.XtraBars.BarButtonItem();
            this.accuracyTrackContainer = new DevExpress.XtraBars.PopupControlContainer();
            this.accuracyTrackBar = new DevExpress.XtraEditors.TrackBarControl();
            this.counter = new DevExpress.XtraBars.BarStaticItem();
            this.progressBar = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
            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.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
            this.repositoryItemTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemTrackBar();
            this.faceCollection = new DevExpress.Xpo.XPCollection();
            this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.panel1)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupBox3)).BeginInit();
            this.groupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.currentPic)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupBox2)).BeginInit();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.searchTo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.searchFrom.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupBox1)).BeginInit();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.targetPic)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackContainer)).BeginInit();
            this.accuracyTrackContainer.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.faceCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.compareButton);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.groupBox3);
            this.panel1.Controls.Add(this.groupBox2);
            this.panel1.Controls.Add(this.choosePic);
            this.panel1.Controls.Add(this.groupBox1);
            this.panel1.Controls.Add(this.cancelButton);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(233, 814);
            this.panel1.TabIndex = 0;
            // 
            // compareButton
            // 
            this.compareButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.compareButton.Enabled = false;
            this.compareButton.Location = new System.Drawing.Point(73, 516);
            this.compareButton.Name = "compareButton";
            this.compareButton.Size = new System.Drawing.Size(87, 25);
            this.compareButton.TabIndex = 5;
            this.compareButton.Text = "比对";
            this.compareButton.Click += new System.EventHandler(this.compareButton_Click);
            // 
            // label3
            // 
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label3.Location = new System.Drawing.Point(7, 10);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(212, 68);
            this.label3.TabIndex = 4;
            this.label3.Text = "选定一张照片后,从数据库中比较与该照片相似的图片";
            // 
            // groupBox3
            // 
            this.groupBox3.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.groupBox3.Controls.Add(this.currentPic);
            this.groupBox3.Location = new System.Drawing.Point(3, 553);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(226, 255);
            this.groupBox3.TabIndex = 3;
            this.groupBox3.Text = "待比较图片";
            // 
            // currentPic
            // 
            this.currentPic.Dock = System.Windows.Forms.DockStyle.Fill;
            this.currentPic.Location = new System.Drawing.Point(2, 23);
            this.currentPic.Name = "currentPic";
            this.currentPic.Size = new System.Drawing.Size(222, 230);
            this.currentPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.currentPic.TabIndex = 0;
            this.currentPic.TabStop = false;
            // 
            // groupBox2
            // 
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.label2);
            this.groupBox2.Controls.Add(this.label1);
            this.groupBox2.Controls.Add(this.searchTo);
            this.groupBox2.Controls.Add(this.searchFrom);
            this.groupBox2.Location = new System.Drawing.Point(3, 339);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(226, 140);
            this.groupBox2.TabIndex = 2;
            this.groupBox2.Text = "比对参数";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 83);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(59, 14);
            this.label2.TabIndex = 3;
            this.label2.Text = "结束时间:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(13, 26);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(59, 14);
            this.label1.TabIndex = 2;
            this.label1.Text = "起始时间:";
            // 
            // searchTo
            // 
            this.searchTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.searchTo.EditValue = new System.DateTime(2010, 3, 19, 0, 0, 0, 0);
            this.searchTo.Location = new System.Drawing.Point(10, 98);
            this.searchTo.Name = "searchTo";
            this.searchTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.searchTo.Properties.Mask.EditMask = "f";
            this.searchTo.Size = new System.Drawing.Size(209, 21);
            this.searchTo.TabIndex = 1;
            // 
            // searchFrom
            // 
            this.searchFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.searchFrom.EditValue = new System.DateTime(2010, 3, 19, 0, 0, 0, 0);
            this.searchFrom.Location = new System.Drawing.Point(10, 43);
            this.searchFrom.Name = "searchFrom";
            this.searchFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.searchFrom.Properties.Mask.EditMask = "f";
            this.searchFrom.Size = new System.Drawing.Size(209, 21);
            this.searchFrom.TabIndex = 0;
            // 
            // choosePic
            // 
            this.choosePic.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.choosePic.Location = new System.Drawing.Point(73, 285);
            this.choosePic.Name = "choosePic";
            this.choosePic.Size = new System.Drawing.Size(87, 25);
            this.choosePic.TabIndex = 1;
            this.choosePic.Text = "浏览";
            this.choosePic.Click += new System.EventHandler(this.choosePic_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.targetPic);
            this.groupBox1.Location = new System.Drawing.Point(0, 81);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(233, 198);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.Text = "选定目标";
            // 
            // targetPic
            // 
            this.targetPic.Dock = System.Windows.Forms.DockStyle.Fill;
            this.targetPic.Location = new System.Drawing.Point(2, 23);
            this.targetPic.Name = "targetPic";
            this.targetPic.Size = new System.Drawing.Size(229, 173);
            this.targetPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.targetPic.TabIndex = 0;
            this.targetPic.TabStop = false;
            // 
            // cancelButton
            // 
            this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cancelButton.Location = new System.Drawing.Point(73, 516);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(87, 25);
            this.cancelButton.TabIndex = 6;
            this.cancelButton.Text = "取消";
            this.cancelButton.Visible = false;
            this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
            // 
            // splitter1
            // 
            this.splitter1.Location = new System.Drawing.Point(233, 0);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(3, 814);
            this.splitter1.TabIndex = 1;
            this.splitter1.TabStop = false;
            // 
            // imageList1
            // 
            this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
            this.imageList1.ImageSize = new System.Drawing.Size(128, 128);
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.Filter = "Jpeg 文件|*.jpg";
            this.openFileDialog1.RestoreDirectory = true;
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.galleryControl1);
            this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl1.Location = new System.Drawing.Point(236, 0);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(655, 814);
            this.groupControl1.TabIndex = 5;
            this.groupControl1.Text = "比较结果";
            // 
            // galleryControl1
            // 
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            // 
            // galleryControl1
            // 
            galleryItemGroup1.Caption = "Group1";
            this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.galleryControl1.Gallery.ImageSize = new System.Drawing.Size(88, 88);
            this.galleryControl1.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.ZoomInside;
            this.galleryControl1.Gallery.ShowGroupCaption = false;
            this.galleryControl1.Gallery.ShowItemText = true;
            this.galleryControl1.Location = new System.Drawing.Point(2, 23);
            this.galleryControl1.Name = "galleryControl1";
            this.galleryControl1.Size = new System.Drawing.Size(651, 789);
            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(630, 785);
            // 
            // barManager1
            // 
            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.progressBar,
            this.counter,
            this.barSubItem2,
            this.accuracyLabel});
            this.barManager1.MaxItemId = 9;
            this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemProgressBar1,
            this.repositoryItemTrackBar1});
            this.barManager1.StatusBar = this.bar3;
            // 
            // 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.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.accuracyLabel, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.counter),
            new DevExpress.XtraBars.LinkPersistInfo(this.progressBar)});
            this.bar3.OptionsBar.AllowQuickCustomization = false;
            this.bar3.OptionsBar.DrawDragBorder = false;
            this.bar3.OptionsBar.UseWholeRow = true;
            this.bar3.Text = "Status bar";
            // 
            // accuracyLabel
            // 
            this.accuracyLabel.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.accuracyLabel.Caption = "准确度:中";
            this.accuracyLabel.DropDownControl = this.accuracyTrackContainer;
            this.accuracyLabel.Hint = "调整比对的准确度";
            this.accuracyLabel.Id = 8;
            this.accuracyLabel.Name = "accuracyLabel";
            // 
            // accuracyTrackContainer
            // 
            this.accuracyTrackContainer.AutoSize = true;
            this.accuracyTrackContainer.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.accuracyTrackContainer.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.accuracyTrackContainer.Controls.Add(this.labelControl3);
            this.accuracyTrackContainer.Controls.Add(this.labelControl2);
            this.accuracyTrackContainer.Controls.Add(this.labelControl1);
            this.accuracyTrackContainer.Controls.Add(this.accuracyTrackBar);
            this.accuracyTrackContainer.Location = new System.Drawing.Point(0, 0);
            this.accuracyTrackContainer.Manager = this.barManager1;
            this.accuracyTrackContainer.Name = "accuracyTrackContainer";
            this.accuracyTrackContainer.Size = new System.Drawing.Size(48, 153);
            this.accuracyTrackContainer.TabIndex = 10;
            this.accuracyTrackContainer.Visible = false;
            this.accuracyTrackContainer.CloseUp += new System.EventHandler(this.accuracyTrackContainer_CloseUp);
            // 
            // accuracyTrackBar
            // 
            this.accuracyTrackBar.EditValue = 1;
            this.accuracyTrackBar.Location = new System.Drawing.Point(0, 0);
            this.accuracyTrackBar.MenuManager = this.barManager1;
            this.accuracyTrackBar.Name = "accuracyTrackBar";
            this.accuracyTrackBar.Properties.Maximum = 2;
            this.accuracyTrackBar.Properties.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.accuracyTrackBar.Size = new System.Drawing.Size(45, 150);
            this.accuracyTrackBar.TabIndex = 0;
            this.accuracyTrackBar.Value = 1;
            // 
            // counter
            // 
            this.counter.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.counter.Caption = "已比对: 0  待比对: 0";
            this.counter.Id = 2;
            this.counter.Name = "counter";
            this.counter.TextAlignment = System.Drawing.StringAlignment.Near;
            this.counter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // progressBar
            // 
            this.progressBar.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.progressBar.Caption = "progress";
            this.progressBar.Edit = this.repositoryItemProgressBar1;
            this.progressBar.EditValue = "0";
            this.progressBar.Id = 1;
            this.progressBar.Name = "progressBar";
            this.progressBar.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.progressBar.Width = 152;
            // 
            // repositoryItemProgressBar1
            // 
            this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(891, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 814);
            this.barDockControlBottom.Size = new System.Drawing.Size(891, 28);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 814);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(891, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 814);
            // 
            // barSubItem2
            // 
            this.barSubItem2.Caption = "barSubItem2";
            this.barSubItem2.Id = 4;
            this.barSubItem2.Name = "barSubItem2";
            // 
            // repositoryItemTrackBar1
            // 
            this.repositoryItemTrackBar1.Name = "repositoryItemTrackBar1";
            // 
            // faceCollection
            // 
            this.faceCollection.LoadingEnabled = false;
            this.faceCollection.ObjectType = typeof(Damany.PortraitCapturer.DAL.DTO.Portrait);
            // 
            // popupContainerControl1
            // 
            this.popupContainerControl1.Location = new System.Drawing.Point(159, 488);
            this.popupContainerControl1.Name = "popupContainerControl1";
            this.popupContainerControl1.Size = new System.Drawing.Size(152, 205);
            this.popupContainerControl1.TabIndex = 0;
            // 
            // labelControl1
            // 
            this.labelControl1.Location = new System.Drawing.Point(33, 5);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(12, 14);
            this.labelControl1.TabIndex = 1;
            this.labelControl1.Text = "高";
            // 
            // labelControl2
            // 
            this.labelControl2.Location = new System.Drawing.Point(33, 69);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(12, 14);
            this.labelControl2.TabIndex = 2;
            this.labelControl2.Text = "中";
            // 
            // labelControl3
            // 
            this.labelControl3.Location = new System.Drawing.Point(33, 130);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(12, 14);
            this.labelControl3.TabIndex = 3;
            this.labelControl3.Text = "低";
            // 
            // FaceCompare
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(891, 842);
            this.Controls.Add(this.accuracyTrackContainer);
            this.Controls.Add(this.groupControl1);
            this.Controls.Add(this.splitter1);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "FaceCompare";
            this.ShowInTaskbar = false;
            this.Text = "人脸比对查询";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FaceCompare_FormClosing);
            this.Load += new System.EventHandler(this.FaceCompare_Load);
            ((System.ComponentModel.ISupportInitialize)(this.panel1)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupBox3)).EndInit();
            this.groupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.currentPic)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupBox2)).EndInit();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.searchTo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.searchFrom.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupBox1)).EndInit();
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.targetPic)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackContainer)).EndInit();
            this.accuracyTrackContainer.ResumeLayout(false);
            this.accuracyTrackContainer.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.accuracyTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.faceCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #57
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);
 }
Beispiel #58
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(ucAttachView));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1   = new DevExpress.XtraNavBar.NavBarGroup();
     this.navAll         = new DevExpress.XtraNavBar.NavBarItem();
     this.navImage       = new DevExpress.XtraNavBar.NavBarItem();
     this.navDoc         = new DevExpress.XtraNavBar.NavBarItem();
     this.navOther       = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroupControlContainer1 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
     this.radioGroup1           = new DevExpress.XtraEditors.RadioGroup();
     this.navBarGroup2          = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup3          = new DevExpress.XtraNavBar.NavBarGroup();
     this.navFileView           = new DevExpress.XtraNavBar.NavBarItem();
     this.navFileAdd            = new DevExpress.XtraNavBar.NavBarItem();
     this.navFileRemove         = new DevExpress.XtraNavBar.NavBarItem();
     this.navFileDownload       = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection1      = new DevExpress.Utils.ImageCollection(this.components);
     this.galleryControl1       = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.imageCollection2      = new DevExpress.Utils.ImageCollection(this.components);
     this.splitterControl1      = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl1         = new DevExpress.XtraEditors.PanelControl();
     this.lblAttachId           = new DevExpress.XtraEditors.LabelControl();
     this.lblAttachDate         = new DevExpress.XtraEditors.LabelControl();
     this.lblUserNo             = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9         = new DevExpress.XtraEditors.LabelControl();
     this.lblFilename           = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4         = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3         = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1         = new DevExpress.XtraEditors.LabelControl();
     this.lblAttachSize         = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2         = new DevExpress.XtraEditors.LabelControl();
     this.gridControl1          = new DevExpress.XtraGrid.GridControl();
     this.gridView1             = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.lblAttachDesc         = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.navBarControl1.SuspendLayout();
     this.navBarGroupControlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
     this.galleryControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Controls.Add(this.navBarGroupControlContainer1);
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1,
         this.navBarGroup2,
         this.navBarGroup3
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navImage,
         this.navDoc,
         this.navOther,
         this.navAll,
         this.navFileAdd,
         this.navFileRemove,
         this.navFileDownload,
         this.navFileView
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth      = 126;
     this.navBarControl1.OptionsNavPane.ShowOverflowButton = false;
     this.navBarControl1.OptionsNavPane.ShowOverflowPanel  = false;
     this.navBarControl1.OptionsNavPane.ShowSplitter       = false;
     this.navBarControl1.PaintStyleKind             = DevExpress.XtraNavBar.NavBarViewKind.ExplorerBar;
     this.navBarControl1.Size                       = new System.Drawing.Size(126, 439);
     this.navBarControl1.SmallImages                = this.imageCollection1;
     this.navBarControl1.StoreDefaultPaintStyleName = true;
     this.navBarControl1.TabIndex                   = 0;
     this.navBarControl1.Text                       = "navBarControl1";
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption  = "Файлын төрөл";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navAll),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navImage),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navDoc),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navOther)
     });
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navAll
     //
     this.navAll.Caption         = "Бүгд";
     this.navAll.Name            = "navAll";
     this.navAll.SmallImageIndex = 3;
     this.navAll.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navAll_LinkClicked);
     //
     // navImage
     //
     this.navImage.Caption         = "Зураг";
     this.navImage.Name            = "navImage";
     this.navImage.SmallImageIndex = 0;
     this.navImage.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navImage_LinkClicked);
     //
     // navDoc
     //
     this.navDoc.Caption         = "Документ";
     this.navDoc.Name            = "navDoc";
     this.navDoc.SmallImageIndex = 1;
     this.navDoc.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navDoc_LinkClicked);
     //
     // navOther
     //
     this.navOther.Caption         = "Бусад";
     this.navOther.Name            = "navOther";
     this.navOther.SmallImageIndex = 2;
     this.navOther.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navOther_LinkClicked);
     //
     // navBarGroupControlContainer1
     //
     this.navBarGroupControlContainer1.Controls.Add(this.radioGroup1);
     this.navBarGroupControlContainer1.Name     = "navBarGroupControlContainer1";
     this.navBarGroupControlContainer1.Size     = new System.Drawing.Size(118, 52);
     this.navBarGroupControlContainer1.TabIndex = 0;
     //
     // radioGroup1
     //
     this.radioGroup1.EditValue = 0;
     this.radioGroup1.Location  = new System.Drawing.Point(3, 1);
     this.radioGroup1.Name      = "radioGroup1";
     this.radioGroup1.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.radioGroup1.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroup1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Зургаар"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Жагсаалтаар")
     });
     this.radioGroup1.Properties.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_Properties_SelectedIndexChanged);
     this.radioGroup1.Size     = new System.Drawing.Size(112, 51);
     this.radioGroup1.TabIndex = 0;
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption           = "Харагдац";
     this.navBarGroup2.ControlContainer  = this.navBarGroupControlContainer1;
     this.navBarGroup2.Expanded          = true;
     this.navBarGroup2.GroupClientHeight = 59;
     this.navBarGroup2.GroupStyle        = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
     this.navBarGroup2.Name = "navBarGroup2";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption  = "Ажилбар";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navFileView),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navFileAdd),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navFileRemove),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navFileDownload)
     });
     this.navBarGroup3.Name = "navBarGroup3";
     //
     // navFileView
     //
     this.navFileView.Caption         = "Харах";
     this.navFileView.Name            = "navFileView";
     this.navFileView.SmallImageIndex = 7;
     this.navFileView.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navFileView_LinkClicked);
     //
     // navFileAdd
     //
     this.navFileAdd.Caption         = "Файл нэмэх";
     this.navFileAdd.Name            = "navFileAdd";
     this.navFileAdd.SmallImageIndex = 4;
     this.navFileAdd.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navFileAdd_LinkClicked);
     //
     // navFileRemove
     //
     this.navFileRemove.Caption         = "Файл хасах";
     this.navFileRemove.Name            = "navFileRemove";
     this.navFileRemove.SmallImageIndex = 5;
     this.navFileRemove.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navFileRemove_LinkClicked);
     //
     // navFileDownload
     //
     this.navFileDownload.Caption         = "Татаж авах";
     this.navFileDownload.Name            = "navFileDownload";
     this.navFileDownload.SmallImageIndex = 6;
     this.navFileDownload.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navFileDownload_LinkClicked);
     //
     // imageCollection1
     //
     this.imageCollection1.ImageSize   = new System.Drawing.Size(24, 24);
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "Icon_371.ico");
     this.imageCollection1.Images.SetKeyName(1, "Icon_370.ico");
     this.imageCollection1.Images.SetKeyName(2, "My eBooks XP.ico");
     this.imageCollection1.Images.SetKeyName(3, "Icon_39.ico");
     this.imageCollection1.Images.SetKeyName(4, "id_card_add.png");
     this.imageCollection1.Images.SetKeyName(5, "id_card_error.png");
     this.imageCollection1.Images.SetKeyName(6, "import1.png");
     this.imageCollection1.Images.SetKeyName(7, "id_card_view.png");
     //
     // galleryControl1
     //
     this.galleryControl1.Controls.Add(this.galleryControlClient1);
     this.galleryControl1.DesignGalleryGroupIndex = 0;
     this.galleryControl1.DesignGalleryItemIndex  = 0;
     //
     // galleryControlGallery1
     //
     this.galleryControl1.Gallery.AllowFilter = false;
     galleryItemGroup2.Caption = "Group1";
     this.galleryControl1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup2
     });
     this.galleryControl1.Gallery.ImageSize        = new System.Drawing.Size(64, 64);
     this.galleryControl1.Gallery.ItemCheckMode    = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleCheck;
     this.galleryControl1.Gallery.ShowGroupCaption = false;
     this.galleryControl1.Gallery.ShowItemText     = true;
     this.galleryControl1.Gallery.UseMaxImageSize  = true;
     this.galleryControl1.Gallery.ItemDoubleClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.galleryControlGallery1_ItemDoubleClick);
     this.galleryControl1.Location = new System.Drawing.Point(126, 0);
     this.galleryControl1.Name     = "galleryControl1";
     this.galleryControl1.Size     = new System.Drawing.Size(473, 132);
     this.galleryControl1.TabIndex = 1;
     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(452, 128);
     //
     // imageCollection2
     //
     this.imageCollection2.ImageSize   = new System.Drawing.Size(64, 64);
     this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
     //
     // splitterControl1
     //
     this.splitterControl1.Location = new System.Drawing.Point(126, 0);
     this.splitterControl1.Name     = "splitterControl1";
     this.splitterControl1.Size     = new System.Drawing.Size(5, 439);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop  = false;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.lblAttachDesc);
     this.panelControl1.Controls.Add(this.lblAttachId);
     this.panelControl1.Controls.Add(this.lblAttachDate);
     this.panelControl1.Controls.Add(this.lblUserNo);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.lblFilename);
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.lblAttachSize);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(131, 373);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(584, 66);
     this.panelControl1.TabIndex = 3;
     //
     // lblAttachId
     //
     this.lblAttachId.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblAttachId.Location     = new System.Drawing.Point(338, 24);
     this.lblAttachId.Name         = "lblAttachId";
     this.lblAttachId.Size         = new System.Drawing.Size(110, 13);
     this.lblAttachId.TabIndex     = 10;
     this.lblAttachId.Text         = "...";
     //
     // lblAttachDate
     //
     this.lblAttachDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblAttachDate.Location     = new System.Drawing.Point(132, 24);
     this.lblAttachDate.Name         = "lblAttachDate";
     this.lblAttachDate.Size         = new System.Drawing.Size(147, 13);
     this.lblAttachDate.TabIndex     = 8;
     this.lblAttachDate.Text         = "...";
     //
     // lblUserNo
     //
     this.lblUserNo.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblUserNo.Location     = new System.Drawing.Point(132, 43);
     this.lblUserNo.Name         = "lblUserNo";
     this.lblUserNo.Size         = new System.Drawing.Size(147, 13);
     this.lblUserNo.TabIndex     = 7;
     this.lblUserNo.Text         = "...";
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl9.Location        = new System.Drawing.Point(284, 24);
     this.labelControl9.Name            = "labelControl9";
     this.labelControl9.Size            = new System.Drawing.Size(47, 13);
     this.labelControl9.TabIndex        = 9;
     this.labelControl9.Text            = "Дугаар:";
     //
     // lblFilename
     //
     this.lblFilename.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblFilename.Location     = new System.Drawing.Point(132, 5);
     this.lblFilename.Name         = "lblFilename";
     this.lblFilename.Size         = new System.Drawing.Size(147, 13);
     this.lblFilename.TabIndex     = 5;
     this.lblFilename.Text         = "...";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl4.Location        = new System.Drawing.Point(6, 43);
     this.labelControl4.Name            = "labelControl4";
     this.labelControl4.Size            = new System.Drawing.Size(120, 13);
     this.labelControl4.TabIndex        = 4;
     this.labelControl4.Text            = "Оруулсан хэрэглэгч:";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location        = new System.Drawing.Point(6, 24);
     this.labelControl3.Name            = "labelControl3";
     this.labelControl3.Size            = new System.Drawing.Size(96, 13);
     this.labelControl3.TabIndex        = 3;
     this.labelControl3.Text            = "Оруулсан огноо:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location        = new System.Drawing.Point(6, 5);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(72, 13);
     this.labelControl1.TabIndex        = 0;
     this.labelControl1.Text            = "Файлын нэр:";
     //
     // lblAttachSize
     //
     this.lblAttachSize.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblAttachSize.Location     = new System.Drawing.Point(338, 5);
     this.lblAttachSize.Name         = "lblAttachSize";
     this.lblAttachSize.Size         = new System.Drawing.Size(110, 13);
     this.lblAttachSize.TabIndex     = 6;
     this.lblAttachSize.Text         = "...";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location        = new System.Drawing.Point(284, 5);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.Size            = new System.Drawing.Size(47, 13);
     this.labelControl2.TabIndex        = 2;
     this.labelControl2.Text            = "Хэмжээ:";
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(137, 136);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(462, 183);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel  = false;
     this.gridView1.OptionsView.ShowIndicator   = false;
     this.gridView1.DoubleClick += new System.EventHandler(this.gridView1_DoubleClick);
     //
     // lblAttachDesc
     //
     this.lblAttachDesc.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.lblAttachDesc.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblAttachDesc.LineLocation    = DevExpress.XtraEditors.LineLocation.Left;
     this.lblAttachDesc.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Vertical;
     this.lblAttachDesc.LineVisible     = true;
     this.lblAttachDesc.Location        = new System.Drawing.Point(469, 5);
     this.lblAttachDesc.Name            = "lblAttachDesc";
     this.lblAttachDesc.Size            = new System.Drawing.Size(110, 56);
     this.lblAttachDesc.TabIndex        = 11;
     this.lblAttachDesc.Text            = "...";
     //
     // ucAttachView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.galleryControl1);
     this.Controls.Add(this.navBarControl1);
     this.Name = "ucAttachView";
     this.Size = new System.Drawing.Size(715, 439);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.navBarControl1.ResumeLayout(false);
     this.navBarGroupControlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
     this.galleryControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).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(RoleDetailFrm));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     this.groupControlUpdate     = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2          = new DevExpress.XtraEditors.GroupControl();
     this.CEUpdate               = new DevExpress.XtraEditors.CheckEdit();
     this.CESelect               = new DevExpress.XtraEditors.CheckEdit();
     this.CEDelete               = new DevExpress.XtraEditors.CheckEdit();
     this.CEInsert               = new DevExpress.XtraEditors.CheckEdit();
     this.appMenu                = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.popupControlContainer2 = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.buttonEdit             = new DevExpress.XtraEditors.ButtonEdit();
     this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.someLabelControl2      = new DevExpress.XtraEditors.LabelControl();
     this.someLabelControl1      = new DevExpress.XtraEditors.LabelControl();
     this.groupControlSelect     = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems               = new DevExpress.XtraEditors.LookUpEdit();
     this.rolesBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter     = new ECard.Datasource.dsData();
     this.labelControl1          = new DevExpress.XtraEditors.LabelControl();
     this.roleDetialTableAdapter = new ECard.Datasource.dsDataTableAdapters.RoleDetialTableAdapter();
     this.rolesTableAdapter      = new ECard.Datasource.dsDataTableAdapters.RolesTableAdapter();
     this.ribbonControlMain      = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.imageCollection16      = new DevExpress.Utils.ImageCollection(this.components);
     this.mbCDGeha               = new DevExpress.XtraBars.BarButtonItem();
     this.mbTBLLabel             = new DevExpress.XtraBars.BarButtonItem();
     this.mbImportTBLALLData     = new DevExpress.XtraBars.BarButtonItem();
     this.mbTBLALLData           = new DevExpress.XtraBars.BarButtonItem();
     this.mbPrintCard1           = new DevExpress.XtraBars.BarButtonItem();
     this.mbUsers                = new DevExpress.XtraBars.BarButtonItem();
     this.mbRoles                = new DevExpress.XtraBars.BarButtonItem();
     this.mbRoleDetail           = new DevExpress.XtraBars.BarButtonItem();
     this.mbUserRoles            = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonGalleryBarItem1  = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.imageCollection32      = new DevExpress.Utils.ImageCollection(this.components);
     this.ribbonPageCode         = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroupCode    = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageData         = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroupData    = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageRoles        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1       = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageQry          = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPagePrint        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroupPrint   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).BeginInit();
     this.groupControlUpdate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).BeginInit();
     this.popupControlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
     this.popupControlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rolesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlUpdate
     //
     this.groupControlUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlUpdate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlUpdate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlUpdate.Controls.Add(this.ribbonControlMain);
     this.groupControlUpdate.Controls.Add(this.groupControl2);
     this.groupControlUpdate.Location    = new System.Drawing.Point(9, 75);
     this.groupControlUpdate.Name        = "groupControlUpdate";
     this.groupControlUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlUpdate.Size        = new System.Drawing.Size(963, 251);
     this.groupControlUpdate.TabIndex    = 1;
     this.groupControlUpdate.Text        = "التفاصيل";
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl2.Controls.Add(this.CEUpdate);
     this.groupControl2.Controls.Add(this.CESelect);
     this.groupControl2.Controls.Add(this.CEDelete);
     this.groupControl2.Controls.Add(this.CEInsert);
     this.groupControl2.Location = new System.Drawing.Point(361, 169);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(240, 73);
     this.groupControl2.TabIndex = 2;
     this.groupControl2.Text     = "عناصر السماح";
     //
     // CEUpdate
     //
     this.CEUpdate.Location           = new System.Drawing.Point(21, 49);
     this.CEUpdate.Name               = "CEUpdate";
     this.CEUpdate.Properties.Caption = "تعديل";
     this.CEUpdate.Size               = new System.Drawing.Size(75, 19);
     this.CEUpdate.TabIndex           = 0;
     //
     // CESelect
     //
     this.CESelect.Location           = new System.Drawing.Point(21, 24);
     this.CESelect.Name               = "CESelect";
     this.CESelect.Properties.Caption = "عرض";
     this.CESelect.Size               = new System.Drawing.Size(75, 19);
     this.CESelect.TabIndex           = 0;
     //
     // CEDelete
     //
     this.CEDelete.Location           = new System.Drawing.Point(144, 49);
     this.CEDelete.Name               = "CEDelete";
     this.CEDelete.Properties.Caption = "حذف";
     this.CEDelete.Size               = new System.Drawing.Size(75, 19);
     this.CEDelete.TabIndex           = 0;
     //
     // CEInsert
     //
     this.CEInsert.Location           = new System.Drawing.Point(144, 24);
     this.CEInsert.Name               = "CEInsert";
     this.CEInsert.Properties.Caption = "اضافه";
     this.CEInsert.Size               = new System.Drawing.Size(75, 19);
     this.CEInsert.TabIndex           = 0;
     //
     // appMenu
     //
     this.appMenu.BottomPaneControlContainer = this.popupControlContainer2;
     this.appMenu.Name = "appMenu";
     this.appMenu.RightPaneControlContainer = this.popupControlContainer1;
     this.appMenu.ShowRightPane             = true;
     //
     // popupControlContainer2
     //
     this.popupControlContainer2.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.popupControlContainer2.Appearance.Options.UseBackColor = true;
     this.popupControlContainer2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainer2.Controls.Add(this.buttonEdit);
     this.popupControlContainer2.Location = new System.Drawing.Point(127, 218);
     this.popupControlContainer2.Name     = "popupControlContainer2";
     this.popupControlContainer2.Size     = new System.Drawing.Size(118, 28);
     this.popupControlContainer2.TabIndex = 5;
     this.popupControlContainer2.Visible  = false;
     //
     // buttonEdit
     //
     this.buttonEdit.EditValue = "No Text";
     this.buttonEdit.Location  = new System.Drawing.Point(3, 5);
     this.buttonEdit.Name      = "buttonEdit";
     this.buttonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.buttonEdit.Size     = new System.Drawing.Size(100, 20);
     this.buttonEdit.TabIndex = 0;
     //
     // popupControlContainer1
     //
     this.popupControlContainer1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.popupControlContainer1.Appearance.Options.UseBackColor = true;
     this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainer1.Controls.Add(this.someLabelControl2);
     this.popupControlContainer1.Controls.Add(this.someLabelControl1);
     this.popupControlContainer1.Location = new System.Drawing.Point(45, 176);
     this.popupControlContainer1.Name     = "popupControlContainer1";
     this.popupControlContainer1.Size     = new System.Drawing.Size(76, 70);
     this.popupControlContainer1.TabIndex = 4;
     this.popupControlContainer1.Visible  = false;
     //
     // someLabelControl2
     //
     this.someLabelControl2.Location = new System.Drawing.Point(3, 57);
     this.someLabelControl2.Name     = "someLabelControl2";
     this.someLabelControl2.Size     = new System.Drawing.Size(36, 13);
     this.someLabelControl2.TabIndex = 0;
     this.someLabelControl2.Text     = "No Info";
     //
     // someLabelControl1
     //
     this.someLabelControl1.Location = new System.Drawing.Point(3, 3);
     this.someLabelControl1.Name     = "someLabelControl1";
     this.someLabelControl1.Size     = new System.Drawing.Size(36, 13);
     this.someLabelControl1.TabIndex = 0;
     this.someLabelControl1.Text     = "No Info";
     //
     // groupControlSelect
     //
     this.groupControlSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Location    = new System.Drawing.Point(9, 10);
     this.groupControlSelect.Name        = "groupControlSelect";
     this.groupControlSelect.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlSelect.Size        = new System.Drawing.Size(963, 59);
     this.groupControlSelect.TabIndex    = 0;
     this.groupControlSelect.Text        = "جميع السماحيات";
     //
     // LUEItems
     //
     this.LUEItems.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.LUEItems.Location = new System.Drawing.Point(386, 28);
     this.LUEItems.Name     = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleName", "اسم الصلاحيه", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleDesc", "تعليق", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)
     });
     this.LUEItems.Properties.DataSource    = this.rolesBindingSource;
     this.LUEItems.Properties.DisplayMember = "RoleName";
     this.LUEItems.Properties.NullText      = "";
     this.LUEItems.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEItems.Properties.ValueMember   = "RoleID";
     this.LUEItems.Size              = new System.Drawing.Size(173, 20);
     this.LUEItems.TabIndex          = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // rolesBindingSource
     //
     this.rolesBindingSource.DataMember = "Roles";
     this.rolesBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName             = "dsTeachersUnion";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // labelControl1
     //
     this.labelControl1.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl1.Location = new System.Drawing.Point(565, 31);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(62, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "اختار سماحيه";
     //
     // roleDetialTableAdapter
     //
     this.roleDetialTableAdapter.ClearBeforeFill = true;
     //
     // rolesTableAdapter
     //
     this.rolesTableAdapter.ClearBeforeFill = true;
     //
     // ribbonControlMain
     //
     this.ribbonControlMain.ExpandCollapseItem.Id = 0;
     this.ribbonControlMain.Images = this.imageCollection16;
     this.ribbonControlMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControlMain.ExpandCollapseItem,
         this.mbCDGeha,
         this.mbTBLLabel,
         this.mbImportTBLALLData,
         this.mbTBLALLData,
         this.mbPrintCard1,
         this.mbUsers,
         this.mbRoles,
         this.mbRoleDetail,
         this.mbUserRoles,
         this.ribbonGalleryBarItem1
     });
     this.ribbonControlMain.LargeImages   = this.imageCollection32;
     this.ribbonControlMain.Location      = new System.Drawing.Point(2, 21);
     this.ribbonControlMain.MaxItemId     = 2;
     this.ribbonControlMain.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.ribbonControlMain.Name          = "ribbonControlMain";
     this.ribbonControlMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPageCode,
         this.ribbonPageData,
         this.ribbonPageRoles,
         this.ribbonPageQry,
         this.ribbonPagePrint
     });
     this.ribbonControlMain.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
     this.ribbonControlMain.Size        = new System.Drawing.Size(959, 142);
     //
     // imageCollection16
     //
     this.imageCollection16.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection16.ImageStream")));
     this.imageCollection16.Images.SetKeyName(0, "CDGeha.png");
     this.imageCollection16.InsertGalleryImage("TBLLabel16.png", "images/chart/chart_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/chart/chart_16x16.png"), 1);
     this.imageCollection16.Images.SetKeyName(1, "TBLLabel16.png");
     this.imageCollection16.InsertGalleryImage("print_16x16.png", "images/print/print_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/print/print_16x16.png"), 2);
     this.imageCollection16.Images.SetKeyName(2, "print_16x16.png");
     this.imageCollection16.InsertGalleryImage("customer_16x16.png", "images/people/customer_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/people/customer_16x16.png"), 3);
     this.imageCollection16.Images.SetKeyName(3, "customer_16x16.png");
     this.imageCollection16.InsertGalleryImage("technology_16x16.png", "images/programming/technology_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/programming/technology_16x16.png"), 4);
     this.imageCollection16.Images.SetKeyName(4, "technology_16x16.png");
     this.imageCollection16.InsertGalleryImage("customization_16x16.png", "images/edit/customization_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/edit/customization_16x16.png"), 5);
     this.imageCollection16.Images.SetKeyName(5, "customization_16x16.png");
     this.imageCollection16.InsertGalleryImage("publicfix_16x16.png", "images/people/publicfix_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/people/publicfix_16x16.png"), 6);
     this.imageCollection16.Images.SetKeyName(6, "publicfix_16x16.png");
     //
     // mbCDGeha
     //
     this.mbCDGeha.Caption         = "اكواد الجهات";
     this.mbCDGeha.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbCDGeha.Id              = 1;
     this.mbCDGeha.LargeImageIndex = 0;
     this.mbCDGeha.Name            = "mbCDGeha";
     //
     // mbTBLLabel
     //
     this.mbTBLLabel.Caption         = "حقول الكرت";
     this.mbTBLLabel.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbTBLLabel.Id              = 2;
     this.mbTBLLabel.ImageIndex      = 1;
     this.mbTBLLabel.LargeImageIndex = 1;
     this.mbTBLLabel.Name            = "mbTBLLabel";
     //
     // mbImportTBLALLData
     //
     this.mbImportTBLALLData.Caption         = "استيراد بيانات الكروت";
     this.mbImportTBLALLData.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbImportTBLALLData.Id              = 3;
     this.mbImportTBLALLData.ImageIndex      = 1;
     this.mbImportTBLALLData.LargeImageIndex = 1;
     this.mbImportTBLALLData.Name            = "mbImportTBLALLData";
     //
     // mbTBLALLData
     //
     this.mbTBLALLData.Caption         = "بيانات الكروت";
     this.mbTBLALLData.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbTBLALLData.Id              = 4;
     this.mbTBLALLData.ImageIndex      = 1;
     this.mbTBLALLData.LargeImageIndex = 1;
     this.mbTBLALLData.Name            = "mbTBLALLData";
     //
     // mbPrintCard1
     //
     this.mbPrintCard1.Caption         = "طباعة الكارت 1";
     this.mbPrintCard1.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbPrintCard1.Id              = 5;
     this.mbPrintCard1.ImageIndex      = 2;
     this.mbPrintCard1.LargeImageIndex = 2;
     this.mbPrintCard1.Name            = "mbPrintCard1";
     //
     // mbUsers
     //
     this.mbUsers.Caption         = "المستخدمين";
     this.mbUsers.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbUsers.Id              = 6;
     this.mbUsers.ImageIndex      = 3;
     this.mbUsers.LargeImageIndex = 3;
     this.mbUsers.Name            = "mbUsers";
     //
     // mbRoles
     //
     this.mbRoles.Caption         = "الصلاحيات";
     this.mbRoles.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbRoles.Id              = 7;
     this.mbRoles.ImageIndex      = 4;
     this.mbRoles.LargeImageIndex = 4;
     this.mbRoles.Name            = "mbRoles";
     //
     // mbRoleDetail
     //
     this.mbRoleDetail.Caption         = "تفاصيل الصلاحيات";
     this.mbRoleDetail.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbRoleDetail.Id              = 8;
     this.mbRoleDetail.ImageIndex      = 5;
     this.mbRoleDetail.LargeImageIndex = 5;
     this.mbRoleDetail.Name            = "mbRoleDetail";
     //
     // mbUserRoles
     //
     this.mbUserRoles.Caption         = "صلاحيات المستخدمين";
     this.mbUserRoles.CategoryGuid    = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.mbUserRoles.Id              = 9;
     this.mbUserRoles.ImageIndex      = 6;
     this.mbUserRoles.LargeImageIndex = 6;
     this.mbUserRoles.Name            = "mbUserRoles";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "InplaceGallery1";
     //
     //
     //
     galleryItemGroup1.Caption = "Group1";
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup1
     });
     this.ribbonGalleryBarItem1.Id   = 1;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize   = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "CDGeha.png");
     this.imageCollection32.InsertGalleryImage("TBLLabel32.png", "images/chart/chart_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/chart/chart_32x32.png"), 1);
     this.imageCollection32.Images.SetKeyName(1, "TBLLabel32.png");
     this.imageCollection32.InsertGalleryImage("print_32x32.png", "images/print/print_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/print/print_32x32.png"), 2);
     this.imageCollection32.Images.SetKeyName(2, "print_32x32.png");
     this.imageCollection32.InsertGalleryImage("customer_32x32.png", "images/people/customer_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/people/customer_32x32.png"), 3);
     this.imageCollection32.Images.SetKeyName(3, "customer_32x32.png");
     this.imageCollection32.InsertGalleryImage("technology_32x32.png", "images/programming/technology_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/programming/technology_32x32.png"), 4);
     this.imageCollection32.Images.SetKeyName(4, "technology_32x32.png");
     this.imageCollection32.InsertGalleryImage("customization_32x32.png", "images/edit/customization_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/edit/customization_32x32.png"), 5);
     this.imageCollection32.Images.SetKeyName(5, "customization_32x32.png");
     this.imageCollection32.InsertGalleryImage("publicfix_32x32.png", "images/people/publicfix_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/people/publicfix_32x32.png"), 6);
     this.imageCollection32.Images.SetKeyName(6, "publicfix_32x32.png");
     //
     // ribbonPageCode
     //
     this.ribbonPageCode.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroupCode
     });
     this.ribbonPageCode.Name = "ribbonPageCode";
     this.ribbonPageCode.Text = "الاكواد";
     //
     // ribbonPageGroupCode
     //
     this.ribbonPageGroupCode.ItemLinks.Add(this.mbCDGeha);
     this.ribbonPageGroupCode.Name = "ribbonPageGroupCode";
     this.ribbonPageGroupCode.Text = "الاكواد";
     //
     // ribbonPageData
     //
     this.ribbonPageData.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroupData
     });
     this.ribbonPageData.Name = "ribbonPageData";
     this.ribbonPageData.Text = "ادخال البيانات";
     //
     // ribbonPageGroupData
     //
     this.ribbonPageGroupData.ItemLinks.Add(this.mbTBLLabel);
     this.ribbonPageGroupData.ItemLinks.Add(this.mbImportTBLALLData);
     this.ribbonPageGroupData.ItemLinks.Add(this.mbTBLALLData);
     this.ribbonPageGroupData.Name = "ribbonPageGroupData";
     this.ribbonPageGroupData.Text = "ribbonPageGroup2";
     //
     // ribbonPageRoles
     //
     this.ribbonPageRoles.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.ribbonPageRoles.Name = "ribbonPageRoles";
     this.ribbonPageRoles.Text = "الصلاحيات";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.mbUsers);
     this.ribbonPageGroup1.ItemLinks.Add(this.mbRoles);
     this.ribbonPageGroup1.ItemLinks.Add(this.mbRoleDetail);
     this.ribbonPageGroup1.ItemLinks.Add(this.mbUserRoles);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "الصلاحيات";
     //
     // ribbonPageQry
     //
     this.ribbonPageQry.Name = "ribbonPageQry";
     this.ribbonPageQry.Text = "استعلامات";
     //
     // ribbonPagePrint
     //
     this.ribbonPagePrint.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroupPrint
     });
     this.ribbonPagePrint.Name = "ribbonPagePrint";
     this.ribbonPagePrint.Text = "الطباعة";
     //
     // ribbonPageGroupPrint
     //
     this.ribbonPageGroupPrint.ItemLinks.Add(this.mbPrintCard1);
     this.ribbonPageGroupPrint.Name = "ribbonPageGroupPrint";
     this.ribbonPageGroupPrint.Text = "طباعة الكروت";
     //
     // RoleDetailFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(984, 330);
     this.Controls.Add(this.groupControlUpdate);
     this.Controls.Add(this.groupControlSelect);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "RoleDetailFrm";
     this.Text            = "السماحيات";
     this.Load           += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).EndInit();
     this.groupControlUpdate.ResumeLayout(false);
     this.groupControlUpdate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).EndInit();
     this.popupControlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
     this.popupControlContainer1.ResumeLayout(false);
     this.popupControlContainer1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rolesBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #60
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     DevExpress.XtraBars.Ribbon.GalleryItemGroup    galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.Utils.SuperToolTip     superToolTip3     = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem      toolTipItem3      = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip1     = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1      = new DevExpress.Utils.ToolTipItem();
     this.ribbonControl              = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.applicationMenu1           = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.btnExit                    = new DevExpress.XtraBars.BarButtonItem();
     this.btnRelogin                 = new DevExpress.XtraBars.BarButtonItem();
     this.btnModPwd                  = new DevExpress.XtraBars.BarButtonItem();
     this.imageCollection1           = new DevExpress.Utils.ImageCollection(this.components);
     this.rgbiSkins                  = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.progressBar                = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemProgressBar3 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.menuLogo                   = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.lblCommandStatus           = new DevExpress.XtraBars.BarStaticItem();
     this.lblCalendar                = new DevExpress.XtraBars.BarStaticItem();
     this.lblCurrentUser             = new DevExpress.XtraBars.BarStaticItem();
     this.popMenuCloseCurrent        = new DevExpress.XtraBars.BarButtonItem();
     this.popMenuCloseAll            = new DevExpress.XtraBars.BarButtonItem();
     this.popMenuCloseOther          = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2             = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1             = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.repositoryItemProgressBar2 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.ribbonStatusBar1           = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.xtraTabbedMdiManager1      = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.notifyIcon                 = new System.Windows.Forms.NotifyIcon(this.components);
     this.contextMenuStrip1          = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.notifyMenu_Show            = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyMenu_About           = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyMenu_Exit            = new System.Windows.Forms.ToolStripMenuItem();
     this.popupMenu1                 = new DevExpress.XtraBars.PopupMenu(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl
     //
     this.ribbonControl.ApplicationButtonDropDownControl = this.applicationMenu1;
     this.ribbonControl.ApplicationButtonText            = null;
     this.ribbonControl.ExpandCollapseItem.Id            = 0;
     this.ribbonControl.Images = this.imageCollection1;
     this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl.ExpandCollapseItem,
         this.rgbiSkins,
         this.btnExit,
         this.progressBar,
         this.menuLogo,
         this.lblCommandStatus,
         this.lblCalendar,
         this.lblCurrentUser,
         this.btnRelogin,
         this.popMenuCloseCurrent,
         this.popMenuCloseAll,
         this.popMenuCloseOther,
         this.barButtonItem2,
         this.barButtonItem1,
         this.btnModPwd
     });
     this.ribbonControl.LargeImages = this.imageCollection1;
     this.ribbonControl.Location    = new System.Drawing.Point(0, 0);
     this.ribbonControl.Margin      = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.ribbonControl.MaxItemId   = 68;
     this.ribbonControl.Name        = "ribbonControl";
     this.ribbonControl.PageHeaderItemLinks.Add(this.menuLogo, true);
     this.ribbonControl.PageHeaderItemLinks.Add(this.barButtonItem2);
     this.ribbonControl.PageHeaderItemLinks.Add(this.barButtonItem1);
     this.ribbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemProgressBar1,
         this.repositoryItemProgressBar2,
         this.repositoryItemProgressBar3,
         this.repositoryItemPictureEdit1
     });
     this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbonControl.ShowToolbarCustomizeItem = false;
     this.ribbonControl.Size      = new System.Drawing.Size(1311, 63);
     this.ribbonControl.StatusBar = this.ribbonStatusBar1;
     this.ribbonControl.Toolbar.ShowCustomizeItem = false;
     //
     // applicationMenu1
     //
     this.applicationMenu1.ItemLinks.Add(this.btnExit);
     this.applicationMenu1.ItemLinks.Add(this.btnRelogin);
     this.applicationMenu1.ItemLinks.Add(this.btnModPwd);
     this.applicationMenu1.MenuDrawMode = DevExpress.XtraBars.MenuDrawMode.LargeImagesText;
     this.applicationMenu1.MinWidth     = 240;
     this.applicationMenu1.Name         = "applicationMenu1";
     this.applicationMenu1.Ribbon       = this.ribbonControl;
     //
     // btnExit
     //
     this.btnExit.Caption         = "退出系统(&Q)";
     this.btnExit.Id              = 22;
     this.btnExit.ImageIndex      = 23;
     this.btnExit.LargeImageIndex = 23;
     this.btnExit.Name            = "btnExit";
     this.btnExit.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExit_ItemClick);
     //
     // btnRelogin
     //
     this.btnRelogin.Caption         = "重新登录(&R)";
     this.btnRelogin.Id              = 57;
     this.btnRelogin.ImageIndex      = 10;
     this.btnRelogin.LargeImageIndex = 10;
     this.btnRelogin.Name            = "btnRelogin";
     this.btnRelogin.ItemClick      += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRelogin_ItemClick);
     //
     // btnModPwd
     //
     this.btnModPwd.Caption    = "修改密码";
     this.btnModPwd.Id         = 67;
     this.btnModPwd.ImageIndex = 11;
     this.btnModPwd.Name       = "btnModPwd";
     this.btnModPwd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnModPwd_ItemClick);
     //
     // imageCollection1
     //
     this.imageCollection1.ImageSize   = new System.Drawing.Size(32, 32);
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "add.ico");
     this.imageCollection1.Images.SetKeyName(1, "remove.ico");
     this.imageCollection1.Images.SetKeyName(2, "search.ico");
     this.imageCollection1.Images.SetKeyName(3, "Search2.ICO");
     this.imageCollection1.Images.SetKeyName(4, "cubes_class libraries4.ico");
     this.imageCollection1.Images.SetKeyName(5, "new_file.ico");
     this.imageCollection1.Images.SetKeyName(6, "Excel.ICO");
     this.imageCollection1.Images.SetKeyName(7, "Setting_3.ico");
     this.imageCollection1.Images.SetKeyName(8, "Books.ico");
     this.imageCollection1.Images.SetKeyName(9, "User.ICO");
     this.imageCollection1.Images.SetKeyName(10, "Security.ico");
     this.imageCollection1.Images.SetKeyName(11, "Security2.ICO");
     this.imageCollection1.Images.SetKeyName(12, "order.ico");
     this.imageCollection1.Images.SetKeyName(13, "Diagram.ico");
     this.imageCollection1.Images.SetKeyName(14, "XP-calendar.png");
     this.imageCollection1.Images.SetKeyName(15, "Stock2.ICO");
     this.imageCollection1.Images.SetKeyName(16, "Chat.ico");
     this.imageCollection1.Images.SetKeyName(17, "Box_Blue.png");
     this.imageCollection1.Images.SetKeyName(18, "info16.png");
     this.imageCollection1.Images.SetKeyName(19, "Help_Circle_Blue.png");
     this.imageCollection1.Images.SetKeyName(20, "Info_Box_Blue.png");
     this.imageCollection1.Images.SetKeyName(21, "Customer.ICO");
     this.imageCollection1.Images.SetKeyName(22, "house.ico");
     this.imageCollection1.Images.SetKeyName(23, "Quit.ico");
     this.imageCollection1.Images.SetKeyName(24, "Contact.ico");
     this.imageCollection1.Images.SetKeyName(25, "user004.ico");
     this.imageCollection1.Images.SetKeyName(26, "Addressbook.ico");
     this.imageCollection1.Images.SetKeyName(27, "Refresh.ico");
     //
     // rgbiSkins
     //
     this.rgbiSkins.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     galleryItemGroup2.Caption = "Group1";
     this.rgbiSkins.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup2
     });
     this.rgbiSkins.Id   = 21;
     this.rgbiSkins.Name = "rgbiSkins";
     //
     // progressBar
     //
     this.progressBar.Edit       = this.repositoryItemProgressBar3;
     this.progressBar.EditValue  = 50;
     this.progressBar.Id         = 30;
     this.progressBar.Name       = "progressBar";
     this.progressBar.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.progressBar.Width      = 200;
     //
     // repositoryItemProgressBar3
     //
     this.repositoryItemProgressBar3.Name = "repositoryItemProgressBar3";
     //
     // menuLogo
     //
     this.menuLogo.CanOpenEdit = false;
     this.menuLogo.Edit        = this.repositoryItemPictureEdit1;
     this.menuLogo.Hint        = "访问技术网站";
     this.menuLogo.Id          = 51;
     this.menuLogo.ImageIndex  = 18;
     this.menuLogo.Name        = "menuLogo";
     toolTipItem3.Text         = "访问技术支持网站";
     superToolTip3.Items.Add(toolTipItem3);
     this.menuLogo.SuperTip   = superToolTip3;
     this.menuLogo.Width      = 0;
     this.menuLogo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.menuLogo_ItemClick);
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.InitialImage = null;
     this.repositoryItemPictureEdit1.Name         = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.NullText     = " ";
     this.repositoryItemPictureEdit1.ReadOnly     = true;
     this.repositoryItemPictureEdit1.ShowMenu     = false;
     //
     // lblCommandStatus
     //
     this.lblCommandStatus.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.lblCommandStatus.Id            = 52;
     this.lblCommandStatus.Name          = "lblCommandStatus";
     this.lblCommandStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblCalendar
     //
     this.lblCalendar.Caption       = "2010-11-12 0:00:00";
     this.lblCalendar.Id            = 53;
     this.lblCalendar.Name          = "lblCalendar";
     this.lblCalendar.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblCurrentUser
     //
     this.lblCurrentUser.Description = "查看/编辑当前用户信息";
     this.lblCurrentUser.Id          = 55;
     this.lblCurrentUser.Name        = "lblCurrentUser";
     toolTipTitleItem2.Text          = "提示信息";
     toolTipItem1.LeftIndent         = 6;
     toolTipItem1.Text = "单击该处,可以进行查看/编辑当前用户信息操作。";
     superToolTip1.Items.Add(toolTipTitleItem2);
     superToolTip1.Items.Add(toolTipItem1);
     this.lblCurrentUser.SuperTip      = superToolTip1;
     this.lblCurrentUser.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // popMenuCloseCurrent
     //
     this.popMenuCloseCurrent.Caption    = "关闭当前窗口(&C)";
     this.popMenuCloseCurrent.Id         = 60;
     this.popMenuCloseCurrent.Name       = "popMenuCloseCurrent";
     this.popMenuCloseCurrent.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.popMenuCloseCurrent_ItemClick);
     //
     // popMenuCloseAll
     //
     this.popMenuCloseAll.Caption    = "关闭全部(&A)";
     this.popMenuCloseAll.Id         = 61;
     this.popMenuCloseAll.Name       = "popMenuCloseAll";
     this.popMenuCloseAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.popMenuCloseAll_ItemClick);
     //
     // popMenuCloseOther
     //
     this.popMenuCloseOther.Caption    = "关闭其他窗口(&O)";
     this.popMenuCloseOther.Id         = 62;
     this.popMenuCloseOther.Name       = "popMenuCloseOther";
     this.popMenuCloseOther.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.popMenuCloseOther_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption     = "刷新内存";
     this.barButtonItem2.Description = "刷新内存";
     this.barButtonItem2.Hint        = "刷新内存";
     this.barButtonItem2.Id          = 64;
     this.barButtonItem2.ImageIndex  = 27;
     this.barButtonItem2.Name        = "barButtonItem2";
     this.barButtonItem2.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption     = "问题反馈";
     this.barButtonItem1.Description = "问题反馈";
     this.barButtonItem1.Glyph       = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Hint        = "问题反馈";
     this.barButtonItem1.Id          = 63;
     this.barButtonItem1.Name        = "barButtonItem1";
     this.barButtonItem1.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     //
     // repositoryItemProgressBar2
     //
     this.repositoryItemProgressBar2.Name = "repositoryItemProgressBar2";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.lblCommandStatus);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblCurrentUser);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblCalendar);
     this.ribbonStatusBar1.ItemLinks.Add(this.progressBar);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 1049);
     this.ribbonStatusBar1.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(1311, 37);
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InActiveTabPageHeader;
     this.xtraTabbedMdiManager1.MdiParent         = this;
     this.xtraTabbedMdiManager1.PageImagePosition = DevExpress.XtraTab.TabPageImagePosition.Far;
     this.xtraTabbedMdiManager1.MouseDown        += new System.Windows.Forms.MouseEventHandler(this.xtraTabbedMdiManager1_MouseDown);
     //
     // notifyIcon
     //
     this.notifyIcon.ContextMenuStrip  = this.contextMenuStrip1;
     this.notifyIcon.Icon              = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
     this.notifyIcon.Visible           = true;
     this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.notifyMenu_Show,
         this.notifyMenu_About,
         this.notifyMenu_Exit
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(232, 94);
     //
     // notifyMenu_Show
     //
     this.notifyMenu_Show.Name   = "notifyMenu_Show";
     this.notifyMenu_Show.Size   = new System.Drawing.Size(231, 30);
     this.notifyMenu_Show.Text   = "显示/隐藏窗体(&S)";
     this.notifyMenu_Show.Click += new System.EventHandler(this.notifyMenu_Show_Click);
     //
     // notifyMenu_About
     //
     this.notifyMenu_About.Name   = "notifyMenu_About";
     this.notifyMenu_About.Size   = new System.Drawing.Size(231, 30);
     this.notifyMenu_About.Text   = "关于(&A)";
     this.notifyMenu_About.Click += new System.EventHandler(this.notifyMenu_About_Click);
     //
     // notifyMenu_Exit
     //
     this.notifyMenu_Exit.Name   = "notifyMenu_Exit";
     this.notifyMenu_Exit.Size   = new System.Drawing.Size(231, 30);
     this.notifyMenu_Exit.Text   = "退出(&X)";
     this.notifyMenu_Exit.Click += new System.EventHandler(this.notifyMenu_Exit_Click);
     //
     // popupMenu1
     //
     this.popupMenu1.ItemLinks.Add(this.popMenuCloseCurrent);
     this.popupMenu1.ItemLinks.Add(this.popMenuCloseAll);
     this.popupMenu1.ItemLinks.Add(this.popMenuCloseOther);
     this.popupMenu1.Name   = "popupMenu1";
     this.popupMenu1.Ribbon = this.ribbonControl;
     //
     // MainForm
     //
     this.AllowMdiBar         = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1311, 1086);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl);
     this.Icon                    = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer          = true;
     this.Margin                  = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.Name                    = "MainForm";
     this.Ribbon                  = this.ribbonControl;
     this.StartPosition           = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar               = this.ribbonStatusBar1;
     this.WindowState             = System.Windows.Forms.FormWindowState.Maximized;
     this.MaximizedBoundsChanged += new System.EventHandler(this.MainForm_MaximizedBoundsChanged);
     this.FormClosing            += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load                   += new System.EventHandler(this.MainForm_Load);
     this.Move                   += new System.EventHandler(this.MainForm_Move);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }