public void Add(StatusPanel panel)
        {
            var statusPanel = new DevExpress.XtraBars.BarStaticItem();

            statusPanel.Name    = panel.Key;
            statusPanel.Caption = panel.Caption;
            statusPanel.Width   = panel.Width;

            this._ribbon.Items.Add(statusPanel);
            // insert the panel towards the left.
            this.ribbonStatusBar.ItemLinks.Insert(0, statusPanel);
            panel.PropertyChanged += delegate(object sender, PropertyChangedEventArgs e)
            {
                // StatusPanel panel = sender as StatusPanel ;
                switch (e.PropertyName)
                {
                case "Caption":
                    statusPanel.Caption = panel.Caption;
                    break;

                default:
                    break;
                }
            };
        }
Exemple #2
0
        private void StatusFillItems()
        {
            _StatusInfoTextItem = new DXB.BarStaticItem()
            {
                Caption = "Stavový řádek"
            };
            this.StatusBar.ItemLinks.Add(_StatusInfoTextItem);

            _StatusProgressBar                       = new DXE.Repository.RepositoryItemProgressBar();
            _StatusProgressBar.AutoHeight            = true;
            _StatusProgressBar.BorderStyle           = DXE.Controls.BorderStyles.Office2003;
            _StatusProgressBar.Minimum               = 0;
            _StatusProgressBar.Maximum               = 200;
            _StatusProgressBar.BestFitWidth          = 200;
            _StatusProgressBar.FlowAnimationEnabled  = true;
            _StatusProgressBar.FlowAnimationDuration = 2500;
            _StatusProgressBar.FlowAnimationDelay    = 1000;
            _StatusProgressBar.ProgressViewStyle     = DXE.Controls.ProgressViewStyle.Solid;
            _StatusProgressBar.ProgressKind          = DXE.Controls.ProgressKind.Horizontal;
            _StatusProgressBar.ProgressPadding       = new Padding(3);
            this.Ribbon.RepositoryItems.Add(_StatusProgressBar);

            _StatusProgressEdit = new DXB.BarEditItem();
            this.Ribbon.Items.Add(_StatusProgressEdit);
            _StatusProgressEdit.Edit       = _StatusProgressBar;
            _StatusProgressEdit.Alignment  = DXB.BarItemLinkAlignment.Right;
            _StatusProgressEdit.Size       = new Size(200, 18);
            _StatusProgressEdit.EditHeight = 12;
            _StatusProgressEdit.EditValue  = 0;
            _StatusProgressEdit.EditWidth  = 200;
            _StatusProgressEdit.Visibility = DXB.BarItemVisibility.Never;
            this.StatusBar.ItemLinks.Add(_StatusProgressEdit);
        }
        private void ShowStauts(StatusInfo statusInfo)
        {
            this.ribbonStatusBar.ItemLinks.Clear();
            BarItem StatusBarItem = null;

            if (statusInfo != null)
            {
                switch (statusInfo.StatusShowType)
                {
                case StatusShowType.Msg:
                    StatusBarItem         = new DevExpress.XtraBars.BarStaticItem();
                    StatusBarItem.Caption = statusInfo.Message;
                    break;

                case StatusShowType.ProcessBar:
                    StatusBarItem = new BarEditItem();
                    RepositoryItemProgressBar progressBarControl = new RepositoryItemProgressBar();
                    progressBarControl.Maximum        = statusInfo.MaxValue;
                    progressBarControl.Minimum        = 0;
                    progressBarControl.Step           = statusInfo.CurrentValue;
                    ((BarEditItem)StatusBarItem).Edit = progressBarControl;
                    break;

                case StatusShowType.ProcessBarWithoutProcess:
                    StatusBarItem = new BarEditItem();
                    RepositoryItemMarqueeProgressBar marqueeProgressBar = new RepositoryItemMarqueeProgressBar();
                    ((BarEditItem)StatusBarItem).Edit = marqueeProgressBar;
                    break;
                }
            }
            if (StatusBarItem != null)
            {
                this.ribbonStatusBar.ItemLinks.Add(StatusBarItem);
            }
            this.ribbonStatusBar.Refresh();
        }
 /// <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));
     this.barManager1     = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1            = new DevExpress.XtraBars.Bar();
     this.mFile           = new DevExpress.XtraBars.BarSubItem();
     this.iNew            = new DevExpress.XtraBars.BarButtonItem();
     this.iOpen           = new DevExpress.XtraBars.BarButtonItem();
     this.iClose          = new DevExpress.XtraBars.BarButtonItem();
     this.iSave           = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveAs         = new DevExpress.XtraBars.BarButtonItem();
     this.iPrint          = new DevExpress.XtraBars.BarButtonItem();
     this.iExit           = new DevExpress.XtraBars.BarButtonItem();
     this.mEdit           = new DevExpress.XtraBars.BarSubItem();
     this.iUndo           = new DevExpress.XtraBars.BarButtonItem();
     this.iCut            = new DevExpress.XtraBars.BarButtonItem();
     this.iCopy           = new DevExpress.XtraBars.BarButtonItem();
     this.iPaste          = new DevExpress.XtraBars.BarButtonItem();
     this.iClear          = new DevExpress.XtraBars.BarButtonItem();
     this.iSelectAll      = new DevExpress.XtraBars.BarButtonItem();
     this.iFind           = new DevExpress.XtraBars.BarButtonItem();
     this.iReplace        = new DevExpress.XtraBars.BarButtonItem();
     this.mFormat         = new DevExpress.XtraBars.BarSubItem();
     this.iFont           = new DevExpress.XtraBars.BarButtonItem();
     this.iFontColor      = new DevExpress.XtraBars.BarButtonItem();
     this.iBullets        = new DevExpress.XtraBars.BarButtonItem();
     this.iProtected      = new DevExpress.XtraBars.BarButtonItem();
     this.iToolBars       = new DevExpress.XtraBars.BarToolbarsListItem();
     this.mHelp           = new DevExpress.XtraBars.BarSubItem();
     this.iWeb            = new DevExpress.XtraBars.BarButtonItem();
     this.iAbout          = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1  = new DevExpress.XtraBars.BarButtonItem();
     this.bar2            = new DevExpress.XtraBars.Bar();
     this.bar3            = new DevExpress.XtraBars.Bar();
     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.bar4            = new DevExpress.XtraBars.Bar();
     this.iEdit           = new DevExpress.XtraBars.BarButtonItem();
     this.bar5            = new DevExpress.XtraBars.Bar();
     this.sPosition       = new DevExpress.XtraBars.BarStaticItem();
     this.sModifier       = new DevExpress.XtraBars.BarStaticItem();
     this.sDocName        = new DevExpress.XtraBars.BarStaticItem();
     this.bar7            = new DevExpress.XtraBars.Bar();
     this.iPaintStyle     = new DevExpress.XtraBars.BarSubItem();
     this.ipsDefault      = new DevExpress.XtraBars.BarButtonItem();
     this.ipsWXP          = new DevExpress.XtraBars.BarButtonItem();
     this.ipsOXP          = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO2K          = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO3           = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl2 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl3 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl4 = new DevExpress.XtraBars.BarDockControl();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.treeList1       = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar1,
         this.bar2,
         this.bar3,
         this.bar4,
         this.bar5,
         this.bar7
     });
     this.barManager1.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("Popup", new System.Guid("78945463-36c5-4beb-a57f-d50b6a74e9b9")),
         new DevExpress.XtraBars.BarManagerCategory("Status", new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d")),
         new DevExpress.XtraBars.BarManagerCategory("Built-in Menus", new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9")),
         new DevExpress.XtraBars.BarManagerCategory("ToolBars", new System.Guid("3856091a-e0f6-4a7c-80e9-103dece20d5b")),
         new DevExpress.XtraBars.BarManagerCategory("PaintStyle", new System.Guid("7102d69f-976b-49fe-978d-97325e115e10"))
     });
     this.barManager1.DockControls.Add(this.barDockControl1);
     this.barManager1.DockControls.Add(this.barDockControl2);
     this.barManager1.DockControls.Add(this.barDockControl3);
     this.barManager1.DockControls.Add(this.barDockControl4);
     this.barManager1.Form   = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.iNew,
         this.iOpen,
         this.iClose,
         this.iSave,
         this.iSaveAs,
         this.iPrint,
         this.iExit,
         this.mFile,
         this.iUndo,
         this.iCut,
         this.iCopy,
         this.iPaste,
         this.iClear,
         this.iSelectAll,
         this.iFind,
         this.iReplace,
         this.mEdit,
         this.iFont,
         this.iBullets,
         this.iProtected,
         this.mFormat,
         this.iWeb,
         this.iAbout,
         this.mHelp,
         this.iBold,
         this.iItalic,
         this.iUnderline,
         this.iAlignLeft,
         this.iCenter,
         this.iAlignRight,
         this.iFontColor,
         this.iEdit,
         this.sPosition,
         this.sModifier,
         this.sDocName,
         this.iToolBars,
         this.iPaintStyle,
         this.ipsWXP,
         this.ipsOXP,
         this.ipsO2K,
         this.ipsO3,
         this.ipsDefault,
         this.barButtonItem1
     });
     this.barManager1.MainMenu  = this.bar1;
     this.barManager1.MaxItemId = 87;
     this.barManager1.StatusBar = this.bar5;
     //
     // bar1
     //
     this.bar1.BarName   = "MainMenu";
     this.bar1.DockCol   = 0;
     this.bar1.DockRow   = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatSize = new System.Drawing.Size(30, 22);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.mFile),
         new DevExpress.XtraBars.LinkPersistInfo(this.mEdit),
         new DevExpress.XtraBars.LinkPersistInfo(this.mFormat),
         new DevExpress.XtraBars.LinkPersistInfo(this.iToolBars),
         new DevExpress.XtraBars.LinkPersistInfo(this.mHelp),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1)
     });
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.MultiLine      = true;
     this.bar1.OptionsBar.UseWholeRow    = true;
     this.bar1.Text = "MainMenu";
     //
     // mFile
     //
     this.mFile.Caption      = "&File";
     this.mFile.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mFile.Id           = 7;
     this.mFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iNew),
         new DevExpress.XtraBars.LinkPersistInfo(this.iOpen),
         new DevExpress.XtraBars.LinkPersistInfo(this.iClose),
         new DevExpress.XtraBars.LinkPersistInfo(this.iSave, true),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iSaveAs, "", false, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iPrint, "", true, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(this.iExit, true)
     });
     this.mFile.MenuBarWidth = 20;
     this.mFile.Name         = "mFile";
     //
     // 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         = "New Blank Document";
     this.iNew.Id           = 0;
     this.iNew.ImageIndex   = 6;
     this.iNew.Name         = "iNew";
     //
     // 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";
     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";
     //
     // iClose
     //
     this.iClose.Caption      = "&Close";
     this.iClose.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iClose.Description  = "Closes the active document.";
     this.iClose.Hint         = "Close Document";
     this.iClose.Id           = 2;
     this.iClose.ImageIndex   = 12;
     this.iClose.Name         = "iClose";
     //
     // 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         = "Save";
     this.iSave.Id           = 3;
     this.iSave.ImageIndex   = 10;
     this.iSave.Name         = "iSave";
     //
     // 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.Id           = 4;
     this.iSaveAs.Name         = "iSaveAs";
     //
     // 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         = "Print";
     this.iPrint.Id           = 5;
     this.iPrint.ImageIndex   = 9;
     this.iPrint.Name         = "iPrint";
     //
     // 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.Id           = 6;
     this.iExit.Name         = "iExit";
     //
     // mEdit
     //
     this.mEdit.Caption      = "&Edit";
     this.mEdit.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mEdit.Id           = 16;
     this.mEdit.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iUndo),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCut, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCopy),
         new DevExpress.XtraBars.LinkPersistInfo(this.iPaste),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iClear, "", true, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(this.iSelectAll),
         new DevExpress.XtraBars.LinkPersistInfo(this.iFind, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iReplace)
     });
     this.mEdit.Name = "mEdit";
     //
     // 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";
     //
     // 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";
     //
     // 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";
     //
     // 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";
     //
     // 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.ImageIndex = 13;
     this.iClear.Name       = "iClear";
     //
     // 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.Id           = 13;
     this.iSelectAll.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A));
     this.iSelectAll.Name         = "iSelectAll";
     //
     // 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";
     //
     // 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";
     //
     // mFormat
     //
     this.mFormat.Caption      = "F&ormat";
     this.mFormat.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mFormat.Id           = 20;
     this.mFormat.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iFont),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iFontColor, "", false, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(this.iBullets, true),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iProtected, "", false, false, true, 0)
     });
     this.mFormat.Name = "mFormat";
     //
     // iFont
     //
     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.Hint         = "Font Dialog";
     this.iFont.Id           = 17;
     this.iFont.ImageIndex   = 4;
     this.iFont.Name         = "iFont";
     //
     // 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.Hint         = "Font Color";
     this.iFontColor.Id           = 30;
     this.iFontColor.ImageIndex   = 5;
     this.iFontColor.Name         = "iFontColor";
     //
     // 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";
     //
     // 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  = "Protectes the selected text.";
     this.iProtected.Id           = 19;
     this.iProtected.Name         = "iProtected";
     //
     // iToolBars
     //
     this.iToolBars.Caption      = "&ToolBars";
     this.iToolBars.CategoryGuid = new System.Guid("3856091a-e0f6-4a7c-80e9-103dece20d5b");
     this.iToolBars.Id           = 38;
     this.iToolBars.Name         = "iToolBars";
     //
     // mHelp
     //
     this.mHelp.Caption      = "&Help";
     this.mHelp.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mHelp.Id           = 23;
     this.mHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iWeb),
         new DevExpress.XtraBars.LinkPersistInfo(this.iAbout, true)
     });
     this.mHelp.Name = "mHelp";
     //
     // iWeb
     //
     this.iWeb.Caption      = "&Developer Express on the Web";
     this.iWeb.CategoryGuid = new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b");
     this.iWeb.Description  = "Opens the web page.";
     this.iWeb.Hint         = "Developer Express on the Web";
     this.iWeb.Id           = 21;
     this.iWeb.ImageIndex   = 21;
     this.iWeb.Name         = "iWeb";
     //
     // iAbout
     //
     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.Id           = 22;
     this.iAbout.Name         = "iAbout";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption    = "Update Links Tree";
     this.barButtonItem1.Id         = 86;
     this.barButtonItem1.Name       = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName   = "Standard";
     this.bar2.DockCol   = 0;
     this.bar2.DockRow   = 1;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatSize = new System.Drawing.Size(48, 26);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iNew),
         new DevExpress.XtraBars.LinkPersistInfo(this.iOpen),
         new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
         new DevExpress.XtraBars.LinkPersistInfo(this.iPrint, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCut, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCopy),
         new DevExpress.XtraBars.LinkPersistInfo(this.iPaste),
         new DevExpress.XtraBars.LinkPersistInfo(this.iUndo, true)
     });
     this.bar2.Text = "Standard";
     //
     // bar3
     //
     this.bar3.BarName       = "Format";
     this.bar3.DockCol       = 0;
     this.bar3.DockRow       = 2;
     this.bar3.DockStyle     = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.FloatLocation = new System.Drawing.Point(34, 212);
     this.bar3.FloatSize     = new System.Drawing.Size(27, 168);
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iBold),
         new DevExpress.XtraBars.LinkPersistInfo(this.iItalic),
         new DevExpress.XtraBars.LinkPersistInfo(this.iUnderline),
         new DevExpress.XtraBars.LinkPersistInfo(this.iAlignLeft, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCenter),
         new DevExpress.XtraBars.LinkPersistInfo(this.iAlignRight),
         new DevExpress.XtraBars.LinkPersistInfo(this.iBullets, true)
     });
     this.bar3.Text = "Format";
     //
     // 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";
     //
     // 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";
     //
     // 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";
     //
     // 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";
     //
     // 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";
     //
     // 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";
     //
     // bar4
     //
     this.bar4.BarName       = "Font";
     this.bar4.DockCol       = 0;
     this.bar4.DockRow       = 0;
     this.bar4.DockStyle     = DevExpress.XtraBars.BarDockStyle.Right;
     this.bar4.FloatLocation = new System.Drawing.Point(493, 252);
     this.bar4.FloatSize     = new System.Drawing.Size(48, 26);
     this.bar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iFont),
         new DevExpress.XtraBars.LinkPersistInfo(this.iFontColor),
         new DevExpress.XtraBars.LinkPersistInfo(this.iEdit, true)
     });
     this.bar4.Text = "Font";
     //
     // iEdit
     //
     this.iEdit.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.iEdit.Caption      = "&Edit...";
     this.iEdit.CategoryGuid = new System.Guid("78945463-36c5-4beb-a57f-d50b6a74e9b9");
     this.iEdit.Hint         = "Edit Menu";
     this.iEdit.Id           = 31;
     this.iEdit.ImageIndex   = 22;
     this.iEdit.Name         = "iEdit";
     //
     // bar5
     //
     this.bar5.BarName       = "StatusBar";
     this.bar5.CanDockStyle  = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar5.DockCol       = 0;
     this.bar5.DockRow       = 0;
     this.bar5.DockStyle     = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar5.FloatLocation = new System.Drawing.Point(86, 499);
     this.bar5.FloatSize     = new System.Drawing.Size(48, 26);
     this.bar5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.sPosition),
         new DevExpress.XtraBars.LinkPersistInfo(this.sModifier),
         new DevExpress.XtraBars.LinkPersistInfo(this.sDocName)
     });
     this.bar5.OptionsBar.AllowQuickCustomization = false;
     this.bar5.OptionsBar.DrawDragBorder          = false;
     this.bar5.OptionsBar.DrawSizeGrip            = true;
     this.bar5.OptionsBar.UseWholeRow             = true;
     this.bar5.Text = "StatusBar";
     //
     // sPosition
     //
     this.sPosition.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.None;
     this.sPosition.Caption       = "Position";
     this.sPosition.CategoryGuid  = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
     this.sPosition.Id            = 32;
     this.sPosition.Name          = "sPosition";
     this.sPosition.RightIndent   = 2;
     this.sPosition.TextAlignment = System.Drawing.StringAlignment.Center;
     this.sPosition.Width         = 145;
     //
     // sModifier
     //
     this.sModifier.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.None;
     this.sModifier.Caption       = "Modifier";
     this.sModifier.CategoryGuid  = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
     this.sModifier.Id            = 33;
     this.sModifier.Name          = "sModifier";
     this.sModifier.RightIndent   = 2;
     this.sModifier.TextAlignment = System.Drawing.StringAlignment.Center;
     this.sModifier.Width         = 60;
     //
     // sDocName
     //
     this.sDocName.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.sDocName.Caption       = "Name";
     this.sDocName.CategoryGuid  = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
     this.sDocName.Id            = 34;
     this.sDocName.Name          = "sDocName";
     this.sDocName.TextAlignment = System.Drawing.StringAlignment.Near;
     this.sDocName.Width         = 245;
     //
     // bar7
     //
     this.bar7.BarName   = "PaintStyle";
     this.bar7.DockCol   = 1;
     this.bar7.DockRow   = 1;
     this.bar7.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iPaintStyle)
     });
     this.bar7.Offset = 226;
     this.bar7.OptionsBar.AllowQuickCustomization = false;
     this.bar7.OptionsBar.RotateWhenVertical      = false;
     this.bar7.Text = "PaintStyle";
     //
     // iPaintStyle
     //
     this.iPaintStyle.Caption      = "Paint Style";
     this.iPaintStyle.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.iPaintStyle.Id           = 55;
     this.iPaintStyle.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsDefault),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsWXP),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsOXP),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsO2K),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsO3)
     });
     this.iPaintStyle.Name       = "iPaintStyle";
     this.iPaintStyle.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // ipsDefault
     //
     this.ipsDefault.Caption      = "Default";
     this.ipsDefault.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsDefault.Description  = "Default";
     this.ipsDefault.Id           = 74;
     this.ipsDefault.Name         = "ipsDefault";
     //
     // ipsWXP
     //
     this.ipsWXP.Caption      = "Windows XP";
     this.ipsWXP.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsWXP.Description  = "WindowsXP";
     this.ipsWXP.Id           = 56;
     this.ipsWXP.ImageIndex   = 25;
     this.ipsWXP.Name         = "ipsWXP";
     //
     // ipsOXP
     //
     this.ipsOXP.Caption      = "Office XP";
     this.ipsOXP.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsOXP.Description  = "OfficeXP";
     this.ipsOXP.Id           = 57;
     this.ipsOXP.ImageIndex   = 23;
     this.ipsOXP.Name         = "ipsOXP";
     //
     // ipsO2K
     //
     this.ipsO2K.Caption      = "Office 2000";
     this.ipsO2K.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsO2K.Description  = "Office2000";
     this.ipsO2K.Id           = 58;
     this.ipsO2K.ImageIndex   = 24;
     this.ipsO2K.Name         = "ipsO2K";
     //
     // ipsO3
     //
     this.ipsO3.Caption      = "Office 2003";
     this.ipsO3.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsO3.Description  = "Office2003";
     this.ipsO3.Id           = 69;
     this.ipsO3.ImageIndex   = 26;
     this.ipsO3.Name         = "ipsO3";
     //
     // barDockControl1
     //
     this.barDockControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.barDockControl1.Location = new System.Drawing.Point(0, 0);
     this.barDockControl1.Size     = new System.Drawing.Size(550, 78);
     //
     // barDockControl2
     //
     this.barDockControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControl2.Location = new System.Drawing.Point(0, 374);
     this.barDockControl2.Size     = new System.Drawing.Size(550, 28);
     //
     // barDockControl3
     //
     this.barDockControl3.Dock     = System.Windows.Forms.DockStyle.Left;
     this.barDockControl3.Location = new System.Drawing.Point(0, 78);
     this.barDockControl3.Size     = new System.Drawing.Size(0, 296);
     //
     // barDockControl4
     //
     this.barDockControl4.Dock     = System.Windows.Forms.DockStyle.Right;
     this.barDockControl4.Location = new System.Drawing.Point(513, 78);
     this.barDockControl4.Size     = new System.Drawing.Size(37, 296);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     this.imageList1.Images.SetKeyName(7, "");
     this.imageList1.Images.SetKeyName(8, "");
     this.imageList1.Images.SetKeyName(9, "");
     this.imageList1.Images.SetKeyName(10, "");
     this.imageList1.Images.SetKeyName(11, "");
     this.imageList1.Images.SetKeyName(12, "");
     this.imageList1.Images.SetKeyName(13, "");
     this.imageList1.Images.SetKeyName(14, "");
     this.imageList1.Images.SetKeyName(15, "");
     this.imageList1.Images.SetKeyName(16, "");
     this.imageList1.Images.SetKeyName(17, "");
     this.imageList1.Images.SetKeyName(18, "");
     this.imageList1.Images.SetKeyName(19, "");
     this.imageList1.Images.SetKeyName(20, "");
     this.imageList1.Images.SetKeyName(21, "");
     this.imageList1.Images.SetKeyName(22, "");
     this.imageList1.Images.SetKeyName(23, "");
     this.imageList1.Images.SetKeyName(24, "");
     this.imageList1.Images.SetKeyName(25, "");
     this.imageList1.Images.SetKeyName(26, "");
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumn1
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 78);
     this.treeList1.Name     = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.Size     = new System.Drawing.Size(513, 296);
     this.treeList1.TabIndex = 4;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption      = "Toolbar / Item Name";
     this.treeListColumn1.FieldName    = "Toolbar / Item Name";
     this.treeListColumn1.Name         = "treeListColumn1";
     this.treeListColumn1.Visible      = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(550, 402);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.barDockControl3);
     this.Controls.Add(this.barDockControl4);
     this.Controls.Add(this.barDockControl2);
     this.Controls.Add(this.barDockControl1);
     this.Name  = "Form1";
     this.Text  = "How to enumerate buttons in a menu or on a toolbar";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     this.rbcMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.imgCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiKhachHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiHangHoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhomHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiAuthor = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKhuVuc = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhapKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTonKho = new DevExpress.XtraBars.BarButtonItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.lblDatabase = new DevExpress.XtraBars.BarStaticItem();
     this.ISystem = new DevExpress.XtraBars.BarButtonItem();
     this.IInit = new DevExpress.XtraBars.BarButtonItem();
     this.IInward = new DevExpress.XtraBars.BarButtonItem();
     this.IOutward = new DevExpress.XtraBars.BarButtonItem();
     this.ITransfer = new DevExpress.XtraBars.BarButtonItem();
     this.IAdjustment = new DevExpress.XtraBars.BarButtonItem();
     this.IInventory = new DevExpress.XtraBars.BarButtonItem();
     this.IPacket = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUserGroup = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUsers = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOnline = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOffline = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpNormal = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpVideo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSaoLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiPhucHoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatNhapTon = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLichSu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhanVien = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCuaHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiThuChi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDoanhThu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNoChungTu = new DevExpress.XtraBars.BarButtonItem();
     this.rbpHeThong = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDong = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpDanhMuc = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDoiTac = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgThongTinCuaHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgQuanLyKho = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgBaoCao = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgCongNo = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgDoanhThu = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.rbsMain = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tabMdi = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ImgSmall = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).BeginInit();
     this.SuspendLayout();
     //
     // rbcMain
     //
     this.rbcMain.ApplicationCaption = "Phần Mềm Quản Lý Kho";
     this.rbcMain.ApplicationIcon = global::Do_An_Quan_Ly_Kho.Properties.Resources._1438776525_deliverables;
     this.rbcMain.AutoSizeItems = true;
     this.rbcMain.ExpandCollapseItem.Id = 0;
     this.rbcMain.Images = this.imgCollection;
     this.rbcMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.rbcMain.ExpandCollapseItem,
     this.bbiKhachHang,
     this.bbiHangHoa,
     this.bbiNhomHang,
     this.bbiKho,
     this.bbiAuthor,
     this.bbiKhuVuc,
     this.bbiNhapKho,
     this.bbiXuatKho,
     this.bbiTonKho,
     this.lblServer,
     this.lblDatabase,
     this.ISystem,
     this.IInit,
     this.IInward,
     this.IOutward,
     this.ITransfer,
     this.IAdjustment,
     this.IInventory,
     this.IPacket,
     this.bbiClose,
     this.bbiUserGroup,
     this.bbiUsers,
     this.bbiUpdateOnline,
     this.bbiUpdateOffline,
     this.biiHelpNormal,
     this.biiHelpVideo,
     this.bbiSaoLuu,
     this.bbiPhucHoi,
     this.bbiXuatNhapTon,
     this.bbiLichSu,
     this.bbiTheKho,
     this.bbiNhanVien,
     this.bbiCuaHang,
     this.bbiThuChi,
     this.bbiCongNo,
     this.bbiTheNo,
     this.bbiDoanhThu,
     this.bbiCongNoChungTu});
     this.rbcMain.LargeImages = this.imgCollection;
     this.rbcMain.Location = new System.Drawing.Point(0, 0);
     this.rbcMain.MaxItemId = 330;
     this.rbcMain.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.rbcMain.Name = "rbcMain";
     this.rbcMain.PageHeaderItemLinks.Add(this.lblServer);
     this.rbcMain.PageHeaderItemLinks.Add(this.lblDatabase);
     this.rbcMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rbpHeThong,
     this.rbpDanhMuc,
     this.rbpKhoHang});
     this.rbcMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.rbcMain.ShowCategoryInCaption = false;
     this.rbcMain.Size = new System.Drawing.Size(1016, 144);
     this.rbcMain.StatusBar = this.rbsMain;
     this.rbcMain.TransparentEditors = true;
     //
     // imgCollection
     //
     this.imgCollection.ImageSize = new System.Drawing.Size(32, 32);
     this.imgCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgCollection.ImageStream")));
     this.imgCollection.Images.SetKeyName(0, "Ket Thuc.png");
     this.imgCollection.Images.SetKeyName(1, "Nguoi Dung.png");
     this.imgCollection.Images.SetKeyName(2, "Phan Quyen.png");
     this.imgCollection.Images.SetKeyName(3, "Thay Doi Mat Khau.png");
     this.imgCollection.Images.SetKeyName(4, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(5, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(6, "Tuy Chon.png");
     this.imgCollection.Images.SetKeyName(7, "Import.png");
     this.imgCollection.Images.SetKeyName(8, "Khoa So.png");
     this.imgCollection.Images.SetKeyName(9, "Bo Phan.png");
     this.imgCollection.Images.SetKeyName(10, "Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(11, "Don Vi Tinh.png");
     this.imgCollection.Images.SetKeyName(12, "Hang Hoa.png");
     this.imgCollection.Images.SetKeyName(13, "Khach Hang.png");
     this.imgCollection.Images.SetKeyName(14, "Kho.png");
     this.imgCollection.Images.SetKeyName(15, "Nha Phan Phoi.png");
     this.imgCollection.Images.SetKeyName(16, "Nhan Vien.png");
     this.imgCollection.Images.SetKeyName(17, "Nhom Hang.png");
     this.imgCollection.Images.SetKeyName(18, "Loai Doi Tac.png");
     this.imgCollection.Images.SetKeyName(19, "Nhom Doi Tac.png");
     this.imgCollection.Images.SetKeyName(20, "Bang Ke Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(21, "Bang Ke Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(22, "Bang Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(23, "Bang KeNhap Kho.png");
     this.imgCollection.Images.SetKeyName(24, "Canh Bao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(25, "Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(26, "Dong Goi BTP.png");
     this.imgCollection.Images.SetKeyName(27, "Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(28, "Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(29, "ReportWithChart256.png");
     this.imgCollection.Images.SetKeyName(30, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(31, "Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(32, "Xuat Va Dong Goi.png");
     this.imgCollection.Images.SetKeyName(33, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(34, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(35, "Bang Ke Lap Rap.png");
     this.imgCollection.Images.SetKeyName(36, "Bang Len Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(37, "Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(38, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(39, "Tinh Gia Ban.png");
     this.imgCollection.Images.SetKeyName(40, "Bao Cao The Kho.png");
     this.imgCollection.Images.SetKeyName(41, "Bao Cao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(42, "Duoi Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(43, "Khac.png");
     this.imgCollection.Images.SetKeyName(44, "So Chi Tiet.png");
     this.imgCollection.Images.SetKeyName(45, "Vuot Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(46, "Han Su Dung.png");
     this.imgCollection.Images.SetKeyName(47, "Dong Goi Thanh Pham.png");
     this.imgCollection.Images.SetKeyName(48, "Cap Nhat.png");
     this.imgCollection.Images.SetKeyName(49, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(50, "Huong Dan Su Dung.png");
     this.imgCollection.Images.SetKeyName(51, "Lien He.png");
     this.imgCollection.Images.SetKeyName(52, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(53, "Trang Chu.png");
     this.imgCollection.Images.SetKeyName(54, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(55, "databasebackup.png");
     this.imgCollection.Images.SetKeyName(56, "databaserestore.png");
     this.imgCollection.Images.SetKeyName(57, "Ban Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(58, "Bang Ke Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(59, "Bang Ke Chuyen kho1.png");
     this.imgCollection.Images.SetKeyName(60, "Trang Chu.ico");
     this.imgCollection.Images.SetKeyName(61, "Cap Nhap Truc Tuyen.ico");
     this.imgCollection.Images.SetKeyName(62, "Huong Dan Su Dung.ico");
     this.imgCollection.Images.SetKeyName(63, "Lien He.ico");
     this.imgCollection.Images.SetKeyName(64, "Dang Xuat.png");
     this.imgCollection.Images.SetKeyName(65, "Copy of Stop.png");
     this.imgCollection.Images.SetKeyName(66, "Copy of Sync.png");
     this.imgCollection.Images.SetKeyName(67, "SuaChua.png");
     this.imgCollection.Images.SetKeyName(68, "NhatKyHeThong.png");
     this.imgCollection.Images.SetKeyName(69, "TimKiemChungTu.png");
     this.imgCollection.Images.SetKeyName(70, "16.ico");
     this.imgCollection.Images.SetKeyName(71, "database.ico");
     this.imgCollection.Images.SetKeyName(72, "StockPNG.png");
     this.imgCollection.Images.SetKeyName(73, "RibbonPrintPreview_DocumentMapLarge.png");
     this.imgCollection.Images.SetKeyName(74, "RibbonPrintPreview_CustomizeLarge.png");
     this.imgCollection.Images.SetKeyName(75, "plugin.ico");
     this.imgCollection.Images.SetKeyName(76, "Cau Hinh.png");
     this.imgCollection.Images.SetKeyName(77, "Sua Chua.png");
     this.imgCollection.Images.SetKeyName(78, "System868632.png");
     this.imgCollection.Images.SetKeyName(79, "Dossier fichier compressé32.png");
     this.imgCollection.Images.SetKeyName(80, "Barcode32.png");
     this.imgCollection.Images.SetKeyName(81, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(82, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(83, "1285643018_gnutella.png");
     this.imgCollection.Images.SetKeyName(84, "1285643049_network-offline.png");
     this.imgCollection.Images.SetKeyName(85, "1285643131_network-offline.png");
     this.imgCollection.Images.SetKeyName(86, "1285643150_gnutella.png");
     this.imgCollection.Images.SetKeyName(87, "1284429314_import.png");
     this.imgCollection.Images.SetKeyName(88, "1287538982_help-contents.png");
     this.imgCollection.Images.SetKeyName(89, "1287539858_page_white_world.png");
     this.imgCollection.Images.SetKeyName(90, "1287540090_video.png");
     this.imgCollection.Images.SetKeyName(91, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(92, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(93, "Noi Ha.png");
     this.imgCollection.Images.SetKeyName(94, "1316226941_currencyexchange.png");
     this.imgCollection.Images.SetKeyName(95, "1323220185_home_page.png");
     this.imgCollection.Images.SetKeyName(96, "1323224048_home.png");
     this.imgCollection.Images.SetKeyName(97, "1323224110_1 - Home.png");
     this.imgCollection.Images.SetKeyName(98, "6_barcode_box.gif");
     this.imgCollection.Images.SetKeyName(99, "20-512.png");
     this.imgCollection.Images.SetKeyName(100, "1438422363_receipt.png");
     this.imgCollection.Images.SetKeyName(101, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(102, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(103, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(104, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(105, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(106, "barcode_icon (1).jpg");
     this.imgCollection.Images.SetKeyName(107, "barcode_icon.jpg");
     this.imgCollection.Images.SetKeyName(108, "connect_creating.png");
     this.imgCollection.Images.SetKeyName(109, "connect_no (1).png");
     this.imgCollection.Images.SetKeyName(110, "connect_no (2).png");
     this.imgCollection.Images.SetKeyName(111, "connect_no.png");
     this.imgCollection.Images.SetKeyName(112, "default_logo.png");
     this.imgCollection.Images.SetKeyName(113, "document-excel-icon - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(114, "document-excel-icon - Copy - Copy (2).png");
     this.imgCollection.Images.SetKeyName(115, "document-excel-icon - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(116, "document-excel-icon - Copy (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(117, "document-excel-icon - Copy (2).png");
     this.imgCollection.Images.SetKeyName(118, "document-excel-icon - Copy (3).png");
     this.imgCollection.Images.SetKeyName(119, "document-excel-icon - Copy.png");
     this.imgCollection.Images.SetKeyName(120, "document-excel-icon.png");
     this.imgCollection.Images.SetKeyName(121, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12 - Copy.png");
     this.imgCollection.Images.SetKeyName(122, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12.png");
     this.imgCollection.Images.SetKeyName(123, "Excel-icon (1) - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(124, "Excel-icon (1) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(125, "Excel-icon (1) - Copy.png");
     this.imgCollection.Images.SetKeyName(126, "Excel-icon (1).png");
     this.imgCollection.Images.SetKeyName(127, "Excel-icon (2) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(128, "Excel-icon (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(129, "Excel-icon (2).png");
     this.imgCollection.Images.SetKeyName(130, "Excel-icon.png");
     this.imgCollection.Images.SetKeyName(131, "file-complete-icon.png");
     this.imgCollection.Images.SetKeyName(132, "general_options.png");
     this.imgCollection.Images.SetKeyName(133, "Group-icon.png");
     this.imgCollection.Images.SetKeyName(134, "icon_company.png");
     this.imgCollection.Images.SetKeyName(135, "icon-companies.png");
     this.imgCollection.Images.SetKeyName(136, "icon-company-incorporation.png");
     this.imgCollection.Images.SetKeyName(137, "Icon-Printer.png");
     this.imgCollection.Images.SetKeyName(138, "Icon-Printer02-Black.png");
     this.imgCollection.Images.SetKeyName(139, "images.jpg");
     this.imgCollection.Images.SetKeyName(140, "location-icon-map-map-pin-icon.png");
     this.imgCollection.Images.SetKeyName(141, "map.png");
     this.imgCollection.Images.SetKeyName(142, "Multimedia_communication_flat_mobile_Technology-08-31-512.png");
     this.imgCollection.Images.SetKeyName(143, "point-512.png");
     this.imgCollection.Images.SetKeyName(144, "printer (1).png");
     this.imgCollection.Images.SetKeyName(145, "printer.png");
     this.imgCollection.Images.SetKeyName(146, "printer-icon-clip-art.jpg");
     this.imgCollection.Images.SetKeyName(147, "Receipt-2-icon.png");
     this.imgCollection.Images.SetKeyName(148, "Receipt-4-icon.png");
     this.imgCollection.Images.SetKeyName(149, "Receipt-icon.png");
     this.imgCollection.Images.SetKeyName(150, "redlaser-icon.png");
     this.imgCollection.Images.SetKeyName(151, "unnamed.png");
     this.imgCollection.Images.SetKeyName(152, "usb_port_2-512.png");
     this.imgCollection.Images.SetKeyName(153, "users-icon.png");
     this.imgCollection.Images.SetKeyName(154, "vector-printer-icon-14574274.jpg");
     this.imgCollection.Images.SetKeyName(155, "vspc-icon-256.png");
     this.imgCollection.Images.SetKeyName(156, "24-7.png");
     this.imgCollection.Images.SetKeyName(157, "A-baby-cot.png");
     this.imgCollection.Images.SetKeyName(158, "Account.png");
     this.imgCollection.Images.SetKeyName(159, "Add Event.png");
     this.imgCollection.Images.SetKeyName(160, "Alarm-clock.png");
     this.imgCollection.Images.SetKeyName(161, "A-rollaway-bed.png");
     this.imgCollection.Images.SetKeyName(162, "Autoship.png");
     this.imgCollection.Images.SetKeyName(163, "Baby.png");
     this.imgCollection.Images.SetKeyName(164, "Binary-tree.png");
     this.imgCollection.Images.SetKeyName(165, "Breakfast.png");
     this.imgCollection.Images.SetKeyName(166, "Business-info.png");
     this.imgCollection.Images.SetKeyName(167, "Calendar-selection-all.png");
     this.imgCollection.Images.SetKeyName(168, "Calendar-selection-day.png");
     this.imgCollection.Images.SetKeyName(169, "calendar-selection-month.png");
     this.imgCollection.Images.SetKeyName(170, "Calendar-selection-week.png");
     this.imgCollection.Images.SetKeyName(171, "Contact.png");
     this.imgCollection.Images.SetKeyName(172, "Couple.png");
     this.imgCollection.Images.SetKeyName(173, "Create-ticket.png");
     this.imgCollection.Images.SetKeyName(174, "Direct-walkway.png");
     this.imgCollection.Images.SetKeyName(175, "Distributor-report.png");
     this.imgCollection.Images.SetKeyName(176, "Download.png");
     this.imgCollection.Images.SetKeyName(177, "Drive.png");
     this.imgCollection.Images.SetKeyName(178, "Earning-statement.png");
     this.imgCollection.Images.SetKeyName(179, "Event-search.png");
     this.imgCollection.Images.SetKeyName(180, "Female-user-accept.png");
     this.imgCollection.Images.SetKeyName(181, "Female-user-add.png");
     this.imgCollection.Images.SetKeyName(182, "Female-user-edit.png");
     this.imgCollection.Images.SetKeyName(183, "Female-user-help.png");
     this.imgCollection.Images.SetKeyName(184, "Female-user-info.png");
     this.imgCollection.Images.SetKeyName(185, "Female-user-remove.png");
     this.imgCollection.Images.SetKeyName(186, "Female-user-search.png");
     this.imgCollection.Images.SetKeyName(187, "Female-user-warning.png");
     this.imgCollection.Images.SetKeyName(188, "Geology-view.png");
     this.imgCollection.Images.SetKeyName(189, "Globe-download.png");
     this.imgCollection.Images.SetKeyName(190, "Globe-warning.png");
     this.imgCollection.Images.SetKeyName(191, "Gift.png");
     this.imgCollection.Images.SetKeyName(192, "Insert-hyperlink.png");
     this.imgCollection.Images.SetKeyName(193, "Library.png");
     this.imgCollection.Images.SetKeyName(194, "Library2.png");
     this.imgCollection.Images.SetKeyName(195, "Link.png");
     this.imgCollection.Images.SetKeyName(196, "Mail-search.png");
     this.imgCollection.Images.SetKeyName(197, "Message-already-read.png");
     this.imgCollection.Images.SetKeyName(198, "My-tickets.png");
     this.imgCollection.Images.SetKeyName(199, "Order-history.png");
     this.imgCollection.Images.SetKeyName(200, "Ordering.png");
     this.imgCollection.Images.SetKeyName(201, "Packing1.png");
     this.imgCollection.Images.SetKeyName(202, "Payment-card.png");
     this.imgCollection.Images.SetKeyName(203, "Product-sale-report.png");
     this.imgCollection.Images.SetKeyName(204, "Rank History.png");
     this.imgCollection.Images.SetKeyName(205, "Reports.png");
     this.imgCollection.Images.SetKeyName(206, "Sales-by-payment-method.png");
     this.imgCollection.Images.SetKeyName(207, "Sales-report.png");
     this.imgCollection.Images.SetKeyName(208, "Search-globe.png");
     this.imgCollection.Images.SetKeyName(209, "Select-language.png");
     this.imgCollection.Images.SetKeyName(210, "Upline.png");
     this.imgCollection.Images.SetKeyName(211, "Upload.png");
     this.imgCollection.Images.SetKeyName(212, "Web-management.png");
     this.imgCollection.Images.SetKeyName(213, "Woman.png");
     this.imgCollection.Images.SetKeyName(214, "Zoom-in.png");
     this.imgCollection.Images.SetKeyName(215, "Zoom-out.png");
     this.imgCollection.Images.SetKeyName(216, "addons256.png");
     this.imgCollection.Images.SetKeyName(217, "analysis256.png");
     this.imgCollection.Images.SetKeyName(218, "announcements256.png");
     this.imgCollection.Images.SetKeyName(219, "attachment256.png");
     this.imgCollection.Images.SetKeyName(220, "Autocomplete256.png");
     this.imgCollection.Images.SetKeyName(221, "billboard256.png");
     this.imgCollection.Images.SetKeyName(222, "calendar-selection-all256.png");
     this.imgCollection.Images.SetKeyName(223, "calendar-selection-day256.png");
     this.imgCollection.Images.SetKeyName(224, "calendar-selection-month256.png");
     this.imgCollection.Images.SetKeyName(225, "calendar-selection-week256.png");
     this.imgCollection.Images.SetKeyName(226, "catalog256.png");
     this.imgCollection.Images.SetKeyName(227, "content256.png");
     this.imgCollection.Images.SetKeyName(228, "content-reorder256.png");
     this.imgCollection.Images.SetKeyName(229, "content-tree256.png");
     this.imgCollection.Images.SetKeyName(230, "continue256.png");
     this.imgCollection.Images.SetKeyName(231, "examples256.png");
     this.imgCollection.Images.SetKeyName(232, "file-explorer256.png");
     this.imgCollection.Images.SetKeyName(233, "Folder-Accept256.png");
     this.imgCollection.Images.SetKeyName(234, "Folder-Add256.png");
     this.imgCollection.Images.SetKeyName(235, "Folder-Delete256.png");
     this.imgCollection.Images.SetKeyName(236, "Folder-Info256.png");
     this.imgCollection.Images.SetKeyName(237, "Folder-Warning256.png");
     this.imgCollection.Images.SetKeyName(238, "glossary256.png");
     this.imgCollection.Images.SetKeyName(239, "go-into256.png");
     this.imgCollection.Images.SetKeyName(240, "hide-left256.png");
     this.imgCollection.Images.SetKeyName(241, "hide-right256.png");
     this.imgCollection.Images.SetKeyName(242, "key256.png");
     this.imgCollection.Images.SetKeyName(243, "keys256.png");
     this.imgCollection.Images.SetKeyName(244, "layout256.png");
     this.imgCollection.Images.SetKeyName(245, "locked256.png");
     this.imgCollection.Images.SetKeyName(246, "mailbox256.png");
     this.imgCollection.Images.SetKeyName(247, "maintenance256.png");
     this.imgCollection.Images.SetKeyName(248, "navigate-down256.png");
     this.imgCollection.Images.SetKeyName(249, "navigate-left256.png");
     this.imgCollection.Images.SetKeyName(250, "navigate-right256.png");
     this.imgCollection.Images.SetKeyName(251, "navigate-up256.png");
     this.imgCollection.Images.SetKeyName(252, "options256.png");
     this.imgCollection.Images.SetKeyName(253, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(254, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(255, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(256, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(257, "1438862627_vector_65_04.png");
     this.imgCollection.Images.SetKeyName(258, "1438862630_atm-money-machine.png");
     this.imgCollection.Images.SetKeyName(259, "1438862633_atm-machine.png");
     this.imgCollection.Images.SetKeyName(260, "1438862635_Emblem-Money-64.png");
     this.imgCollection.Images.SetKeyName(261, "1438862637_safe.png");
     this.imgCollection.Images.SetKeyName(262, "1438862639_money_bag.png");
     this.imgCollection.Images.SetKeyName(263, "1438862738_7.png");
     this.imgCollection.Images.SetKeyName(264, "1438862746_list.png");
     this.imgCollection.Images.SetKeyName(265, "1438862750_download box seule.png");
     this.imgCollection.Images.SetKeyName(266, "1438862755_inventory-maintenance.png");
     this.imgCollection.Images.SetKeyName(267, "1438862762_Box.png");
     this.imgCollection.Images.SetKeyName(268, "1438862828_floppy-disk.png");
     this.imgCollection.Images.SetKeyName(269, "1438862828_vector_66_12.png");
     this.imgCollection.Images.SetKeyName(270, "1438862829_Black-Drive-Backup.png");
     this.imgCollection.Images.SetKeyName(271, "1438862831_backup.png");
     this.imgCollection.Images.SetKeyName(272, "1438862832__Drive_Restore.png");
     this.imgCollection.Images.SetKeyName(273, "1438862834_restore.png");
     this.imgCollection.Images.SetKeyName(274, "1438862836_restore_window.png");
     this.imgCollection.Images.SetKeyName(275, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(276, "1438863911_box-in.png");
     this.imgCollection.Images.SetKeyName(277, "1438863913_03_In.png");
     this.imgCollection.Images.SetKeyName(278, "1438863914_open_in_browser.png");
     this.imgCollection.Images.SetKeyName(279, "1438863917_sign-out.png");
     this.imgCollection.Images.SetKeyName(280, "1438863919_sign-out.png");
     this.imgCollection.Images.SetKeyName(281, "1438863921_box-out.png");
     this.imgCollection.Images.SetKeyName(282, "1438863924_02_Out.png");
     //
     // bbiKhachHang
     //
     this.bbiKhachHang.Caption = "Khách Hàng";
     this.bbiKhachHang.Id = 25;
     this.bbiKhachHang.ImageIndex = 13;
     this.bbiKhachHang.LargeImageIndex = 198;
     this.bbiKhachHang.Name = "bbiKhachHang";
     toolTipItem1.Text = "Quản lý khách hàng";
     superToolTip1.Items.Add(toolTipItem1);
     this.bbiKhachHang.SuperTip = superToolTip1;
     this.bbiKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhachHang_ItemClick);
     //
     // bbiHangHoa
     //
     this.bbiHangHoa.Caption = "Hàng Hoá";
     this.bbiHangHoa.Id = 27;
     this.bbiHangHoa.ImageIndex = 47;
     this.bbiHangHoa.LargeImageIndex = 158;
     this.bbiHangHoa.Name = "bbiHangHoa";
     toolTipItem2.Text = "Quản lý hàng hoá, dịch vụ";
     superToolTip2.Items.Add(toolTipItem2);
     this.bbiHangHoa.SuperTip = superToolTip2;
     this.bbiHangHoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiHangHoa_ItemClick);
     //
     // bbiNhomHang
     //
     this.bbiNhomHang.Caption = "Nhóm Hàng";
     this.bbiNhomHang.Id = 29;
     this.bbiNhomHang.ImageIndex = 75;
     this.bbiNhomHang.LargeImageIndex = 188;
     this.bbiNhomHang.Name = "bbiNhomHang";
     toolTipItem3.Text = "Nhóm sản phẩm";
     superToolTip3.Items.Add(toolTipItem3);
     this.bbiNhomHang.SuperTip = superToolTip3;
     this.bbiNhomHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhomHang_ItemClick);
     //
     // bbiKho
     //
     this.bbiKho.Caption = "Kho";
     this.bbiKho.Id = 30;
     this.bbiKho.ImageIndex = 14;
     this.bbiKho.LargeImageIndex = 201;
     this.bbiKho.Name = "bbiKho";
     toolTipItem4.Text = "Quản lý kho hàng";
     superToolTip4.Items.Add(toolTipItem4);
     this.bbiKho.SuperTip = superToolTip4;
     this.bbiKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKho_ItemClick);
     //
     // bbiAuthor
     //
     this.bbiAuthor.Caption = "Tác giả";
     this.bbiAuthor.Id = 38;
     this.bbiAuthor.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiAuthor.LargeGlyph")));
     this.bbiAuthor.Name = "bbiAuthor";
     //
     // bbiKhuVuc
     //
     this.bbiKhuVuc.Caption = "Khu Vực";
     this.bbiKhuVuc.Id = 133;
     this.bbiKhuVuc.ImageIndex = 19;
     this.bbiKhuVuc.LargeImageIndex = 172;
     this.bbiKhuVuc.Name = "bbiKhuVuc";
     this.bbiKhuVuc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhuVuc_ItemClick);
     //
     // bbiNhapKho
     //
     this.bbiNhapKho.Caption = "Nhập";
     this.bbiNhapKho.Description = "Quản lý nhập kho";
     this.bbiNhapKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNhapKho.Glyph")));
     this.bbiNhapKho.Hint = "Quản lý nhập kho";
     this.bbiNhapKho.Id = 136;
     this.bbiNhapKho.LargeImageIndex = 276;
     this.bbiNhapKho.Name = "bbiNhapKho";
     toolTipItem5.Text = "Quản lý nhập kho";
     superToolTip5.Items.Add(toolTipItem5);
     this.bbiNhapKho.SuperTip = superToolTip5;
     this.bbiNhapKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhapKho_ItemClick);
     //
     // bbiXuatKho
     //
     this.bbiXuatKho.Caption = "Xuất";
     this.bbiXuatKho.Description = "Quản lý xuất kho";
     this.bbiXuatKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiXuatKho.Glyph")));
     this.bbiXuatKho.Hint = "Quản lý xuất kho";
     this.bbiXuatKho.Id = 138;
     this.bbiXuatKho.LargeImageIndex = 281;
     this.bbiXuatKho.Name = "bbiXuatKho";
     toolTipItem6.Text = "Quản lý xuất kho\r\n";
     superToolTip6.Items.Add(toolTipItem6);
     this.bbiXuatKho.SuperTip = superToolTip6;
     this.bbiXuatKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatKho_ItemClick);
     //
     // bbiTonKho
     //
     this.bbiTonKho.Caption = "Tồn Kho";
     this.bbiTonKho.Id = 187;
     this.bbiTonKho.ImageIndex = 30;
     this.bbiTonKho.LargeImageIndex = 267;
     this.bbiTonKho.Name = "bbiTonKho";
     this.bbiTonKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTonKho_ItemClick);
     //
     // lblServer
     //
     this.lblServer.Caption = "Máy Chủ: ";
     this.lblServer.Id = 227;
     this.lblServer.ImageIndex = 233;
     this.lblServer.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblServer.ItemAppearance.Normal.Options.UseFont = true;
     this.lblServer.Name = "lblServer";
     toolTipTitleItem1.Text = "Nhấn đúp chuột vào để mở phần mềm quản lý cơ sở dữ liệu";
     toolTipItem7.LeftIndent = 6;
     toolTipItem7.Text = "Chú ý: mọi thao tác trên trên phần mềm quản lý cơ sở dữ liệu đều phải sao lưu dữ " +
     "liệu trước, phòng trường hợp thao tác nhằm, hoặc lỗi do sự cố ngoài ý muốn...";
     superToolTip7.Items.Add(toolTipTitleItem1);
     superToolTip7.Items.Add(toolTipItem7);
     this.lblServer.SuperTip = superToolTip7;
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblDatabase
     //
     this.lblDatabase.Caption = "CSDL:";
     this.lblDatabase.Id = 237;
     this.lblDatabase.ImageIndex = 273;
     this.lblDatabase.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblDatabase.ItemAppearance.Normal.Options.UseFont = true;
     this.lblDatabase.Name = "lblDatabase";
     toolTipTitleItem2.Text = "Nhấn đúp chuột vào đây để sử dụng một cơ sở dữ liệu khác.";
     toolTipItem8.LeftIndent = 6;
     toolTipItem8.Text = "Chú ý: Sau khi cấu hình thành công, khởi động lại phần mềm để nạp cấu hình mới.";
     superToolTip8.Items.Add(toolTipTitleItem2);
     superToolTip8.Items.Add(toolTipItem8);
     this.lblDatabase.SuperTip = superToolTip8;
     this.lblDatabase.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ISystem
     //
     this.ISystem.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ISystem.Caption = "Hệ Thống";
     this.ISystem.Id = 255;
     this.ISystem.ImageIndex = 78;
     this.ISystem.LargeImageIndex = 78;
     this.ISystem.Name = "ISystem";
     this.ISystem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInit
     //
     this.IInit.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInit.Caption = "Nhập Số Dư Ban Đầu";
     this.IInit.Id = 256;
     this.IInit.ImageIndex = 79;
     this.IInit.LargeImageIndex = 79;
     this.IInit.Name = "IInit";
     this.IInit.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInward
     //
     this.IInward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInward.Caption = "Nhập Kho";
     this.IInward.Id = 257;
     this.IInward.ImageIndex = 28;
     this.IInward.LargeImageIndex = 28;
     this.IInward.Name = "IInward";
     this.IInward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IOutward
     //
     this.IOutward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IOutward.Caption = "Xuất Kho";
     this.IOutward.Id = 258;
     this.IOutward.ImageIndex = 31;
     this.IOutward.LargeImageIndex = 31;
     this.IOutward.Name = "IOutward";
     this.IOutward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // ITransfer
     //
     this.ITransfer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ITransfer.Caption = "Chuyển Kho";
     this.ITransfer.Id = 259;
     this.ITransfer.ImageIndex = 25;
     this.ITransfer.LargeImageIndex = 25;
     this.ITransfer.Name = "ITransfer";
     this.ITransfer.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IAdjustment
     //
     this.IAdjustment.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IAdjustment.Caption = "Kiểm Kê";
     this.IAdjustment.Id = 260;
     this.IAdjustment.ImageIndex = 27;
     this.IAdjustment.LargeImageIndex = 27;
     this.IAdjustment.Name = "IAdjustment";
     this.IAdjustment.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInventory
     //
     this.IInventory.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInventory.Caption = "Tồn Kho";
     this.IInventory.Id = 261;
     this.IInventory.ImageIndex = 30;
     this.IInventory.LargeImageIndex = 30;
     this.IInventory.Name = "IInventory";
     this.IInventory.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IPacket
     //
     this.IPacket.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IPacket.Caption = "Đóng Gói";
     this.IPacket.Id = 264;
     this.IPacket.ImageIndex = 26;
     this.IPacket.LargeImageIndex = 26;
     this.IPacket.Name = "IPacket";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Kết Thúc";
     this.bbiClose.Description = "Kết thúc";
     this.bbiClose.Hint = "Kết thúc";
     this.bbiClose.Id = 132;
     this.bbiClose.ImageIndex = 0;
     this.bbiClose.LargeImageIndex = 239;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BbiCloseItemClick);
     //
     // bbiUserGroup
     //
     this.bbiUserGroup.Caption = "Vai Trò && Quyền Hạn";
     this.bbiUserGroup.Id = 295;
     this.bbiUserGroup.ImageIndex = 2;
     this.bbiUserGroup.LargeImageIndex = 2;
     this.bbiUserGroup.Name = "bbiUserGroup";
     this.bbiUserGroup.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUsers
     //
     this.bbiUsers.Caption = "Người Dùng";
     this.bbiUsers.Id = 296;
     this.bbiUsers.ImageIndex = 1;
     this.bbiUsers.LargeImageIndex = 1;
     this.bbiUsers.Name = "bbiUsers";
     this.bbiUsers.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUpdateOnline
     //
     this.bbiUpdateOnline.Caption = "Cập Nhật Trực Tuyến";
     this.bbiUpdateOnline.Id = 300;
     this.bbiUpdateOnline.ImageIndex = 86;
     this.bbiUpdateOnline.Name = "bbiUpdateOnline";
     //
     // bbiUpdateOffline
     //
     this.bbiUpdateOffline.Caption = "Cập Nhật Thông Thường";
     this.bbiUpdateOffline.Id = 301;
     this.bbiUpdateOffline.ImageIndex = 85;
     this.bbiUpdateOffline.Name = "bbiUpdateOffline";
     //
     // biiHelpNormal
     //
     this.biiHelpNormal.Caption = "Tài Liệu Hướng Dẫn";
     this.biiHelpNormal.Id = 306;
     this.biiHelpNormal.ImageIndex = 89;
     this.biiHelpNormal.LargeImageIndex = 89;
     this.biiHelpNormal.Name = "biiHelpNormal";
     //
     // biiHelpVideo
     //
     this.biiHelpVideo.Caption = "Video Hướng Dẫn";
     this.biiHelpVideo.Id = 307;
     this.biiHelpVideo.ImageIndex = 90;
     this.biiHelpVideo.LargeImageIndex = 90;
     this.biiHelpVideo.Name = "biiHelpVideo";
     //
     // bbiSaoLuu
     //
     this.bbiSaoLuu.Caption = "Sao Lưu";
     this.bbiSaoLuu.Id = 315;
     this.bbiSaoLuu.ImageIndex = 55;
     this.bbiSaoLuu.LargeImageIndex = 177;
     this.bbiSaoLuu.Name = "bbiSaoLuu";
     this.bbiSaoLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiBackUp_ItemClick);
     //
     // bbiPhucHoi
     //
     this.bbiPhucHoi.Caption = "Phục Hồi";
     this.bbiPhucHoi.Id = 316;
     this.bbiPhucHoi.ImageIndex = 56;
     this.bbiPhucHoi.LargeImageIndex = 271;
     this.bbiPhucHoi.Name = "bbiPhucHoi";
     this.bbiPhucHoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhucHoi_ItemClick);
     //
     // bbiXuatNhapTon
     //
     this.bbiXuatNhapTon.Caption = "Xuất Nhập Tồn";
     this.bbiXuatNhapTon.Id = 318;
     this.bbiXuatNhapTon.ImageIndex = 33;
     this.bbiXuatNhapTon.LargeImageIndex = 103;
     this.bbiXuatNhapTon.Name = "bbiXuatNhapTon";
     this.bbiXuatNhapTon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatNhapTon_ItemClick);
     //
     // bbiLichSu
     //
     this.bbiLichSu.Caption = "Lịch Sử";
     this.bbiLichSu.Id = 319;
     this.bbiLichSu.ImageIndex = 68;
     this.bbiLichSu.LargeImageIndex = 238;
     this.bbiLichSu.Name = "bbiLichSu";
     this.bbiLichSu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLichSu_ItemClick);
     //
     // bbiTheKho
     //
     this.bbiTheKho.Caption = "Thẻ Kho";
     this.bbiTheKho.Id = 320;
     this.bbiTheKho.ImageIndex = 26;
     this.bbiTheKho.LargeImageIndex = 218;
     this.bbiTheKho.Name = "bbiTheKho";
     this.bbiTheKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheKho_ItemClick);
     //
     // bbiNhanVien
     //
     this.bbiNhanVien.Caption = "Nhân Viên";
     this.bbiNhanVien.Id = 322;
     this.bbiNhanVien.LargeImageIndex = 163;
     this.bbiNhanVien.Name = "bbiNhanVien";
     this.bbiNhanVien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhanVien_ItemClick);
     //
     // bbiCuaHang
     //
     this.bbiCuaHang.Caption = "Cửa Hàng";
     this.bbiCuaHang.Id = 323;
     this.bbiCuaHang.LargeImageIndex = 246;
     this.bbiCuaHang.Name = "bbiCuaHang";
     this.bbiCuaHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCuaHang_ItemClick);
     //
     // bbiThuChi
     //
     this.bbiThuChi.Caption = "Thu Chi";
     this.bbiThuChi.Id = 324;
     this.bbiThuChi.ImageIndex = 39;
     this.bbiThuChi.LargeImageIndex = 147;
     this.bbiThuChi.Name = "bbiThuChi";
     this.bbiThuChi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiThuChi_ItemClick);
     //
     // bbiCongNo
     //
     this.bbiCongNo.Caption = "Công Nợ";
     this.bbiCongNo.Id = 325;
     this.bbiCongNo.LargeImageIndex = 262;
     this.bbiCongNo.Name = "bbiCongNo";
     this.bbiCongNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNo_ItemClick);
     //
     // bbiTheNo
     //
     this.bbiTheNo.Caption = "Thẻ Nợ";
     this.bbiTheNo.Id = 326;
     this.bbiTheNo.LargeImageIndex = 257;
     this.bbiTheNo.Name = "bbiTheNo";
     this.bbiTheNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheNo_ItemClick);
     //
     // bbiDoanhThu
     //
     this.bbiDoanhThu.Caption = "Doanh Thu";
     this.bbiDoanhThu.Id = 328;
     this.bbiDoanhThu.LargeImageIndex = 263;
     this.bbiDoanhThu.Name = "bbiDoanhThu";
     this.bbiDoanhThu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDoanhThu_ItemClick);
     //
     // bbiCongNoChungTu
     //
     this.bbiCongNoChungTu.Caption = "Công Nợ Chứng Từ";
     this.bbiCongNoChungTu.Id = 329;
     this.bbiCongNoChungTu.LargeImageIndex = 93;
     this.bbiCongNoChungTu.Name = "bbiCongNoChungTu";
     this.bbiCongNoChungTu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNoChungTu_ItemClick);
     //
     // rbpHeThong
     //
     this.rbpHeThong.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDong});
     this.rbpHeThong.Name = "rbpHeThong";
     this.rbpHeThong.Text = "Hệ Thống";
     //
     // rbpgDong
     //
     this.rbpgDong.ItemLinks.Add(this.bbiClose);
     this.rbpgDong.ItemLinks.Add(this.bbiSaoLuu);
     this.rbpgDong.ItemLinks.Add(this.bbiPhucHoi);
     this.rbpgDong.KeyTip = "KE";
     this.rbpgDong.Name = "rbpgDong";
     this.rbpgDong.ShowCaptionButton = false;
     this.rbpgDong.Text = "Hệ Thống";
     //
     // rbpDanhMuc
     //
     this.rbpDanhMuc.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDoiTac,
     this.rbpgKhoHang,
     this.rbpgThongTinCuaHang});
     this.rbpDanhMuc.Name = "rbpDanhMuc";
     this.rbpDanhMuc.Text = "Danh Mục";
     //
     // rbpgDoiTac
     //
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhuVuc);
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhachHang);
     this.rbpgDoiTac.Name = "rbpgDoiTac";
     this.rbpgDoiTac.ShowCaptionButton = false;
     this.rbpgDoiTac.Text = "Đối Tác";
     //
     // rbpgKhoHang
     //
     this.rbpgKhoHang.ItemLinks.Add(this.bbiKho);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiNhomHang);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiHangHoa);
     this.rbpgKhoHang.Name = "rbpgKhoHang";
     this.rbpgKhoHang.ShowCaptionButton = false;
     this.rbpgKhoHang.Text = "Kho Hàng";
     //
     // rbpgThongTinCuaHang
     //
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiNhanVien);
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiCuaHang);
     this.rbpgThongTinCuaHang.Name = "rbpgThongTinCuaHang";
     this.rbpgThongTinCuaHang.Text = "Thông Tin Cửa Hàng";
     //
     // rbpKhoHang
     //
     this.rbpKhoHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgQuanLyKho,
     this.rbpgBaoCao,
     this.rpbgCongNo,
     this.rpbgDoanhThu});
     this.rbpKhoHang.Name = "rbpKhoHang";
     this.rbpKhoHang.Text = "Kho Hàng";
     //
     // rbpgQuanLyKho
     //
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiNhapKho);
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiXuatKho);
     this.rbpgQuanLyKho.Name = "rbpgQuanLyKho";
     this.rbpgQuanLyKho.ShowCaptionButton = false;
     this.rbpgQuanLyKho.Text = "Quản Lý Kho";
     //
     // rbpgBaoCao
     //
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTonKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiXuatNhapTon);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTheKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiLichSu);
     this.rbpgBaoCao.Name = "rbpgBaoCao";
     this.rbpgBaoCao.Text = "Báo Cáo";
     //
     // rpbgCongNo
     //
     this.rpbgCongNo.ItemLinks.Add(this.bbiThuChi);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiTheNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNoChungTu);
     this.rpbgCongNo.Name = "rpbgCongNo";
     this.rpbgCongNo.Text = "Công Nợ";
     //
     // rpbgDoanhThu
     //
     this.rpbgDoanhThu.ItemLinks.Add(this.bbiDoanhThu);
     this.rpbgDoanhThu.Name = "rpbgDoanhThu";
     this.rpbgDoanhThu.Text = "Doanh Thu";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // rbsMain
     //
     this.rbsMain.Location = new System.Drawing.Point(0, 736);
     this.rbsMain.Name = "rbsMain";
     this.rbsMain.Ribbon = this.rbcMain;
     this.rbsMain.Size = new System.Drawing.Size(1016, 31);
     //
     // tabMdi
     //
     this.tabMdi.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.tabMdi.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
     | DevExpress.XtraTab.TabButtons.Close)
     | DevExpress.XtraTab.TabButtons.Default)));
     this.tabMdi.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.tabMdi.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.tabMdi.MdiParent = this;
     this.tabMdi.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.Windows;
     this.tabMdi.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     this.tabMdi.ShowToolTips = DevExpress.Utils.DefaultBoolean.True;
     //
     // ImgSmall
     //
     this.ImgSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImgSmall.ImageStream")));
     this.ImgSmall.Images.SetKeyName(0, "Ket Thuc.png");
     this.ImgSmall.Images.SetKeyName(1, "1285643018_gnutella.png");
     this.ImgSmall.Images.SetKeyName(2, "1285643049_network-offline.png");
     this.ImgSmall.Images.SetKeyName(3, "1284429314_import.png");
     this.ImgSmall.Images.SetKeyName(4, "1287538982_help-contents.png");
     //
     // FrmMain
     //
     this.ClientSize = new System.Drawing.Size(1016, 767);
     this.Controls.Add(this.rbsMain);
     this.Controls.Add(this.rbcMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "FrmMain";
     this.Ribbon = this.rbcMain;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.rbsMain;
     this.Text = "Phần Mềm Quản Lý Kho";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #6
0
 private void InitializeComponent()
 {
     this.components            = new System.ComponentModel.Container();
     this.navigationTreeList    = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1       = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.svgImageCollection1   = new DevExpress.Utils.SvgImageCollection(this.components);
     this.xtraTabControl1       = new DevExpress.XtraTab.XtraTabControl();
     this.LocalResourceTabPage  = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1        = new DevExpress.XtraLayout.LayoutControl();
     this.CheckedResourceCombox = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1   = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2   = new DevExpress.XtraLayout.LayoutControlItem();
     this.DBResourceTabPage    = new DevExpress.XtraTab.XtraTabPage();
     this.WebTabPage           = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenu1           = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1       = new DevExpress.XtraBars.BarButtonItem();
     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.barStaticItem1       = new DevExpress.XtraBars.BarStaticItem();
     ((System.ComponentModel.ISupportInitialize)(this.navigationTreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.svgImageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.LocalResourceTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CheckedResourceCombox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // navigationTreeList
     //
     this.navigationTreeList.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.navigationTreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumn1
     });
     this.navigationTreeList.Location = new System.Drawing.Point(2, 26);
     this.navigationTreeList.Name     = "navigationTreeList";
     this.navigationTreeList.OptionsBehavior.Editable   = false;
     this.navigationTreeList.OptionsFind.AllowFindPanel = false;
     this.navigationTreeList.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.navigationTreeList.OptionsView.FocusRectStyle       = DevExpress.XtraTreeList.DrawFocusRectStyle.None;
     this.navigationTreeList.OptionsView.ShowColumns          = false;
     this.navigationTreeList.OptionsView.ShowHorzLines        = false;
     this.navigationTreeList.OptionsView.ShowIndentAsRowStyle = true;
     this.navigationTreeList.OptionsView.ShowIndicator        = false;
     this.navigationTreeList.OptionsView.ShowVertLines        = false;
     this.navigationTreeList.RowHeight       = 22;
     this.navigationTreeList.SelectImageList = this.svgImageCollection1;
     this.navigationTreeList.Size            = new System.Drawing.Size(313, 674);
     this.navigationTreeList.TabIndex        = 1;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption      = "treeListColumn1";
     this.treeListColumn1.FieldName    = "treeListColumn1";
     this.treeListColumn1.Name         = "treeListColumn1";
     this.treeListColumn1.Visible      = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // svgImageCollection1
     //
     this.svgImageCollection1.Add("electronics_desktopmac", "image://svgimages/icon builder/electronics_desktopmac.svg");
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Location        = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.LocalResourceTabPage;
     this.xtraTabControl1.Size            = new System.Drawing.Size(323, 731);
     this.xtraTabControl1.TabIndex        = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.LocalResourceTabPage,
         this.DBResourceTabPage,
         this.WebTabPage
     });
     //
     // LocalResourceTabPage
     //
     this.LocalResourceTabPage.Controls.Add(this.layoutControl1);
     this.LocalResourceTabPage.Name = "LocalResourceTabPage";
     this.LocalResourceTabPage.Size = new System.Drawing.Size(317, 702);
     this.LocalResourceTabPage.Text = "本地资源";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.CheckedResourceCombox);
     this.layoutControl1.Controls.Add(this.navigationTreeList);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Margin   = new System.Windows.Forms.Padding(0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.Root;
     this.layoutControl1.Size     = new System.Drawing.Size(317, 702);
     this.layoutControl1.TabIndex = 3;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // CheckedResourceCombox
     //
     this.CheckedResourceCombox.EditValue = "";
     this.CheckedResourceCombox.Location  = new System.Drawing.Point(2, 2);
     this.CheckedResourceCombox.Name      = "CheckedResourceCombox";
     this.CheckedResourceCombox.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.CheckedResourceCombox.Size            = new System.Drawing.Size(313, 20);
     this.CheckedResourceCombox.StyleController = this.layoutControl1;
     this.CheckedResourceCombox.TabIndex        = 2;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.GroupBordersVisible         = false;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2
     });
     this.Root.Name        = "Root";
     this.Root.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.Root.Size        = new System.Drawing.Size(317, 702);
     this.Root.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control     = this.navigationTreeList;
     this.layoutControlItem1.Location    = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name        = "layoutControlItem1";
     this.layoutControlItem1.Size        = new System.Drawing.Size(317, 678);
     this.layoutControlItem1.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control               = this.CheckedResourceCombox;
     this.layoutControlItem2.Location              = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name                  = "layoutControlItem2";
     this.layoutControlItem2.Size                  = new System.Drawing.Size(317, 24);
     this.layoutControlItem2.TextAlignMode         = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem2.TextSize              = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // DBResourceTabPage
     //
     this.DBResourceTabPage.Name = "DBResourceTabPage";
     this.DBResourceTabPage.Size = new System.Drawing.Size(317, 702);
     this.DBResourceTabPage.Text = "数据库资源";
     //
     // WebTabPage
     //
     this.WebTabPage.Name = "WebTabPage";
     this.WebTabPage.Size = new System.Drawing.Size(317, 702);
     this.WebTabPage.Text = "Web资源";
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
         new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1)
     });
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name    = "popupMenu1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 2;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // 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.barStaticItem1
     });
     this.barManager1.MaxItemId = 4;
     //
     // 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(323, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 731);
     this.barDockControlBottom.Manager          = this.barManager1;
     this.barDockControlBottom.Size             = new System.Drawing.Size(323, 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, 731);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(323, 0);
     this.barDockControlRight.Manager          = this.barManager1;
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 731);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "barStaticItem1";
     this.barStaticItem1.Id      = 3;
     this.barStaticItem1.Name    = "barStaticItem1";
     //
     // ResourcePanel
     //
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseFont      = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "ResourcePanel";
     this.Size = new System.Drawing.Size(323, 731);
     ((System.ComponentModel.ISupportInitialize)(this.navigationTreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.svgImageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.LocalResourceTabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.CheckedResourceCombox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #7
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(StrategiesCollectionForm));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.siAdd = new DevExpress.XtraBars.BarSubItem();
     this.biRemove = new DevExpress.XtraBars.BarButtonItem();
     this.biEdit = new DevExpress.XtraBars.BarButtonItem();
     this.biStart = new DevExpress.XtraBars.BarButtonItem();
     this.biStop = new DevExpress.XtraBars.BarButtonItem();
     this.biSimulation = new DevExpress.XtraBars.BarButtonItem();
     this.biOptimizeParams = new DevExpress.XtraBars.BarButtonItem();
     this.btShowData = new DevExpress.XtraBars.BarButtonItem();
     this.bcShowLog = new DevExpress.XtraBars.BarCheckItem();
     this.biSettings = new DevExpress.XtraBars.BarButtonItem();
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.siStatus = new DevExpress.XtraBars.BarStaticItem();
     this.beSimulationProgress = 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.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dpLogPanel = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.logMessagesControl = new CryptoMarketClient.LogMessagesControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.strategyBaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEnabled = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colDemoMode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStateText = new DevExpress.XtraGrid.Columns.GridColumn();
     this.riTextEditState = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colEarned = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEnableNotifications = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.behaviorManager1 = new DevExpress.Utils.Behaviors.BehaviorManager(this.components);
     this.toastNotificationsManager1 = new DevExpress.XtraBars.ToastNotifications.ToastNotificationsManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dpLogPanel.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.strategyBaseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTextEditState)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.toastNotificationsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowHtmlText = true;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     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.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.siAdd,
     this.biRemove,
     this.biEdit,
     this.siStatus,
     this.biStart,
     this.biStop,
     this.btShowData,
     this.biSimulation,
     this.bcShowLog,
     this.biOptimizeParams,
     this.beSimulationProgress,
     this.biSettings});
     this.barManager1.MaxItemId = 15;
     this.barManager1.OptionsStubGlyphs.AllowStubGlyphs = DevExpress.Utils.DefaultBoolean.True;
     this.barManager1.OptionsStubGlyphs.CaseMode = DevExpress.Utils.Drawing.GlyphTextCaseMode.UpperCase;
     this.barManager1.OptionsStubGlyphs.CornerRadius = 3;
     this.barManager1.OptionsStubGlyphs.Font = new System.Drawing.Font("Segoe UI", 12F);
     this.barManager1.OptionsStubGlyphs.LetterCount = DevExpress.Utils.Drawing.GlyphTextSymbolCount.Two;
     this.barManager1.OptionsStubGlyphs.UseFont = true;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemProgressBar1});
     //
     // bar1
     //
     this.bar1.BarAppearance.Hovered.FontStyleDelta = System.Drawing.FontStyle.Bold;
     this.bar1.BarAppearance.Hovered.Options.UseFont = true;
     this.bar1.BarAppearance.Normal.FontStyleDelta = System.Drawing.FontStyle.Bold;
     this.bar1.BarAppearance.Normal.Options.UseFont = true;
     this.bar1.BarAppearance.Pressed.FontStyleDelta = System.Drawing.FontStyle.Bold;
     this.bar1.BarAppearance.Pressed.Options.UseFont = true;
     this.bar1.BarName = "Tools";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.siAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.biRemove),
     new DevExpress.XtraBars.LinkPersistInfo(this.biEdit),
     new DevExpress.XtraBars.LinkPersistInfo(this.biStart, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.biStop),
     new DevExpress.XtraBars.LinkPersistInfo(this.biSimulation),
     new DevExpress.XtraBars.LinkPersistInfo(this.biOptimizeParams),
     new DevExpress.XtraBars.LinkPersistInfo(this.btShowData, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bcShowLog),
     new DevExpress.XtraBars.LinkPersistInfo(this.biSettings)});
     this.bar1.OptionsBar.DrawBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Tools";
     //
     // siAdd
     //
     this.siAdd.Caption = "New";
     this.siAdd.Id = 0;
     this.siAdd.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("siAdd.ImageOptions.SvgImage")));
     this.siAdd.Name = "siAdd";
     this.siAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // biRemove
     //
     this.biRemove.Caption = "Remove Selected";
     this.biRemove.Id = 1;
     this.biRemove.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biRemove.ImageOptions.SvgImage")));
     this.biRemove.Name = "biRemove";
     this.biRemove.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biRemove.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biRemove_ItemClick);
     //
     // biEdit
     //
     this.biEdit.Caption = "Edit";
     this.biEdit.Id = 2;
     this.biEdit.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biEdit.ImageOptions.SvgImage")));
     this.biEdit.Name = "biEdit";
     this.biEdit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biEdit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biEdit_ItemClick);
     //
     // biStart
     //
     this.biStart.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.biStart.Caption = "<b>Run!</b>";
     this.biStart.Id = 4;
     this.biStart.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biStart.ImageOptions.SvgImage")));
     this.biStart.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Information;
     this.biStart.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biStart.Name = "biStart";
     this.biStart.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biStart_ItemClick);
     //
     // biStop
     //
     this.biStop.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.biStop.Caption = "<b>Stop</b>";
     this.biStop.Id = 5;
     this.biStop.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biStop.ImageOptions.SvgImage")));
     this.biStop.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Critical;
     this.biStop.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biStop.Name = "biStop";
     this.biStop.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biStop_ItemClick);
     //
     // biSimulation
     //
     this.biSimulation.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.biSimulation.Caption = "<b>Simulation</b>";
     this.biSimulation.Id = 8;
     this.biSimulation.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biSimulation.ImageOptions.SvgImage")));
     this.biSimulation.ItemAppearance.Hovered.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biSimulation.ItemAppearance.Hovered.Options.UseForeColor = true;
     this.biSimulation.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biSimulation.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biSimulation.ItemAppearance.Pressed.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biSimulation.ItemAppearance.Pressed.Options.UseForeColor = true;
     this.biSimulation.Name = "biSimulation";
     this.biSimulation.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biSimulation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biSimulation_ItemClick);
     //
     // biOptimizeParams
     //
     this.biOptimizeParams.Caption = "Optimize Params";
     this.biOptimizeParams.Id = 11;
     this.biOptimizeParams.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biOptimizeParams.ImageOptions.SvgImage")));
     this.biOptimizeParams.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biOptimizeParams.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biOptimizeParams.Name = "biOptimizeParams";
     this.biOptimizeParams.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biOptimizeParams.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biOptimizeParams_ItemClick);
     //
     // btShowData
     //
     this.btShowData.Caption = "<b>Show Data</b>";
     this.btShowData.Id = 6;
     this.btShowData.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btShowData.ImageOptions.SvgImage")));
     this.btShowData.Name = "btShowData";
     this.btShowData.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btShowData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btShowData_ItemClick);
     //
     // bcShowLog
     //
     this.bcShowLog.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.bcShowLog.Caption = "<b>Show Log</b>";
     this.bcShowLog.Id = 10;
     this.bcShowLog.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("bcShowLog.ImageOptions.SvgImage")));
     this.bcShowLog.Name = "bcShowLog";
     this.bcShowLog.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bcShowLog.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.bcShowLog_CheckedChanged);
     //
     // biSettings
     //
     this.biSettings.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.biSettings.Caption = "Settings";
     this.biSettings.Id = 14;
     this.biSettings.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biSettings.ImageOptions.SvgImage")));
     this.biSettings.Name = "biSettings";
     this.biSettings.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biSettings.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biSettings_ItemClick);
     //
     // 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.siStatus),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.beSimulationProgress, "", false, true, true, 210)});
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // siStatus
     //
     this.siStatus.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.siStatus.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.siStatus.Caption = "    ";
     this.siStatus.Id = 3;
     this.siStatus.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Information;
     this.siStatus.ItemAppearance.Normal.Options.UseForeColor = true;
     this.siStatus.Name = "siStatus";
     //
     // beSimulationProgress
     //
     this.beSimulationProgress.AutoFillWidth = true;
     this.beSimulationProgress.Caption = "barEditItem1";
     this.beSimulationProgress.Edit = this.repositoryItemProgressBar1;
     this.beSimulationProgress.Id = 13;
     this.beSimulationProgress.Name = "beSimulationProgress";
     this.beSimulationProgress.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Maximum = 100000;
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     this.repositoryItemProgressBar1.ShowTitle = true;
     //
     // 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(1667, 60);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 974);
     this.barDockControlBottom.Manager = this.barManager1;
     this.barDockControlBottom.Size = new System.Drawing.Size(1667, 52);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 60);
     this.barDockControlLeft.Manager = this.barManager1;
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 914);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1667, 60);
     this.barDockControlRight.Manager = this.barManager1;
     this.barDockControlRight.Size = new System.Drawing.Size(0, 914);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dpLogPanel});
     this.dockManager1.MenuManager = this.barManager1;
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "System.Windows.Forms.MenuStrip",
     "System.Windows.Forms.StatusStrip",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl",
     "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
     "DevExpress.XtraBars.Navigation.TileNavPane",
     "DevExpress.XtraBars.TabFormControl",
     "DevExpress.XtraBars.FluentDesignSystem.FluentDesignFormControl",
     "DevExpress.XtraBars.ToolbarForm.ToolbarFormControl"});
     //
     // dpLogPanel
     //
     this.dpLogPanel.Controls.Add(this.dockPanel1_Container);
     this.dpLogPanel.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.dpLogPanel.ID = new System.Guid("10bbb36d-c4c6-4135-83c3-42595d23e751");
     this.dpLogPanel.Location = new System.Drawing.Point(0, 526);
     this.dpLogPanel.Name = "dpLogPanel";
     this.dpLogPanel.OriginalSize = new System.Drawing.Size(200, 441);
     this.dpLogPanel.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.dpLogPanel.SavedIndex = 0;
     this.dpLogPanel.Size = new System.Drawing.Size(1667, 441);
     this.dpLogPanel.Text = "Log";
     this.dpLogPanel.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.logMessagesControl);
     this.dockPanel1_Container.Location = new System.Drawing.Point(8, 51);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(1651, 382);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // logMessagesControl
     //
     this.logMessagesControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logMessagesControl.Location = new System.Drawing.Point(0, 0);
     this.logMessagesControl.Name = "logMessagesControl";
     this.logMessagesControl.Size = new System.Drawing.Size(1651, 382);
     this.logMessagesControl.TabIndex = 0;
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.strategyBaseBindingSource;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 60);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.barManager1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemCheckEdit3,
     this.riTextEditState});
     this.gridControl1.Size = new System.Drawing.Size(1667, 914);
     this.gridControl1.TabIndex = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     this.gridControl1.Click += new System.EventHandler(this.gridControl1_Click);
     //
     // strategyBaseBindingSource
     //
     this.strategyBaseBindingSource.DataSource = typeof(Crypto.Core.Strategies.StrategyBase);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEnabled,
     this.colDemoMode,
     this.colDescription,
     this.colName,
     this.colStateText,
     this.colEarned,
     this.colEnableNotifications});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFullFocus;
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsDetail.EnableMasterViewMode = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.BestFitMode = DevExpress.XtraGrid.Views.Grid.GridBestFitMode.Full;
     this.gridView1.OptionsView.ShowHorizontalLines = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridView1_RowStyle);
     //
     // colEnabled
     //
     this.colEnabled.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colEnabled.FieldName = "Enabled";
     this.colEnabled.MinWidth = 40;
     this.colEnabled.Name = "colEnabled";
     this.colEnabled.Visible = true;
     this.colEnabled.VisibleIndex = 0;
     this.colEnabled.Width = 160;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.CheckBoxOptions.Style = DevExpress.XtraEditors.Controls.CheckBoxStyle.SvgToggle1;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.EditValueChanged += new System.EventHandler(this.repositoryItemCheckEdit1_EditValueChanged);
     //
     // colDemoMode
     //
     this.colDemoMode.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colDemoMode.FieldName = "DemoMode";
     this.colDemoMode.MinWidth = 40;
     this.colDemoMode.Name = "colDemoMode";
     this.colDemoMode.Visible = true;
     this.colDemoMode.VisibleIndex = 1;
     this.colDemoMode.Width = 195;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.CheckBoxOptions.Style = DevExpress.XtraEditors.Controls.CheckBoxStyle.SvgToggle1;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.EditValueChanged += new System.EventHandler(this.repositoryItemCheckEdit2_EditValueChanged);
     //
     // colDescription
     //
     this.colDescription.ColumnEdit = this.repositoryItemTextEdit1;
     this.colDescription.FieldName = "Description";
     this.colDescription.MinWidth = 40;
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.AllowEdit = false;
     this.colDescription.Width = 554;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.Padding = new System.Windows.Forms.Padding(0, 3, 0, 3);
     //
     // colName
     //
     this.colName.FieldName = "Name";
     this.colName.MinWidth = 40;
     this.colName.Name = "colName";
     this.colName.OptionsColumn.AllowEdit = false;
     this.colName.OptionsColumn.ReadOnly = true;
     this.colName.Visible = true;
     this.colName.VisibleIndex = 3;
     this.colName.Width = 361;
     //
     // colStateText
     //
     this.colStateText.ColumnEdit = this.riTextEditState;
     this.colStateText.FieldName = "StateText";
     this.colStateText.MinWidth = 40;
     this.colStateText.Name = "colStateText";
     this.colStateText.OptionsColumn.AllowEdit = false;
     this.colStateText.Visible = true;
     this.colStateText.VisibleIndex = 4;
     this.colStateText.Width = 366;
     //
     // riTextEditState
     //
     this.riTextEditState.AllowHtmlDraw = DevExpress.Utils.DefaultBoolean.True;
     this.riTextEditState.AutoHeight = false;
     this.riTextEditState.Name = "riTextEditState";
     //
     // colEarned
     //
     this.colEarned.DisplayFormat.FormatString = "0.0000000";
     this.colEarned.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colEarned.FieldName = "Earned";
     this.colEarned.MinWidth = 40;
     this.colEarned.Name = "colEarned";
     this.colEarned.OptionsColumn.AllowEdit = false;
     this.colEarned.Visible = true;
     this.colEarned.VisibleIndex = 5;
     this.colEarned.Width = 412;
     //
     // colEnableNotifications
     //
     this.colEnableNotifications.Caption = "Notifications";
     this.colEnableNotifications.ColumnEdit = this.repositoryItemCheckEdit3;
     this.colEnableNotifications.FieldName = "EnableNotifications";
     this.colEnableNotifications.MinWidth = 40;
     this.colEnableNotifications.Name = "colEnableNotifications";
     this.colEnableNotifications.Visible = true;
     this.colEnableNotifications.VisibleIndex = 2;
     this.colEnableNotifications.Width = 137;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.CheckBoxOptions.Style = DevExpress.XtraEditors.Controls.CheckBoxStyle.SvgToggle1;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.EditValueChanged += new System.EventHandler(this.repositoryItemCheckEdit3_EditValueChanged);
     //
     // toastNotificationsManager1
     //
     this.toastNotificationsManager1.ApplicationId = "ab6decea-81d2-4ad9-b8b7-45653fe59087";
     this.toastNotificationsManager1.Notifications.AddRange(new DevExpress.XtraBars.ToastNotifications.IToastNotificationProperties[] {
     new DevExpress.XtraBars.ToastNotifications.ToastNotification("404ef86f-183c-4fea-960b-86f54e52ea76", global::Crypto.UI.Properties.Resources.notification_image2, "Strategies Simulator", "Strategy simulation finished!", "", DevExpress.XtraBars.ToastNotifications.ToastNotificationSound.Default, DevExpress.XtraBars.ToastNotifications.ToastNotificationDuration.Long, DevExpress.XtraBars.ToastNotifications.ToastNotificationTemplate.ImageAndText01)});
     //
     // StrategiesCollectionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1667, 1026);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "StrategiesCollectionForm";
     this.Text = "Active Strategies";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dpLogPanel.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.strategyBaseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTextEditState)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.toastNotificationsManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #8
0
 internal static void _AddPROTOCOLVNCOM(frmRibbonMain form)
 {
     DevExpress.XtraBars.BarStaticItem www = new DevExpress.XtraBars.BarStaticItem();
     //DevExpress.XtraBars.BarButtonItem www = new DevExpress.XtraBars.BarButtonItem();
     www.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     www.Appearance.ForeColor = System.Drawing.Color.Blue;
     www.Appearance.Options.UseForeColor = true;
     www.ShowImageInToolbar = true;
     www.Appearance.Options.UseFont = true;
     www.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     www.Caption = "www.protocolvn.com";
     www.Name = "www";
     www.TextAlignment = System.Drawing.StringAlignment.Near;
     www.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     www.ItemClick += delegate(object sender, ItemClickEventArgs e)
     {
         System.Diagnostics.Process.Start("http://www.protocolvn.com");
     };
     www.Appearance.Options.UseImage = true;
     www.Glyph = FWImageDic.LOGO_IMAGE16;
     www.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     form.Ribbon.Items.Add(www);
     form.Ribbon.PageHeaderItemLinks.Add(www);
 }
Exemple #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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
			this.barManager_Main = new DevExpress.XtraBars.BarManager();
			this.barMain = new DevExpress.XtraBars.Bar();
			this.barSubItem_System = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_PrintSetting = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Logout = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Exit = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Tools = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_CustomDefine = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_CarDataSynch = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Options = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Windows = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_DutyInfo = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Style = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_DefaultSkin = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_WinXPSkin = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_OfficeXP = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Office2000 = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Office2003 = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Help = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_Help = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_About = new DevExpress.XtraBars.BarButtonItem();
			this.barToolBar = new DevExpress.XtraBars.Bar();
			this.barStatus = new DevExpress.XtraBars.Bar();
			this.barStaticItem_Ready = new DevExpress.XtraBars.BarStaticItem();
			this.barStaticItem_SystemInfo = new DevExpress.XtraBars.BarStaticItem();
			this.barStaticItem_SystemDate = new DevExpress.XtraBars.BarStaticItem();
			this.barStaticItem_Custom = 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.dockManager_CurrentStuCheckInfo = new DevExpress.XtraBars.Docking.DockManager();
			this.hideContainerRight = new DevExpress.XtraBars.Docking.AutoHideContainer();
			this.currentStuCheckInfo = new DevExpress.XtraBars.Docking.DockPanel();
			this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
			this.imageList_ToolBarIcon = new System.Windows.Forms.ImageList(this.components);
			this.pictureBox_Border = new System.Windows.Forms.PictureBox();
			this.navBarControl_Main = new DevExpress.XtraNavBar.NavBarControl();
			this.navBarGroup_GardenInfo = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_GardenInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarGroup_TeacherInfo = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_TeaBaseInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_TeaDutyInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarGroup_StudentInfo = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_StuBaseInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_StuDutyInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_RealTimeInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_StuHealth = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_StuVisit = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarGroup_GardenAffair = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_CardManagement = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_Finance = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_SMSInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_AffairNotify = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem_Camera = new DevExpress.XtraNavBar.NavBarItem();
			this.splitterControlMain = new DevExpress.XtraEditors.SplitterControl();
			this.paneCaption_Title = new CPTT.WinUI.Panels.PaneCaption();
			this.pictureBox_BackLogo = new System.Windows.Forms.PictureBox();
			this.panelControl_Center = new DevExpress.XtraEditors.PanelControl();
			this.nutritionManagement1 = new CPTT.WinUI.Panels.NutritionManagement();
			this.finanManagement1 = new CPTT.WinUI.Panels.FinanManagement();
			this.realtimeInfo_Teacher1 = new CPTT.WinUI.Panels.RealtimeInfo_Teacher();
			this.smsInfo1 = new CPTT.WinUI.Panels.SmsInfo();
//			this.gardenInfo1 = new CPTT.WinUI.Panels.GardenInfo();
//			this.teacherOnDutyInfo1 = new CPTT.WinUI.Panels.TeacherOnDutyInfo();
			this.studentVisitInfo1 = new CPTT.WinUI.Panels.StudentVisitInfo();
			this.realtimeInfo1 = new CPTT.WinUI.Panels.RealtimeInfo();
			this.teacherBaseInfo1 = new CPTT.WinUI.Panels.TeacherBaseInfo();
			this.studentBaseInfo1 = new CPTT.WinUI.Panels.StudentBaseInfo();
            this.cameraPanel = new CPTT.WinUI.Panels.Camera();
			this.studentMorningCheckInfo1 = new CPTT.WinUI.Panels.StudentMorningCheckInfo();
			this.cardManagement2 = new CPTT.WinUI.Panels.CardManagement();
			this.realTimeWindows = new CPTT.WinUI.Panels.RealTimeWindows(this);
			this.transactionReminding1 = new CPTT.WinUI.Panels.TransactionReminding();
			this.notifyIcon_MainForm = new System.Windows.Forms.NotifyIcon(this.components);
			this.contextMenu_NotifyIcon = new System.Windows.Forms.ContextMenu();
			this.menuItem_ShowMainForm = new System.Windows.Forms.MenuItem();
			this.menuItem_Exit = new System.Windows.Forms.MenuItem();
			this.navBarItem_RealtimeInfo_Teacher = new DevExpress.XtraNavBar.NavBarItem();
			this.timerSynSession = new System.Timers.Timer();
			((System.ComponentModel.ISupportInitialize)(this.timerSynSession)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager_Main)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dockManager_CurrentStuCheckInfo)).BeginInit();
			this.hideContainerRight.SuspendLayout();
			this.currentStuCheckInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.navBarControl_Main)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Center)).BeginInit();
			this.panelControl_Center.SuspendLayout();
			this.SuspendLayout();
			// 
			// barManager_Main
			// 
			this.barManager_Main.AllowCustomization = false;
			this.barManager_Main.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
																				 this.barMain,
																				 this.barToolBar,
																				 this.barStatus});
			this.barManager_Main.DockControls.Add(this.barDockControlTop);
			this.barManager_Main.DockControls.Add(this.barDockControlBottom);
			this.barManager_Main.DockControls.Add(this.barDockControlLeft);
			this.barManager_Main.DockControls.Add(this.barDockControlRight);
			this.barManager_Main.DockManager = this.dockManager_CurrentStuCheckInfo;
			this.barManager_Main.Form = this;
			this.barManager_Main.Images = this.imageList_ToolBarIcon;
			this.barManager_Main.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																					  this.barSubItem_System,
																					  this.barButtonItem_Exit,
																					  this.barSubItem_Windows,
																					  this.barSubItem_Style,
																					  this.barSubItem_Tools,
																					  this.barSubItem_Help,
																					  this.barButtonItem_Logout,
																					  this.barButtonItem_DutyInfo,
																					  this.barButtonItem_Help,
																					  this.barButtonItem_About,
																					  this.barStaticItem_SystemInfo,
																					  this.barStaticItem_SystemDate,
																					  this.barStaticItem_Custom,
																					  this.barButtonItem_CarDataSynch,
																					  this.barButtonItem_Options,
																					  this.barButtonItem_DefaultSkin,
																					  this.barButtonItem_WinXPSkin,
																					  this.barButtonItem_OfficeXP,
																					  this.barButtonItem_Office2000,
																					  this.barButtonItem_Office2003,
																					  this.barStaticItem_Ready,
																					  this.barButtonItem_CustomDefine,
																					  this.barButtonItem_PrintSetting,
																					  this.barButtonItem1});
			this.barManager_Main.LargeImages = this.imageList_ToolBarIcon;
			this.barManager_Main.MainMenu = this.barMain;
			this.barManager_Main.MaxItemId = 32;
			this.barManager_Main.StatusBar = this.barStatus;
			// 
			// barMain
			// 
			this.barMain.BarName = "主菜单";
			this.barMain.DockCol = 0;
			this.barMain.DockRow = 0;
			this.barMain.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
			this.barMain.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_System, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_Tools, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_Windows, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_Help, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
			this.barMain.OptionsBar.AllowQuickCustomization = false;
			this.barMain.OptionsBar.MultiLine = true;
			this.barMain.OptionsBar.UseWholeRow = true;
			this.barMain.Text = "主菜单";
			// 
			// barSubItem_System
			// 
			this.barSubItem_System.Caption = "系统(&S)";
			this.barSubItem_System.Id = 0;
			this.barSubItem_System.ImageIndex = 6;
			this.barSubItem_System.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										   new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_PrintSetting),
																										   new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Logout),
																										   new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Exit)});
			this.barSubItem_System.Name = "barSubItem_System";
			// 
			// barButtonItem_PrintSetting
			// 
			this.barButtonItem_PrintSetting.Caption = "打印设置";
			this.barButtonItem_PrintSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_PrintSetting.Glyph")));
			this.barButtonItem_PrintSetting.Id = 29;
			this.barButtonItem_PrintSetting.Name = "barButtonItem_PrintSetting";
			this.barButtonItem_PrintSetting.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
			// 
			// barButtonItem_Logout
			// 
			this.barButtonItem_Logout.Caption = "注销(&O)";
			this.barButtonItem_Logout.Hint = "注销";
			this.barButtonItem_Logout.Id = 10;
			this.barButtonItem_Logout.ImageIndex = 7;
			this.barButtonItem_Logout.Name = "barButtonItem_Logout";
			this.barButtonItem_Logout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Logout_ItemClick);
			// 
			// barButtonItem_Exit
			// 
			this.barButtonItem_Exit.Caption = "退出(&X)";
			this.barButtonItem_Exit.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_Exit.Glyph")));
			this.barButtonItem_Exit.Id = 2;
			this.barButtonItem_Exit.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.X));
			this.barButtonItem_Exit.Name = "barButtonItem_Exit";
			this.barButtonItem_Exit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Exit_ItemClick);
			// 
			// barSubItem_Tools
			// 
			this.barSubItem_Tools.Caption = "工具(&T)";
			this.barSubItem_Tools.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItem_Tools.Glyph")));
			this.barSubItem_Tools.Id = 7;
			this.barSubItem_Tools.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_CustomDefine),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_CarDataSynch),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Options),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1)});
			this.barSubItem_Tools.Name = "barSubItem_Tools";
			// 
			// barButtonItem_CustomDefine
			// 
			this.barButtonItem_CustomDefine.Caption = "自定义信息维护(&C)";
			this.barButtonItem_CustomDefine.Hint = "自定义信息维护";
			this.barButtonItem_CustomDefine.Id = 28;
			this.barButtonItem_CustomDefine.ImageIndex = 10;
			this.barButtonItem_CustomDefine.Name = "barButtonItem_CustomDefine";
			this.barButtonItem_CustomDefine.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_CustomDefine_ItemClick);
			// 
			// barButtonItem_CarDataSynch
			// 
			this.barButtonItem_CarDataSynch.Caption = "车载机数据同步(&Y)";
			this.barButtonItem_CarDataSynch.Hint = "车载机数据同步";
			this.barButtonItem_CarDataSynch.Id = 20;
			this.barButtonItem_CarDataSynch.ImageIndex = 11;
			this.barButtonItem_CarDataSynch.Name = "barButtonItem_CarDataSynch";
			this.barButtonItem_CarDataSynch.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
			// 
			// barButtonItem_Options
			// 
			this.barButtonItem_Options.Caption = "选项(&O)";
			this.barButtonItem_Options.Id = 21;
			this.barButtonItem_Options.ImageIndex = 15;
			this.barButtonItem_Options.Name = "barButtonItem_Options";
			this.barButtonItem_Options.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Options_ItemClick);
			// 
			// barButtonItem1
			// 
			this.barButtonItem1.Caption = "硬件配置管理(&K)";
			this.barButtonItem1.Id = 31;
			this.barButtonItem1.ImageIndex = 11;
			this.barButtonItem1.Name = "barButtonItem1";
			this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
			// 
			// barSubItem_Windows
			// 
			this.barSubItem_Windows.Caption = "窗口(&W)";
			this.barSubItem_Windows.Id = 3;
			this.barSubItem_Windows.ImageIndex = 13;
			this.barSubItem_Windows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																											new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DutyInfo),
																											new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem_Style)});
			this.barSubItem_Windows.Name = "barSubItem_Windows";
			// 
			// barButtonItem_DutyInfo
			// 
			this.barButtonItem_DutyInfo.Caption = "实时出勤信息窗口(&D)";
			this.barButtonItem_DutyInfo.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_DutyInfo.Glyph")));
			this.barButtonItem_DutyInfo.Hint = "实时晨检出勤窗口";
			this.barButtonItem_DutyInfo.Id = 11;
			this.barButtonItem_DutyInfo.ImageIndex = 8;
			this.barButtonItem_DutyInfo.Name = "barButtonItem_DutyInfo";
			this.barButtonItem_DutyInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DutyInfo_ItemClick);
			// 
			// barSubItem_Style
			// 
			this.barSubItem_Style.Caption = "窗体风格(&S)";
			this.barSubItem_Style.Id = 6;
			this.barSubItem_Style.ImageIndex = 8;
			this.barSubItem_Style.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DefaultSkin),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_WinXPSkin),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_OfficeXP),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Office2000),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Office2003)});
			this.barSubItem_Style.Name = "barSubItem_Style";
			// 
			// barButtonItem_DefaultSkin
			// 
			this.barButtonItem_DefaultSkin.Caption = "默认";
			this.barButtonItem_DefaultSkin.Id = 22;
			this.barButtonItem_DefaultSkin.Name = "barButtonItem_DefaultSkin";
			this.barButtonItem_DefaultSkin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DefaultSkin_ItemClick);
			// 
			// barButtonItem_WinXPSkin
			// 
			this.barButtonItem_WinXPSkin.Caption = "Windows XP";
			this.barButtonItem_WinXPSkin.Id = 23;
			this.barButtonItem_WinXPSkin.ImageIndex = 0;
			this.barButtonItem_WinXPSkin.Name = "barButtonItem_WinXPSkin";
			this.barButtonItem_WinXPSkin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_WinXPSkin_ItemClick);
			// 
			// barButtonItem_OfficeXP
			// 
			this.barButtonItem_OfficeXP.Caption = "Office XP";
			this.barButtonItem_OfficeXP.Id = 24;
			this.barButtonItem_OfficeXP.ImageIndex = 1;
			this.barButtonItem_OfficeXP.Name = "barButtonItem_OfficeXP";
			this.barButtonItem_OfficeXP.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_OfficeXP_ItemClick);
			// 
			// barButtonItem_Office2000
			// 
			this.barButtonItem_Office2000.Caption = "Office 2000";
			this.barButtonItem_Office2000.Id = 25;
			this.barButtonItem_Office2000.ImageIndex = 2;
			this.barButtonItem_Office2000.Name = "barButtonItem_Office2000";
			this.barButtonItem_Office2000.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Office2000_ItemClick);
			// 
			// barButtonItem_Office2003
			// 
			this.barButtonItem_Office2003.Caption = "Office 2003";
			this.barButtonItem_Office2003.Id = 26;
			this.barButtonItem_Office2003.ImageIndex = 3;
			this.barButtonItem_Office2003.Name = "barButtonItem_Office2003";
			this.barButtonItem_Office2003.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Office2003_ItemClick);
			// 
			// barSubItem_Help
			// 
			this.barSubItem_Help.Caption = "帮助(&H)";
			this.barSubItem_Help.Id = 8;
			this.barSubItem_Help.ImageIndex = 4;
			this.barSubItem_Help.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										 new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Help),
																										 new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_About)});
			this.barSubItem_Help.Name = "barSubItem_Help";
			// 
			// barButtonItem_Help
			// 
			this.barButtonItem_Help.Caption = "系统帮助(&H)";
			this.barButtonItem_Help.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_Help.Glyph")));
			this.barButtonItem_Help.Id = 12;
			this.barButtonItem_Help.Name = "barButtonItem_Help";
			this.barButtonItem_Help.ItemClick+=new ItemClickEventHandler(barButtonItem_Help_ItemClick);
			// 
			// barButtonItem_About
			// 
			this.barButtonItem_About.Caption = "关于创智智能晨检网络管理系统(&A)";
			this.barButtonItem_About.Id = 15;
			this.barButtonItem_About.ImageIndex = 9;
			this.barButtonItem_About.Name = "barButtonItem_About";
			this.barButtonItem_About.ItemClick+=new ItemClickEventHandler(barButtonItem_About_ItemClick);
			// 
			// barToolBar
			// 
			this.barToolBar.BarName = "辅助工具栏";
			this.barToolBar.DockCol = 0;
			this.barToolBar.DockRow = 1;
			this.barToolBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
			this.barToolBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_Logout, DevExpress.XtraBars.BarItemPaintStyle.Standard),
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_CustomDefine, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard),
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_CarDataSynch, DevExpress.XtraBars.BarItemPaintStyle.Standard),
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_DutyInfo, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard)});
			this.barToolBar.OptionsBar.AllowQuickCustomization = false;
			this.barToolBar.Text = "辅助工具栏";
			// 
			// barStatus
			// 
			this.barStatus.BarName = "状态栏";
			this.barStatus.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
			this.barStatus.DockCol = 0;
			this.barStatus.DockRow = 0;
			this.barStatus.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
			this.barStatus.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																								   new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem_Ready, true),
																								   new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barStaticItem_SystemInfo, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								   new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem_SystemDate),
																								   new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem_Custom)});
			this.barStatus.OptionsBar.AllowQuickCustomization = false;
			this.barStatus.OptionsBar.DrawDragBorder = false;
			this.barStatus.OptionsBar.DrawSizeGrip = true;
			this.barStatus.OptionsBar.UseWholeRow = true;
			this.barStatus.Text = "状态栏";
			// 
			// barStaticItem_Ready
			// 
			this.barStaticItem_Ready.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
			this.barStaticItem_Ready.Caption = "就绪";
			this.barStaticItem_Ready.Id = 27;
			this.barStaticItem_Ready.Name = "barStaticItem_Ready";
			this.barStaticItem_Ready.TextAlignment = System.Drawing.StringAlignment.Near;
			this.barStaticItem_Ready.Width = 150;
			// 
			// barStaticItem_SystemInfo
			// 
			this.barStaticItem_SystemInfo.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
			this.barStaticItem_SystemInfo.Caption = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.barStaticItem_SystemInfo.Id = 16;
			this.barStaticItem_SystemInfo.Name = "barStaticItem_SystemInfo";
			this.barStaticItem_SystemInfo.TextAlignment = System.Drawing.StringAlignment.Near;
			this.barStaticItem_SystemInfo.Width = 300;
			// 
			// barStaticItem_SystemDate
			// 
			this.barStaticItem_SystemDate.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
			this.barStaticItem_SystemDate.Id = 18;
			this.barStaticItem_SystemDate.Name = "barStaticItem_SystemDate";
			this.barStaticItem_SystemDate.TextAlignment = System.Drawing.StringAlignment.Center;
			this.barStaticItem_SystemDate.Width = 200;
			// 
			// barStaticItem_Custom
			// 
			this.barStaticItem_Custom.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Spring;
			this.barStaticItem_Custom.Id = 19;
			this.barStaticItem_Custom.Name = "barStaticItem_Custom";
			this.barStaticItem_Custom.TextAlignment = System.Drawing.StringAlignment.Near;
			this.barStaticItem_Custom.Width = 32;
			// 
			// barDockControlTop
			// 
			this.barDockControlTop.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.barDockControlTop.Appearance.BackColor2 = System.Drawing.Color.DarkGray;
			this.barDockControlTop.Appearance.Options.UseBackColor = true;
			// 
			// dockManager_CurrentStuCheckInfo
			// 
			this.dockManager_CurrentStuCheckInfo.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
																																	 this.hideContainerRight});
			this.dockManager_CurrentStuCheckInfo.Form = this;
			this.dockManager_CurrentStuCheckInfo.TopZIndexControls.AddRange(new string[] {
																							 "DevExpress.XtraBars.BarDockControl",
																							 "System.Windows.Forms.StatusBar"});
			// 
			// hideContainerRight
			// 
			this.hideContainerRight.Controls.Add(this.currentStuCheckInfo);
			this.hideContainerRight.Dock = System.Windows.Forms.DockStyle.Right;
			this.hideContainerRight.Location = new System.Drawing.Point(932, 52);
			this.hideContainerRight.Name = "hideContainerRight";
			this.hideContainerRight.Size = new System.Drawing.Size(20, 559);
			//
			//realTimeWindows
			//
			this.realTimeWindows.Location = new System.Drawing.Point(200,40);
			this.realTimeWindows.Name = "realTimeWindows";
			this.realTimeWindows.Size = new System.Drawing.Size(40,40);
			this.realTimeWindows.TabIndex = 4;
			this.realTimeWindows.Visible = true;
			// 
			// currentStuCheckInfo
			// 
			this.currentStuCheckInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.currentStuCheckInfo.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(1)), true);
			this.currentStuCheckInfo.Appearance.Options.UseBackColor = true;
			this.currentStuCheckInfo.Appearance.Options.UseFont = true;
			this.currentStuCheckInfo.BackColor = System.Drawing.Color.WhiteSmoke;
			this.currentStuCheckInfo.Controls.Add(this.dockPanel1_Container);
			this.currentStuCheckInfo.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
			this.currentStuCheckInfo.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Strikeout, System.Drawing.GraphicsUnit.Point, ((System.Byte)(1)), true);
			this.currentStuCheckInfo.ID = new System.Guid("51b4d356-ef66-4435-8cec-78ddcc6c1c48");
			this.currentStuCheckInfo.Location = new System.Drawing.Point(0, 0);
			this.currentStuCheckInfo.Name = "currentStuCheckInfo";
			this.currentStuCheckInfo.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
			this.currentStuCheckInfo.SavedIndex = 0;
			this.currentStuCheckInfo.Size = new System.Drawing.Size(200, 566);
			this.currentStuCheckInfo.Text = "实时出勤信息  ";
			this.currentStuCheckInfo.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
			this.currentStuCheckInfo.Controls.Add(realTimeWindows);
			this.realTimeWindows.Dock = DockStyle.Fill;
			// 
			// dockPanel1_Container
			// 
			this.dockPanel1_Container.Location = new System.Drawing.Point(4, 22);
			this.dockPanel1_Container.Name = "dockPanel1_Container";
			this.dockPanel1_Container.Size = new System.Drawing.Size(192, 540);
			this.dockPanel1_Container.TabIndex = 0;
			// 
			// imageList_ToolBarIcon
			// 
			this.imageList_ToolBarIcon.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList_ToolBarIcon.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_ToolBarIcon.ImageStream")));
			this.imageList_ToolBarIcon.TransparentColor = System.Drawing.Color.Empty;
			// 
			// pictureBox_Border
			// 
			this.pictureBox_Border.Dock = System.Windows.Forms.DockStyle.Left;
			this.pictureBox_Border.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_Border.Image")));
			this.pictureBox_Border.Location = new System.Drawing.Point(0, 52);
			this.pictureBox_Border.Name = "pictureBox_Border";
			this.pictureBox_Border.Size = new System.Drawing.Size(32, 559);
			this.pictureBox_Border.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
			this.pictureBox_Border.TabIndex = 5;
			this.pictureBox_Border.TabStop = false;
			// 
			// navBarControl_Main
			// 
			this.navBarControl_Main.ActiveGroup = this.navBarGroup_GardenInfo;
			this.navBarControl_Main.AllowDrop = true;
			this.navBarControl_Main.Appearance.GroupHeaderActive.Options.UseTextOptions = true;
			this.navBarControl_Main.Appearance.GroupHeaderActive.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarControl_Main.Appearance.Item.Options.UseTextOptions = true;
			this.navBarControl_Main.Appearance.Item.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarControl_Main.Appearance.ItemActive.Options.UseTextOptions = true;
			this.navBarControl_Main.Appearance.ItemActive.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarControl_Main.BackColor = System.Drawing.Color.WhiteSmoke;
			this.navBarControl_Main.Dock = System.Windows.Forms.DockStyle.Left;
			this.navBarControl_Main.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
																								this.navBarGroup_GardenInfo,
																								this.navBarGroup_TeacherInfo,
																								this.navBarGroup_StudentInfo,
																								this.navBarGroup_GardenAffair});
			this.navBarControl_Main.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
																							  this.navBarItem_GardenInfo,
																							  this.navBarItem_TeaBaseInfo,
																							  this.navBarItem_StuBaseInfo,
																							  this.navBarItem_TeaDutyInfo,
																							  this.navBarItem_StuDutyInfo,
																							  this.navBarItem_StuHealth,
																							  this.navBarItem_SMSInfo,
																							  this.navBarItem_AffairNotify,
																							  this.navBarItem_Finance,
																							  this.navBarItem_CardManagement,
																							  this.navBarItem_RealTimeInfo,
																							  this.navBarItem_StuVisit,
																							  this.navBarItem_RealtimeInfo_Teacher,
                                                                                              this.navBarItem_Camera});
			this.navBarControl_Main.Location = new System.Drawing.Point(32, 52);
			this.navBarControl_Main.Name = "navBarControl_Main";
			this.navBarControl_Main.Size = new System.Drawing.Size(168, 559);
			this.navBarControl_Main.TabIndex = 6;
			this.navBarControl_Main.Text = "主导航栏";
			this.navBarControl_Main.HotTrackedLinkChanged += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarControl_Main_HotTrackedLinkChanged);
			this.navBarControl_Main.MouseLeave += new System.EventHandler(this.navBarControl_Main_MouseLeave);
			// 
			// navBarGroup_GardenInfo
			// 
			this.navBarGroup_GardenInfo.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_GardenInfo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenInfo.AppearanceHotTracked.Options.UseTextOptions = true;
			this.navBarGroup_GardenInfo.AppearanceHotTracked.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenInfo.AppearancePressed.Options.UseTextOptions = true;
			this.navBarGroup_GardenInfo.AppearancePressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenInfo.Caption = "园所信息管理";
			this.navBarGroup_GardenInfo.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_GardenInfo.Expanded = true;
			this.navBarGroup_GardenInfo.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_GardenInfo.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																										  new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_GardenInfo)});
//			this.navBarGroup_GardenInfo.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_GardenInfo.LargeImage")));
			this.navBarGroup_GardenInfo.Name = "navBarGroup_GardenInfo";
			// 
			// navBarItem_GardenInfo
			// 
			this.navBarItem_GardenInfo.Caption = "基本信息管理";
			this.navBarItem_GardenInfo.Name = "navBarItem_GardenInfo";
//			this.navBarItem_GardenInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_GardenInfo.SmallImage")));
			this.navBarItem_GardenInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_GardenInfo_LinkClicked);
			// 
			// navBarGroup_TeacherInfo
			// 
			this.navBarGroup_TeacherInfo.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_TeacherInfo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_TeacherInfo.Caption = "教师信息管理";
			this.navBarGroup_TeacherInfo.Expanded = true;
			this.navBarGroup_TeacherInfo.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_TeacherInfo.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_TeacherInfo.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_TeaBaseInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_RealtimeInfo_Teacher),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_TeaDutyInfo)});
//			this.navBarGroup_TeacherInfo.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_TeacherInfo.LargeImage")));
			this.navBarGroup_TeacherInfo.Name = "navBarGroup_TeacherInfo";
			// 
			// navBarItem_TeaBaseInfo
			// 
			this.navBarItem_TeaBaseInfo.Caption = "基本信息管理";
			this.navBarItem_TeaBaseInfo.Name = "navBarItem_TeaBaseInfo";
//			this.navBarItem_TeaBaseInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_TeaBaseInfo.SmallImage")));
			this.navBarItem_TeaBaseInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_TeaBaseInfo_LinkClicked);
			// 
			// navBarItem_TeaDutyInfo
			// 
			this.navBarItem_TeaDutyInfo.Caption = "出勤信息管理";
			this.navBarItem_TeaDutyInfo.Name = "navBarItem_TeaDutyInfo";
//			this.navBarItem_TeaDutyInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_TeaDutyInfo.SmallImage")));
			this.navBarItem_TeaDutyInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_TeaDutyInfo_LinkClicked);
			// 
			// navBarGroup_StudentInfo
			// 
			this.navBarGroup_StudentInfo.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_StudentInfo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_StudentInfo.Caption = "学生信息管理";
			this.navBarGroup_StudentInfo.Expanded = true;
			this.navBarGroup_StudentInfo.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_StudentInfo.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_StudentInfo.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuBaseInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuDutyInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_RealTimeInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuHealth),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuVisit)});
//			this.navBarGroup_StudentInfo.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_StudentInfo.LargeImage")));
			this.navBarGroup_StudentInfo.Name = "navBarGroup_StudentInfo";
			// 
			// navBarItem_StuBaseInfo
			// 
			this.navBarItem_StuBaseInfo.Caption = "基本信息管理";
			this.navBarItem_StuBaseInfo.Name = "navBarItem_StuBaseInfo";
//			this.navBarItem_StuBaseInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_StuBaseInfo.SmallImage")));
			this.navBarItem_StuBaseInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuBaseInfo_LinkClicked);
			// 
			// navBarItem_StuDutyInfo
			// 
			this.navBarItem_StuDutyInfo.Caption = "出勤信息管理";
			this.navBarItem_StuDutyInfo.Name = "navBarItem_StuDutyInfo";
//			this.navBarItem_StuDutyInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_StuDutyInfo.SmallImage")));
			this.navBarItem_StuDutyInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuDutyInfo_LinkClicked);
			// 
			// navBarItem_RealTimeInfo
			// 
			this.navBarItem_RealTimeInfo.Caption = "实时统计信息";
			this.navBarItem_RealTimeInfo.Name = "navBarItem_RealTimeInfo";
//			this.navBarItem_RealTimeInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_RealTimeInfo.SmallImage")));
			this.navBarItem_RealTimeInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_RealTimeInfo_LinkClicked);
			// 
			// navBarItem_StuHealth
			// 
			this.navBarItem_StuHealth.Caption = "健康保健管理";
			this.navBarItem_StuHealth.Name = "navBarItem_StuHealth";
//			this.navBarItem_StuHealth.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_StuHealth.SmallImage")));
			this.navBarItem_StuHealth.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuHealth_LinkClicked);
			// 
			// navBarItem_StuVisit
			// 
			this.navBarItem_StuVisit.Caption = "家访信息管理";
			this.navBarItem_StuVisit.Name = "navBarItem_StuVisit";
			this.navBarItem_StuVisit.Visible = false;
			this.navBarItem_StuVisit.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuVisit_LinkClicked);
			// 
			// navBarGroup_GardenAffair
			// 
			this.navBarGroup_GardenAffair.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_GardenAffair.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenAffair.Caption = "园务辅助功能";
			this.navBarGroup_GardenAffair.Expanded = true;
			this.navBarGroup_GardenAffair.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_GardenAffair.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_GardenAffair.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_CardManagement),
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Finance),
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_SMSInfo),
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_AffairNotify),
                                                                                                            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Camera)});
//			this.navBarGroup_GardenAffair.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_GardenAffair.LargeImage")));
			this.navBarGroup_GardenAffair.Name = "navBarGroup_GardenAffair";
			// 
			// navBarItem_CardManagement
			// 
			this.navBarItem_CardManagement.Caption = "晨检卡管理";
			this.navBarItem_CardManagement.Name = "navBarItem_CardManagement";
//			this.navBarItem_CardManagement.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_CardManagement.SmallImage")));
			this.navBarItem_CardManagement.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_CardManagement_LinkClicked);
			// 
			// navBarItem_Finance
			// 
			this.navBarItem_Finance.Caption = "财务功能";
			this.navBarItem_Finance.Name = "navBarItem_Finance";
//			this.navBarItem_Finance.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_Finance.SmallImage")));
			this.navBarItem_Finance.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Finance_LinkClicked);
			// 
			// navBarItem_SMSInfo
			// 
			this.navBarItem_SMSInfo.Caption = "短信功能";
			this.navBarItem_SMSInfo.Name = "navBarItem_SMSInfo";
//			this.navBarItem_SMSInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_SMSInfo.SmallImage")));
			this.navBarItem_SMSInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_SMSInfo_LinkClicked);
			// 
			// navBarItem_AffairNotify
			// 
			this.navBarItem_AffairNotify.Caption = "事务提醒功能";
			this.navBarItem_AffairNotify.Name = "navBarItem_AffairNotify";
//			this.navBarItem_AffairNotify.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_AffairNotify.SmallImage")));
			this.navBarItem_AffairNotify.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_AffairNotify_LinkClicked);
            // 
            // navBarItem_Camera
            // 
            this.navBarItem_Camera.Caption = "摄像监控";
            this.navBarItem_Camera.Name = "navBarItem_Camera";
            //			this.navBarItem_AffairNotify.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_AffairNotify.SmallImage")));
            this.navBarItem_Camera.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Camera_LinkClicked);

			// 
			// splitterControlMain
			// 
			this.splitterControlMain.Location = new System.Drawing.Point(200, 52);
			this.splitterControlMain.Name = "splitterControlMain";
			this.splitterControlMain.Size = new System.Drawing.Size(4, 559);
			this.splitterControlMain.TabIndex = 8;
			this.splitterControlMain.TabStop = false;
			// 
			// paneCaption_Title
			// 
			this.paneCaption_Title.AllowActive = false;
			this.paneCaption_Title.AntiAlias = false;
			this.paneCaption_Title.Caption = "客服电话:021-58455584  021-50879915 公司网址:www.shchuangzhi.com";
			this.paneCaption_Title.Dock = System.Windows.Forms.DockStyle.Top;
			this.paneCaption_Title.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
			this.paneCaption_Title.InactiveGradientHighColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.paneCaption_Title.InactiveGradientLowColor = System.Drawing.Color.DarkGray;
			this.paneCaption_Title.Location = new System.Drawing.Point(204, 52);
			this.paneCaption_Title.Name = "paneCaption_Title";
			this.paneCaption_Title.Size = new System.Drawing.Size(728, 28);
			this.paneCaption_Title.TabIndex = 9;
			// 
			// pictureBox_BackLogo
			// 
			this.pictureBox_BackLogo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox_BackLogo.BackgroundImage")));
			this.pictureBox_BackLogo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pictureBox_BackLogo.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_BackLogo.Image")));
			this.pictureBox_BackLogo.Location = new System.Drawing.Point(204, 80);
			this.pictureBox_BackLogo.Name = "pictureBox_BackLogo";
			this.pictureBox_BackLogo.Size = new System.Drawing.Size(728, 531);
			this.pictureBox_BackLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
			this.pictureBox_BackLogo.TabIndex = 17;
			this.pictureBox_BackLogo.TabStop = false;
			// 
			// panelControl_Center
			// 
//			this.panelControl_Center.Controls.Add(this.gardenInfo1);
//			this.panelControl_Center.Controls.Add(this.smsInfo1);
//			this.panelControl_Center.Controls.Add(this.teacherOnDutyInfo1);
//			this.panelControl_Center.Controls.Add(this.realtimeInfo_Teacher1);
//			this.panelControl_Center.Controls.Add(this.nutritionManagement1);
//			this.panelControl_Center.Controls.Add(this.finanManagement1);
//			this.panelControl_Center.Controls.Add(this.studentVisitInfo1);
//			this.panelControl_Center.Controls.Add(this.realtimeInfo1);
//			this.panelControl_Center.Controls.Add(this.teacherBaseInfo1);
//			this.panelControl_Center.Controls.Add(this.studentBaseInfo1);
//			this.panelControl_Center.Controls.Add(this.studentMorningCheckInfo1);
//			this.panelControl_Center.Controls.Add(this.cardManagement2);
//			this.panelControl_Center.Controls.Add(this.transactionReminding1);
			this.panelControl_Center.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl_Center.Location = new System.Drawing.Point(204, 80);
			this.panelControl_Center.Name = "panelControl_Center";
			this.panelControl_Center.Size = new System.Drawing.Size(728, 531);
			this.panelControl_Center.TabIndex = 25;
			this.panelControl_Center.Text = "panelControlCenter";
			this.panelControl_Center.Visible = false;
			//
			//gardenInfo1
			//
//			this.gardenInfo1.Location = new System.Drawing.Point(40,40);
//			this.gardenInfo1.Name = "gardenInfo1";
//			this.gardenInfo1.Size = new System.Drawing.Size(40,40);
//			this.gardenInfo1.TabIndex = 4;
//			this.gardenInfo1.Visible = false;
			//
			//teacherOnDutyInfo1
			//
//			this.teacherOnDutyInfo1.Location = new System.Drawing.Point(30,30);
//			this.teacherOnDutyInfo1.Name = "teacherOnDutyInfo1";
//			this.teacherOnDutyInfo1.Size = new System.Drawing.Size(30,30);
//			this.teacherOnDutyInfo1.TabIndex = 3;
//			this.teacherOnDutyInfo1.Visible = false;
			//
			//smsInfo1
			//
//			this.smsInfo1.Location = new System.Drawing.Point(50,50);
//			this.smsInfo1.Name = "smsInfo1";
//			this.smsInfo1.Size = new System.Drawing.Size(50,50);
//			this.smsInfo1.TabIndex = 6;
//			this.smsInfo1.Visible = false;
//			//
//			//realtimeInfo_Teacher1
//			//
//			this.realtimeInfo_Teacher1.Location = new System.Drawing.Point(60,60);
//			this.realtimeInfo_Teacher1.Name = "realtimeInfo_Teacher1";
//			this.realtimeInfo_Teacher1.Size = new System.Drawing.Size(60,60);
//			this.realtimeInfo_Teacher1.TabIndex = 12;
//			this.realtimeInfo_Teacher1.Visible = false;
//			//
//			// nutritionManagement1
//			// 
//			this.nutritionManagement1.Location = new System.Drawing.Point(232, 336);
//			this.nutritionManagement1.Name = "nutritionManagement1";
//			this.nutritionManagement1.Size = new System.Drawing.Size(144, 128);
//			this.nutritionManagement1.TabIndex = 10;
//			this.nutritionManagement1.Visible = false;
//			// 
//			// finanManagement1
//			// 
//			this.finanManagement1.Location = new System.Drawing.Point(264, 152);
//			this.finanManagement1.Name = "finanManagement1";
//			this.finanManagement1.Size = new System.Drawing.Size(88, 56);
//			this.finanManagement1.TabIndex = 9;
//			this.finanManagement1.Visible = false;
//			// 
//			// studentVisitInfo1
//			// 
//			this.studentVisitInfo1.Location = new System.Drawing.Point(48, 160);
//			this.studentVisitInfo1.Name = "studentVisitInfo1";
//			this.studentVisitInfo1.Size = new System.Drawing.Size(136, 120);
//			this.studentVisitInfo1.TabIndex = 8;
//			// 
//			// realtimeInfo1
//			// 
//			this.realtimeInfo1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.realtimeInfo1.Appearance.Options.UseBackColor = true;
//			this.realtimeInfo1.Location = new System.Drawing.Point(96, 88);
//			this.realtimeInfo1.Name = "realtimeInfo1";
//			this.realtimeInfo1.Size = new System.Drawing.Size(120, 48);
//			this.realtimeInfo1.TabIndex = 7;
//			this.realtimeInfo1.Visible = false;
//			// 
//			// teacherBaseInfo1
//			// 
//			this.teacherBaseInfo1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.teacherBaseInfo1.Appearance.Options.UseBackColor = true;
//			this.teacherBaseInfo1.Location = new System.Drawing.Point(216, 32);
//			this.teacherBaseInfo1.Name = "teacherBaseInfo1";
//			this.teacherBaseInfo1.Size = new System.Drawing.Size(136, 112);
//			this.teacherBaseInfo1.TabIndex = 1;
//			this.teacherBaseInfo1.Visible = false;
//			// 
//			// studentBaseInfo1
//			// 
//			this.studentBaseInfo1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.studentBaseInfo1.Appearance.Options.UseBackColor = true;
//			this.studentBaseInfo1.Location = new System.Drawing.Point(384, 32);
//			this.studentBaseInfo1.Name = "studentBaseInfo1";
//			this.studentBaseInfo1.Size = new System.Drawing.Size(136, 112);
//			this.studentBaseInfo1.TabIndex = 2;
//			this.studentBaseInfo1.Visible = false;
//			// 
//			// studentMorningCheckInfo1
//			// 
//			this.studentMorningCheckInfo1.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.studentMorningCheckInfo1.Location = new System.Drawing.Point(48, 32);
//			this.studentMorningCheckInfo1.Name = "studentMorningCheckInfo1";
//			this.studentMorningCheckInfo1.Size = new System.Drawing.Size(136, 112);
//			this.studentMorningCheckInfo1.TabIndex = 0;
//			this.studentMorningCheckInfo1.Visible = false;
//			// 
//			// cardManagement2
//			// 
//			this.cardManagement2.Location = new System.Drawing.Point(384, 184);
//			this.cardManagement2.Name = "cardManagement2";
//			this.cardManagement2.Size = new System.Drawing.Size(136, 112);
//			this.cardManagement2.TabIndex = 5;
//			this.cardManagement2.Visible = false;
//			// 
//			// transactionReminding1
//			// 
//			this.transactionReminding1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.transactionReminding1.Appearance.Options.UseBackColor = true;
//			this.transactionReminding1.Location = new System.Drawing.Point(96, 88);
//			this.transactionReminding1.Name = "transactionReminding1";
//			this.transactionReminding1.Size = new System.Drawing.Size(120, 250);
//			this.transactionReminding1.TabIndex = 11;
//			this.transactionReminding1.Visible = false;
			// 
			// notifyIcon_MainForm
			// 
			this.notifyIcon_MainForm.ContextMenu = this.contextMenu_NotifyIcon;
			this.notifyIcon_MainForm.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon_MainForm.Icon")));
			this.notifyIcon_MainForm.Text = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.notifyIcon_MainForm.DoubleClick += new System.EventHandler(this.notifyIcon_MainForm_DoubleClick);
			// 
			// contextMenu_NotifyIcon
			// 
			this.contextMenu_NotifyIcon.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																								   this.menuItem_ShowMainForm,
																								   this.menuItem_Exit});
			// 
			// menuItem_ShowMainForm
			// 
			this.menuItem_ShowMainForm.Index = 0;
			this.menuItem_ShowMainForm.Text = "显示主窗体";
			this.menuItem_ShowMainForm.Click += new System.EventHandler(this.menuItem1_Click);
			// 
			// menuItem_Exit
			// 
			this.menuItem_Exit.Index = 1;
			this.menuItem_Exit.Text = "退出";
			this.menuItem_Exit.Click += new System.EventHandler(this.menuItem_Exit_Click);
			// 
			// navBarItem_RealtimeInfo_Teacher
			// 
			this.navBarItem_RealtimeInfo_Teacher.Caption = "实时统计信息";
			this.navBarItem_RealtimeInfo_Teacher.Name = "navBarItem_RealtimeInfo_Teacher";
			this.navBarItem_RealtimeInfo_Teacher.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_RealtimeInfo_Teacher_LinkClicked);
			// 
			// timerSynSession
			// 
			this.timerSynSession.Enabled = true;
			this.timerSynSession.Interval = 5000;
			this.timerSynSession.SynchronizingObject = this;
			this.timerSynSession.Elapsed += new System.Timers.ElapsedEventHandler(this.timerSynSession_Elapsed);
			// 
			// MainForm
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
			this.ClientSize = new System.Drawing.Size(952, 629);
			this.Controls.Add(this.panelControl_Center);
			this.Controls.Add(this.pictureBox_BackLogo);
			this.Controls.Add(this.paneCaption_Title);
			this.Controls.Add(this.splitterControlMain);
			this.Controls.Add(this.navBarControl_Main);
			this.Controls.Add(this.pictureBox_Border);
			this.Controls.Add(this.hideContainerRight);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.Text = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon_MainForm.Icon")));
			this.Resize += new System.EventHandler(this.MainForm_Resize);
			this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
			this.Load += new System.EventHandler(this.MainForm_Load);
			((System.ComponentModel.ISupportInitialize)(this.timerSynSession)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager_Main)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dockManager_CurrentStuCheckInfo)).EndInit();
			this.hideContainerRight.ResumeLayout(false);
			this.currentStuCheckInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.navBarControl_Main)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Center)).EndInit();
			this.panelControl_Center.ResumeLayout(false);
			this.ResumeLayout(false);

		}
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomDesignForm));
     this.xrDesignBarManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignBarManager();
     this.designBar1 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem31 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem39 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem32 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem33 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem40 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem41 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem37 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem38 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem34 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem35 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem36 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem42 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem43 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barReportTabButtonsListItem1 = new DevExpress.XtraReports.UserDesigner.BarReportTabButtonsListItem();
     this.barSubItem4 = new DevExpress.XtraBars.BarSubItem();
     this.xrBarToolbarsListItem1 = new DevExpress.XtraReports.UserDesigner.XRBarToolbarsListItem();
     this.barSubItem5 = new DevExpress.XtraBars.BarSubItem();
     this.barDockPanelsListItem1 = new DevExpress.XtraReports.UserDesigner.BarDockPanelsListItem();
     this.barSubItem6 = new DevExpress.XtraBars.BarSubItem();
     this.commandColorBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
     this.commandColorBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
     this.barSubItem7 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem3 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem8 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem4 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem5 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem6 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem7 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem9 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem9 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem10 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem11 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem12 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem13 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem14 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem8 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem10 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem15 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem16 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem17 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem18 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem11 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem19 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem20 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem21 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem22 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem12 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem23 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem24 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem25 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem26 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem13 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem27 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem28 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem14 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem29 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem30 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.bsiLookAndFeel = new DevExpress.XtraBars.BarSubItem();
     this.designBar2 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.designBar3 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.ricbFontName = new DevExpress.XtraReports.UserDesigner.RecentlyUsedItemsComboBox();
     this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
     this.ricbFontSize = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.designBar4 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.designBar5 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.designBar6 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.commandBarItem44 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.xrZoomBarEditItem1 = new DevExpress.XtraReports.UserDesigner.XRZoomBarEditItem();
     this.designRepositoryItemComboBox1 = new DevExpress.XtraReports.UserDesigner.DesignRepositoryItemComboBox();
     this.commandBarItem45 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     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.xrDesignDockManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignDockManager();
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.panelContainer2 = new DevExpress.XtraBars.Docking.DockPanel();
     this.reportExplorerDockPanel1 = new DevExpress.XtraReports.UserDesigner.ReportExplorerDockPanel();
     this.reportExplorerDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     this.fieldListDockPanel1 = new DevExpress.XtraReports.UserDesigner.FieldListDockPanel();
     this.fieldListDockPanel1_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.groupAndSortDockPanel1 = new DevExpress.XtraReports.UserDesigner.GroupAndSortDockPanel();
     this.groupAndSortDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignBarManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).BeginInit();
     this.panelContainer1.SuspendLayout();
     this.panelContainer2.SuspendLayout();
     this.reportExplorerDockPanel1.SuspendLayout();
     this.fieldListDockPanel1.SuspendLayout();
     this.propertyGridDockPanel1.SuspendLayout();
     this.toolBoxDockPanel1.SuspendLayout();
     this.groupAndSortDockPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // xrDesignPanel
     //
     this.xrDesignPanel.Location = new System.Drawing.Point(165, 78);
     this.xrDesignPanel.ShowComponentTray = false;
     this.xrDesignPanel.Size = new System.Drawing.Size(417, 311);
     //
     // xrDesignBarManager1
     //
     this.xrDesignBarManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.designBar1,
     this.designBar2,
     this.designBar3,
     this.designBar4,
     this.designBar5,
     this.designBar6});
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlTop);
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlBottom);
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlLeft);
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlRight);
     this.xrDesignBarManager1.DockManager = this.xrDesignDockManager1;
     this.xrDesignBarManager1.FontNameBox = this.ricbFontName;
     this.xrDesignBarManager1.FontNameEdit = this.barEditItem1;
     this.xrDesignBarManager1.FontSizeBox = this.ricbFontSize;
     this.xrDesignBarManager1.FontSizeEdit = this.barEditItem2;
     this.xrDesignBarManager1.Form = this;
     this.xrDesignBarManager1.FormattingToolbar = this.designBar3;
     this.xrDesignBarManager1.HintStaticItem = this.barStaticItem1;
     this.xrDesignBarManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignBarManager1.ImageStream")));
     this.xrDesignBarManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barEditItem1,
     this.barEditItem2,
     this.commandBarItem1,
     this.commandBarItem2,
     this.commandBarItem3,
     this.commandColorBarItem1,
     this.commandColorBarItem2,
     this.commandBarItem4,
     this.commandBarItem5,
     this.commandBarItem6,
     this.commandBarItem7,
     this.commandBarItem8,
     this.commandBarItem9,
     this.commandBarItem10,
     this.commandBarItem11,
     this.commandBarItem12,
     this.commandBarItem13,
     this.commandBarItem14,
     this.commandBarItem15,
     this.commandBarItem16,
     this.commandBarItem17,
     this.commandBarItem18,
     this.commandBarItem19,
     this.commandBarItem20,
     this.commandBarItem21,
     this.commandBarItem22,
     this.commandBarItem23,
     this.commandBarItem24,
     this.commandBarItem25,
     this.commandBarItem26,
     this.commandBarItem27,
     this.commandBarItem28,
     this.commandBarItem29,
     this.commandBarItem30,
     this.commandBarItem31,
     this.commandBarItem32,
     this.commandBarItem33,
     this.commandBarItem34,
     this.commandBarItem35,
     this.commandBarItem36,
     this.commandBarItem37,
     this.commandBarItem38,
     this.barStaticItem1,
     this.barSubItem1,
     this.barSubItem2,
     this.barSubItem3,
     this.barReportTabButtonsListItem1,
     this.barSubItem4,
     this.xrBarToolbarsListItem1,
     this.barSubItem5,
     this.barDockPanelsListItem1,
     this.barSubItem6,
     this.barSubItem7,
     this.barSubItem8,
     this.barSubItem9,
     this.barSubItem10,
     this.barSubItem11,
     this.barSubItem12,
     this.barSubItem13,
     this.barSubItem14,
     this.commandBarItem39,
     this.commandBarItem40,
     this.commandBarItem41,
     this.commandBarItem42,
     this.commandBarItem43,
     this.bsiLookAndFeel,
     this.commandBarItem44,
     this.xrZoomBarEditItem1,
     this.commandBarItem45});
     this.xrDesignBarManager1.LayoutToolbar = this.designBar4;
     this.xrDesignBarManager1.MainMenu = this.designBar1;
     this.xrDesignBarManager1.MaxItemId = 69;
     this.xrDesignBarManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ricbFontName,
     this.ricbFontSize,
     this.designRepositoryItemComboBox1});
     this.xrDesignBarManager1.StatusBar = this.designBar5;
     this.xrDesignBarManager1.Toolbar = this.designBar2;
     this.xrDesignBarManager1.XRDesignPanel = this.xrDesignPanel;
     this.xrDesignBarManager1.ZoomItem = this.xrZoomBarEditItem1;
     //
     // designBar1
     //
     this.designBar1.BarName = "MainMenu";
     this.designBar1.DockCol = 0;
     this.designBar1.DockRow = 0;
     this.designBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.bsiLookAndFeel)});
     this.designBar1.OptionsBar.MultiLine = true;
     this.designBar1.OptionsBar.UseWholeRow = true;
     this.designBar1.Text = "Main Menu";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&File";
     this.barSubItem1.Id = 43;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem31),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem39),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem32),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem33, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem40),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem41, true)});
     this.barSubItem1.Name = "barSubItem1";
     //
     // commandBarItem31
     //
     this.commandBarItem31.Caption = "&New";
     this.commandBarItem31.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReport;
     this.commandBarItem31.Hint = "Create a new blank report";
     this.commandBarItem31.Id = 34;
     this.commandBarItem31.ImageIndex = 9;
     this.commandBarItem31.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
     this.commandBarItem31.Name = "commandBarItem31";
     //
     // commandBarItem39
     //
     this.commandBarItem39.Caption = "New with &Wizard...";
     this.commandBarItem39.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReportWizard;
     this.commandBarItem39.Hint = "Create a new report using the Wizard";
     this.commandBarItem39.Id = 60;
     this.commandBarItem39.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W));
     this.commandBarItem39.Name = "commandBarItem39";
     //
     // commandBarItem32
     //
     this.commandBarItem32.Caption = "&Open...";
     this.commandBarItem32.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.OpenFile;
     this.commandBarItem32.Hint = "Open a report";
     this.commandBarItem32.Id = 35;
     this.commandBarItem32.ImageIndex = 10;
     this.commandBarItem32.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
     this.commandBarItem32.Name = "commandBarItem32";
     //
     // commandBarItem33
     //
     this.commandBarItem33.Caption = "&Save";
     this.commandBarItem33.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFile;
     this.commandBarItem33.Enabled = false;
     this.commandBarItem33.Hint = "Save a report";
     this.commandBarItem33.Id = 36;
     this.commandBarItem33.ImageIndex = 11;
     this.commandBarItem33.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
     this.commandBarItem33.Name = "commandBarItem33";
     //
     // commandBarItem40
     //
     this.commandBarItem40.Caption = "Save &As...";
     this.commandBarItem40.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFileAs;
     this.commandBarItem40.Enabled = false;
     this.commandBarItem40.Hint = "Save a report with a new name";
     this.commandBarItem40.Id = 61;
     this.commandBarItem40.Name = "commandBarItem40";
     //
     // commandBarItem41
     //
     this.commandBarItem41.Caption = "Back to the Reports Main Demo";
     this.commandBarItem41.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Exit;
     this.commandBarItem41.Hint = "Close the designer";
     this.commandBarItem41.Id = 62;
     this.commandBarItem41.Name = "commandBarItem41";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "&Edit";
     this.barSubItem2.Id = 44;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem37, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem38),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem34, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem35),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem36),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem42),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem43, true)});
     this.barSubItem2.Name = "barSubItem2";
     //
     // commandBarItem37
     //
     this.commandBarItem37.Caption = "&Undo";
     this.commandBarItem37.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Undo;
     this.commandBarItem37.Enabled = false;
     this.commandBarItem37.Hint = "Undo the last operation";
     this.commandBarItem37.Id = 40;
     this.commandBarItem37.ImageIndex = 15;
     this.commandBarItem37.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z));
     this.commandBarItem37.Name = "commandBarItem37";
     //
     // commandBarItem38
     //
     this.commandBarItem38.Caption = "&Redo";
     this.commandBarItem38.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Redo;
     this.commandBarItem38.Enabled = false;
     this.commandBarItem38.Hint = "Redo the last operation";
     this.commandBarItem38.Id = 41;
     this.commandBarItem38.ImageIndex = 16;
     this.commandBarItem38.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y));
     this.commandBarItem38.Name = "commandBarItem38";
     //
     // commandBarItem34
     //
     this.commandBarItem34.Caption = "Cu&t";
     this.commandBarItem34.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Cut;
     this.commandBarItem34.Enabled = false;
     this.commandBarItem34.Hint = "Delete the control and copy it to the clipboard";
     this.commandBarItem34.Id = 37;
     this.commandBarItem34.ImageIndex = 12;
     this.commandBarItem34.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X));
     this.commandBarItem34.Name = "commandBarItem34";
     //
     // commandBarItem35
     //
     this.commandBarItem35.Caption = "&Copy";
     this.commandBarItem35.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Copy;
     this.commandBarItem35.Enabled = false;
     this.commandBarItem35.Hint = "Copy the control to the clipboard";
     this.commandBarItem35.Id = 38;
     this.commandBarItem35.ImageIndex = 13;
     this.commandBarItem35.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C));
     this.commandBarItem35.Name = "commandBarItem35";
     //
     // commandBarItem36
     //
     this.commandBarItem36.Caption = "&Paste";
     this.commandBarItem36.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Paste;
     this.commandBarItem36.Enabled = false;
     this.commandBarItem36.Hint = "Add the control from the clipboard";
     this.commandBarItem36.Id = 39;
     this.commandBarItem36.ImageIndex = 14;
     this.commandBarItem36.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V));
     this.commandBarItem36.Name = "commandBarItem36";
     //
     // commandBarItem42
     //
     this.commandBarItem42.Caption = "&Delete";
     this.commandBarItem42.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Delete;
     this.commandBarItem42.Enabled = false;
     this.commandBarItem42.Hint = "Delete the control";
     this.commandBarItem42.Id = 63;
     this.commandBarItem42.Name = "commandBarItem42";
     //
     // commandBarItem43
     //
     this.commandBarItem43.Caption = "Select &All";
     this.commandBarItem43.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SelectAll;
     this.commandBarItem43.Enabled = false;
     this.commandBarItem43.Hint = "Select all the controls in the document";
     this.commandBarItem43.Id = 64;
     this.commandBarItem43.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A));
     this.commandBarItem43.Name = "commandBarItem43";
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "&View";
     this.barSubItem3.Id = 45;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barReportTabButtonsListItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem5, true)});
     this.barSubItem3.Name = "barSubItem3";
     //
     // barReportTabButtonsListItem1
     //
     this.barReportTabButtonsListItem1.Caption = "Tab Buttons";
     this.barReportTabButtonsListItem1.Id = 46;
     this.barReportTabButtonsListItem1.Name = "barReportTabButtonsListItem1";
     //
     // barSubItem4
     //
     this.barSubItem4.Caption = "&Toolbars";
     this.barSubItem4.Id = 47;
     this.barSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.xrBarToolbarsListItem1)});
     this.barSubItem4.Name = "barSubItem4";
     //
     // xrBarToolbarsListItem1
     //
     this.xrBarToolbarsListItem1.Caption = "&Toolbars";
     this.xrBarToolbarsListItem1.Id = 48;
     this.xrBarToolbarsListItem1.Name = "xrBarToolbarsListItem1";
     //
     // barSubItem5
     //
     this.barSubItem5.Caption = "&Windows";
     this.barSubItem5.Id = 49;
     this.barSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barDockPanelsListItem1)});
     this.barSubItem5.Name = "barSubItem5";
     //
     // barDockPanelsListItem1
     //
     this.barDockPanelsListItem1.Caption = "&Windows";
     this.barDockPanelsListItem1.Id = 50;
     this.barDockPanelsListItem1.Name = "barDockPanelsListItem1";
     this.barDockPanelsListItem1.ShowCustomizationItem = false;
     this.barDockPanelsListItem1.ShowDockPanels = true;
     this.barDockPanelsListItem1.ShowToolbars = false;
     //
     // barSubItem6
     //
     this.barSubItem6.Caption = "Fo&rmat";
     this.barSubItem6.Id = 51;
     this.barSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem7, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem8),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem11, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem12),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem13, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem14, true)});
     this.barSubItem6.Name = "barSubItem6";
     //
     // commandColorBarItem1
     //
     this.commandColorBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.commandColorBarItem1.Caption = "For&eground Color";
     this.commandColorBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ForeColor;
     this.commandColorBarItem1.Enabled = false;
     this.commandColorBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem1.Glyph")));
     this.commandColorBarItem1.Hint = "Set the foreground color of the control";
     this.commandColorBarItem1.Id = 5;
     this.commandColorBarItem1.Name = "commandColorBarItem1";
     //
     // commandColorBarItem2
     //
     this.commandColorBarItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.commandColorBarItem2.Caption = "Bac&kground Color";
     this.commandColorBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BackColor;
     this.commandColorBarItem2.Enabled = false;
     this.commandColorBarItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem2.Glyph")));
     this.commandColorBarItem2.Hint = "Set the background color of the control";
     this.commandColorBarItem2.Id = 6;
     this.commandColorBarItem2.Name = "commandColorBarItem2";
     //
     // barSubItem7
     //
     this.barSubItem7.Caption = "&Font";
     this.barSubItem7.Id = 52;
     this.barSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem3)});
     this.barSubItem7.Name = "barSubItem7";
     //
     // commandBarItem1
     //
     this.commandBarItem1.Caption = "&Bold";
     this.commandBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontBold;
     this.commandBarItem1.Enabled = false;
     this.commandBarItem1.Hint = "Make the font bold";
     this.commandBarItem1.Id = 2;
     this.commandBarItem1.ImageIndex = 0;
     this.commandBarItem1.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B));
     this.commandBarItem1.Name = "commandBarItem1";
     //
     // commandBarItem2
     //
     this.commandBarItem2.Caption = "&Italic";
     this.commandBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontItalic;
     this.commandBarItem2.Enabled = false;
     this.commandBarItem2.Hint = "Make the font italic";
     this.commandBarItem2.Id = 3;
     this.commandBarItem2.ImageIndex = 1;
     this.commandBarItem2.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I));
     this.commandBarItem2.Name = "commandBarItem2";
     //
     // commandBarItem3
     //
     this.commandBarItem3.Caption = "&Underline";
     this.commandBarItem3.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontUnderline;
     this.commandBarItem3.Enabled = false;
     this.commandBarItem3.Hint = "Underline the font";
     this.commandBarItem3.Id = 4;
     this.commandBarItem3.ImageIndex = 2;
     this.commandBarItem3.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U));
     this.commandBarItem3.Name = "commandBarItem3";
     //
     // barSubItem8
     //
     this.barSubItem8.Caption = "&Justify";
     this.barSubItem8.Id = 53;
     this.barSubItem8.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem7)});
     this.barSubItem8.Name = "barSubItem8";
     //
     // commandBarItem4
     //
     this.commandBarItem4.Caption = "&Left";
     this.commandBarItem4.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyLeft;
     this.commandBarItem4.Enabled = false;
     this.commandBarItem4.Hint = "Align the control’s text to the left";
     this.commandBarItem4.Id = 7;
     this.commandBarItem4.ImageIndex = 5;
     this.commandBarItem4.Name = "commandBarItem4";
     //
     // commandBarItem5
     //
     this.commandBarItem5.Caption = "&Center";
     this.commandBarItem5.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyCenter;
     this.commandBarItem5.Enabled = false;
     this.commandBarItem5.Hint = "Align the control’s text to the center";
     this.commandBarItem5.Id = 8;
     this.commandBarItem5.ImageIndex = 6;
     this.commandBarItem5.Name = "commandBarItem5";
     //
     // commandBarItem6
     //
     this.commandBarItem6.Caption = "&Right";
     this.commandBarItem6.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyRight;
     this.commandBarItem6.Enabled = false;
     this.commandBarItem6.Hint = "Align the control’s text to the right";
     this.commandBarItem6.Id = 9;
     this.commandBarItem6.ImageIndex = 7;
     this.commandBarItem6.Name = "commandBarItem6";
     //
     // commandBarItem7
     //
     this.commandBarItem7.Caption = "&Justify";
     this.commandBarItem7.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyJustify;
     this.commandBarItem7.Enabled = false;
     this.commandBarItem7.Hint = "Justify the control’s text";
     this.commandBarItem7.Id = 10;
     this.commandBarItem7.ImageIndex = 8;
     this.commandBarItem7.Name = "commandBarItem7";
     //
     // barSubItem9
     //
     this.barSubItem9.Caption = "&Align";
     this.barSubItem9.Id = 54;
     this.barSubItem9.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem11),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem12, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem13),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem14),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem8, true)});
     this.barSubItem9.Name = "barSubItem9";
     //
     // commandBarItem9
     //
     this.commandBarItem9.Caption = "&Lefts";
     this.commandBarItem9.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignLeft;
     this.commandBarItem9.Enabled = false;
     this.commandBarItem9.Hint = "Left align the selected controls";
     this.commandBarItem9.Id = 12;
     this.commandBarItem9.ImageIndex = 18;
     this.commandBarItem9.Name = "commandBarItem9";
     //
     // commandBarItem10
     //
     this.commandBarItem10.Caption = "&Centers";
     this.commandBarItem10.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignVerticalCenters;
     this.commandBarItem10.Enabled = false;
     this.commandBarItem10.Hint = "Align the centers of the selected controls vertically";
     this.commandBarItem10.Id = 13;
     this.commandBarItem10.ImageIndex = 19;
     this.commandBarItem10.Name = "commandBarItem10";
     //
     // commandBarItem11
     //
     this.commandBarItem11.Caption = "&Rights";
     this.commandBarItem11.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignRight;
     this.commandBarItem11.Enabled = false;
     this.commandBarItem11.Hint = "Right align the selected controls";
     this.commandBarItem11.Id = 14;
     this.commandBarItem11.ImageIndex = 20;
     this.commandBarItem11.Name = "commandBarItem11";
     //
     // commandBarItem12
     //
     this.commandBarItem12.Caption = "&Tops";
     this.commandBarItem12.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignTop;
     this.commandBarItem12.Enabled = false;
     this.commandBarItem12.Hint = "Align the tops of the selected controls";
     this.commandBarItem12.Id = 15;
     this.commandBarItem12.ImageIndex = 21;
     this.commandBarItem12.Name = "commandBarItem12";
     //
     // commandBarItem13
     //
     this.commandBarItem13.Caption = "&Middles";
     this.commandBarItem13.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignHorizontalCenters;
     this.commandBarItem13.Enabled = false;
     this.commandBarItem13.Hint = "Align the centers of the selected controls horizontally";
     this.commandBarItem13.Id = 16;
     this.commandBarItem13.ImageIndex = 22;
     this.commandBarItem13.Name = "commandBarItem13";
     //
     // commandBarItem14
     //
     this.commandBarItem14.Caption = "&Bottoms";
     this.commandBarItem14.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignBottom;
     this.commandBarItem14.Enabled = false;
     this.commandBarItem14.Hint = "Align the bottoms of the selected controls";
     this.commandBarItem14.Id = 17;
     this.commandBarItem14.ImageIndex = 23;
     this.commandBarItem14.Name = "commandBarItem14";
     //
     // commandBarItem8
     //
     this.commandBarItem8.Caption = "to &Grid";
     this.commandBarItem8.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignToGrid;
     this.commandBarItem8.Enabled = false;
     this.commandBarItem8.Hint = "Align the positions of the selected controls to the grid";
     this.commandBarItem8.Id = 11;
     this.commandBarItem8.ImageIndex = 17;
     this.commandBarItem8.Name = "commandBarItem8";
     //
     // barSubItem10
     //
     this.barSubItem10.Caption = "&Make Same Size";
     this.barSubItem10.Id = 55;
     this.barSubItem10.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem15, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem16),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem17),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem18)});
     this.barSubItem10.Name = "barSubItem10";
     //
     // commandBarItem15
     //
     this.commandBarItem15.Caption = "&Width";
     this.commandBarItem15.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlWidth;
     this.commandBarItem15.Enabled = false;
     this.commandBarItem15.Hint = "Make the selected controls have the same width";
     this.commandBarItem15.Id = 18;
     this.commandBarItem15.ImageIndex = 24;
     this.commandBarItem15.Name = "commandBarItem15";
     //
     // commandBarItem16
     //
     this.commandBarItem16.Caption = "Size to Gri&d";
     this.commandBarItem16.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToGrid;
     this.commandBarItem16.Enabled = false;
     this.commandBarItem16.Hint = "Size the selected controls to the grid";
     this.commandBarItem16.Id = 19;
     this.commandBarItem16.ImageIndex = 25;
     this.commandBarItem16.Name = "commandBarItem16";
     //
     // commandBarItem17
     //
     this.commandBarItem17.Caption = "&Height";
     this.commandBarItem17.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlHeight;
     this.commandBarItem17.Enabled = false;
     this.commandBarItem17.Hint = "Make the selected controls have the same height";
     this.commandBarItem17.Id = 20;
     this.commandBarItem17.ImageIndex = 26;
     this.commandBarItem17.Name = "commandBarItem17";
     //
     // commandBarItem18
     //
     this.commandBarItem18.Caption = "&Both";
     this.commandBarItem18.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControl;
     this.commandBarItem18.Enabled = false;
     this.commandBarItem18.Hint = "Make the selected controls the same size";
     this.commandBarItem18.Id = 21;
     this.commandBarItem18.ImageIndex = 27;
     this.commandBarItem18.Name = "commandBarItem18";
     //
     // barSubItem11
     //
     this.barSubItem11.Caption = "&Horizontal Spacing";
     this.barSubItem11.Id = 56;
     this.barSubItem11.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem19, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem21),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem22)});
     this.barSubItem11.Name = "barSubItem11";
     //
     // commandBarItem19
     //
     this.commandBarItem19.Caption = "Make &Equal";
     this.commandBarItem19.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceMakeEqual;
     this.commandBarItem19.Enabled = false;
     this.commandBarItem19.Hint = "Make the spacing between the selected controls equal";
     this.commandBarItem19.Id = 22;
     this.commandBarItem19.ImageIndex = 28;
     this.commandBarItem19.Name = "commandBarItem19";
     //
     // commandBarItem20
     //
     this.commandBarItem20.Caption = "&Increase";
     this.commandBarItem20.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceIncrease;
     this.commandBarItem20.Enabled = false;
     this.commandBarItem20.Hint = "Increase the spacing between the selected controls";
     this.commandBarItem20.Id = 23;
     this.commandBarItem20.ImageIndex = 29;
     this.commandBarItem20.Name = "commandBarItem20";
     //
     // commandBarItem21
     //
     this.commandBarItem21.Caption = "&Decrease";
     this.commandBarItem21.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceDecrease;
     this.commandBarItem21.Enabled = false;
     this.commandBarItem21.Hint = "Decrease the spacing between the selected controls";
     this.commandBarItem21.Id = 24;
     this.commandBarItem21.ImageIndex = 30;
     this.commandBarItem21.Name = "commandBarItem21";
     //
     // commandBarItem22
     //
     this.commandBarItem22.Caption = "&Remove";
     this.commandBarItem22.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceConcatenate;
     this.commandBarItem22.Enabled = false;
     this.commandBarItem22.Hint = "Remove the spacing between the selected controls";
     this.commandBarItem22.Id = 25;
     this.commandBarItem22.ImageIndex = 31;
     this.commandBarItem22.Name = "commandBarItem22";
     //
     // barSubItem12
     //
     this.barSubItem12.Caption = "&Vertical Spacing";
     this.barSubItem12.Id = 57;
     this.barSubItem12.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem23, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem24),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem25),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem26)});
     this.barSubItem12.Name = "barSubItem12";
     //
     // commandBarItem23
     //
     this.commandBarItem23.Caption = "Make &Equal";
     this.commandBarItem23.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceMakeEqual;
     this.commandBarItem23.Enabled = false;
     this.commandBarItem23.Hint = "Make the spacing between the selected controls equal";
     this.commandBarItem23.Id = 26;
     this.commandBarItem23.ImageIndex = 32;
     this.commandBarItem23.Name = "commandBarItem23";
     //
     // commandBarItem24
     //
     this.commandBarItem24.Caption = "&Increase";
     this.commandBarItem24.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceIncrease;
     this.commandBarItem24.Enabled = false;
     this.commandBarItem24.Hint = "Increase the spacing between the selected controls";
     this.commandBarItem24.Id = 27;
     this.commandBarItem24.ImageIndex = 33;
     this.commandBarItem24.Name = "commandBarItem24";
     //
     // commandBarItem25
     //
     this.commandBarItem25.Caption = "&Decrease";
     this.commandBarItem25.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceDecrease;
     this.commandBarItem25.Enabled = false;
     this.commandBarItem25.Hint = "Decrease the spacing between the selected controls";
     this.commandBarItem25.Id = 28;
     this.commandBarItem25.ImageIndex = 34;
     this.commandBarItem25.Name = "commandBarItem25";
     //
     // commandBarItem26
     //
     this.commandBarItem26.Caption = "&Remove";
     this.commandBarItem26.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceConcatenate;
     this.commandBarItem26.Enabled = false;
     this.commandBarItem26.Hint = "Remove the spacing between the selected controls";
     this.commandBarItem26.Id = 29;
     this.commandBarItem26.ImageIndex = 35;
     this.commandBarItem26.Name = "commandBarItem26";
     //
     // barSubItem13
     //
     this.barSubItem13.Caption = "&Center in Form";
     this.barSubItem13.Id = 58;
     this.barSubItem13.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem27, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem28)});
     this.barSubItem13.Name = "barSubItem13";
     //
     // commandBarItem27
     //
     this.commandBarItem27.Caption = "&Horizontally";
     this.commandBarItem27.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterHorizontally;
     this.commandBarItem27.Enabled = false;
     this.commandBarItem27.Hint = "Horizontally center the selected controls within a band";
     this.commandBarItem27.Id = 30;
     this.commandBarItem27.ImageIndex = 36;
     this.commandBarItem27.Name = "commandBarItem27";
     //
     // commandBarItem28
     //
     this.commandBarItem28.Caption = "&Vertically";
     this.commandBarItem28.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterVertically;
     this.commandBarItem28.Enabled = false;
     this.commandBarItem28.Hint = "Vertically center the selected controls within a band";
     this.commandBarItem28.Id = 31;
     this.commandBarItem28.ImageIndex = 37;
     this.commandBarItem28.Name = "commandBarItem28";
     //
     // barSubItem14
     //
     this.barSubItem14.Caption = "&Order";
     this.barSubItem14.Id = 59;
     this.barSubItem14.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem29, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem30)});
     this.barSubItem14.Name = "barSubItem14";
     //
     // commandBarItem29
     //
     this.commandBarItem29.Caption = "&Bring to Front";
     this.commandBarItem29.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BringToFront;
     this.commandBarItem29.Enabled = false;
     this.commandBarItem29.Hint = "Bring the selected controls to the front";
     this.commandBarItem29.Id = 32;
     this.commandBarItem29.ImageIndex = 38;
     this.commandBarItem29.Name = "commandBarItem29";
     //
     // commandBarItem30
     //
     this.commandBarItem30.Caption = "&Send to Back";
     this.commandBarItem30.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SendToBack;
     this.commandBarItem30.Enabled = false;
     this.commandBarItem30.Hint = "Move the selected controls to the back";
     this.commandBarItem30.Id = 33;
     this.commandBarItem30.ImageIndex = 39;
     this.commandBarItem30.Name = "commandBarItem30";
     //
     // bsiLookAndFeel
     //
     this.bsiLookAndFeel.Caption = "&Look and Feel";
     this.bsiLookAndFeel.Id = 65;
     this.bsiLookAndFeel.Name = "bsiLookAndFeel";
     //
     // designBar2
     //
     this.designBar2.BarName = "ToolBar";
     this.designBar2.DockCol = 0;
     this.designBar2.DockRow = 1;
     this.designBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem31),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem32),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem33),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem34, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem35),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem36),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem37, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem38)});
     this.designBar2.Text = "Main Toolbar";
     //
     // designBar3
     //
     this.designBar3.BarName = "FormattingToolBar";
     this.designBar3.DockCol = 1;
     this.designBar3.DockRow = 1;
     this.designBar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem7)});
     this.designBar3.Text = "Formatting Toolbar";
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "Font Name";
     this.barEditItem1.Edit = this.ricbFontName;
     this.barEditItem1.Hint = "Font Name";
     this.barEditItem1.Id = 0;
     this.barEditItem1.Name = "barEditItem1";
     this.barEditItem1.Width = 120;
     //
     // ricbFontName
     //
     this.ricbFontName.AutoHeight = false;
     this.ricbFontName.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ricbFontName.DropDownRows = 12;
     this.ricbFontName.Name = "ricbFontName";
     //
     // barEditItem2
     //
     this.barEditItem2.Caption = "Font Size";
     this.barEditItem2.Edit = this.ricbFontSize;
     this.barEditItem2.Hint = "Font Size";
     this.barEditItem2.Id = 1;
     this.barEditItem2.Name = "barEditItem2";
     this.barEditItem2.Width = 55;
     //
     // ricbFontSize
     //
     this.ricbFontSize.AutoHeight = false;
     this.ricbFontSize.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ricbFontSize.Items.AddRange(new object[] {
     ((byte)(8)),
     ((byte)(9)),
     ((byte)(10)),
     ((byte)(11)),
     ((byte)(12)),
     ((byte)(14)),
     ((byte)(16)),
     ((byte)(18)),
     ((byte)(20)),
     ((byte)(22)),
     ((byte)(24)),
     ((byte)(26)),
     ((byte)(28)),
     ((byte)(36)),
     ((byte)(48)),
     ((byte)(72))});
     this.ricbFontSize.Name = "ricbFontSize";
     //
     // designBar4
     //
     this.designBar4.BarName = "LayoutToolBar";
     this.designBar4.DockCol = 0;
     this.designBar4.DockRow = 2;
     this.designBar4.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem8),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem11),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem12, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem13),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem14),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem15, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem16),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem17),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem18),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem19, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem21),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem22),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem23, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem24),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem25),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem26),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem27, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem28),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem29, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem30)});
     this.designBar4.Text = "Layout Toolbar";
     //
     // designBar5
     //
     this.designBar5.BarName = "StatusBar";
     this.designBar5.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.designBar5.DockCol = 0;
     this.designBar5.DockRow = 0;
     this.designBar5.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.designBar5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1)});
     this.designBar5.OptionsBar.AllowQuickCustomization = false;
     this.designBar5.OptionsBar.DrawDragBorder = false;
     this.designBar5.OptionsBar.UseWholeRow = true;
     this.designBar5.Text = "Status Bar";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.barStaticItem1.Id = 42;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 32;
     //
     // designBar6
     //
     this.designBar6.BarName = "Zoom Bar";
     this.designBar6.DockCol = 1;
     this.designBar6.DockRow = 2;
     this.designBar6.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem44),
     new DevExpress.XtraBars.LinkPersistInfo(this.xrZoomBarEditItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem45)});
     this.designBar6.Text = "Zoom Bar";
     //
     // commandBarItem44
     //
     this.commandBarItem44.Caption = "Zoom Out";
     this.commandBarItem44.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomOut;
     this.commandBarItem44.Enabled = false;
     this.commandBarItem44.Hint = "Zoom out the design surface";
     this.commandBarItem44.Id = 66;
     this.commandBarItem44.ImageIndex = 40;
     this.commandBarItem44.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Subtract));
     this.commandBarItem44.Name = "commandBarItem44";
     //
     // xrZoomBarEditItem1
     //
     this.xrZoomBarEditItem1.Caption = "Zoom";
     this.xrZoomBarEditItem1.Edit = this.designRepositoryItemComboBox1;
     this.xrZoomBarEditItem1.Enabled = false;
     this.xrZoomBarEditItem1.Hint = "Select or input the zoom factor";
     this.xrZoomBarEditItem1.Id = 67;
     this.xrZoomBarEditItem1.Name = "xrZoomBarEditItem1";
     this.xrZoomBarEditItem1.Width = 70;
     //
     // designRepositoryItemComboBox1
     //
     this.designRepositoryItemComboBox1.AutoComplete = false;
     this.designRepositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.designRepositoryItemComboBox1.Name = "designRepositoryItemComboBox1";
     //
     // commandBarItem45
     //
     this.commandBarItem45.Caption = "Zoom In";
     this.commandBarItem45.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomIn;
     this.commandBarItem45.Enabled = false;
     this.commandBarItem45.Hint = "Zoom in the design surface";
     this.commandBarItem45.Id = 68;
     this.commandBarItem45.ImageIndex = 41;
     this.commandBarItem45.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Add));
     this.commandBarItem45.Name = "commandBarItem45";
     //
     // xrDesignDockManager1
     //
     this.xrDesignDockManager1.Form = this;
     this.xrDesignDockManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignDockManager1.ImageStream")));
     this.xrDesignDockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.panelContainer1,
     this.toolBoxDockPanel1,
     this.groupAndSortDockPanel1});
     this.xrDesignDockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar"});
     this.xrDesignDockManager1.XRDesignPanel = this.xrDesignPanel;
     //
     // panelContainer1
     //
     this.panelContainer1.Controls.Add(this.panelContainer2);
     this.panelContainer1.Controls.Add(this.propertyGridDockPanel1);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.panelContainer1.ID = new System.Guid("c924e71d-fc07-4f71-80db-150e46515172");
     this.panelContainer1.Location = new System.Drawing.Point(582, 78);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.Size = new System.Drawing.Size(250, 311);
     this.panelContainer1.Text = "panelContainer1";
     //
     // panelContainer2
     //
     this.panelContainer2.ActiveChild = this.reportExplorerDockPanel1;
     this.panelContainer2.Controls.Add(this.reportExplorerDockPanel1);
     this.panelContainer2.Controls.Add(this.fieldListDockPanel1);
     this.panelContainer2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.panelContainer2.ID = new System.Guid("f590a4cc-96cf-4036-aaa1-6a23922194fc");
     this.panelContainer2.ImageIndex = 2;
     this.panelContainer2.Location = new System.Drawing.Point(0, 0);
     this.panelContainer2.Name = "panelContainer2";
     this.panelContainer2.Size = new System.Drawing.Size(250, 9841);
     this.panelContainer2.Tabbed = true;
     this.panelContainer2.Text = "panelContainer2";
     //
     // 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 = 2;
     this.reportExplorerDockPanel1.Location = new System.Drawing.Point(3, 29);
     this.reportExplorerDockPanel1.Name = "reportExplorerDockPanel1";
     this.reportExplorerDockPanel1.Size = new System.Drawing.Size(244, 9787);
     this.reportExplorerDockPanel1.Text = "Report Explorer";
     this.reportExplorerDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // reportExplorerDockPanel1_Container
     //
     this.reportExplorerDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.reportExplorerDockPanel1_Container.Name = "reportExplorerDockPanel1_Container";
     this.reportExplorerDockPanel1_Container.Size = new System.Drawing.Size(244, 9787);
     this.reportExplorerDockPanel1_Container.TabIndex = 0;
     //
     // 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(3, 29);
     this.fieldListDockPanel1.Name = "fieldListDockPanel1";
     this.fieldListDockPanel1.Size = new System.Drawing.Size(244, 9787);
     this.fieldListDockPanel1.Text = "Field List";
     this.fieldListDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // 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(244, 9787);
     this.fieldListDockPanel1_Container.TabIndex = 0;
     //
     // propertyGridDockPanel1
     //
     this.propertyGridDockPanel1.Controls.Add(this.propertyGridDockPanel1_Container);
     this.propertyGridDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.propertyGridDockPanel1.ID = new System.Guid("b38d12c3-cd06-4dec-b93d-63a0088e495a");
     this.propertyGridDockPanel1.ImageIndex = 1;
     this.propertyGridDockPanel1.Location = new System.Drawing.Point(0, 9841);
     this.propertyGridDockPanel1.Name = "propertyGridDockPanel1";
     this.propertyGridDockPanel1.Size = new System.Drawing.Size(250, 0);
     this.propertyGridDockPanel1.Text = "Property Grid";
     this.propertyGridDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // propertyGridDockPanel1_Container
     //
     this.propertyGridDockPanel1_Container.Location = new System.Drawing.Point(3, -9370);
     this.propertyGridDockPanel1_Container.Name = "propertyGridDockPanel1_Container";
     this.propertyGridDockPanel1_Container.Size = new System.Drawing.Size(244, 0);
     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 = 3;
     this.toolBoxDockPanel1.Location = new System.Drawing.Point(0, 78);
     this.toolBoxDockPanel1.Name = "toolBoxDockPanel1";
     this.toolBoxDockPanel1.Size = new System.Drawing.Size(165, 471);
     this.toolBoxDockPanel1.Text = "Tool Box";
     this.toolBoxDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // toolBoxDockPanel1_Container
     //
     this.toolBoxDockPanel1_Container.Location = new System.Drawing.Point(3, 29);
     this.toolBoxDockPanel1_Container.Name = "toolBoxDockPanel1_Container";
     this.toolBoxDockPanel1_Container.Size = new System.Drawing.Size(159, 439);
     this.toolBoxDockPanel1_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 = 4;
     this.groupAndSortDockPanel1.Location = new System.Drawing.Point(165, 389);
     this.groupAndSortDockPanel1.Name = "groupAndSortDockPanel1";
     this.groupAndSortDockPanel1.Size = new System.Drawing.Size(667, 160);
     this.groupAndSortDockPanel1.Text = "Group and Sort";
     this.groupAndSortDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // groupAndSortDockPanel1_Container
     //
     this.groupAndSortDockPanel1_Container.Location = new System.Drawing.Point(3, 29);
     this.groupAndSortDockPanel1_Container.Name = "groupAndSortDockPanel1_Container";
     this.groupAndSortDockPanel1_Container.Size = new System.Drawing.Size(411, 128);
     this.groupAndSortDockPanel1_Container.TabIndex = 0;
     //
     // CustomDesignForm
     //
     this.ClientSize = new System.Drawing.Size(832, 571);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.groupAndSortDockPanel1);
     this.Controls.Add(this.toolBoxDockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "CustomDesignForm";
     this.Controls.SetChildIndex(this.barDockControlTop, 0);
     this.Controls.SetChildIndex(this.barDockControlBottom, 0);
     this.Controls.SetChildIndex(this.barDockControlRight, 0);
     this.Controls.SetChildIndex(this.barDockControlLeft, 0);
     this.Controls.SetChildIndex(this.toolBoxDockPanel1, 0);
     this.Controls.SetChildIndex(this.groupAndSortDockPanel1, 0);
     this.Controls.SetChildIndex(this.panelContainer1, 0);
     this.Controls.SetChildIndex(this.xrDesignPanel, 0);
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignPanel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignBarManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).EndInit();
     this.panelContainer1.ResumeLayout(false);
     this.panelContainer2.ResumeLayout(false);
     this.reportExplorerDockPanel1.ResumeLayout(false);
     this.fieldListDockPanel1.ResumeLayout(false);
     this.propertyGridDockPanel1.ResumeLayout(false);
     this.toolBoxDockPanel1.ResumeLayout(false);
     this.groupAndSortDockPanel1.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.sptPanel1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeCtl1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.groupPanel1 = new DevExpress.XtraEditors.GroupControl();
     this.btnSaveToSvr = new DevExpress.XtraEditors.SimpleButton();
     this.groupPanel3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveMnuItem = new DevExpress.XtraEditors.SimpleButton();
     this.chkUsing = new DevExpress.XtraEditors.CheckEdit();
     this.txtmnuAsmName = new DevExpress.XtraEditors.TextEdit();
     this.txtmnuClassName = new DevExpress.XtraEditors.TextEdit();
     this.txtmnuName = new DevExpress.XtraEditors.TextEdit();
     this.groupPanel2 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveMnuGrp = new DevExpress.XtraEditors.SimpleButton();
     this.txtmnuGrp = new DevExpress.XtraEditors.TextEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     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.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barBtnLogoff = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnExit = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barLabel = new DevExpress.XtraBars.BarStaticItem();
     this.barSubOpt = new DevExpress.XtraBars.BarSubItem();
     this.barSkin = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barChkSys = new DevExpress.XtraBars.BarCheckItem();
     this.barChkTaobao = new DevExpress.XtraBars.BarCheckItem();
     this.barBtnSysMnu = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barBtnSysInfo = new DevExpress.XtraBars.BarButtonItem();
     this.barMnuTaobao = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.barbtnMnuGrp = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnMnuItem = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnDel = 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.popMenuCtl1 = new DevExpress.XtraBars.PopupMenu();
     this.fdlg = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.sptPanel1)).BeginInit();
     this.sptPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).BeginInit();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel3)).BeginInit();
     this.groupPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkUsing.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuAsmName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuGrp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popMenuCtl1)).BeginInit();
     this.SuspendLayout();
     //
     // sptPanel1
     //
     this.sptPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.sptPanel1.Location = new System.Drawing.Point(0, 0);
     this.sptPanel1.Name = "sptPanel1";
     this.sptPanel1.Panel1.Controls.Add(this.treeCtl1);
     this.sptPanel1.Panel1.Text = "Panel1";
     this.sptPanel1.Panel2.Controls.Add(this.groupPanel1);
     this.sptPanel1.Panel2.Text = "Panel2";
     this.sptPanel1.Size = new System.Drawing.Size(732, 448);
     this.sptPanel1.SplitterPosition = 214;
     this.sptPanel1.TabIndex = 0;
     this.sptPanel1.Text = "sptPanel1";
     //
     // treeCtl1
     //
     this.treeCtl1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1});
     this.treeCtl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeCtl1.HorzScrollVisibility = DevExpress.XtraTreeList.ScrollVisibility.Always;
     this.treeCtl1.Location = new System.Drawing.Point(0, 0);
     this.treeCtl1.Name = "treeCtl1";
     this.treeCtl1.BeginUnboundLoad();
     this.treeCtl1.AppendNode(new object[] {
     "1"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "11"}, 0);
     this.treeCtl1.AppendNode(new object[] {
     "2"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "22"}, 2);
     this.treeCtl1.AppendNode(new object[] {
     "222"}, 3);
     this.treeCtl1.AppendNode(new object[] {
     "3"}, -1);
     this.treeCtl1.EndUnboundLoad();
     this.treeCtl1.OptionsBehavior.DragNodes = true;
     this.treeCtl1.OptionsBehavior.Editable = false;
     this.treeCtl1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.treeCtl1.OptionsSelection.InvertSelection = true;
     this.treeCtl1.OptionsView.ShowColumns = false;
     this.treeCtl1.OptionsView.ShowFocusedFrame = false;
     this.treeCtl1.OptionsView.ShowHorzLines = false;
     this.treeCtl1.OptionsView.ShowIndicator = false;
     this.treeCtl1.OptionsView.ShowVertLines = false;
     this.treeCtl1.ShowButtonMode = DevExpress.XtraTreeList.ShowButtonModeEnum.ShowForFocusedRow;
     this.treeCtl1.Size = new System.Drawing.Size(214, 448);
     this.treeCtl1.TabIndex = 0;
     this.treeCtl1.TreeLineStyle = DevExpress.XtraTreeList.LineStyle.Solid;
     this.treeCtl1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeCtl1_FocusedNodeChanged);
     this.treeCtl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeCtl1_MouseUp);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "treeListColumn1";
     this.treeListColumn1.FieldName = "treeListColumn1";
     this.treeListColumn1.MinWidth = 86;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // groupPanel1
     //
     this.groupPanel1.Controls.Add(this.btnSaveToSvr);
     this.groupPanel1.Controls.Add(this.groupPanel3);
     this.groupPanel1.Controls.Add(this.groupPanel2);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(513, 448);
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "菜单编辑";
     //
     // btnSaveToSvr
     //
     this.btnSaveToSvr.Location = new System.Drawing.Point(14, 377);
     this.btnSaveToSvr.Name = "btnSaveToSvr";
     this.btnSaveToSvr.Size = new System.Drawing.Size(130, 23);
     this.btnSaveToSvr.TabIndex = 1;
     this.btnSaveToSvr.Text = "保存菜单至服务器";
     this.btnSaveToSvr.Click += new System.EventHandler(this.btnSaveToSvr_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupPanel3.Controls.Add(this.labelControl4);
     this.groupPanel3.Controls.Add(this.labelControl3);
     this.groupPanel3.Controls.Add(this.labelControl2);
     this.groupPanel3.Controls.Add(this.btnSaveMnuItem);
     this.groupPanel3.Controls.Add(this.chkUsing);
     this.groupPanel3.Controls.Add(this.txtmnuAsmName);
     this.groupPanel3.Controls.Add(this.txtmnuClassName);
     this.groupPanel3.Controls.Add(this.txtmnuName);
     this.groupPanel3.Location = new System.Drawing.Point(14, 140);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(487, 217);
     this.groupPanel3.TabIndex = 0;
     this.groupPanel3.Text = "菜单项";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(22, 67);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(48, 14);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "主画面类";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 94);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 5;
     this.labelControl3.Text = "程序集名称";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(10, 40);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(60, 14);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "菜单项名称";
     //
     // btnSaveMnuItem
     //
     this.btnSaveMnuItem.Location = new System.Drawing.Point(7, 152);
     this.btnSaveMnuItem.Name = "btnSaveMnuItem";
     this.btnSaveMnuItem.Size = new System.Drawing.Size(75, 23);
     this.btnSaveMnuItem.TabIndex = 1;
     this.btnSaveMnuItem.Text = "保存修改";
     this.btnSaveMnuItem.Click += new System.EventHandler(this.btnSaveMnuItem_Click);
     //
     // chkUsing
     //
     this.chkUsing.EditValue = true;
     this.chkUsing.Location = new System.Drawing.Point(5, 117);
     this.chkUsing.Name = "chkUsing";
     this.chkUsing.Properties.Caption = "启用";
     this.chkUsing.Size = new System.Drawing.Size(92, 19);
     this.chkUsing.TabIndex = 3;
     //
     // txtmnuAsmName
     //
     this.txtmnuAsmName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuAsmName.Location = new System.Drawing.Point(76, 91);
     this.txtmnuAsmName.Name = "txtmnuAsmName";
     this.txtmnuAsmName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuAsmName.TabIndex = 2;
     //
     // txtmnuClassName
     //
     this.txtmnuClassName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuClassName.Location = new System.Drawing.Point(76, 64);
     this.txtmnuClassName.Name = "txtmnuClassName";
     this.txtmnuClassName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuClassName.TabIndex = 1;
     //
     // txtmnuName
     //
     this.txtmnuName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuName.Location = new System.Drawing.Point(76, 37);
     this.txtmnuName.Name = "txtmnuName";
     this.txtmnuName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuName.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupPanel2.Controls.Add(this.labelControl1);
     this.groupPanel2.Controls.Add(this.btnSaveMnuGrp);
     this.groupPanel2.Controls.Add(this.txtmnuGrp);
     this.groupPanel2.Location = new System.Drawing.Point(14, 25);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(487, 100);
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "菜单组";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 38);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "菜单组名称";
     //
     // btnSaveMnuGrp
     //
     this.btnSaveMnuGrp.Location = new System.Drawing.Point(5, 62);
     this.btnSaveMnuGrp.Name = "btnSaveMnuGrp";
     this.btnSaveMnuGrp.Size = new System.Drawing.Size(75, 23);
     this.btnSaveMnuGrp.TabIndex = 1;
     this.btnSaveMnuGrp.Text = "保存修改";
     this.btnSaveMnuGrp.Click += new System.EventHandler(this.btnSaveMnuGrp_Click);
     //
     // txtmnuGrp
     //
     this.txtmnuGrp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuGrp.Location = new System.Drawing.Point(76, 35);
     this.txtmnuGrp.Name = "txtmnuGrp";
     this.txtmnuGrp.Size = new System.Drawing.Size(406, 20);
     this.txtmnuGrp.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.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barSubItem1,
     this.barBtnLogoff,
     this.barBtnExit,
     this.barStaticItem1,
     this.barLabel,
     this.barSubOpt,
     this.barSubItem3,
     this.barSkin,
     this.barSubItem2,
     this.barMnuTaobao,
     this.barChkSys,
     this.barChkTaobao,
     this.barBtnSysInfo,
     this.barStaticItem2,
     this.barStaticItem3,
     this.barBtnSysMnu,
     this.barbtnMnuGrp,
     this.barbtnMnuItem,
     this.barbtnDel,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5});
     this.barManager1.MaxItemId = 26;
     //
     // 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(732, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 448);
     this.barDockControlBottom.Size = new System.Drawing.Size(732, 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, 448);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(732, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 448);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "txx";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "系统(&S)";
     this.barSubItem1.Id = 1;
     this.barSubItem1.ImageIndex = 0;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnLogoff),
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnExit)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barBtnLogoff
     //
     this.barBtnLogoff.Caption = "注销(&L)";
     this.barBtnLogoff.Id = 2;
     this.barBtnLogoff.ImageIndex = 1;
     this.barBtnLogoff.Name = "barBtnLogoff";
     //
     // barBtnExit
     //
     this.barBtnExit.Caption = "退出(&X)";
     this.barBtnExit.Id = 3;
     this.barBtnExit.ImageIndex = 2;
     this.barBtnExit.Name = "barBtnExit";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "当前登录用户:";
     this.barStaticItem1.Id = 4;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barLabel
     //
     this.barLabel.Caption = " ";
     this.barLabel.Id = 5;
     this.barLabel.Name = "barLabel";
     this.barLabel.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barSubOpt
     //
     this.barSubOpt.Caption = "设置(&S)";
     this.barSubOpt.Id = 6;
     this.barSubOpt.ImageIndex = 3;
     this.barSubOpt.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSkin),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnSysMnu)});
     this.barSubOpt.Name = "barSubOpt";
     this.barSubOpt.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSkin
     //
     this.barSkin.Caption = "外观";
     this.barSkin.Id = 8;
     this.barSkin.ImageIndex = 4;
     this.barSkin.Name = "barSkin";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "菜单样式";
     this.barSubItem2.Id = 10;
     this.barSubItem2.ImageIndex = 5;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barChkSys),
     new DevExpress.XtraBars.LinkPersistInfo(this.barChkTaobao)});
     this.barSubItem2.Name = "barSubItem2";
     this.barSubItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barChkSys
     //
     this.barChkSys.Caption = "系统风格";
     this.barChkSys.Checked = true;
     this.barChkSys.Id = 13;
     this.barChkSys.Name = "barChkSys";
     //
     // barChkTaobao
     //
     this.barChkTaobao.Caption = "商家后台风格";
     this.barChkTaobao.Id = 14;
     this.barChkTaobao.Name = "barChkTaobao";
     //
     // barBtnSysMnu
     //
     this.barBtnSysMnu.Caption = "系统菜单";
     this.barBtnSysMnu.Id = 18;
     this.barBtnSysMnu.Name = "barBtnSysMnu";
     this.barBtnSysMnu.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "帮助(&H)";
     this.barSubItem3.Id = 7;
     this.barSubItem3.ImageIndex = 6;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnSysInfo)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barBtnSysInfo
     //
     this.barBtnSysInfo.Caption = "系统信息";
     this.barBtnSysInfo.Id = 15;
     this.barBtnSysInfo.Name = "barBtnSysInfo";
     //
     // barMnuTaobao
     //
     this.barMnuTaobao.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
     this.barMnuTaobao.Caption = "商家后台风格";
     this.barMnuTaobao.Id = 12;
     this.barMnuTaobao.Name = "barMnuTaobao";
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "barStaticItem2";
     this.barStaticItem2.Id = 16;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem3.Caption = "SvrTime";
     this.barStaticItem3.Id = 17;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barbtnMnuGrp
     //
     this.barbtnMnuGrp.Caption = "添加菜单组";
     this.barbtnMnuGrp.Id = 19;
     this.barbtnMnuGrp.Name = "barbtnMnuGrp";
     this.barbtnMnuGrp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnMnuGrp_ItemClick);
     //
     // barbtnMnuItem
     //
     this.barbtnMnuItem.Caption = "添加菜单项";
     this.barbtnMnuItem.Id = 20;
     this.barbtnMnuItem.Name = "barbtnMnuItem";
     this.barbtnMnuItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnMnuItem_ItemClick);
     //
     // barbtnDel
     //
     this.barbtnDel.Caption = "删除";
     this.barbtnDel.Id = 21;
     this.barbtnDel.Name = "barbtnDel";
     this.barbtnDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnDel_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 22;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "加载最新菜单";
     this.barButtonItem3.Id = 23;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id = 24;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "导出菜单";
     this.barButtonItem5.Id = 25;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // popMenuCtl1
     //
     this.popMenuCtl1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnMnuGrp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnMnuItem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnDel),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5)});
     this.popMenuCtl1.Manager = this.barManager1;
     this.popMenuCtl1.Name = "popMenuCtl1";
     //
     // fdlg
     //
     this.fdlg.Filter = "*.xml|*.xml";
     this.fdlg.Title = "菜单导出";
     //
     // MenuView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(732, 448);
     this.Controls.Add(this.sptPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "MenuView";
     this.Text = "系统菜单设置";
     this.Load += new System.EventHandler(this.MenuView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.sptPanel1)).EndInit();
     this.sptPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel3)).EndInit();
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkUsing.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuAsmName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuGrp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popMenuCtl1)).EndInit();
     this.ResumeLayout(false);
 }
        public void OnImportsSatisfied()
        {
            this._ribbon              = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.backstageMenu        = new DevExpress.XtraBars.Ribbon.ApplicationMenu();
            this.ribbonStatusBar      = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.defaultStatusPanel   = new DevExpress.XtraBars.BarStaticItem();
            this.defaultProgressPanel = new DevExpress.XtraBars.BarEditItem();
            this.defaultProgressBar   = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
            ((System.ComponentModel.ISupportInitialize)(this._ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.backstageMenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.defaultProgressBar)).BeginInit();
            Shell.SuspendLayout();
            //
            // ribbon
            //
            this._ribbon.ApplicationButtonDropDownControl = this.backstageMenu;
            this._ribbon.ApplicationButtonText            = "File";
            this._ribbon.ExpandCollapseItem.Id            = 0;
            this._ribbon.ExpandCollapseItem.Name          = "";
            this._ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
                this._ribbon.ExpandCollapseItem,
                this.defaultStatusPanel,
                this.defaultProgressPanel
            });
            this._ribbon.Location      = new System.Drawing.Point(0, 0);
            this._ribbon.MaxItemId     = 9;
            this._ribbon.AutoSizeItems = true;
            this._ribbon.Name          = "ribbon";
            this._ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                this.defaultProgressBar
            });
            this._ribbon.RibbonStyle     = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this._ribbon.Size            = new System.Drawing.Size(790, 50);
            this._ribbon.StatusBar       = this.ribbonStatusBar;
            this._ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
            // The Application Button is not visible in the Office 2007 paint style, unless you place the RibbonControl onto a RibbonForm.
            //http://documentation.devexpress.com/#WindowsForms/DevExpressXtraBarsRibbonRibbonControl_ShowApplicationButtontopic
            this._ribbon.ShowApplicationButton = DefaultBoolean.True;

            this._ribbon.SelectedPageChanged += new EventHandler(Ribbon_SelectedPageChanged);

            //
            // backstageMenu
            //
            this.backstageMenu.Name   = "backstageMenu";
            this.backstageMenu.Ribbon = this._ribbon;
            //
            // ribbonStatusBar
            //
            this.ribbonStatusBar.ItemLinks.Add(this.defaultStatusPanel);
            this.ribbonStatusBar.ItemLinks.Add(this.defaultProgressPanel);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 468);
            this.ribbonStatusBar.Name     = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon   = this._ribbon;
            this.ribbonStatusBar.Size     = new System.Drawing.Size(790, 31);

            //
            // defaultStatusPanel
            //
            this.defaultStatusPanel.Caption       = "Ready.";
            this.defaultStatusPanel.Id            = 4;
            this.defaultStatusPanel.Name          = "defaultStatusPanel";
            this.defaultStatusPanel.TextAlignment = System.Drawing.StringAlignment.Near;
            //
            // defaultProgressPanel
            //
            this.defaultProgressPanel.Alignment  = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.defaultProgressPanel.Edit       = this.defaultProgressBar;
            this.defaultProgressPanel.EditValue  = "50";
            this.defaultProgressPanel.Id         = 5;
            this.defaultProgressPanel.Name       = "defaultProgressPanel";
            this.defaultProgressPanel.Width      = 100;
            this.defaultProgressPanel.Visibility = BarItemVisibility.Never;
            //
            // repositoryItemProgressBar1
            //
            this.defaultProgressBar.Name = "defaultProgressBar";

            Shell.Controls.Add(this.ribbonStatusBar);
            Shell.Controls.Add(this._ribbon);

            // If it is a DevExpress.XtraBars.Ribbon.RibbonForm...
            var form = Shell as DevExpress.XtraBars.Ribbon.RibbonForm;

            if (form != null)
            {
                form.Ribbon    = this._ribbon;
                form.StatusBar = this.ribbonStatusBar;
            }

            ((System.ComponentModel.ISupportInitialize)(this._ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.backstageMenu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.defaultProgressBar)).EndInit();
            Shell.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();
     this.barManager1     = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1            = new DevExpress.XtraBars.Bar();
     this.BarSubItem1     = new DevExpress.XtraBars.BarSubItem();
     this.BarButtonItem1  = new DevExpress.XtraBars.BarButtonItem();
     this.bar2            = new DevExpress.XtraBars.Bar();
     this.BarStaticItem1  = new DevExpress.XtraBars.BarStaticItem();
     this.bar3            = new DevExpress.XtraBars.Bar();
     this.barButtonItem2  = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl2 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl3 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl4 = new DevExpress.XtraBars.BarDockControl();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar1,
         this.bar2,
         this.bar3
     });
     this.barManager1.DockControls.Add(this.barDockControl1);
     this.barManager1.DockControls.Add(this.barDockControl2);
     this.barManager1.DockControls.Add(this.barDockControl3);
     this.barManager1.DockControls.Add(this.barDockControl4);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.BarSubItem1,
         this.BarStaticItem1,
         this.BarButtonItem1,
         this.barButtonItem2
     });
     this.barManager1.MainMenu  = this.bar1;
     this.barManager1.MaxItemId = 4;
     this.barManager1.StatusBar = this.bar2;
     this.barManager1.UnMerge  += new DevExpress.XtraBars.BarManagerMergeEventHandler(this.barManager1_UnMerge);
     this.barManager1.Merge    += new DevExpress.XtraBars.BarManagerMergeEventHandler(this.barManager1_Merge);
     //
     // bar1
     //
     this.bar1.BarName       = "Main menu";
     this.bar1.DockCol       = 0;
     this.bar1.DockRow       = 0;
     this.bar1.DockStyle     = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(52, 165);
     this.bar1.FloatSize     = new System.Drawing.Size(29, 25);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.BarSubItem1)
     });
     this.bar1.OptionsBar.MultiLine   = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // BarSubItem1
     //
     this.BarSubItem1.Caption = "Menu";
     this.BarSubItem1.Id      = 1;
     this.BarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.BarButtonItem1)
     });
     this.BarSubItem1.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
     this.BarSubItem1.Name      = "BarSubItem1";
     //
     // BarButtonItem1
     //
     this.BarButtonItem1.Caption    = "Open";
     this.BarButtonItem1.Id         = 2;
     this.BarButtonItem1.Name       = "BarButtonItem1";
     this.BarButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BarButtonItem1_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName       = "Status bar";
     this.bar2.CanDockStyle  = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar2.DockCol       = 0;
     this.bar2.DockRow       = 0;
     this.bar2.DockStyle     = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar2.FloatLocation = new System.Drawing.Point(65, 425);
     this.bar2.FloatSize     = new System.Drawing.Size(29, 25);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.BarStaticItem1)
     });
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder          = false;
     this.bar2.OptionsBar.UseWholeRow             = true;
     this.bar2.Text = "Status bar";
     //
     // BarStaticItem1
     //
     this.BarStaticItem1.Caption       = "Status";
     this.BarStaticItem1.Id            = 0;
     this.BarStaticItem1.Name          = "BarStaticItem1";
     this.BarStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // bar3
     //
     this.bar3.BarName       = "Custom 3";
     this.bar3.DockCol       = 0;
     this.bar3.DockRow       = 1;
     this.bar3.DockStyle     = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.FloatLocation = new System.Drawing.Point(335, 269);
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2)
     });
     this.bar3.Text = "Custom 3";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Main Toolbar";
     this.barButtonItem2.Id      = 3;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(471, 356);
     this.Controls.Add(this.barDockControl3);
     this.Controls.Add(this.barDockControl4);
     this.Controls.Add(this.barDockControl2);
     this.Controls.Add(this.barDockControl1);
     this.IsMdiContainer = true;
     this.Name           = "Form1";
     this.Text           = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DanhSachChucNang));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     this.rbcMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiHangHoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiAuthor = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCamDo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiChuocDo = new DevExpress.XtraBars.BarButtonItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.lblDatabase = new DevExpress.XtraBars.BarStaticItem();
     this.ISystem = new DevExpress.XtraBars.BarButtonItem();
     this.IInit = new DevExpress.XtraBars.BarButtonItem();
     this.IInward = new DevExpress.XtraBars.BarButtonItem();
     this.IOutward = new DevExpress.XtraBars.BarButtonItem();
     this.ITransfer = new DevExpress.XtraBars.BarButtonItem();
     this.IAdjustment = new DevExpress.XtraBars.BarButtonItem();
     this.IInventory = new DevExpress.XtraBars.BarButtonItem();
     this.IPacket = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUserGroup = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUsers = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOnline = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOffline = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpNormal = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpVideo = new DevExpress.XtraBars.BarButtonItem();
     this.bbIThuChi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSaoLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiPhucHoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiQuyTienMat = new DevExpress.XtraBars.BarButtonItem();
     this.bbiInMaVach = new DevExpress.XtraBars.BarButtonItem();
     this.rbpChucNang = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgQuanLy = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpHeThong = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.rbsMain = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tabMdi = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).BeginInit();
     this.SuspendLayout();
     //
     // rbcMain
     //
     this.rbcMain.ApplicationCaption = "Phần Mềm Quản Lý Cầm Đồ";
     this.rbcMain.AutoSizeItems = true;
     this.rbcMain.ExpandCollapseItem.Id = 0;
     this.rbcMain.Images = this.img;
     this.rbcMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.rbcMain.ExpandCollapseItem,
     this.bbiHangHoa,
     this.bbiAuthor,
     this.bbiCamDo,
     this.bbiChuocDo,
     this.lblServer,
     this.lblDatabase,
     this.ISystem,
     this.IInit,
     this.IInward,
     this.IOutward,
     this.ITransfer,
     this.IAdjustment,
     this.IInventory,
     this.IPacket,
     this.bbiClose,
     this.bbiUserGroup,
     this.bbiUsers,
     this.bbiUpdateOnline,
     this.bbiUpdateOffline,
     this.biiHelpNormal,
     this.biiHelpVideo,
     this.bbIThuChi,
     this.bbiSaoLuu,
     this.bbiPhucHoi,
     this.bbiQuyTienMat,
     this.bbiInMaVach});
     this.rbcMain.LargeImages = this.img;
     this.rbcMain.Location = new System.Drawing.Point(0, 0);
     this.rbcMain.MaxItemId = 321;
     this.rbcMain.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.rbcMain.Name = "rbcMain";
     this.rbcMain.PageHeaderItemLinks.Add(this.lblServer);
     this.rbcMain.PageHeaderItemLinks.Add(this.lblDatabase);
     this.rbcMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rbpChucNang});
     this.rbcMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.rbcMain.ShowCategoryInCaption = false;
     this.rbcMain.Size = new System.Drawing.Size(1016, 144);
     this.rbcMain.StatusBar = this.rbsMain;
     this.rbcMain.TransparentEditors = true;
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "24-7.png");
     this.img.Images.SetKeyName(1, "A-baby-cot.png");
     this.img.Images.SetKeyName(2, "Account.png");
     this.img.Images.SetKeyName(3, "Add Event.png");
     this.img.Images.SetKeyName(4, "Alarm-clock.png");
     this.img.Images.SetKeyName(5, "A-rollaway-bed.png");
     this.img.Images.SetKeyName(6, "Autoship.png");
     this.img.Images.SetKeyName(7, "Baby.png");
     this.img.Images.SetKeyName(8, "Binary-tree.png");
     this.img.Images.SetKeyName(9, "Breakfast.png");
     this.img.Images.SetKeyName(10, "Business-info.png");
     this.img.Images.SetKeyName(11, "Calendar-selection-all.png");
     this.img.Images.SetKeyName(12, "Calendar-selection-day.png");
     this.img.Images.SetKeyName(13, "calendar-selection-month.png");
     this.img.Images.SetKeyName(14, "Calendar-selection-week.png");
     this.img.Images.SetKeyName(15, "Contact.png");
     this.img.Images.SetKeyName(16, "Couple.png");
     this.img.Images.SetKeyName(17, "Create-ticket.png");
     this.img.Images.SetKeyName(18, "Direct-walkway.png");
     this.img.Images.SetKeyName(19, "Distributor-report.png");
     this.img.Images.SetKeyName(20, "Download.png");
     this.img.Images.SetKeyName(21, "Drive.png");
     this.img.Images.SetKeyName(22, "Earning-statement.png");
     this.img.Images.SetKeyName(23, "Event-search.png");
     this.img.Images.SetKeyName(24, "Female-user-accept.png");
     this.img.Images.SetKeyName(25, "Female-user-add.png");
     this.img.Images.SetKeyName(26, "Female-user-edit.png");
     this.img.Images.SetKeyName(27, "Female-user-help.png");
     this.img.Images.SetKeyName(28, "Female-user-info.png");
     this.img.Images.SetKeyName(29, "Female-user-remove.png");
     this.img.Images.SetKeyName(30, "Female-user-search.png");
     this.img.Images.SetKeyName(31, "Female-user-warning.png");
     this.img.Images.SetKeyName(32, "Geology-view.png");
     this.img.Images.SetKeyName(33, "Globe-download.png");
     this.img.Images.SetKeyName(34, "Globe-warning.png");
     this.img.Images.SetKeyName(35, "Gift.png");
     this.img.Images.SetKeyName(36, "Insert-hyperlink.png");
     this.img.Images.SetKeyName(37, "Library.png");
     this.img.Images.SetKeyName(38, "Library2.png");
     this.img.Images.SetKeyName(39, "Link.png");
     this.img.Images.SetKeyName(40, "Mail-search.png");
     this.img.Images.SetKeyName(41, "Message-already-read.png");
     this.img.Images.SetKeyName(42, "My-tickets.png");
     this.img.Images.SetKeyName(43, "Order-history.png");
     this.img.Images.SetKeyName(44, "Ordering.png");
     this.img.Images.SetKeyName(45, "Packing1.png");
     this.img.Images.SetKeyName(46, "Payment-card.png");
     this.img.Images.SetKeyName(47, "Product-sale-report.png");
     this.img.Images.SetKeyName(48, "Rank History.png");
     this.img.Images.SetKeyName(49, "Reports.png");
     this.img.Images.SetKeyName(50, "Sales-by-payment-method.png");
     this.img.Images.SetKeyName(51, "Sales-report.png");
     this.img.Images.SetKeyName(52, "Search-globe.png");
     this.img.Images.SetKeyName(53, "Select-language.png");
     this.img.Images.SetKeyName(54, "Upline.png");
     this.img.Images.SetKeyName(55, "Upload.png");
     this.img.Images.SetKeyName(56, "Web-management.png");
     this.img.Images.SetKeyName(57, "Woman.png");
     this.img.Images.SetKeyName(58, "Zoom-in.png");
     this.img.Images.SetKeyName(59, "Zoom-out.png");
     //
     // bbiHangHoa
     //
     this.bbiHangHoa.Caption = "Hàng Hoá";
     this.bbiHangHoa.Id = 27;
     this.bbiHangHoa.ImageIndex = 47;
     this.bbiHangHoa.LargeImageIndex = 47;
     this.bbiHangHoa.Name = "bbiHangHoa";
     toolTipItem1.Text = "Quản lý hàng hoá, dịch vụ";
     superToolTip1.Items.Add(toolTipItem1);
     this.bbiHangHoa.SuperTip = superToolTip1;
     //
     // bbiAuthor
     //
     this.bbiAuthor.Caption = "Tác giả";
     this.bbiAuthor.Id = 38;
     this.bbiAuthor.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiAuthor.LargeGlyph")));
     this.bbiAuthor.Name = "bbiAuthor";
     //
     // bbiCamDo
     //
     this.bbiCamDo.Caption = "Cầm Đồ";
     this.bbiCamDo.Description = "Quản lý cầm đồ";
     this.bbiCamDo.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiCamDo.Glyph")));
     this.bbiCamDo.Hint = "Quản lý nhập kho";
     this.bbiCamDo.Id = 136;
     this.bbiCamDo.LargeImageIndex = 44;
     this.bbiCamDo.Name = "bbiCamDo";
     toolTipItem2.Text = "Quản lý nhập kho";
     superToolTip2.Items.Add(toolTipItem2);
     this.bbiCamDo.SuperTip = superToolTip2;
     this.bbiCamDo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCamDo_ItemClick);
     //
     // bbiChuocDo
     //
     this.bbiChuocDo.Caption = "Chuộc Đồ";
     this.bbiChuocDo.Description = "Quản lý chuộc đồ";
     this.bbiChuocDo.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiChuocDo.Glyph")));
     this.bbiChuocDo.Hint = "Quản lý xuất kho";
     this.bbiChuocDo.Id = 138;
     this.bbiChuocDo.LargeImageIndex = 43;
     this.bbiChuocDo.Name = "bbiChuocDo";
     toolTipItem3.Text = "Quản lý xuất kho\r\n";
     superToolTip3.Items.Add(toolTipItem3);
     this.bbiChuocDo.SuperTip = superToolTip3;
     this.bbiChuocDo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiChuocDo_ItemClick);
     //
     // lblServer
     //
     this.lblServer.Caption = "Máy Chủ: ";
     this.lblServer.Id = 227;
     this.lblServer.ImageIndex = 70;
     this.lblServer.Name = "lblServer";
     toolTipTitleItem1.Text = "Nhấn đúp chuột vào để mở phần mềm quản lý cơ sở dữ liệu";
     toolTipItem4.LeftIndent = 6;
     toolTipItem4.Text = "Chú ý: mọi thao tác trên trên phần mềm quản lý cơ sở dữ liệu đều phải sao lưu dữ " +
     "liệu trước, phòng trường hợp thao tác nhằm, hoặc lỗi do sự cố ngoài ý muốn...";
     superToolTip4.Items.Add(toolTipTitleItem1);
     superToolTip4.Items.Add(toolTipItem4);
     this.lblServer.SuperTip = superToolTip4;
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblDatabase
     //
     this.lblDatabase.Caption = "CSDL:";
     this.lblDatabase.Id = 237;
     this.lblDatabase.ImageIndex = 72;
     this.lblDatabase.Name = "lblDatabase";
     toolTipTitleItem2.Text = "Nhấn đúp chuột vào đây để sử dụng một cơ sở dữ liệu khác.";
     toolTipItem5.LeftIndent = 6;
     toolTipItem5.Text = "Chú ý: Sau khi cấu hình thành công, khởi động lại phần mềm để nạp cấu hình mới.";
     superToolTip5.Items.Add(toolTipTitleItem2);
     superToolTip5.Items.Add(toolTipItem5);
     this.lblDatabase.SuperTip = superToolTip5;
     this.lblDatabase.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ISystem
     //
     this.ISystem.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ISystem.Caption = "Hệ Thống";
     this.ISystem.Id = 255;
     this.ISystem.ImageIndex = 78;
     this.ISystem.LargeImageIndex = 78;
     this.ISystem.Name = "ISystem";
     this.ISystem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInit
     //
     this.IInit.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInit.Caption = "Nhập Số Dư Ban Đầu";
     this.IInit.Id = 256;
     this.IInit.ImageIndex = 79;
     this.IInit.LargeImageIndex = 79;
     this.IInit.Name = "IInit";
     this.IInit.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInward
     //
     this.IInward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInward.Caption = "Nhập Kho";
     this.IInward.Id = 257;
     this.IInward.ImageIndex = 28;
     this.IInward.LargeImageIndex = 28;
     this.IInward.Name = "IInward";
     this.IInward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IOutward
     //
     this.IOutward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IOutward.Caption = "Xuất Kho";
     this.IOutward.Id = 258;
     this.IOutward.ImageIndex = 31;
     this.IOutward.LargeImageIndex = 31;
     this.IOutward.Name = "IOutward";
     this.IOutward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // ITransfer
     //
     this.ITransfer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ITransfer.Caption = "Chuyển Kho";
     this.ITransfer.Id = 259;
     this.ITransfer.ImageIndex = 25;
     this.ITransfer.LargeImageIndex = 25;
     this.ITransfer.Name = "ITransfer";
     this.ITransfer.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IAdjustment
     //
     this.IAdjustment.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IAdjustment.Caption = "Kiểm Kê";
     this.IAdjustment.Id = 260;
     this.IAdjustment.ImageIndex = 27;
     this.IAdjustment.LargeImageIndex = 27;
     this.IAdjustment.Name = "IAdjustment";
     this.IAdjustment.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInventory
     //
     this.IInventory.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInventory.Caption = "Tồn Kho";
     this.IInventory.Id = 261;
     this.IInventory.ImageIndex = 30;
     this.IInventory.LargeImageIndex = 30;
     this.IInventory.Name = "IInventory";
     this.IInventory.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IPacket
     //
     this.IPacket.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IPacket.Caption = "Đóng Gói";
     this.IPacket.Id = 264;
     this.IPacket.ImageIndex = 26;
     this.IPacket.LargeImageIndex = 26;
     this.IPacket.Name = "IPacket";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Kết Thúc";
     this.bbiClose.Description = "Kết thúc";
     this.bbiClose.Hint = "Kết thúc";
     this.bbiClose.Id = 132;
     this.bbiClose.ImageIndex = 0;
     this.bbiClose.LargeImageIndex = 20;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BbiCloseItemClick);
     //
     // bbiUserGroup
     //
     this.bbiUserGroup.Caption = "Vai Trò && Quyền Hạn";
     this.bbiUserGroup.Id = 295;
     this.bbiUserGroup.ImageIndex = 2;
     this.bbiUserGroup.LargeImageIndex = 2;
     this.bbiUserGroup.Name = "bbiUserGroup";
     this.bbiUserGroup.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUsers
     //
     this.bbiUsers.Caption = "Người Dùng";
     this.bbiUsers.Id = 296;
     this.bbiUsers.ImageIndex = 1;
     this.bbiUsers.LargeImageIndex = 1;
     this.bbiUsers.Name = "bbiUsers";
     this.bbiUsers.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUpdateOnline
     //
     this.bbiUpdateOnline.Caption = "Cập Nhật Trực Tuyến";
     this.bbiUpdateOnline.Id = 300;
     this.bbiUpdateOnline.ImageIndex = 86;
     this.bbiUpdateOnline.Name = "bbiUpdateOnline";
     //
     // bbiUpdateOffline
     //
     this.bbiUpdateOffline.Caption = "Cập Nhật Thông Thường";
     this.bbiUpdateOffline.Id = 301;
     this.bbiUpdateOffline.ImageIndex = 85;
     this.bbiUpdateOffline.Name = "bbiUpdateOffline";
     //
     // biiHelpNormal
     //
     this.biiHelpNormal.Caption = "Tài Liệu Hướng Dẫn";
     this.biiHelpNormal.Id = 306;
     this.biiHelpNormal.ImageIndex = 89;
     this.biiHelpNormal.LargeImageIndex = 89;
     this.biiHelpNormal.Name = "biiHelpNormal";
     //
     // biiHelpVideo
     //
     this.biiHelpVideo.Caption = "Video Hướng Dẫn";
     this.biiHelpVideo.Id = 307;
     this.biiHelpVideo.ImageIndex = 90;
     this.biiHelpVideo.LargeImageIndex = 90;
     this.biiHelpVideo.Name = "biiHelpVideo";
     //
     // bbIThuChi
     //
     this.bbIThuChi.Caption = "Thu Chi";
     this.bbIThuChi.Id = 315;
     this.bbIThuChi.ImageIndex = 33;
     this.bbIThuChi.LargeImageIndex = 48;
     this.bbIThuChi.Name = "bbIThuChi";
     this.bbIThuChi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbIThuChi_ItemClick);
     //
     // bbiSaoLuu
     //
     this.bbiSaoLuu.Caption = "Sao Lưu";
     this.bbiSaoLuu.Id = 316;
     this.bbiSaoLuu.LargeImageIndex = 40;
     this.bbiSaoLuu.Name = "bbiSaoLuu";
     this.bbiSaoLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSaoLuu_ItemClick);
     //
     // bbiPhucHoi
     //
     this.bbiPhucHoi.Caption = "Phục Hồi";
     this.bbiPhucHoi.Id = 317;
     this.bbiPhucHoi.LargeImageIndex = 41;
     this.bbiPhucHoi.Name = "bbiPhucHoi";
     this.bbiPhucHoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhucHoi_ItemClick);
     //
     // bbiQuyTienMat
     //
     this.bbiQuyTienMat.Caption = "Quỹ Tiền Mặt";
     this.bbiQuyTienMat.Id = 318;
     this.bbiQuyTienMat.LargeImageIndex = 22;
     this.bbiQuyTienMat.Name = "bbiQuyTienMat";
     this.bbiQuyTienMat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiQuyTienMat_ItemClick);
     //
     // bbiInMaVach
     //
     this.bbiInMaVach.Caption = "In Mã Vạch";
     this.bbiInMaVach.Id = 319;
     this.bbiInMaVach.ImageIndex = 6;
     this.bbiInMaVach.LargeImageIndex = 32;
     this.bbiInMaVach.Name = "bbiInMaVach";
     this.bbiInMaVach.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiInMaVach_ItemClick);
     //
     // rbpChucNang
     //
     this.rbpChucNang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgQuanLy,
     this.rbpHeThong});
     this.rbpChucNang.Name = "rbpChucNang";
     this.rbpChucNang.Text = "Chức Năng";
     //
     // rbpgQuanLy
     //
     this.rbpgQuanLy.ItemLinks.Add(this.bbiCamDo);
     this.rbpgQuanLy.ItemLinks.Add(this.bbiChuocDo);
     this.rbpgQuanLy.ItemLinks.Add(this.bbIThuChi);
     this.rbpgQuanLy.ItemLinks.Add(this.bbiQuyTienMat);
     this.rbpgQuanLy.ItemLinks.Add(this.bbiInMaVach);
     this.rbpgQuanLy.Name = "rbpgQuanLy";
     this.rbpgQuanLy.ShowCaptionButton = false;
     this.rbpgQuanLy.Text = "Quản Lý";
     //
     // rbpHeThong
     //
     this.rbpHeThong.ItemLinks.Add(this.bbiPhucHoi);
     this.rbpHeThong.ItemLinks.Add(this.bbiSaoLuu);
     this.rbpHeThong.ItemLinks.Add(this.bbiClose);
     this.rbpHeThong.Name = "rbpHeThong";
     this.rbpHeThong.Text = "Hệ Thống";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // rbsMain
     //
     this.rbsMain.Location = new System.Drawing.Point(0, 736);
     this.rbsMain.Name = "rbsMain";
     this.rbsMain.Ribbon = this.rbcMain;
     this.rbsMain.Size = new System.Drawing.Size(1016, 31);
     //
     // tabMdi
     //
     this.tabMdi.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.tabMdi.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
     | DevExpress.XtraTab.TabButtons.Close)
     | DevExpress.XtraTab.TabButtons.Default)));
     this.tabMdi.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.tabMdi.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.tabMdi.Images = this.img;
     this.tabMdi.MdiParent = this;
     this.tabMdi.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.Windows;
     this.tabMdi.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     this.tabMdi.ShowToolTips = DevExpress.Utils.DefaultBoolean.True;
     //
     // DanhSachChucNang
     //
     this.ClientSize = new System.Drawing.Size(1016, 767);
     this.Controls.Add(this.rbsMain);
     this.Controls.Add(this.rbcMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "DanhSachChucNang";
     this.Ribbon = this.rbcMain;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.rbsMain;
     this.Text = "Phần Mềm Quản Lý Cầm Đồ";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }