예제 #1
0
        private DevComponents.DotNetBar.Bar CreateBar(string strName, enumLayType layType)
        {
            DevComponents.DotNetBar.Bar bar = new DevComponents.DotNetBar.Bar();
            bar.AccessibleRole       = System.Windows.Forms.AccessibleRole.ToolBar;
            bar.AlwaysDisplayDockTab = true;
            bar.CanCustomize         = false;
            bar.CanDockBottom        = false;
            bar.CanDockDocument      = true;
            bar.CanDockLeft          = false;
            bar.CanDockRight         = false;
            bar.CanDockTop           = false;
            bar.CanHide          = true;
            bar.CanUndock        = false;
            bar.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
            bar.LayoutType       = DevComponents.DotNetBar.eLayoutType.DockContainer;
            bar.SelectedDockTab  = 0;
            bar.Stretch          = true;
            bar.Style            = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            bar.TabStop          = false;
            bar.Name             = strName;

            DevComponents.DotNetBar.DockSite dockSite = null;
            switch (layType)
            {
            case enumLayType.BOTTOM:
                dockSite = dotNetBarManager.BottomDockSite;
                break;

            case enumLayType.FILL:
                dockSite = dotNetBarManager.FillDockSite;
                break;

            case enumLayType.LEFT:
                dockSite = dotNetBarManager.LeftDockSite;
                break;

            case enumLayType.RIGHT:
                dockSite = dotNetBarManager.RightDockSite;
                break;

            case enumLayType.TOP:
                dockSite = dotNetBarManager.TopDockSite;
                break;
            }
            if (dockSite != null)
            {
                dockSite.Controls.Add(bar);
                dockSite.DocumentDockContainer.Orientation = DevComponents.DotNetBar.eOrientation.Vertical;
                DevComponents.DotNetBar.DocumentBarContainer aDocumentBarContainer = new DevComponents.DotNetBar.DocumentBarContainer(bar, bar.Size.Width, bar.Size.Height);
                dockSite.DocumentDockContainer.Documents.Add(((DevComponents.DotNetBar.DocumentBaseContainer)(aDocumentBarContainer)));
            }
            return(bar);
        }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvTasks = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnFile = new DevComponents.DotNetBar.ButtonItem();
     this.btnExport = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).BeginInit();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTasks
     //
     this.dgvTasks.AllowUserToAddRows = false;
     this.dgvTasks.AllowUserToDeleteRows = false;
     this.dgvTasks.BackgroundColor = System.Drawing.Color.White;
     this.dgvTasks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvTasks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column3,
     this.Column4,
     this.Column2});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTasks.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTasks.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvTasks.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvTasks.Location = new System.Drawing.Point(0, 27);
     this.dgvTasks.Name = "dgvTasks";
     this.dgvTasks.ReadOnly = true;
     this.dgvTasks.RowTemplate.Height = 24;
     this.dgvTasks.Size = new System.Drawing.Size(784, 535);
     this.dgvTasks.TabIndex = 0;
     this.dgvTasks.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentClick);
     this.dgvTasks.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentDoubleClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "狀態";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.HeaderText = "工作名稱";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column3.Width = 341;
     //
     // Column4
     //
     this.Column4.HeaderText = "訊息";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width = 200;
     //
     // Column2
     //
     this.Column2.HeaderText = "取消";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column2.Visible = false;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 562);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(784, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 27);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 535);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(784, 27);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 535);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 562);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(784, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 27);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 535);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(784, 27);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 535);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(784, 27);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFile});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.MenuBar = true;
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(784, 26);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnFile
     //
     this.btnFile.Name = "btnFile";
     this.btnFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnExport,
     this.btnExit});
     this.btnFile.Text = "檔案";
     //
     // btnExport
     //
     this.btnExport.Enabled = false;
     this.btnExport.Name = "btnExport";
     this.btnExport.Text = "匯出";
     //
     // btnExit
     //
     this.btnExit.BeginGroup = true;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 27);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(784, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // MultiTaskingRunner
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 562);
     this.ControlBox = false;
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dgvTasks);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MultiTaskingRunner";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "批次工作執行";
     this.Load += new System.EventHandler(this.MultiTaskingRunner_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).EndInit();
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #3
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(main));
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar16 = new DevComponents.DotNetBar.RibbonBar();
     this.Exit = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
     this.Refresh = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this._save = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this._open = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this._newproject = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar9 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar8 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar7 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar5 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar15 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar12 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar11 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar10 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar14 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this._File = new DevComponents.DotNetBar.RibbonTabItem();
     this._Edit = new DevComponents.DotNetBar.RibbonTabItem();
     this._Test = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItem3 = new DevComponents.DotNetBar.RibbonTabItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this._New = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.treeViewproject = new System.Windows.Forms.TreeView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addNewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabControl1 = new System.Windows.Forms.CustomTabControl();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel4.SuspendLayout();
     this.ribbonPanel5.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Controls.Add(this.ribbonPanel4);
     this.ribbonControl1.Controls.Add(this.ribbonPanel5);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._File,
     this._Edit,
     this._Test,
     this.ribbonTabItem3});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(996, 129);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar16);
     this.ribbonPanel1.Controls.Add(this.ribbonBar13);
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel1.MaximumSize = new System.Drawing.Size(0, 70);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(996, 70);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar16
     //
     this.ribbonBar16.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar16.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar16.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar16.BackgroundStyle.Class = "";
     this.ribbonBar16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar16.ContainerControlProcessDialogKey = true;
     this.ribbonBar16.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar16.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.Exit});
     this.ribbonBar16.Location = new System.Drawing.Point(306, 0);
     this.ribbonBar16.Name = "ribbonBar16";
     this.ribbonBar16.Size = new System.Drawing.Size(100, 67);
     this.ribbonBar16.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar16.TabIndex = 4;
     //
     //
     //
     this.ribbonBar16.TitleStyle.Class = "";
     this.ribbonBar16.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar16.TitleStyleMouseOver.Class = "";
     this.ribbonBar16.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // Exit
     //
     this.Exit.Image = ((System.Drawing.Image)(resources.GetObject("Exit.Image")));
     this.Exit.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Exit.Name = "Exit";
     this.Exit.SubItemsExpandWidth = 14;
     this.Exit.Text = "<div width=\"70\"  align=\"center\">Exit</div>";
     this.Exit.Click += new System.EventHandler(this.Exit_Click);
     //
     // ribbonBar13
     //
     this.ribbonBar13.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar13.BackgroundStyle.Class = "";
     this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar13.ContainerControlProcessDialogKey = true;
     this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.Refresh});
     this.ribbonBar13.Location = new System.Drawing.Point(232, 0);
     this.ribbonBar13.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar13.Name = "ribbonBar13";
     this.ribbonBar13.Size = new System.Drawing.Size(74, 67);
     this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar13.TabIndex = 3;
     //
     //
     //
     this.ribbonBar13.TitleStyle.Class = "";
     this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar13.TitleStyleMouseOver.Class = "";
     this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // Refresh
     //
     this.Refresh.Image = ((System.Drawing.Image)(resources.GetObject("Refresh.Image")));
     this.Refresh.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.Refresh.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Refresh.Name = "Refresh";
     this.Refresh.SubItemsExpandWidth = 14;
     this.Refresh.Text = "<div width=\"70\"  align=\"center\">Refersh</div>";
     this.Refresh.Click += new System.EventHandler(this.Refresh_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._save});
     this.ribbonBar3.Location = new System.Drawing.Point(158, 0);
     this.ribbonBar3.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(74, 67);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 2;
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _save
     //
     this._save.Image = ((System.Drawing.Image)(resources.GetObject("_save.Image")));
     this._save.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._save.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._save.Name = "_save";
     this._save.SubItemsExpandWidth = 14;
     this._save.Text = "<div width=\"70\"  align=\"center\">Save</div>";
     this._save.Click += new System.EventHandler(this.buttonItem5_Click);
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._open});
     this.ribbonBar2.Location = new System.Drawing.Point(79, 0);
     this.ribbonBar2.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(79, 67);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 1;
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _open
     //
     this._open.Image = ((System.Drawing.Image)(resources.GetObject("_open.Image")));
     this._open.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._open.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._open.Name = "_open";
     this._open.SubItemsExpandWidth = 14;
     this._open.Text = "<div width=\"70\"  align=\"center\">Open</div>";
     this._open.Click += new System.EventHandler(this.buttonItem3_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.Class = "";
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._newproject});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(76, 67);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _newproject
     //
     this._newproject.Image = ((System.Drawing.Image)(resources.GetObject("_newproject.Image")));
     this._newproject.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._newproject.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._newproject.Name = "_newproject";
     this._newproject.SubItemsExpandWidth = 14;
     this._newproject.Text = "<div width=\"70\"  align=\"center\">New Project</div>";
     this._newproject.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel2.Controls.Add(this.ribbonBar9);
     this.ribbonPanel2.Controls.Add(this.ribbonBar8);
     this.ribbonPanel2.Controls.Add(this.ribbonBar7);
     this.ribbonPanel2.Controls.Add(this.ribbonBar6);
     this.ribbonPanel2.Controls.Add(this.ribbonBar5);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel2.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel2.Style.Class = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     this.ribbonPanel2.Visible = false;
     //
     // ribbonBar9
     //
     this.ribbonBar9.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar9.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar9.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.BackgroundStyle.Class = "";
     this.ribbonBar9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar9.ContainerControlProcessDialogKey = true;
     this.ribbonBar9.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar9.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem14});
     this.ribbonBar9.Location = new System.Drawing.Point(403, 0);
     this.ribbonBar9.Name = "ribbonBar9";
     this.ribbonBar9.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar9.TabIndex = 4;
     //
     //
     //
     this.ribbonBar9.TitleStyle.Class = "";
     this.ribbonBar9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.TitleStyleMouseOver.Class = "";
     this.ribbonBar9.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem14.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItemsExpandWidth = 14;
     this.buttonItem14.Text = "<div width=\"70\"  align=\"center\">Parse</div>";
     //
     // ribbonBar8
     //
     this.ribbonBar8.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar8.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar8.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.BackgroundStyle.Class = "";
     this.ribbonBar8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar8.ContainerControlProcessDialogKey = true;
     this.ribbonBar8.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar8.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem13});
     this.ribbonBar8.Location = new System.Drawing.Point(303, 0);
     this.ribbonBar8.Name = "ribbonBar8";
     this.ribbonBar8.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar8.TabIndex = 3;
     //
     //
     //
     this.ribbonBar8.TitleStyle.Class = "";
     this.ribbonBar8.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.TitleStyleMouseOver.Class = "";
     this.ribbonBar8.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem13.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 14;
     this.buttonItem13.Text = "<div width=\"70\"  align=\"center\">Cut</div>";
     //
     // ribbonBar7
     //
     this.ribbonBar7.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar7.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar7.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.BackgroundStyle.Class = "";
     this.ribbonBar7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar7.ContainerControlProcessDialogKey = true;
     this.ribbonBar7.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12});
     this.ribbonBar7.Location = new System.Drawing.Point(203, 0);
     this.ribbonBar7.Name = "ribbonBar7";
     this.ribbonBar7.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar7.TabIndex = 2;
     //
     //
     //
     this.ribbonBar7.TitleStyle.Class = "";
     this.ribbonBar7.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.TitleStyleMouseOver.Class = "";
     this.ribbonBar7.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem12.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 14;
     this.buttonItem12.Text = "<div width=\"70\"  align=\"center\">Copy</div>";
     //
     // ribbonBar6
     //
     this.ribbonBar6.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar6.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar6.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.BackgroundStyle.Class = "";
     this.ribbonBar6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar6.ContainerControlProcessDialogKey = true;
     this.ribbonBar6.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem8});
     this.ribbonBar6.Location = new System.Drawing.Point(103, 0);
     this.ribbonBar6.Name = "ribbonBar6";
     this.ribbonBar6.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar6.TabIndex = 1;
     //
     //
     //
     this.ribbonBar6.TitleStyle.Class = "";
     this.ribbonBar6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.TitleStyleMouseOver.Class = "";
     this.ribbonBar6.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem8.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.SubItemsExpandWidth = 14;
     this.buttonItem8.Text = "<div width=\"70\"  align=\"center\">Redo</div>";
     //
     // ribbonBar5
     //
     this.ribbonBar5.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar5.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar5.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.BackgroundStyle.Class = "";
     this.ribbonBar5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.ContainerControlProcessDialogKey = true;
     this.ribbonBar5.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem11});
     this.ribbonBar5.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar5.Name = "ribbonBar5";
     this.ribbonBar5.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar5.TabIndex = 0;
     //
     //
     //
     this.ribbonBar5.TitleStyle.Class = "";
     this.ribbonBar5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.TitleStyleMouseOver.Class = "";
     this.ribbonBar5.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem11.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.SubItemsExpandWidth = 14;
     this.buttonItem11.Text = "<div width=\"70\"  align=\"center\">Undo</div>";
     //
     // ribbonPanel4
     //
     this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel4.Controls.Add(this.ribbonBar4);
     this.ribbonPanel4.Controls.Add(this.ribbonBar15);
     this.ribbonPanel4.Controls.Add(this.ribbonBar12);
     this.ribbonPanel4.Controls.Add(this.ribbonBar11);
     this.ribbonPanel4.Controls.Add(this.ribbonBar10);
     this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel4.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel4.Name = "ribbonPanel4";
     this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel4.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel4.Style.Class = "";
     this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel4.StyleMouseDown.Class = "";
     this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel4.StyleMouseOver.Class = "";
     this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel4.TabIndex = 4;
     this.ribbonPanel4.Visible = false;
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem5});
     this.ribbonBar4.Location = new System.Drawing.Point(403, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 4;
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem5
     //
     this.buttonItem5.Enabled = false;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem5.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 14;
     this.buttonItem5.Text = "<div width=\"70\"  align=\"center\">Spy</div>";
     this.buttonItem5.Click += new System.EventHandler(this.buttonItem5_Click_1);
     //
     // ribbonBar15
     //
     this.ribbonBar15.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar15.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar15.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar15.BackgroundStyle.Class = "";
     this.ribbonBar15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar15.ContainerControlProcessDialogKey = true;
     this.ribbonBar15.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar15.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.ribbonBar15.Location = new System.Drawing.Point(303, 0);
     this.ribbonBar15.Name = "ribbonBar15";
     this.ribbonBar15.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar15.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar15.TabIndex = 3;
     this.ribbonBar15.Text = " ";
     //
     //
     //
     this.ribbonBar15.TitleStyle.Class = "";
     this.ribbonBar15.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar15.TitleStyleMouseOver.Class = "";
     this.ribbonBar15.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Enabled = false;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 14;
     this.buttonItem2.Text = "<div width=\"70\"  align=\"center\">Resum</div>";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click_1);
     //
     // ribbonBar12
     //
     this.ribbonBar12.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar12.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar12.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar12.BackgroundStyle.Class = "";
     this.ribbonBar12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar12.ContainerControlProcessDialogKey = true;
     this.ribbonBar12.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar12.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem4});
     this.ribbonBar12.Location = new System.Drawing.Point(203, 0);
     this.ribbonBar12.Name = "ribbonBar12";
     this.ribbonBar12.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar12.TabIndex = 2;
     //
     //
     //
     this.ribbonBar12.TitleStyle.Class = "";
     this.ribbonBar12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar12.TitleStyleMouseOver.Class = "";
     this.ribbonBar12.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem4
     //
     this.buttonItem4.Enabled = false;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem4.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 14;
     this.buttonItem4.Text = "<div width=\"70\"  align=\"center\">Stop</div>";
     this.buttonItem4.Click += new System.EventHandler(this.buttonItem4_Click);
     //
     // ribbonBar11
     //
     this.ribbonBar11.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar11.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar11.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.BackgroundStyle.Class = "";
     this.ribbonBar11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar11.ContainerControlProcessDialogKey = true;
     this.ribbonBar11.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar11.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem16});
     this.ribbonBar11.Location = new System.Drawing.Point(103, 0);
     this.ribbonBar11.Name = "ribbonBar11";
     this.ribbonBar11.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar11.TabIndex = 1;
     //
     //
     //
     this.ribbonBar11.TitleStyle.Class = "";
     this.ribbonBar11.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.TitleStyleMouseOver.Class = "";
     this.ribbonBar11.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem16
     //
     this.buttonItem16.Enabled = false;
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem16.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "<div width=\"70\"  align=\"center\">Pause</div>";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar10
     //
     this.ribbonBar10.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar10.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar10.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.BackgroundStyle.Class = "";
     this.ribbonBar10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar10.ContainerControlProcessDialogKey = true;
     this.ribbonBar10.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar10.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem15});
     this.ribbonBar10.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar10.Name = "ribbonBar10";
     this.ribbonBar10.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar10.TabIndex = 0;
     //
     //
     //
     this.ribbonBar10.TitleStyle.Class = "";
     this.ribbonBar10.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.TitleStyleMouseOver.Class = "";
     this.ribbonBar10.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem15
     //
     this.buttonItem15.Enabled = false;
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem15.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.SubItemsExpandWidth = 14;
     this.buttonItem15.Text = "<div width=\"70\"  align=\"center\">Run</div>";
     this.buttonItem15.Click += new System.EventHandler(this.buttonItem15_Click);
     //
     // ribbonPanel5
     //
     this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel5.Controls.Add(this.ribbonBar14);
     this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel5.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel5.Name = "ribbonPanel5";
     this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel5.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel5.Style.Class = "";
     this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel5.StyleMouseDown.Class = "";
     this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel5.StyleMouseOver.Class = "";
     this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel5.TabIndex = 5;
     this.ribbonPanel5.Visible = false;
     //
     // ribbonBar14
     //
     this.ribbonBar14.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar14.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar14.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar14.BackgroundStyle.Class = "";
     this.ribbonBar14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar14.ContainerControlProcessDialogKey = true;
     this.ribbonBar14.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar14.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3});
     this.ribbonBar14.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar14.Name = "ribbonBar14";
     this.ribbonBar14.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar14.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar14.TabIndex = 0;
     //
     //
     //
     this.ribbonBar14.TitleStyle.Class = "";
     this.ribbonBar14.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar14.TitleStyleMouseOver.Class = "";
     this.ribbonBar14.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem3.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 14;
     this.buttonItem3.Text = "<div width=\"70\"  align=\"center\">Hướng dẫn\r\n</div>";
     //
     // _File
     //
     this._File.Checked = true;
     this._File.Name = "_File";
     this._File.Panel = this.ribbonPanel1;
     this._File.Text = "FILE";
     //
     // _Edit
     //
     this._Edit.Name = "_Edit";
     this._Edit.Panel = this.ribbonPanel2;
     this._Edit.Text = "EDIT";
     //
     // _Test
     //
     this._Test.Name = "_Test";
     this._Test.Panel = this.ribbonPanel4;
     this._Test.Text = "TEST";
     //
     // ribbonTabItem3
     //
     this.ribbonTabItem3.Name = "ribbonTabItem3";
     this.ribbonTabItem3.Panel = this.ribbonPanel5;
     this.ribbonTabItem3.Text = "ABOUT";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // _New
     //
     this._New.Image = ((System.Drawing.Image)(resources.GetObject("_New.Image")));
     this._New.ImageFixedSize = new System.Drawing.Size(40, 40);
     this._New.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._New.Name = "_New";
     this._New.SubItemsExpandWidth = 14;
     this._New.Text = "New File";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(40, 40);
     this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItemsExpandWidth = 14;
     this.buttonItem1.Text = "New File";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem9.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10});
     this.buttonItem9.SubItemsExpandWidth = 14;
     this.buttonItem9.Text = "<div width=\"70\"  align=\"center\">New File</div>";
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.ImageFixedSize = new System.Drawing.Size(40, 40);
     this.buttonItem10.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.SubItemsExpandWidth = 14;
     this.buttonItem10.Text = "<div width=\"70\" align=\"center\">Close</div>";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 516);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(996, 0);
     this.dockSite4.TabIndex = 4;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 246, 386)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 130);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(249, 386);
     this.dockSite1.TabIndex = 1;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CanDockBottom = false;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.bar1.DockOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(246, 386);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Solution Explorer";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.Add(this.treeViewproject);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(240, 360);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.StyleMouseDown.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
     this.panelDockContainer1.StyleMouseDown.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139)))));
     this.panelDockContainer1.StyleMouseDown.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.panelDockContainer1.StyleMouseDown.ForeColor.Color = System.Drawing.SystemColors.ControlText;
     this.panelDockContainer1.StyleMouseOver.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(244)))), ((int)(((byte)(204)))));
     this.panelDockContainer1.StyleMouseOver.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(208)))), ((int)(((byte)(145)))));
     this.panelDockContainer1.StyleMouseOver.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.panelDockContainer1.StyleMouseOver.ForeColor.Color = System.Drawing.SystemColors.ControlText;
     this.panelDockContainer1.TabIndex = 0;
     //
     // treeViewproject
     //
     this.treeViewproject.ContextMenuStrip = this.contextMenuStrip1;
     this.treeViewproject.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeViewproject.ImageIndex = 0;
     this.treeViewproject.ImageList = this.imageList1;
     this.treeViewproject.Location = new System.Drawing.Point(0, 0);
     this.treeViewproject.Name = "treeViewproject";
     this.treeViewproject.SelectedImageIndex = 0;
     this.treeViewproject.Size = new System.Drawing.Size(240, 360);
     this.treeViewproject.TabIndex = 0;
     this.treeViewproject.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     this.treeViewproject.DoubleClick += new System.EventHandler(this.treeViewproject_DoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addNewFileToolStripMenuItem,
     this.deleteToolStripMenuItem,
     this.runToolStripMenuItem,
     this.spyToolStripMenuItem,
     this.refreshToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(145, 114);
     //
     // addNewFileToolStripMenuItem
     //
     this.addNewFileToolStripMenuItem.Name = "addNewFileToolStripMenuItem";
     this.addNewFileToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.addNewFileToolStripMenuItem.Text = "Add New File";
     this.addNewFileToolStripMenuItem.Click += new System.EventHandler(this.addNewFileToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.Enabled = false;
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.runToolStripMenuItem.Text = "Run";
     this.runToolStripMenuItem.Click += new System.EventHandler(this.runToolStripMenuItem_Click);
     //
     // spyToolStripMenuItem
     //
     this.spyToolStripMenuItem.Name = "spyToolStripMenuItem";
     this.spyToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.spyToolStripMenuItem.Text = "Spy";
     this.spyToolStripMenuItem.Click += new System.EventHandler(this.spyToolStripMenuItem_Click_1);
     //
     // refreshToolStripMenuItem
     //
     this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
     this.refreshToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.refreshToolStripMenuItem.Text = "Refresh";
     this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "xls.png");
     this.imageList1.Images.SetKeyName(1, "folder-512.png");
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "Solution Explorer";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(1001, 130);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 386);
     this.dockSite2.TabIndex = 2;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 516);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(996, 0);
     this.dockSite8.TabIndex = 8;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 515);
     this.dockSite5.TabIndex = 5;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(1001, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 515);
     this.dockSite6.TabIndex = 6;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(996, 0);
     this.dockSite7.TabIndex = 7;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(996, 0);
     this.dockSite3.TabIndex = 3;
     this.dockSite3.TabStop = false;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem2.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.metroTileItem2.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.metroTileItem2.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem2.TileStyle.Class = "";
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingBottom = 4;
     this.metroTileItem2.TileStyle.PaddingLeft = 4;
     this.metroTileItem2.TileStyle.PaddingRight = 4;
     this.metroTileItem2.TileStyle.PaddingTop = 4;
     this.metroTileItem2.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.closeTabToolStripMenuItem,
     this.copyToolStripMenuItem});
     this.contextMenuStrip2.Name = "contextMenuStrip2";
     this.contextMenuStrip2.Size = new System.Drawing.Size(127, 48);
     //
     // closeTabToolStripMenuItem
     //
     this.closeTabToolStripMenuItem.Name = "closeTabToolStripMenuItem";
     this.closeTabToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.closeTabToolStripMenuItem.Text = "Close Tab";
     this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click_1);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.copyToolStripMenuItem.Text = "Copy";
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.pictureBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 28);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(739, 354);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Start Page";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(733, 348);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabControl1
     //
     this.tabControl1.AllowDrop = true;
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.DisplayStyle = System.Windows.Forms.TabStyle.IE8;
     //
     //
     //
     this.tabControl1.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.tabControl1.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
     this.tabControl1.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.Red;
     this.tabControl1.DisplayStyleProvider.FocusTrack = false;
     this.tabControl1.DisplayStyleProvider.HotTrack = true;
     this.tabControl1.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tabControl1.DisplayStyleProvider.Opacity = 1F;
     this.tabControl1.DisplayStyleProvider.Overlap = 0;
     this.tabControl1.DisplayStyleProvider.Padding = new System.Drawing.Point(6, 5);
     this.tabControl1.DisplayStyleProvider.Radius = 3;
     this.tabControl1.DisplayStyleProvider.ShowTabCloser = true;
     this.tabControl1.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HotTrack = true;
     this.tabControl1.ImageList = this.imageList1;
     this.tabControl1.Location = new System.Drawing.Point(254, 130);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(747, 386);
     this.tabControl1.TabIndex = 9;
     this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown);
     //
     // main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1006, 518);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Automation Test";
     this.Load += new System.EventHandler(this.main_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel4.ResumeLayout(false);
     this.ribbonPanel5.ResumeLayout(false);
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #4
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();
			#if !TRIAL
			this.previewManager = new DevComponents.DotNetBar.DotNetBarManager(this.components,true);
			#else
			this.previewManager = new DevComponents.DotNetBar.DotNetBarManager(this.components);
			#endif
			this.barBottomDockSite = new DevComponents.DotNetBar.DockSite();
			this.barLeftDockSite = new DevComponents.DotNetBar.DockSite();
			this.barRightDockSite = new DevComponents.DotNetBar.DockSite();
			this.barTopDockSite = new DevComponents.DotNetBar.DockSite();
			this.SuspendLayout();
			// 
			// previewManager
			// 
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
			this.previewManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
			this.previewManager.BottomDockSite = this.barBottomDockSite;
			this.previewManager.DefinitionName = "";
			this.previewManager.LeftDockSite = this.barLeftDockSite;
			this.previewManager.ParentForm = null;
			this.previewManager.RightDockSite = this.barRightDockSite;
			this.previewManager.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.previewManager.TopDockSite = this.barTopDockSite;
			this.previewManager.UseCustomCustomizeDialog = true;
			this.previewManager.UseHook = true;
			this.previewManager.BarClosing += new DevComponents.DotNetBar.DotNetBarManager.BarClosingEventHandler(this.OnBarClosing);
			this.previewManager.BarUndock += new System.EventHandler(this.OnDefinitionChanged);
			this.previewManager.BarTearOff += new System.EventHandler(this.OnDefinitionChanged);
			this.previewManager.BarDock += new System.EventHandler(this.OnDefinitionChanged);
			this.previewManager.AutoHideChanged += new System.EventHandler(this.OnDefinitionChanged);
			this.previewManager.EnterCustomize += new System.EventHandler(this.previewManager_EnterCustomize);
			// 
			// barBottomDockSite
			// 
			this.barBottomDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barBottomDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barBottomDockSite.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barBottomDockSite.Location = new System.Drawing.Point(0, 176);
			this.barBottomDockSite.Name = "barBottomDockSite";
			this.barBottomDockSite.Size = new System.Drawing.Size(240, 0);
			this.barBottomDockSite.TabIndex = 3;
			this.barBottomDockSite.TabStop = false;
			// 
			// barLeftDockSite
			// 
			this.barLeftDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barLeftDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barLeftDockSite.Dock = System.Windows.Forms.DockStyle.Left;
			this.barLeftDockSite.Location = new System.Drawing.Point(0, 0);
			this.barLeftDockSite.Name = "barLeftDockSite";
			this.barLeftDockSite.Size = new System.Drawing.Size(0, 176);
			this.barLeftDockSite.TabIndex = 0;
			this.barLeftDockSite.TabStop = false;
			// 
			// barRightDockSite
			// 
			this.barRightDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barRightDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barRightDockSite.Dock = System.Windows.Forms.DockStyle.Right;
			this.barRightDockSite.Location = new System.Drawing.Point(240, 0);
			this.barRightDockSite.Name = "barRightDockSite";
			this.barRightDockSite.Size = new System.Drawing.Size(0, 176);
			this.barRightDockSite.TabIndex = 1;
			this.barRightDockSite.TabStop = false;
			// 
			// barTopDockSite
			// 
			this.barTopDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barTopDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barTopDockSite.Dock = System.Windows.Forms.DockStyle.Top;
			this.barTopDockSite.Location = new System.Drawing.Point(0, 0);
			this.barTopDockSite.Name = "barTopDockSite";
			this.barTopDockSite.Size = new System.Drawing.Size(240, 0);
			this.barTopDockSite.TabIndex = 2;
			this.barTopDockSite.TabStop = false;
			// 
			// DefinitionPreviewControl
			// 
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Controls.Add(this.barLeftDockSite);
			this.Controls.Add(this.barRightDockSite);
			this.Controls.Add(this.barTopDockSite);
			this.Controls.Add(this.barBottomDockSite);
			this.Name = "DefinitionPreviewControl";
			this.Size = new System.Drawing.Size(240, 176);
			this.ResumeLayout(false);

		}
예제 #5
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(SetOp));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnItm_Sav = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Modify = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Del = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Search = new DevComponents.DotNetBar.ButtonItem();
     this.BtnSave = new DevComponents.DotNetBar.ButtonItem();
     this.BtnCancle = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Exit = new DevComponents.DotNetBar.ButtonItem();
     this.customizeItem1 = new DevComponents.DotNetBar.CustomizeItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.TxtTel = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.TxtPws = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.lblX3 = new DevComponents.DotNetBar.LabelX();
     this.lblX2 = new DevComponents.DotNetBar.LabelX();
     this.lblX1 = new DevComponents.DotNetBar.LabelX();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.DefinitionName = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 559);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(638, 0);
     this.dockSite4.TabIndex = 3;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 57);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 502);
     this.dockSite1.TabIndex = 0;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(638, 57);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 502);
     this.dockSite2.TabIndex = 1;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 559);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(638, 0);
     this.dockSite8.TabIndex = 7;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 57);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 502);
     this.dockSite5.TabIndex = 4;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(638, 57);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 502);
     this.dockSite6.TabIndex = 5;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(638, 57);
     this.dockSite7.TabIndex = 6;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnItm_Sav,
     this.btnItm_Modify,
     this.btnItm_Del,
     this.btnItm_Search,
     this.BtnSave,
     this.BtnCancle,
     this.btnItm_Exit,
     this.customizeItem1});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(300, 57);
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnItm_Sav
     //
     this.btnItm_Sav.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Sav.Image")));
     this.btnItm_Sav.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Sav.ImagePaddingHorizontal = 8;
     this.btnItm_Sav.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Sav.Name = "btnItm_Sav";
     this.btnItm_Sav.Text = "添加";
     this.btnItm_Sav.Click += new System.EventHandler(this.btnItm_Sav_Click);
     //
     // btnItm_Modify
     //
     this.btnItm_Modify.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Modify.Image")));
     this.btnItm_Modify.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Modify.ImagePaddingHorizontal = 8;
     this.btnItm_Modify.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Modify.Name = "btnItm_Modify";
     this.btnItm_Modify.Text = "修改";
     this.btnItm_Modify.Click += new System.EventHandler(this.btnItm_Modify_Click);
     //
     // btnItm_Del
     //
     this.btnItm_Del.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Del.Image")));
     this.btnItm_Del.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Del.ImagePaddingHorizontal = 8;
     this.btnItm_Del.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Del.Name = "btnItm_Del";
     this.btnItm_Del.Text = "删除";
     this.btnItm_Del.Click += new System.EventHandler(this.btnItm_Del_Click);
     //
     // btnItm_Search
     //
     this.btnItm_Search.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Search.Image")));
     this.btnItm_Search.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Search.ImagePaddingHorizontal = 8;
     this.btnItm_Search.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Search.Name = "btnItm_Search";
     this.btnItm_Search.Text = "查询";
     this.btnItm_Search.Click += new System.EventHandler(this.btnItm_search_Click);
     //
     // BtnSave
     //
     this.BtnSave.Image = ((System.Drawing.Image)(resources.GetObject("BtnSave.Image")));
     this.BtnSave.ImagePaddingHorizontal = 8;
     this.BtnSave.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Text = "保存";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnCancle
     //
     this.BtnCancle.Image = ((System.Drawing.Image)(resources.GetObject("BtnCancle.Image")));
     this.BtnCancle.ImagePaddingHorizontal = 8;
     this.BtnCancle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnCancle.Name = "BtnCancle";
     this.BtnCancle.Text = "撤消";
     this.BtnCancle.Click += new System.EventHandler(this.BtnCancle_Click);
     //
     // btnItm_Exit
     //
     this.btnItm_Exit.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Exit.Image")));
     this.btnItm_Exit.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Exit.ImagePaddingHorizontal = 8;
     this.btnItm_Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Exit.Name = "btnItm_Exit";
     this.btnItm_Exit.Text = "关闭";
     this.btnItm_Exit.Click += new System.EventHandler(this.btnItm_exit_Click);
     //
     // customizeItem1
     //
     this.customizeItem1.Name = "customizeItem1";
     this.customizeItem1.Text = "添加或删除按钮(&A)";
     this.customizeItem1.Tooltip = "工具栏选项";
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 57);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(638, 0);
     this.dockSite3.TabIndex = 2;
     this.dockSite3.TabStop = false;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorScheme.ItemDesignTimeBorder = System.Drawing.Color.Black;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.groupPanel3);
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 57);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(638, 502);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 8;
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.treeView2);
     this.groupPanel3.Location = new System.Drawing.Point(276, 9);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(350, 490);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 2;
     this.groupPanel3.Text = "操作员权限";
     //
     // treeView2
     //
     this.treeView2.Location = new System.Drawing.Point(13, 13);
     this.treeView2.Name = "treeView2";
     this.treeView2.Size = new System.Drawing.Size(328, 448);
     this.treeView2.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.treeView1);
     this.groupPanel2.Location = new System.Drawing.Point(12, 241);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(249, 258);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "操作员列表";
     //
     // treeView1
     //
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList1;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(237, 226);
     this.treeView1.TabIndex = 0;
     this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "I156.ICO");
     this.imageList1.Images.SetKeyName(1, "msnnew_009.ico");
     this.imageList1.Images.SetKeyName(2, "msnnew_019.ico");
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.comboBoxEx2);
     this.groupPanel1.Controls.Add(this.TxtTel);
     this.groupPanel1.Controls.Add(this.TxtPws);
     this.groupPanel1.Controls.Add(this.labelX3);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.lblX3);
     this.groupPanel1.Controls.Add(this.lblX2);
     this.groupPanel1.Controls.Add(this.lblX1);
     this.groupPanel1.Controls.Add(this.linkLabel1);
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.txtBoxX2);
     this.groupPanel1.Controls.Add(this.txtBoxX1);
     this.groupPanel1.Location = new System.Drawing.Point(12, 8);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(249, 225);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "操作员信息";
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.Location = new System.Drawing.Point(64, 137);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx2.TabIndex = 17;
     //
     // TxtTel
     //
     //
     //
     //
     this.TxtTel.Border.Class = "TextBoxBorder";
     this.TxtTel.Location = new System.Drawing.Point(64, 103);
     this.TxtTel.Name = "TxtTel";
     this.TxtTel.Size = new System.Drawing.Size(100, 21);
     this.TxtTel.TabIndex = 16;
     //
     // TxtPws
     //
     this.TxtPws.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.TxtPws.Border.Class = "TextBoxBorder";
     this.TxtPws.Location = new System.Drawing.Point(64, 73);
     this.TxtPws.MaxLength = 16;
     this.TxtPws.Name = "TxtPws";
     this.TxtPws.PasswordChar = '*';
     this.TxtPws.Size = new System.Drawing.Size(100, 21);
     this.TxtPws.TabIndex = 15;
     this.TxtPws.UseSystemPasswordChar = true;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(3, 106);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(43, 23);
     this.labelX3.TabIndex = 14;
     this.labelX3.Text = "电话:";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(3, 74);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(43, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "密码:";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(3, 137);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(72, 23);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text = "所属部门:";
     //
     // lblX3
     //
     this.lblX3.BackColor = System.Drawing.Color.Transparent;
     this.lblX3.Location = new System.Drawing.Point(3, 172);
     this.lblX3.Name = "lblX3";
     this.lblX3.Size = new System.Drawing.Size(55, 23);
     this.lblX3.TabIndex = 9;
     this.lblX3.Text = "权限:";
     //
     // lblX2
     //
     this.lblX2.BackColor = System.Drawing.Color.Transparent;
     this.lblX2.Location = new System.Drawing.Point(3, 42);
     this.lblX2.Name = "lblX2";
     this.lblX2.Size = new System.Drawing.Size(43, 23);
     this.lblX2.TabIndex = 8;
     this.lblX2.Text = "姓名:";
     //
     // lblX1
     //
     this.lblX1.BackColor = System.Drawing.Color.Transparent;
     this.lblX1.Location = new System.Drawing.Point(3, 13);
     this.lblX1.Name = "lblX1";
     this.lblX1.Size = new System.Drawing.Size(55, 23);
     this.lblX1.TabIndex = 7;
     this.lblX1.Text = "工号:";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.BackColor = System.Drawing.Color.MistyRose;
     this.linkLabel1.Location = new System.Drawing.Point(179, 15);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(29, 12);
     this.linkLabel1.TabIndex = 6;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "检查";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.Location = new System.Drawing.Point(64, 173);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx1.TabIndex = 5;
     this.comboBoxEx1.SelectionChangeCommitted += new System.EventHandler(this.comboBoxEx1_SelectionChangeCommitted);
     //
     // txtBoxX2
     //
     this.txtBoxX2.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX2.Border.Class = "TextBoxBorder";
     this.txtBoxX2.Location = new System.Drawing.Point(64, 42);
     this.txtBoxX2.Name = "txtBoxX2";
     this.txtBoxX2.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX2.TabIndex = 1;
     //
     // txtBoxX1
     //
     this.txtBoxX1.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX1.Border.Class = "TextBoxBorder";
     this.txtBoxX1.Location = new System.Drawing.Point(64, 13);
     this.txtBoxX1.Name = "txtBoxX1";
     this.txtBoxX1.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX1.TabIndex = 0;
     this.txtBoxX1.TextChanged += new System.EventHandler(this.txtBoxX1_TextChanged);
     this.txtBoxX1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtBoxX1_KeyPress);
     //
     // SetOp
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(638, 559);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetOp";
     this.Text = "操作员设置";
     this.Load += new System.EventHandler(this.SetOp_Load);
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #6
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(Spy));
     this.galleryContainer2 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.galleryContainer3 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.trvTree = new System.Windows.Forms.TreeView();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.datagridviewprob = new System.Windows.Forms.DataGridView();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.toolStrip1.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridviewprob)).BeginInit();
     this.SuspendLayout();
     //
     // galleryContainer2
     //
     //
     //
     //
     this.galleryContainer2.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer2.EnableGalleryPopup = false;
     this.galleryContainer2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer2.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer2.MultiLine = false;
     this.galleryContainer2.Name = "galleryContainer2";
     this.galleryContainer2.PopupUsesStandardScrollbars = false;
     //
     // labelItem1
     //
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.CanCustomize = false;
     this.labelItem1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelItem1.Name = "labelItem1";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // galleryContainer3
     //
     //
     //
     //
     this.galleryContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer3.EnableGalleryPopup = false;
     this.galleryContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer3.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer3.MultiLine = false;
     this.galleryContainer3.Name = "galleryContainer3";
     this.galleryContainer3.PopupUsesStandardScrollbars = false;
     //
     // labelItem2
     //
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem2.CanCustomize = false;
     this.labelItem2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelItem2.Name = "labelItem2";
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "dockContainerItem2";
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.qatCustomizeItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(799, 41);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "Spy Interface";
     this.ribbonControl1.TitleText = "<div >Spy Interface</div>";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // toolStrip1
     //
     this.toolStrip1.Font = new System.Drawing.Font("Khmer UI", 9F);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2});
     this.toolStrip1.Location = new System.Drawing.Point(5, 42);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(799, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(52, 22);
     this.toolStripButton1.Text = "Save";
     //
     // toolStripButton2
     //
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(66, 22);
     this.toolStripButton2.Text = "Refresh";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 417);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(799, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 217, 350)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 67);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(220, 350);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.DockOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem3});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(217, 350);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Spy Windows";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.Add(this.trvTree);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(211, 324);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // trvTree
     //
     this.trvTree.Dock = System.Windows.Forms.DockStyle.Fill;
     this.trvTree.Location = new System.Drawing.Point(0, 0);
     this.trvTree.Name = "trvTree";
     this.trvTree.Size = new System.Drawing.Size(211, 324);
     this.trvTree.TabIndex = 0;
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer1;
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "dockContainerItem3";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(804, 67);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 350);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 417);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(799, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 416);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(804, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 416);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(799, 0);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(799, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // datagridviewprob
     //
     this.datagridviewprob.BackgroundColor = System.Drawing.Color.White;
     this.datagridviewprob.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.datagridviewprob.Dock = System.Windows.Forms.DockStyle.Fill;
     this.datagridviewprob.Location = new System.Drawing.Point(225, 67);
     this.datagridviewprob.Name = "datagridviewprob";
     this.datagridviewprob.Size = new System.Drawing.Size(579, 350);
     this.datagridviewprob.TabIndex = 10;
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // Spy
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(809, 419);
     this.Controls.Add(this.datagridviewprob);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "Spy";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Spy";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridviewprob)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(BarEditor));
			this.panel1 = new System.Windows.Forms.Panel();
			this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
			this.splitter1 = new System.Windows.Forms.Splitter();
			this.barTree = new System.Windows.Forms.TreeView();
			this.imageList = new System.Windows.Forms.ImageList(this.components);
		#if TRIAL
			this.barManager = new DevComponents.DotNetBar.DotNetBarManager(this.components);
		#else
			this.barManager = new DevComponents.DotNetBar.DotNetBarManager(this.components,false);
		#endif
			this.barBottomDockSite = new DevComponents.DotNetBar.DockSite();
			this.m_BarImages = new System.Windows.Forms.ImageList(this.components);
			this.barLeftDockSite = new DevComponents.DotNetBar.DockSite();
			this.barRightDockSite = new DevComponents.DotNetBar.DockSite();
			this.barTopDockSite = new DevComponents.DotNetBar.DockSite();
			this.m_OpenFileDialog = new System.Windows.Forms.OpenFileDialog();
			this.m_SaveFileDialog = new System.Windows.Forms.SaveFileDialog();
			this.btnClose = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// panel1
			// 
			this.panel1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right);
			this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this.propertyGrid1,
																				 this.splitter1,
																				 this.barTree});
			this.panel1.Location = new System.Drawing.Point(8, 48);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(520, 232);
			this.panel1.TabIndex = 5;
			// 
			// propertyGrid1
			// 
			this.propertyGrid1.CommandsVisibleIfAvailable = true;
			this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyGrid1.LargeButtons = false;
			this.propertyGrid1.LineColor = System.Drawing.SystemColors.ScrollBar;
			this.propertyGrid1.Location = new System.Drawing.Point(182, 0);
			this.propertyGrid1.Name = "propertyGrid1";
			this.propertyGrid1.Size = new System.Drawing.Size(338, 232);
			this.propertyGrid1.TabIndex = 1;
			this.propertyGrid1.Text = "propertyGrid1";
			this.propertyGrid1.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyGrid1.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.OnPropertyValueChanged);
			// 
			// splitter1
			// 
			this.splitter1.Location = new System.Drawing.Point(176, 0);
			this.splitter1.Name = "splitter1";
			this.splitter1.Size = new System.Drawing.Size(6, 232);
			this.splitter1.TabIndex = 2;
			this.splitter1.TabStop = false;
			// 
			// barTree
			// 
			this.barTree.Dock = System.Windows.Forms.DockStyle.Left;
			this.barTree.HideSelection = false;
			this.barTree.ImageList = this.imageList;
			this.barTree.Name = "barTree";
			this.barTree.Size = new System.Drawing.Size(176, 232);
			this.barTree.TabIndex = 0;
			this.barTree.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.barTree.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.barTree.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ItemSelected);
			this.barTree.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.BeforeItemSelect);
			this.barTree.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.ItemEdited);
			this.barTree.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.NodeCollapsing);
			this.barTree.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.NodeExpanding);
			// 
			// imageList
			// 
			this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			this.imageList.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList.TransparentColor = System.Drawing.Color.Magenta;
			// 
			// barManager
			// 
			this.barManager.BottomDockSite = this.barBottomDockSite;
			this.barManager.Images = this.m_BarImages;
			this.barManager.ImagesLarge = null;
			this.barManager.ImagesMedium = null;
			this.barManager.LeftDockSite = this.barLeftDockSite;
			this.barManager.ParentForm = this;
			this.barManager.RightDockSite = this.barRightDockSite;
			this.barManager.TopDockSite = this.barTopDockSite;
			this.barManager.UseHook = true;
			this.barManager.ItemClick += new System.EventHandler(this.BarItemClick);
			// 
			// barBottomDockSite
			// 
			this.barBottomDockSite.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barBottomDockSite.Location = new System.Drawing.Point(0, 325);
			this.barBottomDockSite.Name = "barBottomDockSite";
			this.barBottomDockSite.Size = new System.Drawing.Size(536, 0);
			this.barBottomDockSite.TabIndex = 8;
			this.barBottomDockSite.TabStop = false;
			// 
			// m_BarImages
			// 
			this.m_BarImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			this.m_BarImages.ImageSize = new System.Drawing.Size(16, 16);
			this.m_BarImages.TransparentColor = System.Drawing.Color.Magenta;
			// 
			// barLeftDockSite
			// 
			this.barLeftDockSite.Dock = System.Windows.Forms.DockStyle.Left;
			this.barLeftDockSite.Name = "barLeftDockSite";
			this.barLeftDockSite.Size = new System.Drawing.Size(0, 325);
			this.barLeftDockSite.TabIndex = 9;
			this.barLeftDockSite.TabStop = false;
			// 
			// barRightDockSite
			// 
			this.barRightDockSite.Dock = System.Windows.Forms.DockStyle.Right;
			this.barRightDockSite.Location = new System.Drawing.Point(536, 0);
			this.barRightDockSite.Name = "barRightDockSite";
			this.barRightDockSite.Size = new System.Drawing.Size(0, 325);
			this.barRightDockSite.TabIndex = 10;
			this.barRightDockSite.TabStop = false;
			// 
			// barTopDockSite
			// 
			this.barTopDockSite.Dock = System.Windows.Forms.DockStyle.Top;
			this.barTopDockSite.Name = "barTopDockSite";
			this.barTopDockSite.Size = new System.Drawing.Size(536, 0);
			this.barTopDockSite.TabIndex = 7;
			this.barTopDockSite.TabStop = false;
			// 
			// m_OpenFileDialog
			// 
			this.m_OpenFileDialog.Filter = "DotNetBar Files (*.dnb)|*.dnb|All Files (*.*)|*.*";
			this.m_OpenFileDialog.ShowReadOnly = true;
			this.m_OpenFileDialog.Title = "Open DotNetBar Definition File";
			// 
			// m_SaveFileDialog
			// 
			this.m_SaveFileDialog.CreatePrompt = false;
			this.m_SaveFileDialog.DefaultExt = "dnb";
			this.m_SaveFileDialog.FileName = "dotnetbardefinition";
			this.m_SaveFileDialog.Filter = "DotNetBar Files (*.dnb)|*.dnb|XML Files (*.xml)|*.xml|All Files (*.*)|*.*";
			this.m_SaveFileDialog.Title = "Save DotNetBar Definition";
			// 
			// btnClose
			// 
			this.btnClose.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.btnClose.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnClose.Location = new System.Drawing.Point(376, 291);
			this.btnClose.Name = "btnClose";
			this.btnClose.Size = new System.Drawing.Size(73, 24);
			this.btnClose.TabIndex = 6;
			this.btnClose.Text = "OK";
			this.btnClose.Click += new System.EventHandler(this.CloseClick);
			// 
			// btnCancel
			// 
			this.btnCancel.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCancel.Location = new System.Drawing.Point(455, 291);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(73, 24);
			this.btnCancel.TabIndex = 7;
			this.btnCancel.Text = "Cancel";
			this.btnCancel.Click += new System.EventHandler(this.CloseClick);
			// 
			// BarEditor
			// 
			//this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(536, 325);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.panel1,
																		  this.btnClose,
																		  this.btnCancel,
																		  this.barTopDockSite,
																		  this.barBottomDockSite,
																		  this.barLeftDockSite,
																		  this.barRightDockSite});
			this.MinimizeBox = false;
			this.Name = "BarEditor";
			this.Text = "DotNetBar Editor";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.FormClosing);
			this.Load += new EventHandler(this.FormLoad);
			this.panel1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
예제 #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TabShell));
     this.bar2 = new DevComponents.DotNetBar.Bar();
     this.mifExit = new DevComponents.DotNetBar.ButtonItem();
     this.btnLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows = new DevComponents.DotNetBar.ButtonItem();
     this.btnCloseCurrentWindow = new DevComponents.DotNetBar.ButtonItem();
     this.btnCloseAllWindow = new DevComponents.DotNetBar.ButtonItem();
     this.btnChangePass = new DevComponents.DotNetBar.ButtonItem();
     this.panBottom = new System.Windows.Forms.Panel();
     this.navMainTool = new System.Windows.Forms.Panel();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite9 = new DevComponents.DotNetBar.DockSite();
     this.barDocuments = new DevComponents.DotNetBar.Bar();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.barMenu = new DevComponents.DotNetBar.Bar();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.bottomControl1 = new Gas_test2.Res.BottomControl();
     ((System.ComponentModel.ISupportInitialize)(this.bar2)).BeginInit();
     this.panBottom.SuspendLayout();
     this.dockSite9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).BeginInit();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barMenu)).BeginInit();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.AccessibleDescription = "DotNetBar Bar (bar2)";
     this.bar2.AccessibleName = "DotNetBar Bar";
     this.bar2.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar2.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar2.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.bar2.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.mifExit,
     this.btnLogin,
     this.btnWindows,
     this.btnChangePass});
     this.bar2.Location = new System.Drawing.Point(0, 26);
     this.bar2.Name = "bar2";
     this.bar2.Size = new System.Drawing.Size(933, 41);
     this.bar2.Stretch = true;
     this.bar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar2.TabIndex = 62;
     this.bar2.TabStop = false;
     this.bar2.Text = "bar2";
     //
     // mifExit
     //
     this.mifExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.mifExit.Image = ((System.Drawing.Image)(resources.GetObject("mifExit.Image")));
     this.mifExit.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.mifExit.Name = "mifExit";
     this.mifExit.Text = "退出";
     this.mifExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnLogin
     //
     this.btnLogin.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnLogin.Image = ((System.Drawing.Image)(resources.GetObject("btnLogin.Image")));
     this.btnLogin.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Text = "重新登录";
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // btnWindows
     //
     this.btnWindows.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnWindows.Image = ((System.Drawing.Image)(resources.GetObject("btnWindows.Image")));
     this.btnWindows.Name = "btnWindows";
     this.btnWindows.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCloseCurrentWindow,
     this.btnCloseAllWindow});
     this.btnWindows.Text = "窗口";
     //
     // btnCloseCurrentWindow
     //
     this.btnCloseCurrentWindow.Name = "btnCloseCurrentWindow";
     this.btnCloseCurrentWindow.Text = "关闭当前窗口";
     this.btnCloseCurrentWindow.Click += new System.EventHandler(this.btnCloseNowWindow_Click);
     //
     // btnCloseAllWindow
     //
     this.btnCloseAllWindow.Name = "btnCloseAllWindow";
     this.btnCloseAllWindow.Text = "关闭所有窗口";
     this.btnCloseAllWindow.Click += new System.EventHandler(this.btnCloseAllWindow_Click);
     //
     // btnChangePass
     //
     this.btnChangePass.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnChangePass.Image = ((System.Drawing.Image)(resources.GetObject("btnChangePass.Image")));
     this.btnChangePass.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.btnChangePass.Name = "btnChangePass";
     this.btnChangePass.Text = "修改密码";
     this.btnChangePass.Click += new System.EventHandler(this.btnChangePass_Click);
     //
     // panBottom
     //
     this.panBottom.Controls.Add(this.bottomControl1);
     this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panBottom.Location = new System.Drawing.Point(0, 586);
     this.panBottom.Margin = new System.Windows.Forms.Padding(0);
     this.panBottom.Name = "panBottom";
     this.panBottom.Size = new System.Drawing.Size(933, 25);
     this.panBottom.TabIndex = 85;
     //
     // navMainTool
     //
     this.navMainTool.Location = new System.Drawing.Point(0, 0);
     this.navMainTool.Name = "navMainTool";
     this.navMainTool.Size = new System.Drawing.Size(200, 100);
     this.navMainTool.TabIndex = 0;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.FillDockSite = this.dockSite9;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 611);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(933, 0);
     this.dockSite4.TabIndex = 100;
     this.dockSite4.TabStop = false;
     //
     // dockSite9
     //
     this.dockSite9.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite9.Controls.Add(this.barDocuments);
     this.dockSite9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockSite9.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barDocuments, 933, 519)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite9.Location = new System.Drawing.Point(0, 67);
     this.dockSite9.Name = "dockSite9";
     this.dockSite9.Size = new System.Drawing.Size(933, 519);
     this.dockSite9.TabIndex = 105;
     this.dockSite9.TabStop = false;
     //
     // barDocuments
     //
     this.barDocuments.AccessibleDescription = "DotNetBar Bar (barDocuments)";
     this.barDocuments.AccessibleName = "DotNetBar Bar";
     this.barDocuments.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.barDocuments.AlwaysDisplayDockTab = true;
     this.barDocuments.CanCustomize = false;
     this.barDocuments.CanDockBottom = false;
     this.barDocuments.CanDockDocument = true;
     this.barDocuments.CanDockLeft = false;
     this.barDocuments.CanDockRight = false;
     this.barDocuments.CanDockTop = false;
     this.barDocuments.CanHide = true;
     this.barDocuments.CanUndock = false;
     this.barDocuments.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.barDocuments.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barDocuments.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barDocuments.Location = new System.Drawing.Point(0, 0);
     this.barDocuments.Name = "barDocuments";
     this.barDocuments.Size = new System.Drawing.Size(933, 519);
     this.barDocuments.Stretch = true;
     this.barDocuments.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barDocuments.TabIndex = 0;
     this.barDocuments.TabNavigation = true;
     this.barDocuments.TabStop = false;
     this.barDocuments.DockTabClosing += new DevComponents.DotNetBar.DockTabClosingEventHandler(this.barDocuments_DockTabClosing);
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 67);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 519);
     this.dockSite1.TabIndex = 97;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(933, 67);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 519);
     this.dockSite2.TabIndex = 98;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 611);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(933, 0);
     this.dockSite8.TabIndex = 104;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 26);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 585);
     this.dockSite5.TabIndex = 101;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(933, 26);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 585);
     this.dockSite6.TabIndex = 102;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.barMenu);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(933, 26);
     this.dockSite7.TabIndex = 103;
     this.dockSite7.TabStop = false;
     //
     // barMenu
     //
     this.barMenu.AccessibleDescription = "DotNetBar Bar (barMenu)";
     this.barMenu.AccessibleName = "DotNetBar Bar";
     this.barMenu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barMenu.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.barMenu.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.barMenu.Images = this.imageList1;
     this.barMenu.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.barMenu.Location = new System.Drawing.Point(0, 0);
     this.barMenu.MenuBar = true;
     this.barMenu.Name = "barMenu";
     this.barMenu.Size = new System.Drawing.Size(933, 25);
     this.barMenu.Stretch = true;
     this.barMenu.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barMenu.TabIndex = 0;
     this.barMenu.TabStop = false;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder_closed_ii.ico");
     this.imageList1.Images.SetKeyName(1, "closed_floder.ico");
     //
     // buttonItem2
     //
     this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3});
     this.buttonItem2.Text = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "buttonItem3";
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 26);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(933, 0);
     this.dockSite3.TabIndex = 99;
     this.dockSite3.TabStop = false;
     //
     // bottomControl1
     //
     this.bottomControl1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.bottomControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bottomControl1.Location = new System.Drawing.Point(0, 0);
     this.bottomControl1.Margin = new System.Windows.Forms.Padding(0);
     this.bottomControl1.Name = "bottomControl1";
     this.bottomControl1.Size = new System.Drawing.Size(933, 25);
     this.bottomControl1.TabIndex = 0;
     //
     // TabShell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(933, 611);
     this.Controls.Add(this.dockSite9);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.panBottom);
     this.Controls.Add(this.bar2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "TabShell";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "AgileEAS.NET SOA中间件";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.bar2)).EndInit();
     this.panBottom.ResumeLayout(false);
     this.dockSite9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).EndInit();
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barMenu)).EndInit();
     this.ResumeLayout(false);
 }
예제 #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(DotNetBarDesigner));
			this.navigationPane1 = new DevComponents.DotNetBar.NavigationPane();
			this.navigationPanePanel1 = new DevComponents.DotNetBar.NavigationPanePanel();
			this.propertyBars = new System.Windows.Forms.PropertyGrid();
			this.splitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
			this.treeBars = new System.Windows.Forms.TreeView();
			this.imageList = new System.Windows.Forms.ImageList(this.components);
			this.buttonBars = new DevComponents.DotNetBar.ButtonItem();
			this.navigationPanePanel3 = new DevComponents.DotNetBar.NavigationPanePanel();
			this.propertyCategories = new System.Windows.Forms.PropertyGrid();
			this.splitterOffice20031 = new DevComponents.DotNetBar.ExpandableSplitter();
			this.treeCategories = new System.Windows.Forms.TreeView();
			this.buttonCategories = new DevComponents.DotNetBar.ButtonItem();
			this.navigationPanePanel2 = new DevComponents.DotNetBar.NavigationPanePanel();
			this.propertyMenus = new System.Windows.Forms.PropertyGrid();
			this.splitterOffice20032 = new DevComponents.DotNetBar.ExpandableSplitter();
			this.treeMenus = new System.Windows.Forms.TreeView();
			this.buttonContext = new DevComponents.DotNetBar.ButtonItem();
			this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
			this.definitionPreview = new DevComponents.DotNetBar.Design.DefinitionPreviewControl();
			this.splitter2 = new DevComponents.DotNetBar.ExpandableSplitter();
			#if !TRIAL
			this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components,true);
			#else
			this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
			#endif
			
			this.barBottomDockSite = new DevComponents.DotNetBar.DockSite();
			this.barLeftDockSite = new DevComponents.DotNetBar.DockSite();
			this.barRightDockSite = new DevComponents.DotNetBar.DockSite();
			this.barTopDockSite = new DevComponents.DotNetBar.DockSite();
			this.m_OpenFileDialog = new System.Windows.Forms.OpenFileDialog();
			this.m_SaveFileDialog = new System.Windows.Forms.SaveFileDialog();
			this.navigationPane1.SuspendLayout();
			this.navigationPanePanel1.SuspendLayout();
			this.navigationPanePanel3.SuspendLayout();
			this.navigationPanePanel2.SuspendLayout();
			this.SuspendLayout();
			// 
			// navigationPane1
			// 
			this.navigationPane1.ConfigureAddRemoveVisible = false;
			this.navigationPane1.ConfigureNavOptionsVisible = false;
			this.navigationPane1.Controls.AddRange(new System.Windows.Forms.Control[] {
																						  this.navigationPanePanel1,
																						  this.navigationPanePanel3,
																						  this.navigationPanePanel2,
																						  this.navigationPane1.TitlePanel});
			this.navigationPane1.Dock = System.Windows.Forms.DockStyle.Left;
			this.navigationPane1.ItemPaddingBottom = 2;
			this.navigationPane1.ItemPaddingTop = 2;
			this.navigationPane1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
																						   this.buttonBars,
																						   this.buttonContext,
																						   this.buttonCategories});
			this.navigationPane1.Location = new System.Drawing.Point(0, 48);
			this.navigationPane1.Name = "navigationPane1";
			this.navigationPane1.NavigationBarHeight = 88;
			this.navigationPane1.Size = new System.Drawing.Size(304, 468);
			this.navigationPane1.TabIndex = 1;
			// 
			// navigationPane1.TitlePanel
			// 
			this.navigationPane1.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top;
			this.navigationPane1.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.navigationPane1.TitlePanel.Name = "panelEx1";
			this.navigationPane1.TitlePanel.Size = new System.Drawing.Size(304, 24);
			this.navigationPane1.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
			this.navigationPane1.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
			this.navigationPane1.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPane1.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPane1.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
			this.navigationPane1.TitlePanel.Style.GradientAngle = 90;
			this.navigationPane1.TitlePanel.Style.MarginLeft = 4;
			this.navigationPane1.TitlePanel.TabIndex = 0;
			this.navigationPane1.TitlePanel.Text = "Bars";
			this.navigationPane1.PanelChanging += new DevComponents.DotNetBar.PanelChangingEventHandler(this.navigationPane1_PanelChanging);
			// 
			// navigationPanePanel1
			// 
			this.navigationPanePanel1.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.propertyBars,
																							   this.splitter1,
																							   this.treeBars});
			this.navigationPanePanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.navigationPanePanel1.DockPadding.Left = 1;
			this.navigationPanePanel1.DockPadding.Right = 1;
			this.navigationPanePanel1.DockPadding.Top = 1;
			this.navigationPanePanel1.Location = new System.Drawing.Point(0, 24);
			this.navigationPanePanel1.Name = "navigationPanePanel1";
			this.navigationPanePanel1.ParentItem = this.buttonBars;
			this.navigationPanePanel1.Size = new System.Drawing.Size(304, 356);
			this.navigationPanePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.navigationPanePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
			this.navigationPanePanel1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
			this.navigationPanePanel1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
			this.navigationPanePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPanePanel1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPanePanel1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
			this.navigationPanePanel1.Style.GradientAngle = 90;
			this.navigationPanePanel1.TabIndex = 2;
			// 
			// propertyBars
			// 
			this.propertyBars.BackColor = System.Drawing.SystemColors.Control;
			this.propertyBars.CommandsBackColor = System.Drawing.SystemColors.Window;
			this.propertyBars.CommandsVisibleIfAvailable = true;
			this.propertyBars.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyBars.HelpBackColor = System.Drawing.SystemColors.ControlLight;
			this.propertyBars.LargeButtons = false;
			this.propertyBars.LineColor = System.Drawing.SystemColors.ControlLight;
			this.propertyBars.Location = new System.Drawing.Point(1, 150);
			this.propertyBars.Name = "propertyBars";
			this.propertyBars.Size = new System.Drawing.Size(302, 206);
			this.propertyBars.TabIndex = 3;
			this.propertyBars.Text = "propertyGrid1";
			this.propertyBars.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyBars.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyBars.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.GridPropertyValueChanged);
			// 
			// splitter1
			// 
			this.splitter1.Expandable = false;
			this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitter1.Location = new System.Drawing.Point(1, 144);
			this.splitter1.Name = "splitter1";
			this.splitter1.Size = new System.Drawing.Size(302, 6);
			this.splitter1.TabIndex = 4;
			this.splitter1.TabStop = false;
			// 
			// treeBars
			// 
			this.treeBars.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.treeBars.Dock = System.Windows.Forms.DockStyle.Top;
			this.treeBars.ImageList = this.imageList;
			this.treeBars.Location = new System.Drawing.Point(1, 1);
			this.treeBars.Name = "treeBars";
			this.treeBars.Size = new System.Drawing.Size(302, 143);
			this.treeBars.TabIndex = 2;
			this.treeBars.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.treeBars.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.treeBars.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeAfterSelect);
			this.treeBars.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeSelect);
			this.treeBars.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.TreeAfterLabelEdit);
			this.treeBars.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeCollapse);
			this.treeBars.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeExpand);
			this.treeBars.HideSelection=false;
			// 
			// imageList
			// 
			this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			this.imageList.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
			this.imageList.TransparentColor = System.Drawing.Color.Magenta;
			// 
			// buttonBars
			// 
			this.buttonBars.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
			this.buttonBars.Checked = true;
			this.buttonBars.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonBars.Image")));
			this.buttonBars.Name = "buttonBars";
			this.buttonBars.OptionGroup = "navBar";
			this.buttonBars.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.buttonBars.Text = "Bars";
			this.buttonBars.Tooltip = "View Toolbars, Menu bars and dockable windows";
			// 
			// navigationPanePanel3
			// 
			this.navigationPanePanel3.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.propertyCategories,
																							   this.splitterOffice20031,
																							   this.treeCategories});
			this.navigationPanePanel3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.navigationPanePanel3.DockPadding.Left = 1;
			this.navigationPanePanel3.DockPadding.Right = 1;
			this.navigationPanePanel3.DockPadding.Top = 1;
			this.navigationPanePanel3.Location = new System.Drawing.Point(0, 24);
			this.navigationPanePanel3.Name = "navigationPanePanel3";
			this.navigationPanePanel3.ParentItem = this.buttonCategories;
			this.navigationPanePanel3.Size = new System.Drawing.Size(304, 356);
			this.navigationPanePanel3.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.navigationPanePanel3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
			this.navigationPanePanel3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
			this.navigationPanePanel3.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
			this.navigationPanePanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPanePanel3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPanePanel3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
			this.navigationPanePanel3.Style.GradientAngle = 90;
			this.navigationPanePanel3.TabIndex = 4;
			// 
			// propertyCategories
			// 
			this.propertyCategories.BackColor = System.Drawing.SystemColors.Control;
			this.propertyCategories.CommandsBackColor = System.Drawing.SystemColors.Window;
			this.propertyCategories.CommandsVisibleIfAvailable = true;
			this.propertyCategories.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyCategories.HelpBackColor = System.Drawing.SystemColors.ControlLight;
			this.propertyCategories.HelpVisible = false;
			this.propertyCategories.LargeButtons = false;
			this.propertyCategories.LineColor = System.Drawing.SystemColors.ControlLight;
			this.propertyCategories.Location = new System.Drawing.Point(1, 150);
			this.propertyCategories.Name = "propertyCategories";
			this.propertyCategories.Size = new System.Drawing.Size(302, 206);
			this.propertyCategories.TabIndex = 6;
			this.propertyCategories.Text = "propertyGrid1";
			this.propertyCategories.ToolbarVisible = false;
			this.propertyCategories.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyCategories.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyCategories.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.GridPropertyValueChanged);
			// 
			// splitterOffice20031
			// 
			this.splitterOffice20031.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitterOffice20031.Location = new System.Drawing.Point(1, 144);
			this.splitterOffice20031.Name = "splitterOffice20031";
			this.splitterOffice20031.Size = new System.Drawing.Size(302, 6);
			this.splitterOffice20031.Expandable=false;
			this.splitterOffice20031.TabIndex = 7;
			this.splitterOffice20031.TabStop = false;
			// 
			// treeCategories
			// 
			this.treeCategories.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.treeCategories.Dock = System.Windows.Forms.DockStyle.Top;
			this.treeCategories.ImageList = this.imageList;
			this.treeCategories.Location = new System.Drawing.Point(1, 1);
			this.treeCategories.Name = "treeCategories";
			this.treeCategories.Size = new System.Drawing.Size(302, 143);
			this.treeCategories.TabIndex = 5;
			this.treeCategories.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.treeCategories.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.treeCategories.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeAfterSelect);
			this.treeCategories.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeSelect);
			this.treeCategories.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.TreeAfterLabelEdit);
			this.treeCategories.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeCollapse);
			this.treeCategories.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeExpand);
			this.treeCategories.HideSelection=false;
			// 
			// buttonCategories
			// 
			this.buttonCategories.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonCategories.Image")));
			this.buttonCategories.Name = "buttonCategories";
			this.buttonCategories.OptionGroup = "navBar";
			this.buttonCategories.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.buttonCategories.Text = "Categories";
			this.buttonCategories.Tooltip = "View Command Categories";
			// 
			// navigationPanePanel2
			// 
			this.navigationPanePanel2.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.propertyMenus,
																							   this.splitterOffice20032,
																							   this.treeMenus});
			this.navigationPanePanel2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.navigationPanePanel2.DockPadding.Left = 1;
			this.navigationPanePanel2.DockPadding.Right = 1;
			this.navigationPanePanel2.DockPadding.Top = 1;
			this.navigationPanePanel2.Location = new System.Drawing.Point(0, 24);
			this.navigationPanePanel2.Name = "navigationPanePanel2";
			this.navigationPanePanel2.ParentItem = this.buttonContext;
			this.navigationPanePanel2.Size = new System.Drawing.Size(304, 356);
			this.navigationPanePanel2.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.navigationPanePanel2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
			this.navigationPanePanel2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
			this.navigationPanePanel2.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
			this.navigationPanePanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPanePanel2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPanePanel2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
			this.navigationPanePanel2.Style.GradientAngle = 90;
			this.navigationPanePanel2.TabIndex = 3;
			// 
			// propertyMenus
			// 
			this.propertyMenus.BackColor = System.Drawing.SystemColors.Control;
			this.propertyMenus.CommandsBackColor = System.Drawing.SystemColors.Window;
			this.propertyMenus.CommandsVisibleIfAvailable = true;
			this.propertyMenus.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyMenus.HelpBackColor = System.Drawing.SystemColors.ControlLight;
			this.propertyMenus.HelpVisible = false;
			this.propertyMenus.LargeButtons = false;
			this.propertyMenus.LineColor = System.Drawing.SystemColors.ControlLight;
			this.propertyMenus.Location = new System.Drawing.Point(1, 150);
			this.propertyMenus.Name = "propertyMenus";
			this.propertyMenus.Size = new System.Drawing.Size(302, 206);
			this.propertyMenus.TabIndex = 6;
			this.propertyMenus.Text = "propertyGrid1";
			this.propertyMenus.ToolbarVisible = false;
			this.propertyMenus.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyMenus.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyMenus.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.GridPropertyValueChanged);
			// 
			// splitterOffice20032
			// 
			this.splitterOffice20032.Expandable = false;
			this.splitterOffice20032.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitterOffice20032.Location = new System.Drawing.Point(1, 144);
			this.splitterOffice20032.Name = "splitterOffice20032";
			this.splitterOffice20032.Size = new System.Drawing.Size(302, 6);
			this.splitterOffice20032.TabIndex = 7;
			this.splitterOffice20032.TabStop = false;
			// 
			// treeMenus
			// 
			this.treeMenus.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.treeMenus.Dock = System.Windows.Forms.DockStyle.Top;
			this.treeMenus.ImageList = this.imageList;
			this.treeMenus.Location = new System.Drawing.Point(1, 1);
			this.treeMenus.Name = "treeMenus";
			this.treeMenus.Size = new System.Drawing.Size(302, 143);
			this.treeMenus.TabIndex = 5;
			this.treeMenus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.treeMenus.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.treeMenus.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeAfterSelect);
			this.treeMenus.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeSelect);
			this.treeMenus.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.TreeAfterLabelEdit);
			this.treeMenus.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeCollapse);
			this.treeMenus.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeExpand);
			this.treeMenus.HideSelection=false;
			// 
			// buttonContext
			// 
			this.buttonContext.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
			this.buttonContext.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonContext.Image")));
			this.buttonContext.Name = "buttonContext";
			this.buttonContext.OptionGroup = "navBar";
			this.buttonContext.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.buttonContext.Text = "Context Menus";
			this.buttonContext.Tooltip = "View Context Menus";
			// 
			// panelEx1
			// 
			this.panelEx1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelEx1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.panelEx1.Location = new System.Drawing.Point(310, 48);
			this.panelEx1.Name = "panelEx1";
			this.panelEx1.Size = new System.Drawing.Size(432, 25);
			this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
			this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
			this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
			this.panelEx1.Style.GradientAngle = 90;
			this.panelEx1.TabIndex = 2;
			this.panelEx1.Text = "Layout Preview";
			// 
			// definitionPreview
			// 
			this.definitionPreview.BackColor = System.Drawing.SystemColors.Control;
			this.definitionPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			this.definitionPreview.Location = new System.Drawing.Point(310, 73);
			this.definitionPreview.Name = "definitionPreview";
			this.definitionPreview.Size = new System.Drawing.Size(432, 443);
			this.definitionPreview.TabIndex = 3;
			this.definitionPreview.DataChanged+=new EventHandler(this.PreviewDataChanged);
			// 
			// splitter2
			// 
			this.splitter2.Location = new System.Drawing.Point(304, 48);
			this.splitter2.Name = "splitter2";
			this.splitter2.Size = new System.Drawing.Size(8, 468);
			this.splitter2.TabIndex = 4;
			this.splitter2.TabStop = false;
			this.splitter2.Dock=DockStyle.Left;
			this.splitter2.ExpandableControl=navigationPane1;
			// 
			// dotNetBarManager1
			// 
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
			this.dotNetBarManager1.BottomDockSite = this.barBottomDockSite;
			this.dotNetBarManager1.DefinitionName = "DotNetBarDesigner.dotNetBarManager1.xml";
			this.dotNetBarManager1.LeftDockSite = this.barLeftDockSite;
			this.dotNetBarManager1.ParentForm = this;
			this.dotNetBarManager1.RightDockSite = this.barRightDockSite;
			this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.dotNetBarManager1.TopDockSite = this.barTopDockSite;
			this.dotNetBarManager1.ItemClick += new System.EventHandler(this.dotNetBarManager1_ItemClick);
			this.dotNetBarManager1.UseHook=true;
			// 
			// barBottomDockSite
			// 
			this.barBottomDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barBottomDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barBottomDockSite.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barBottomDockSite.Location = new System.Drawing.Point(0, 516);
			this.barBottomDockSite.Name = "barBottomDockSite";
			this.barBottomDockSite.Size = new System.Drawing.Size(742, 0);
			this.barBottomDockSite.TabIndex = 8;
			this.barBottomDockSite.TabStop = false;
			// 
			// barLeftDockSite
			// 
			this.barLeftDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barLeftDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barLeftDockSite.Dock = System.Windows.Forms.DockStyle.Left;
			this.barLeftDockSite.Location = new System.Drawing.Point(0, 48);
			this.barLeftDockSite.Name = "barLeftDockSite";
			this.barLeftDockSite.Size = new System.Drawing.Size(0, 468);
			this.barLeftDockSite.TabIndex = 5;
			this.barLeftDockSite.TabStop = false;
			// 
			// barRightDockSite
			// 
			this.barRightDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barRightDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barRightDockSite.Dock = System.Windows.Forms.DockStyle.Right;
			this.barRightDockSite.Location = new System.Drawing.Point(742, 48);
			this.barRightDockSite.Name = "barRightDockSite";
			this.barRightDockSite.Size = new System.Drawing.Size(0, 468);
			this.barRightDockSite.TabIndex = 6;
			this.barRightDockSite.TabStop = false;
			// 
			// barTopDockSite
			// 
			this.barTopDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barTopDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barTopDockSite.Dock = System.Windows.Forms.DockStyle.Top;
			this.barTopDockSite.Name = "barTopDockSite";
			this.barTopDockSite.Size = new System.Drawing.Size(742, 48);
			this.barTopDockSite.TabIndex = 7;
			this.barTopDockSite.TabStop = false;
			// 
			// m_OpenFileDialog
			// 
			this.m_OpenFileDialog.Filter = "DotNetBar Files (*.dnb, *.xml)|*.dnb;*.xml|All Files (*.*)|*.*";
			this.m_OpenFileDialog.ShowReadOnly = true;
			this.m_OpenFileDialog.Title = "Open DotNetBar Definition File";
			// 
			// m_SaveFileDialog
			// 
			this.m_SaveFileDialog.DefaultExt = "dnb";
			this.m_SaveFileDialog.FileName = "dotnetbardefinition";
			this.m_SaveFileDialog.Filter = "DotNetBar Files (*.dnb)|*.dnb|XML Files (*.xml)|*.xml|All Files (*.*)|*.*";
			this.m_SaveFileDialog.Title = "Save DotNetBar Definition";
			// 
			// DotNetBarDesigner
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(742, 516);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.definitionPreview,
																		  this.panelEx1,
																		  this.splitter2,
																		  this.navigationPane1,
																		  this.barLeftDockSite,
																		  this.barRightDockSite,
																		  this.barTopDockSite,
																		  this.barBottomDockSite});
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "DotNetBarDesigner";
			this.Text = "DotNetBar Designer";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.DotNetBarDesigner_Closing);
            this.Closed += new EventHandler(DotNetBarDesigner_Closed);
			this.Load += new System.EventHandler(this.DotNetBarDesigner_Load);
			this.navigationPane1.ResumeLayout(false);
			this.navigationPanePanel1.ResumeLayout(false);
			this.navigationPanePanel3.ResumeLayout(false);
			this.navigationPanePanel2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DockableShell));
     this.mainmenu = new DevComponents.DotNetBar.Bar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.btnLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnLogout = new DevComponents.DotNetBar.ButtonItem();
     this.btnCPassword = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.btnView = new DevComponents.DotNetBar.ButtonItem();
     this.btnClose = new DevComponents.DotNetBar.ButtonItem();
     this.btnCloseAll = new DevComponents.DotNetBar.ButtonItem();
     this.btnHelp = new DevComponents.DotNetBar.ButtonItem();
     this.btnContext = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.textBoxItem1 = new DevComponents.DotNetBar.TextBoxItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.panBottom = new DevComponents.DotNetBar.PanelEx();
     this.bottomControl1 = new Gas_test2.Res.BottomControl();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite9 = new DevComponents.DotNetBar.DockSite();
     this.barDocuments = new DevComponents.DotNetBar.Bar();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.barNavigation = new DevComponents.DotNetBar.Bar();
     this.panNavigation = new DevComponents.DotNetBar.PanelDockContainer();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.btnSystem = new DevComponents.DotNetBar.ButtonItem();
     this.item_100 = new DevComponents.DotNetBar.ButtonItem();
     this.item_111 = new DevComponents.DotNetBar.ButtonItem();
     this.item_122 = new DevComponents.DotNetBar.ButtonItem();
     this.item_133 = new DevComponents.DotNetBar.ButtonItem();
     this.item_144 = new DevComponents.DotNetBar.ButtonItem();
     this.item_155 = new DevComponents.DotNetBar.ButtonItem();
     this.item_166 = new DevComponents.DotNetBar.ButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.mainmenu)).BeginInit();
     this.panBottom.SuspendLayout();
     this.dockSite9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).BeginInit();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barNavigation)).BeginInit();
     this.barNavigation.SuspendLayout();
     this.SuspendLayout();
     //
     // mainmenu
     //
     this.mainmenu.AccessibleDescription = "DotNetBar Bar (mainmenu)";
     this.mainmenu.AccessibleName = "DotNetBar Bar";
     this.mainmenu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.mainmenu.Dock = System.Windows.Forms.DockStyle.Top;
     this.mainmenu.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.mainmenu.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1,
     this.btnView,
     this.btnHelp});
     this.mainmenu.Location = new System.Drawing.Point(0, 0);
     this.mainmenu.LockDockPosition = true;
     this.mainmenu.MenuBar = true;
     this.mainmenu.Name = "mainmenu";
     this.mainmenu.Size = new System.Drawing.Size(986, 25);
     this.mainmenu.Stretch = true;
     this.mainmenu.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.mainmenu.TabIndex = 1;
     this.mainmenu.TabStop = false;
     this.mainmenu.Text = "Main Menu";
     //
     // buttonItem1
     //
     this.buttonItem1.GlobalName = "item_67";
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLogin,
     this.btnLogout,
     this.btnCPassword,
     this.btnExit});
     this.buttonItem1.Text = "系统(&S)";
     //
     // btnLogin
     //
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Text = "登录(&L)";
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // btnLogout
     //
     this.btnLogout.ImageIndex = 10;
     this.btnLogout.Name = "btnLogout";
     this.btnLogout.Text = "注销(&O)";
     this.btnLogout.Click += new System.EventHandler(this.btnLogout_Click);
     //
     // btnCPassword
     //
     this.btnCPassword.BeginGroup = true;
     this.btnCPassword.Name = "btnCPassword";
     this.btnCPassword.Text = "修改密码";
     this.btnCPassword.Click += new System.EventHandler(this.btnCPassword_Click);
     //
     // btnExit
     //
     this.btnExit.BeginGroup = true;
     this.btnExit.Name = "btnExit";
     this.btnExit.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.AltF4);
     this.btnExit.Text = "退出(&E)";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnView
     //
     this.btnView.Name = "btnView";
     this.btnView.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClose,
     this.btnCloseAll});
     this.btnView.Text = "视图(&V)";
     //
     // btnClose
     //
     this.btnClose.GlobalName = "item_237";
     this.btnClose.Name = "btnClose";
     this.btnClose.Text = "关闭当前模块";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnCloseAll
     //
     this.btnCloseAll.GlobalName = "item_248";
     this.btnCloseAll.Name = "btnCloseAll";
     this.btnCloseAll.Text = "关闭所有模块";
     this.btnCloseAll.Click += new System.EventHandler(this.btnCloseAll_Click);
     //
     // btnHelp
     //
     this.btnHelp.Name = "btnHelp";
     this.btnHelp.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnContext,
     this.buttonItem2,
     this.buttonItem3,
     this.btnAbout});
     this.btnHelp.Text = "帮助(&H)";
     //
     // btnContext
     //
     this.btnContext.Name = "btnContext";
     this.btnContext.Text = "内容";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "搜索";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "索引";
     //
     // btnAbout
     //
     this.btnAbout.BeginGroup = true;
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // buttonItem11
     //
     this.buttonItem11.GlobalName = "item_167";
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13,
     this.buttonItem14,
     this.buttonItem15,
     this.buttonItem16,
     this.buttonItem17,
     this.buttonItem18,
     this.textBoxItem1});
     this.buttonItem11.Text = "&Edit";
     //
     // buttonItem12
     //
     this.buttonItem12.GlobalName = "item_237";
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.buttonItem12.Text = "&Undo";
     //
     // buttonItem13
     //
     this.buttonItem13.GlobalName = "item_248";
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.buttonItem13.Text = "&Redo";
     //
     // buttonItem14
     //
     this.buttonItem14.BeginGroup = true;
     this.buttonItem14.GlobalName = "item_259";
     this.buttonItem14.ImageIndex = 5;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.buttonItem14.Text = "Cut";
     //
     // buttonItem15
     //
     this.buttonItem15.GlobalName = "item_270";
     this.buttonItem15.ImageIndex = 4;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem15.Text = "Copy";
     //
     // buttonItem16
     //
     this.buttonItem16.GlobalName = "item_281";
     this.buttonItem16.ImageIndex = 11;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.buttonItem16.Text = "Paste";
     //
     // buttonItem17
     //
     this.buttonItem17.GlobalName = "item_292";
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.buttonItem17.Text = "Delete";
     //
     // buttonItem18
     //
     this.buttonItem18.GlobalName = "item_303";
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem18.Text = "Select All";
     //
     // textBoxItem1
     //
     this.textBoxItem1.Name = "textBoxItem1";
     this.textBoxItem1.Text = "textBoxItem1";
     this.textBoxItem1.WatermarkColor = System.Drawing.SystemColors.GrayText;
     //
     // 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, "");
     //
     // imageList2
     //
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList2.Images.SetKeyName(0, "");
     this.imageList2.Images.SetKeyName(1, "");
     this.imageList2.Images.SetKeyName(2, "");
     this.imageList2.Images.SetKeyName(3, "");
     this.imageList2.Images.SetKeyName(4, "");
     this.imageList2.Images.SetKeyName(5, "");
     this.imageList2.Images.SetKeyName(6, "");
     this.imageList2.Images.SetKeyName(7, "");
     this.imageList2.Images.SetKeyName(8, "");
     //
     // panBottom
     //
     this.panBottom.CanvasColor = System.Drawing.SystemColors.ButtonHighlight;
     this.panBottom.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panBottom.Controls.Add(this.bottomControl1);
     this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panBottom.Location = new System.Drawing.Point(0, 437);
     this.panBottom.Name = "panBottom";
     this.panBottom.Size = new System.Drawing.Size(986, 28);
     this.panBottom.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panBottom.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panBottom.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panBottom.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panBottom.Style.GradientAngle = 90;
     this.panBottom.TabIndex = 7;
     this.panBottom.Text = "panBottom";
     //
     // bottomControl1
     //
     this.bottomControl1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.bottomControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bottomControl1.Location = new System.Drawing.Point(0, 0);
     this.bottomControl1.Margin = new System.Windows.Forms.Padding(0);
     this.bottomControl1.Name = "bottomControl1";
     this.bottomControl1.Size = new System.Drawing.Size(986, 28);
     this.bottomControl1.TabIndex = 1;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.FillDockSite = this.dockSite9;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 465);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(986, 0);
     this.dockSite4.TabIndex = 11;
     this.dockSite4.TabStop = false;
     //
     // dockSite9
     //
     this.dockSite9.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite9.Controls.Add(this.barDocuments);
     this.dockSite9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockSite9.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barDocuments, 786, 412)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite9.Location = new System.Drawing.Point(200, 25);
     this.dockSite9.Name = "dockSite9";
     this.dockSite9.Size = new System.Drawing.Size(786, 412);
     this.dockSite9.TabIndex = 16;
     this.dockSite9.TabStop = false;
     //
     // barDocuments
     //
     this.barDocuments.AccessibleDescription = "DotNetBar Bar (barDocuments)";
     this.barDocuments.AccessibleName = "DotNetBar Bar";
     this.barDocuments.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.barDocuments.AlwaysDisplayDockTab = true;
     this.barDocuments.CanCustomize = false;
     this.barDocuments.CanDockBottom = false;
     this.barDocuments.CanDockDocument = true;
     this.barDocuments.CanDockLeft = false;
     this.barDocuments.CanDockRight = false;
     this.barDocuments.CanDockTop = false;
     this.barDocuments.CanHide = true;
     this.barDocuments.CanUndock = false;
     this.barDocuments.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.barDocuments.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barDocuments.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barDocuments.Location = new System.Drawing.Point(0, 0);
     this.barDocuments.Name = "barDocuments";
     this.barDocuments.Size = new System.Drawing.Size(786, 412);
     this.barDocuments.Stretch = true;
     this.barDocuments.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.barDocuments.TabIndex = 0;
     this.barDocuments.TabNavigation = true;
     this.barDocuments.TabStop = false;
     this.barDocuments.DockTabClosing += new DevComponents.DotNetBar.DockTabClosingEventHandler(this.barDocuments_DockTabClosing);
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.barNavigation);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barNavigation, 197, 412)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(0, 25);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(200, 412);
     this.dockSite1.TabIndex = 8;
     this.dockSite1.TabStop = false;
     //
     // barNavigation
     //
     this.barNavigation.AccessibleDescription = "DotNetBar Bar (barNavigation)";
     this.barNavigation.AccessibleName = "DotNetBar Bar";
     this.barNavigation.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.barNavigation.AutoSyncBarCaption = true;
     this.barNavigation.CloseSingleTab = true;
     this.barNavigation.Controls.Add(this.panNavigation);
     this.barNavigation.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barNavigation.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barNavigation.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.barNavigation.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barNavigation.Location = new System.Drawing.Point(0, 0);
     this.barNavigation.Name = "barNavigation";
     this.barNavigation.Size = new System.Drawing.Size(197, 412);
     this.barNavigation.Stretch = true;
     this.barNavigation.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.barNavigation.TabIndex = 0;
     this.barNavigation.TabStop = false;
     this.barNavigation.Text = "导航栏";
     //
     // panNavigation
     //
     this.panNavigation.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panNavigation.Location = new System.Drawing.Point(3, 23);
     this.panNavigation.Name = "panNavigation";
     this.panNavigation.Size = new System.Drawing.Size(191, 386);
     this.panNavigation.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panNavigation.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panNavigation.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panNavigation.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panNavigation.Style.GradientAngle = 90;
     this.panNavigation.TabIndex = 0;
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panNavigation;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "导航栏";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(986, 25);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 412);
     this.dockSite2.TabIndex = 9;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 465);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(986, 0);
     this.dockSite8.TabIndex = 15;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 465);
     this.dockSite5.TabIndex = 12;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(986, 0);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 465);
     this.dockSite6.TabIndex = 13;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(986, 0);
     this.dockSite7.TabIndex = 14;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(986, 0);
     this.dockSite3.TabIndex = 10;
     this.dockSite3.TabStop = false;
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.VisualStudio2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // btnSystem
     //
     this.btnSystem.GlobalName = "btnSystem";
     this.btnSystem.Name = "btnSystem";
     this.btnSystem.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.item_100,
     this.item_111,
     this.item_122,
     this.item_133,
     this.item_144,
     this.item_155,
     this.item_166});
     this.btnSystem.Text = "系统(&S)";
     //
     // item_100
     //
     this.item_100.GlobalName = "item_100";
     this.item_100.Name = "item_100";
     this.item_100.Text = "&Close";
     //
     // item_111
     //
     this.item_111.BeginGroup = true;
     this.item_111.GlobalName = "item_111";
     this.item_111.Name = "item_111";
     this.item_111.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlShiftA);
     this.item_111.Text = "Add Ne&w Item";
     //
     // item_122
     //
     this.item_122.GlobalName = "item_122";
     this.item_122.Name = "item_122";
     this.item_122.Text = "Add Existin&g Item";
     //
     // item_133
     //
     this.item_133.GlobalName = "item_133";
     this.item_133.Name = "item_133";
     this.item_133.Text = "A&dd Project";
     //
     // item_144
     //
     this.item_144.BeginGroup = true;
     this.item_144.GlobalName = "item_144";
     this.item_144.Name = "item_144";
     this.item_144.Text = "Open Solution";
     //
     // item_155
     //
     this.item_155.GlobalName = "item_155";
     this.item_155.Name = "item_155";
     this.item_155.Text = "Close Solution";
     //
     // item_166
     //
     this.item_166.BeginGroup = true;
     this.item_166.GlobalName = "item_166";
     this.item_166.Name = "item_166";
     this.item_166.Text = "&Exit";
     //
     // DockableShell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(986, 465);
     this.Controls.Add(this.dockSite9);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.panBottom);
     this.Controls.Add(this.mainmenu);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "DockableShell";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "AgileEAS.NET SOA中间件";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.mainmenu)).EndInit();
     this.panBottom.ResumeLayout(false);
     this.dockSite9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).EndInit();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barNavigation)).EndInit();
     this.barNavigation.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetLimit));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.label1 = new System.Windows.Forms.Label();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.lblX2 = new DevComponents.DotNetBar.LabelX();
     this.lblX1 = new DevComponents.DotNetBar.LabelX();
     this.txtBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.btnItm_ADD = new DevComponents.DotNetBar.ButtonItem();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.BtnSave = new DevComponents.DotNetBar.ButtonItem();
     this.BtnCancle = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Cancel = new DevComponents.DotNetBar.ButtonItem();
     this.customizeItem1 = new DevComponents.DotNetBar.CustomizeItem();
     this.panelEx1.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorScheme.ItemDesignTimeBorder = System.Drawing.Color.Black;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.label1);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(375, 562);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(96, 62);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(11, 12);
     this.label1.TabIndex = 2;
     this.label1.Text = "A";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label1.Visible = false;
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.lblX2);
     this.groupPanel1.Controls.Add(this.lblX1);
     this.groupPanel1.Controls.Add(this.txtBoxX2);
     this.groupPanel1.Location = new System.Drawing.Point(6, 75);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.groupPanel1.Size = new System.Drawing.Size(363, 79);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "权限组设置";
     this.groupPanel1.TitleImagePosition = DevComponents.DotNetBar.eTitleImagePosition.Center;
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 14;
     this.comboBoxEx1.Location = new System.Drawing.Point(70, 12);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 20);
     this.comboBoxEx1.TabIndex = 10;
     this.comboBoxEx1.SelectionChangeCommitted += new System.EventHandler(this.comboBoxEx1_SelectionChangeCommitted);
     //
     // lblX2
     //
     this.lblX2.BackColor = System.Drawing.Color.Transparent;
     this.lblX2.Location = new System.Drawing.Point(200, 13);
     this.lblX2.Name = "lblX2";
     this.lblX2.Size = new System.Drawing.Size(48, 23);
     this.lblX2.TabIndex = 9;
     this.lblX2.Text = "备注:";
     //
     // lblX1
     //
     this.lblX1.BackColor = System.Drawing.Color.Transparent;
     this.lblX1.Location = new System.Drawing.Point(-2, 13);
     this.lblX1.Name = "lblX1";
     this.lblX1.Size = new System.Drawing.Size(66, 23);
     this.lblX1.TabIndex = 8;
     this.lblX1.Text = "权限名称:";
     //
     // txtBoxX2
     //
     //
     //
     //
     this.txtBoxX2.Border.Class = "TextBoxBorder";
     this.txtBoxX2.Location = new System.Drawing.Point(254, 13);
     this.txtBoxX2.Name = "txtBoxX2";
     this.txtBoxX2.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX2.TabIndex = 3;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.treeView1);
     this.groupPanel2.Location = new System.Drawing.Point(6, 160);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(363, 394);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "操作权限";
     //
     // treeView1
     //
     this.treeView1.CheckBoxes = true;
     this.treeView1.ItemHeight = 18;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(349, 361);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterCheck);
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.DefinitionName = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.Location = new System.Drawing.Point(0, 562);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(375, 0);
     this.dockSite4.TabIndex = 4;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.Location = new System.Drawing.Point(0, 0);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 562);
     this.dockSite1.TabIndex = 1;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.Location = new System.Drawing.Point(375, 0);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 562);
     this.dockSite2.TabIndex = 2;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 562);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(375, 0);
     this.dockSite8.TabIndex = 8;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 562);
     this.dockSite5.TabIndex = 5;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(375, 0);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 562);
     this.dockSite6.TabIndex = 6;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(375, 0);
     this.dockSite7.TabIndex = 7;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(375, 0);
     this.dockSite3.TabIndex = 3;
     this.dockSite3.TabStop = false;
     //
     // btnItm_ADD
     //
     this.btnItm_ADD.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_ADD.Image")));
     this.btnItm_ADD.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_ADD.ImagePaddingHorizontal = 8;
     this.btnItm_ADD.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_ADD.Name = "btnItm_ADD";
     this.btnItm_ADD.Text = "添加";
     this.btnItm_ADD.Click += new System.EventHandler(this.btnItm_ADD_Click);
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnItm_ADD,
     this.buttonItem2,
     this.buttonItem1,
     this.BtnSave,
     this.BtnCancle,
     this.btnItm_Cancel,
     this.customizeItem1});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(375, 59);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "修改";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "删除";
     this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
     //
     // BtnSave
     //
     this.BtnSave.Image = ((System.Drawing.Image)(resources.GetObject("BtnSave.Image")));
     this.BtnSave.ImagePaddingHorizontal = 8;
     this.BtnSave.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Text = "保存";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnCancle
     //
     this.BtnCancle.Image = ((System.Drawing.Image)(resources.GetObject("BtnCancle.Image")));
     this.BtnCancle.ImagePaddingHorizontal = 8;
     this.BtnCancle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnCancle.Name = "BtnCancle";
     this.BtnCancle.Text = "撤消";
     this.BtnCancle.Click += new System.EventHandler(this.BtnCancle_Click);
     //
     // btnItm_Cancel
     //
     this.btnItm_Cancel.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Cancel.Image")));
     this.btnItm_Cancel.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Cancel.ImagePaddingHorizontal = 8;
     this.btnItm_Cancel.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Cancel.Name = "btnItm_Cancel";
     this.btnItm_Cancel.Text = "退出";
     this.btnItm_Cancel.Click += new System.EventHandler(this.btnItm_Cancel_Click);
     //
     // customizeItem1
     //
     this.customizeItem1.Name = "customizeItem1";
     this.customizeItem1.Text = "添加或删除按钮(&A)";
     this.customizeItem1.Tooltip = "工具栏选项";
     //
     // SetLimit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMinSize = new System.Drawing.Size(0, 10);
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(375, 562);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetLimit";
     this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultBounds;
     this.Text = "系统权限设置";
     this.Load += new System.EventHandler(this.setlimit_Load);
     this.Resize += new System.EventHandler(this.SetLimit_Resize);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #12
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(TabsMainForm));
     this.barMainToolbar = new DevComponents.DotNetBar.Bar();
     this.btnSystem = new DevComponents.DotNetBar.ButtonItem();
     this.btnReLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnModifPWD = new DevComponents.DotNetBar.ButtonItem();
     this.btnQuit = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows = new DevComponents.DotNetBar.ButtonItem();
     this.btnMainTabs = new DevComponents.DotNetBar.ButtonItem();
     this.btnRemoveSelectedTab = new DevComponents.DotNetBar.ButtonItem();
     this.btnRemoveAllTab = new DevComponents.DotNetBar.ButtonItem();
     this.btnTool = new DevComponents.DotNetBar.ButtonItem();
     this.btnCalculator = new DevComponents.DotNetBar.ButtonItem();
     this.btnNoteBook = new DevComponents.DotNetBar.ButtonItem();
     this.btnOthers = new DevComponents.DotNetBar.ButtonItem();
     this.btnLanguages = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangCN = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangTW = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangUS = new DevComponents.DotNetBar.ButtonItem();
     this.btnSelectTheme = new DevComponents.DotNetBar.ButtonItem();
     this.btnDefault = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindowsXP = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows7Blue = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Vista = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2010Silver = new DevComponents.DotNetBar.ButtonItem();
     this.btnHelps = new DevComponents.DotNetBar.ButtonItem();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.barSecondToolbar = new DevComponents.DotNetBar.Bar();
     this.btnToMain = new DevComponents.DotNetBar.ButtonItem();
     this.btnReLoadMenu = new DevComponents.DotNetBar.ButtonItem();
     this.btnQuitSystem = new DevComponents.DotNetBar.ButtonItem();
     this.barBottom = new DevComponents.DotNetBar.Bar();
     this.lblBottomInfo = new DevComponents.DotNetBar.LabelX();
     this.lblCompany = new DevComponents.DotNetBar.LabelItem();
     this.lblDept = new DevComponents.DotNetBar.LabelItem();
     this.lblUser = new DevComponents.DotNetBar.LabelItem();
     this.btnHiddle = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSiteLeft = new DevComponents.DotNetBar.DockSite();
     this.barLeft = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.tvMain = new System.Windows.Forms.TreeView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.navigationBar = new DevComponents.DotNetBar.NavigationBar();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSiteRight = new DevComponents.DotNetBar.DockSite();
     this.barRight = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer2 = new DevComponents.DotNetBar.PanelDockContainer();
     this.pnlMessage = new System.Windows.Forms.Panel();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.barRightN = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer3 = new DevComponents.DotNetBar.PanelDockContainer();
     this.txtNoteBook = new System.Windows.Forms.RichTextBox();
     this.barNoteBook = new DevComponents.DotNetBar.Bar();
     this.btnSaveNoteBook = new DevComponents.DotNetBar.ButtonItem();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSiteRightN = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.tabControlMain = new DevComponents.DotNetBar.TabControl();
     this.tabItemMainPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.panelMain = new DevComponents.DotNetBar.PanelEx();
     this.webBrowser = new System.Windows.Forms.WebBrowser();
     this.tabItemMain = new DevComponents.DotNetBar.TabItem(this.components);
     this.contextMenuStripTab = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsMenuItemCloseThis = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemCloseOther = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemCloseAll = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsMenuItemShowFull = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemReLogOn = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsMenuItemExit = new System.Windows.Forms.ToolStripMenuItem();
     this.styleManager = new DevComponents.DotNetBar.StyleManager(this.components);
     this.tmrTask = new System.Windows.Forms.Timer(this.components);
     this.tmrLock = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barMainToolbar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barSecondToolbar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barBottom)).BeginInit();
     this.barBottom.SuspendLayout();
     this.dockSiteLeft.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barLeft)).BeginInit();
     this.barLeft.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navigationBar)).BeginInit();
     this.dockSiteRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barRight)).BeginInit();
     this.barRight.SuspendLayout();
     this.panelDockContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barRightN)).BeginInit();
     this.barRightN.SuspendLayout();
     this.panelDockContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barNoteBook)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).BeginInit();
     this.tabControlMain.SuspendLayout();
     this.tabItemMainPanel.SuspendLayout();
     this.panelMain.SuspendLayout();
     this.contextMenuStripTab.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // barMainToolbar
     //
     this.barMainToolbar.AccessibleDescription = "DotNetBar Bar (barMainToolbar)";
     this.barMainToolbar.AccessibleName = "DotNetBar Bar";
     this.barMainToolbar.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barMainToolbar.BarType = DevComponents.DotNetBar.eBarType.MenuBar;
     this.barMainToolbar.CloseSingleTab = true;
     this.barMainToolbar.Dock = System.Windows.Forms.DockStyle.Top;
     this.barMainToolbar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSystem,
     this.btnWindows,
     this.btnTool,
     this.btnOthers,
     this.btnHelps});
     this.barMainToolbar.Location = new System.Drawing.Point(0, 0);
     this.barMainToolbar.MenuBar = true;
     this.barMainToolbar.Name = "barMainToolbar";
     this.barMainToolbar.Size = new System.Drawing.Size(935, 26);
     this.barMainToolbar.Stretch = true;
     this.barMainToolbar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barMainToolbar.TabIndex = 41;
     this.barMainToolbar.TabStop = false;
     this.barMainToolbar.Text = "bar2";
     //
     // btnSystem
     //
     this.btnSystem.Name = "btnSystem";
     this.btnSystem.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnReLogin,
     this.btnModifPWD,
     this.btnQuit});
     this.btnSystem.Text = "系统(&S)";
     //
     // btnReLogin
     //
     this.btnReLogin.Name = "btnReLogin";
     this.btnReLogin.Text = "重新登录";
     this.btnReLogin.Click += new System.EventHandler(this.tsMenuItemReLogOn_Click);
     //
     // btnModifPWD
     //
     this.btnModifPWD.Name = "btnModifPWD";
     this.btnModifPWD.Text = "修改密码";
     this.btnModifPWD.Click += new System.EventHandler(this.btnModifPWD_Click);
     //
     // btnQuit
     //
     this.btnQuit.Name = "btnQuit";
     this.btnQuit.Text = "退出系统";
     this.btnQuit.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // btnWindows
     //
     this.btnWindows.Name = "btnWindows";
     this.btnWindows.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnMainTabs,
     this.btnRemoveSelectedTab,
     this.btnRemoveAllTab});
     this.btnWindows.Text = "窗口(&W)";
     //
     // btnMainTabs
     //
     this.btnMainTabs.Name = "btnMainTabs";
     this.btnMainTabs.Text = "主控窗口";
     this.btnMainTabs.Click += new System.EventHandler(this.btnToMain_Click);
     //
     // btnRemoveSelectedTab
     //
     this.btnRemoveSelectedTab.Name = "btnRemoveSelectedTab";
     this.btnRemoveSelectedTab.Text = "关闭当前窗口";
     this.btnRemoveSelectedTab.Click += new System.EventHandler(this.tsMenuItemCloseThis_Click);
     //
     // btnRemoveAllTab
     //
     this.btnRemoveAllTab.Name = "btnRemoveAllTab";
     this.btnRemoveAllTab.Text = "关闭所有窗口";
     this.btnRemoveAllTab.Click += new System.EventHandler(this.tsMenuItemCloseAll_Click);
     //
     // btnTool
     //
     this.btnTool.Name = "btnTool";
     this.btnTool.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCalculator,
     this.btnNoteBook});
     this.btnTool.Text = "工具(&T)";
     //
     // btnCalculator
     //
     this.btnCalculator.Name = "btnCalculator";
     this.btnCalculator.Text = "计算器";
     this.btnCalculator.Click += new System.EventHandler(this.btnCalculator_Click);
     //
     // btnNoteBook
     //
     this.btnNoteBook.Name = "btnNoteBook";
     this.btnNoteBook.Text = "记事本";
     this.btnNoteBook.Click += new System.EventHandler(this.btnNoteBook_Click);
     //
     // btnOthers
     //
     this.btnOthers.Name = "btnOthers";
     this.btnOthers.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLanguages,
     this.btnSelectTheme});
     this.btnOthers.Text = "其它(&O)";
     //
     // btnLanguages
     //
     this.btnLanguages.Name = "btnLanguages";
     this.btnLanguages.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLangCN,
     this.btnLangTW,
     this.btnLangUS});
     this.btnLanguages.Text = "语言选择";
     //
     // btnLangCN
     //
     this.btnLangCN.Name = "btnLangCN";
     this.btnLangCN.Tag = "zh-CN";
     this.btnLangCN.Text = "中文(简体)";
     this.btnLangCN.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnLangTW
     //
     this.btnLangTW.Name = "btnLangTW";
     this.btnLangTW.Tag = "zh-TW";
     this.btnLangTW.Text = "中文(繁体)";
     this.btnLangTW.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnLangUS
     //
     this.btnLangUS.Name = "btnLangUS";
     this.btnLangUS.Tag = "en-US";
     this.btnLangUS.Text = "英文";
     this.btnLangUS.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnSelectTheme
     //
     this.btnSelectTheme.Name = "btnSelectTheme";
     this.btnSelectTheme.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnDefault,
     this.btnWindowsXP,
     this.btnWindows7Blue,
     this.btnOffice2007Blue,
     this.btnOffice2007Silver,
     this.btnOffice2007Black,
     this.btnOffice2007Vista,
     this.btnOffice2010Silver});
     this.btnSelectTheme.Text = "风格选择";
     //
     // btnDefault
     //
     this.btnDefault.Name = "btnDefault";
     this.btnDefault.Text = "Default";
     this.btnDefault.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnWindowsXP
     //
     this.btnWindowsXP.Name = "btnWindowsXP";
     this.btnWindowsXP.Text = "WindowsXP";
     this.btnWindowsXP.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnWindows7Blue
     //
     this.btnWindows7Blue.Name = "btnWindows7Blue";
     this.btnWindows7Blue.Text = "Windows7Blue";
     this.btnWindows7Blue.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Blue
     //
     this.btnOffice2007Blue.Name = "btnOffice2007Blue";
     this.btnOffice2007Blue.Text = "Office2007Blue";
     this.btnOffice2007Blue.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Silver
     //
     this.btnOffice2007Silver.Name = "btnOffice2007Silver";
     this.btnOffice2007Silver.Text = "Office2007Silver";
     this.btnOffice2007Silver.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Black
     //
     this.btnOffice2007Black.Name = "btnOffice2007Black";
     this.btnOffice2007Black.Text = "Office2007Black";
     this.btnOffice2007Black.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Vista
     //
     this.btnOffice2007Vista.Name = "btnOffice2007Vista";
     this.btnOffice2007Vista.Text = "Office2007Vista";
     this.btnOffice2007Vista.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2010Silver
     //
     this.btnOffice2010Silver.Name = "btnOffice2010Silver";
     this.btnOffice2010Silver.Text = "Office2010Silver";
     this.btnOffice2010Silver.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnHelps
     //
     this.btnHelps.Name = "btnHelps";
     this.btnHelps.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbout});
     this.btnHelps.Text = "帮助(&H)";
     //
     // btnAbout
     //
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // barSecondToolbar
     //
     this.barSecondToolbar.AccessibleDescription = "DotNetBar Bar (barSecondToolbar)";
     this.barSecondToolbar.AccessibleName = "DotNetBar Bar";
     this.barSecondToolbar.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barSecondToolbar.Dock = System.Windows.Forms.DockStyle.Top;
     this.barSecondToolbar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnToMain,
     this.btnReLoadMenu,
     this.btnQuitSystem});
     this.barSecondToolbar.Location = new System.Drawing.Point(0, 26);
     this.barSecondToolbar.MenuBar = true;
     this.barSecondToolbar.Name = "barSecondToolbar";
     this.barSecondToolbar.Size = new System.Drawing.Size(935, 40);
     this.barSecondToolbar.Stretch = true;
     this.barSecondToolbar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barSecondToolbar.TabIndex = 44;
     this.barSecondToolbar.TabStop = false;
     this.barSecondToolbar.Text = "bar3";
     //
     // btnToMain
     //
     this.btnToMain.Image = ((System.Drawing.Image)(resources.GetObject("btnToMain.Image")));
     this.btnToMain.Name = "btnToMain";
     this.btnToMain.Text = "主控窗口";
     this.btnToMain.Tooltip = "主控窗口";
     this.btnToMain.Click += new System.EventHandler(this.btnToMain_Click);
     //
     // btnReLoadMenu
     //
     this.btnReLoadMenu.Image = ((System.Drawing.Image)(resources.GetObject("btnReLoadMenu.Image")));
     this.btnReLoadMenu.Name = "btnReLoadMenu";
     this.btnReLoadMenu.Text = "重置功能菜单";
     this.btnReLoadMenu.Tooltip = "重置功能菜单";
     this.btnReLoadMenu.Click += new System.EventHandler(this.btnReLoadMenu_Click);
     //
     // btnQuitSystem
     //
     this.btnQuitSystem.Image = ((System.Drawing.Image)(resources.GetObject("btnQuitSystem.Image")));
     this.btnQuitSystem.Name = "btnQuitSystem";
     this.btnQuitSystem.Text = "退出系统";
     this.btnQuitSystem.Tooltip = "退出系统";
     this.btnQuitSystem.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // barBottom
     //
     this.barBottom.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.barBottom.Controls.Add(this.lblBottomInfo);
     this.barBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barBottom.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.lblCompany,
     this.lblDept,
     this.lblUser,
     this.btnHiddle});
     this.barBottom.Location = new System.Drawing.Point(0, 552);
     this.barBottom.Name = "barBottom";
     this.barBottom.Size = new System.Drawing.Size(935, 25);
     this.barBottom.Stretch = true;
     this.barBottom.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barBottom.TabIndex = 57;
     this.barBottom.TabStop = false;
     this.barBottom.Text = "bar1";
     //
     // lblBottomInfo
     //
     this.lblBottomInfo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblBottomInfo.BackgroundStyle.Class = "";
     this.lblBottomInfo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblBottomInfo.Location = new System.Drawing.Point(10, 3);
     this.lblBottomInfo.Name = "lblBottomInfo";
     this.lblBottomInfo.Size = new System.Drawing.Size(302, 25);
     this.lblBottomInfo.TabIndex = 8;
     this.lblBottomInfo.Text = "欢迎使用C#.NET通用权限管理系统组件";
     //
     // lblCompany
     //
     this.lblCompany.Image = ((System.Drawing.Image)(resources.GetObject("lblCompany.Image")));
     this.lblCompany.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblCompany.Name = "lblCompany";
     //
     // lblDept
     //
     this.lblDept.Image = ((System.Drawing.Image)(resources.GetObject("lblDept.Image")));
     this.lblDept.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblDept.Name = "lblDept";
     //
     // lblUser
     //
     this.lblUser.Image = ((System.Drawing.Image)(resources.GetObject("lblUser.Image")));
     this.lblUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblUser.Name = "lblUser";
     //
     // btnHiddle
     //
     this.btnHiddle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.btnHiddle.Name = "btnHiddle";
     //
     // dotNetBarManager
     //
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager.BottomDockSite = this.dockSite4;
     this.dotNetBarManager.EnableFullSizeDock = false;
     this.dotNetBarManager.LeftDockSite = this.dockSiteLeft;
     this.dotNetBarManager.ParentForm = this;
     this.dotNetBarManager.RightDockSite = this.dockSiteRight;
     this.dotNetBarManager.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.dotNetBarManager.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager.ToolbarRightDockSite = this.dockSiteRightN;
     this.dotNetBarManager.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 552);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(935, 0);
     this.dockSite4.TabIndex = 62;
     this.dockSite4.TabStop = false;
     //
     // dockSiteLeft
     //
     this.dockSiteLeft.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteLeft.Controls.Add(this.barLeft);
     this.dockSiteLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSiteLeft.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barLeft, 255, 486)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSiteLeft.Location = new System.Drawing.Point(0, 66);
     this.dockSiteLeft.Name = "dockSiteLeft";
     this.dockSiteLeft.Size = new System.Drawing.Size(258, 486);
     this.dockSiteLeft.TabIndex = 59;
     this.dockSiteLeft.TabStop = false;
     //
     // barLeft
     //
     this.barLeft.AccessibleDescription = "DotNetBar Bar (barLeft)";
     this.barLeft.AccessibleName = "DotNetBar Bar";
     this.barLeft.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barLeft.AutoSyncBarCaption = true;
     this.barLeft.CanDockBottom = false;
     this.barLeft.CanDockTop = false;
     this.barLeft.CloseSingleTab = true;
     this.barLeft.Controls.Add(this.panelDockContainer1);
     this.barLeft.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barLeft.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barLeft.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.barLeft.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barLeft.Location = new System.Drawing.Point(0, 0);
     this.barLeft.Name = "barLeft";
     this.barLeft.Size = new System.Drawing.Size(255, 486);
     this.barLeft.Stretch = true;
     this.barLeft.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barLeft.TabIndex = 0;
     this.barLeft.TabStop = false;
     this.barLeft.Text = "功能导航菜单";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer1.Controls.Add(this.tvMain);
     this.panelDockContainer1.Controls.Add(this.navigationBar);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(249, 460);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // tvMain
     //
     this.tvMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvMain.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tvMain.ImageIndex = 0;
     this.tvMain.ImageList = this.imageList;
     this.tvMain.Location = new System.Drawing.Point(0, 0);
     this.tvMain.Name = "tvMain";
     this.tvMain.SelectedImageIndex = 0;
     this.tvMain.Size = new System.Drawing.Size(249, 420);
     this.tvMain.TabIndex = 13;
     this.tvMain.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvMain_AfterExpand);
     this.tvMain.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tvMain_MouseClick);
     this.tvMain.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.tvMain_MouseDoubleClick);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "books-stack.png");
     this.imageList.Images.SetKeyName(1, "books.png");
     this.imageList.Images.SetKeyName(2, "book-small.png");
     this.imageList.Images.SetKeyName(3, "book-open.png");
     //
     // navigationBar
     //
     this.navigationBar.BackgroundStyle.BackColor1.Color = System.Drawing.SystemColors.Control;
     this.navigationBar.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.navigationBar.BackgroundStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.navigationBar.ConfigureAddRemoveVisible = false;
     this.navigationBar.ConfigureItemVisible = false;
     this.navigationBar.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.navigationBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.navigationBar.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.navigationBar.ItemPaddingBottom = 2;
     this.navigationBar.ItemPaddingTop = 2;
     this.navigationBar.Location = new System.Drawing.Point(0, 420);
     this.navigationBar.Name = "navigationBar";
     this.navigationBar.ShowShortcutKeysInToolTips = true;
     this.navigationBar.Size = new System.Drawing.Size(249, 40);
     this.navigationBar.SplitterVisible = true;
     this.navigationBar.SummaryLineVisible = false;
     this.navigationBar.TabIndex = 12;
     this.navigationBar.Text = "navigationBar1";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "功能导航菜单";
     //
     // dockSiteRight
     //
     this.dockSiteRight.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteRight.Controls.Add(this.barRight);
     this.dockSiteRight.Controls.Add(this.barRightN);
     this.dockSiteRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSiteRight.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barRight, 255, 486))),
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barRightN, 226, 486)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSiteRight.Location = new System.Drawing.Point(448, 66);
     this.dockSiteRight.Name = "dockSiteRight";
     this.dockSiteRight.Size = new System.Drawing.Size(487, 486);
     this.dockSiteRight.TabIndex = 60;
     this.dockSiteRight.TabStop = false;
     this.dockSiteRight.Text = "即时通信";
     //
     // barRight
     //
     this.barRight.AccessibleDescription = "DotNetBar Bar (barRight)";
     this.barRight.AccessibleName = "DotNetBar Bar";
     this.barRight.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barRight.AutoSyncBarCaption = true;
     this.barRight.CanDockBottom = false;
     this.barRight.CanDockTop = false;
     this.barRight.CloseSingleTab = true;
     this.barRight.Controls.Add(this.panelDockContainer2);
     this.barRight.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barRight.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barRight.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem2});
     this.barRight.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barRight.Location = new System.Drawing.Point(3, 0);
     this.barRight.Name = "barRight";
     this.barRight.Size = new System.Drawing.Size(255, 486);
     this.barRight.Stretch = true;
     this.barRight.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barRight.TabIndex = 1;
     this.barRight.TabStop = false;
     this.barRight.Text = "即时通信";
     //
     // panelDockContainer2
     //
     this.panelDockContainer2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer2.Controls.Add(this.pnlMessage);
     this.panelDockContainer2.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer2.Name = "panelDockContainer2";
     this.panelDockContainer2.Size = new System.Drawing.Size(249, 460);
     this.panelDockContainer2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer2.Style.GradientAngle = 90;
     this.panelDockContainer2.TabIndex = 0;
     //
     // pnlMessage
     //
     this.pnlMessage.BackColor = System.Drawing.Color.Transparent;
     this.pnlMessage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMessage.Location = new System.Drawing.Point(0, 0);
     this.pnlMessage.Name = "pnlMessage";
     this.pnlMessage.Size = new System.Drawing.Size(249, 460);
     this.pnlMessage.TabIndex = 9;
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Control = this.panelDockContainer2;
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "即时通信";
     //
     // barRightN
     //
     this.barRightN.AccessibleDescription = "DotNetBar Bar (barRightN)";
     this.barRightN.AccessibleName = "DotNetBar Bar";
     this.barRightN.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barRightN.AutoSyncBarCaption = true;
     this.barRightN.CanDockBottom = false;
     this.barRightN.CanDockTop = false;
     this.barRightN.CloseSingleTab = true;
     this.barRightN.Controls.Add(this.panelDockContainer3);
     this.barRightN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barRightN.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barRightN.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem3});
     this.barRightN.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barRightN.Location = new System.Drawing.Point(261, 0);
     this.barRightN.Name = "barRightN";
     this.barRightN.Size = new System.Drawing.Size(226, 486);
     this.barRightN.Stretch = true;
     this.barRightN.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barRightN.TabIndex = 2;
     this.barRightN.TabStop = false;
     this.barRightN.Text = "备忘录";
     //
     // panelDockContainer3
     //
     this.panelDockContainer3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer3.Controls.Add(this.txtNoteBook);
     this.panelDockContainer3.Controls.Add(this.barNoteBook);
     this.panelDockContainer3.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer3.Name = "panelDockContainer3";
     this.panelDockContainer3.Size = new System.Drawing.Size(220, 460);
     this.panelDockContainer3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer3.Style.GradientAngle = 90;
     this.panelDockContainer3.TabIndex = 0;
     this.panelDockContainer3.Text = "备忘录";
     //
     // txtNoteBook
     //
     this.txtNoteBook.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtNoteBook.Location = new System.Drawing.Point(0, 27);
     this.txtNoteBook.Name = "txtNoteBook";
     this.txtNoteBook.Size = new System.Drawing.Size(220, 433);
     this.txtNoteBook.TabIndex = 11;
     this.txtNoteBook.Text = "";
     //
     // barNoteBook
     //
     this.barNoteBook.Dock = System.Windows.Forms.DockStyle.Top;
     this.barNoteBook.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSaveNoteBook});
     this.barNoteBook.Location = new System.Drawing.Point(0, 0);
     this.barNoteBook.Name = "barNoteBook";
     this.barNoteBook.Size = new System.Drawing.Size(220, 27);
     this.barNoteBook.Stretch = true;
     this.barNoteBook.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barNoteBook.TabIndex = 10;
     this.barNoteBook.TabStop = false;
     this.barNoteBook.Text = "bar1";
     //
     // btnSaveNoteBook
     //
     this.btnSaveNoteBook.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSaveNoteBook.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveNoteBook.Image")));
     this.btnSaveNoteBook.Name = "btnSaveNoteBook";
     this.btnSaveNoteBook.Text = "保存";
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer3;
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "备忘录";
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 552);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(935, 0);
     this.dockSite8.TabIndex = 66;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 552);
     this.dockSite5.TabIndex = 63;
     this.dockSite5.TabStop = false;
     //
     // dockSiteRightN
     //
     this.dockSiteRightN.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteRightN.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSiteRightN.Location = new System.Drawing.Point(935, 0);
     this.dockSiteRightN.Name = "dockSiteRightN";
     this.dockSiteRightN.Size = new System.Drawing.Size(0, 552);
     this.dockSiteRightN.TabIndex = 64;
     this.dockSiteRightN.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(935, 0);
     this.dockSite7.TabIndex = 65;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(935, 0);
     this.dockSite3.TabIndex = 61;
     this.dockSite3.TabStop = false;
     //
     // tabControlMain
     //
     this.tabControlMain.AutoCloseTabs = true;
     this.tabControlMain.AutoHideSystemBox = false;
     this.tabControlMain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlMain.CanReorderTabs = true;
     this.tabControlMain.CloseButtonOnTabsVisible = true;
     this.tabControlMain.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabControlMain.ColorScheme.TabItemSelectedBackground = System.Drawing.Color.WhiteSmoke;
     this.tabControlMain.ColorScheme.TabItemSelectedBackground2 = System.Drawing.Color.WhiteSmoke;
     this.tabControlMain.Controls.Add(this.tabItemMainPanel);
     this.tabControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlMain.Location = new System.Drawing.Point(258, 66);
     this.tabControlMain.Name = "tabControlMain";
     this.tabControlMain.SelectedTabFont = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold);
     this.tabControlMain.SelectedTabIndex = 0;
     this.tabControlMain.Size = new System.Drawing.Size(190, 486);
     this.tabControlMain.Style = DevComponents.DotNetBar.eTabStripStyle.Office2003;
     this.tabControlMain.TabCloseButtonHot = ((System.Drawing.Image)(resources.GetObject("tabControlMain.TabCloseButtonHot")));
     this.tabControlMain.TabCloseButtonNormal = ((System.Drawing.Image)(resources.GetObject("tabControlMain.TabCloseButtonNormal")));
     this.tabControlMain.TabIndex = 67;
     this.tabControlMain.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControlMain.Tabs.Add(this.tabItemMain);
     this.tabControlMain.Text = "tabControl1";
     this.tabControlMain.SelectedTabChanged += new DevComponents.DotNetBar.TabStrip.SelectedTabChangedEventHandler(this.tabControlMain_SelectedTabChanged);
     this.tabControlMain.TabMoved += new DevComponents.DotNetBar.TabStrip.TabMovedEventHandler(this.tabControlMain_TabMoved);
     this.tabControlMain.TabRemoved += new System.EventHandler(this.tabControlMain_TabRemoved);
     //
     // tabItemMainPanel
     //
     this.tabItemMainPanel.Controls.Add(this.panelMain);
     this.tabItemMainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabItemMainPanel.Location = new System.Drawing.Point(0, 25);
     this.tabItemMainPanel.Name = "tabItemMainPanel";
     this.tabItemMainPanel.Padding = new System.Windows.Forms.Padding(1);
     this.tabItemMainPanel.Size = new System.Drawing.Size(190, 461);
     this.tabItemMainPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabItemMainPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabItemMainPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabItemMainPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.tabItemMainPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabItemMainPanel.Style.GradientAngle = 90;
     this.tabItemMainPanel.TabIndex = 1;
     this.tabItemMainPanel.TabItem = this.tabItemMain;
     //
     // panelMain
     //
     this.panelMain.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelMain.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelMain.Controls.Add(this.webBrowser);
     this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelMain.Location = new System.Drawing.Point(1, 1);
     this.panelMain.Name = "panelMain";
     this.panelMain.Size = new System.Drawing.Size(188, 459);
     this.panelMain.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelMain.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelMain.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelMain.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelMain.Style.GradientAngle = 90;
     this.panelMain.TabIndex = 0;
     //
     // webBrowser
     //
     this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location = new System.Drawing.Point(0, 0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 22);
     this.webBrowser.Name = "webBrowser";
     this.webBrowser.Size = new System.Drawing.Size(188, 459);
     this.webBrowser.TabIndex = 0;
     this.webBrowser.Url = new System.Uri("", System.UriKind.Relative);
     //
     // tabItemMain
     //
     this.tabItemMain.AttachedControl = this.tabItemMainPanel;
     this.tabItemMain.CloseButtonVisible = false;
     this.tabItemMain.Image = ((System.Drawing.Image)(resources.GetObject("tabItemMain.Image")));
     this.tabItemMain.Name = "tabItemMain";
     this.tabItemMain.Text = "主页";
     //
     // contextMenuStripTab
     //
     this.contextMenuStripTab.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsMenuItemCloseThis,
     this.tsMenuItemCloseOther,
     this.tsMenuItemCloseAll});
     this.contextMenuStripTab.Name = "contextMenuStrip";
     this.contextMenuStripTab.Size = new System.Drawing.Size(185, 70);
     //
     // tsMenuItemCloseThis
     //
     this.tsMenuItemCloseThis.Name = "tsMenuItemCloseThis";
     this.tsMenuItemCloseThis.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseThis.Text = "关闭当前(&C)";
     this.tsMenuItemCloseThis.Click += new System.EventHandler(this.tsMenuItemCloseThis_Click);
     //
     // tsMenuItemCloseOther
     //
     this.tsMenuItemCloseOther.Name = "tsMenuItemCloseOther";
     this.tsMenuItemCloseOther.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseOther.Text = "除此之外全部关闭(&E)";
     this.tsMenuItemCloseOther.Click += new System.EventHandler(this.tsMenuItemCloseOther_Click);
     //
     // tsMenuItemCloseAll
     //
     this.tsMenuItemCloseAll.Name = "tsMenuItemCloseAll";
     this.tsMenuItemCloseAll.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseAll.Text = "全部关闭(&A)";
     this.tsMenuItemCloseAll.Click += new System.EventHandler(this.tsMenuItemCloseAll_Click);
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsMenuItemShowFull,
     this.tsMenuItemReLogOn,
     this.toolStripSeparator1,
     this.tsMenuItemExit});
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(123, 76);
     //
     // tsMenuItemShowFull
     //
     this.tsMenuItemShowFull.Name = "tsMenuItemShowFull";
     this.tsMenuItemShowFull.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemShowFull.Text = "全屏显示";
     this.tsMenuItemShowFull.Click += new System.EventHandler(this.tsMenuItemShowFull_Click);
     //
     // tsMenuItemReLogOn
     //
     this.tsMenuItemReLogOn.Name = "tsMenuItemReLogOn";
     this.tsMenuItemReLogOn.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemReLogOn.Text = "重新登录";
     this.tsMenuItemReLogOn.Click += new System.EventHandler(this.tsMenuItemReLogOn_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(119, 6);
     //
     // tsMenuItemExit
     //
     this.tsMenuItemExit.Name = "tsMenuItemExit";
     this.tsMenuItemExit.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemExit.Text = "退出";
     this.tsMenuItemExit.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // styleManager
     //
     this.styleManager.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // tmrTask
     //
     this.tmrTask.Enabled = true;
     this.tmrTask.Interval = 3000;
     this.tmrTask.Tick += new System.EventHandler(this.tmrTask_Tick);
     //
     // tmrLock
     //
     this.tmrLock.Interval = 10000;
     this.tmrLock.Tick += new System.EventHandler(this.tmrLock_Tick);
     //
     // TabsMainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(935, 577);
     this.Controls.Add(this.tabControlMain);
     this.Controls.Add(this.dockSiteRight);
     this.Controls.Add(this.dockSiteLeft);
     this.Controls.Add(this.barSecondToolbar);
     this.Controls.Add(this.barMainToolbar);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSiteRightN);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Controls.Add(this.barBottom);
     this.Name = "TabsMainForm";
     this.ShowInTaskbar = true;
     this.Text = "C#.NET通用快速开发架构";
     this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TabsMainFrm_FormClosing);
     this.Load += new System.EventHandler(this.TabsMainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barMainToolbar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barSecondToolbar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barBottom)).EndInit();
     this.barBottom.ResumeLayout(false);
     this.dockSiteLeft.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barLeft)).EndInit();
     this.barLeft.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navigationBar)).EndInit();
     this.dockSiteRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barRight)).EndInit();
     this.barRight.ResumeLayout(false);
     this.panelDockContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barRightN)).EndInit();
     this.barRightN.ResumeLayout(false);
     this.panelDockContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barNoteBook)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).EndInit();
     this.tabControlMain.ResumeLayout(false);
     this.tabItemMainPanel.ResumeLayout(false);
     this.panelMain.ResumeLayout(false);
     this.contextMenuStripTab.ResumeLayout(false);
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.strmenuHeThong = new System.Windows.Forms.ToolStripMenuItem();
     this.strDangNhap = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripNewProject = new System.Windows.Forms.ToolStripMenuItem();
     this.strDangXuat = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this._btSave = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.strmenuTroGiup = new System.Windows.Forms.ToolStripMenuItem();
     this.strThongTin = new System.Windows.Forms.ToolStripMenuItem();
     this.strLienHe = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.projectExploreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.execureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.thoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tácGiảToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.metroShell1 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonRun = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPause = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonStop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonUndo = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this._treeViewProjectExplore = new System.Windows.Forms.TreeView();
     this.contextMenuStripTreeView = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.runToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.addFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageListTrV = new System.Windows.Forms.ImageList(this.components);
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.tabControl1X = new System.Windows.Forms.TabControl();
     this.tabPageHex = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabPageText = new System.Windows.Forms.TabPage();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabMenu = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.itemPanel4 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem4 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel5 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem5 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel6 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem6 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel7 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem7 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel3 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabPageExcell = new System.Windows.Forms.TabPage();
     this.tabControl1 = new System.Windows.Forms.CustomTabControl();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.tabPage23 = new System.Windows.Forms.TabPage();
     this.tabPage21 = new System.Windows.Forms.TabPage();
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     this.contextMenuStripTreeView.SuspendLayout();
     this.tabControl1X.SuspendLayout();
     this.tabPageHex.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabPageText.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabMenu.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tabPageExcell.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.menuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strmenuHeThong,
     this.strmenuTroGiup,
     this.viewToolStripMenuItem,
     this.execureToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(5, 25);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(851, 24);
     this.menuStrip1.TabIndex = 12;
     this.menuStrip1.Text = "menuStrip1";
     //
     // strmenuHeThong
     //
     this.strmenuHeThong.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strDangNhap,
     this.strDangXuat,
     this._btSave,
     this.exitToolStripMenuItem});
     this.strmenuHeThong.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.strmenuHeThong.ForeColor = System.Drawing.Color.White;
     this.strmenuHeThong.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.strmenuHeThong.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strmenuHeThong.ImageTransparentColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.strmenuHeThong.Name = "strmenuHeThong";
     this.strmenuHeThong.Size = new System.Drawing.Size(37, 20);
     this.strmenuHeThong.Text = "&File";
     //
     // strDangNhap
     //
     this.strDangNhap.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strDangNhap.BackgroundImage")));
     this.strDangNhap.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripNewProject});
     this.strDangNhap.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strDangNhap.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strDangNhap.Name = "strDangNhap";
     this.strDangNhap.Size = new System.Drawing.Size(138, 22);
     this.strDangNhap.Text = "New";
     //
     // projectToolStripNewProject
     //
     this.projectToolStripNewProject.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectToolStripNewProject.BackgroundImage")));
     this.projectToolStripNewProject.ForeColor = System.Drawing.Color.White;
     this.projectToolStripNewProject.Image = ((System.Drawing.Image)(resources.GetObject("projectToolStripNewProject.Image")));
     this.projectToolStripNewProject.Name = "projectToolStripNewProject";
     this.projectToolStripNewProject.Size = new System.Drawing.Size(111, 22);
     this.projectToolStripNewProject.Text = "Project";
     this.projectToolStripNewProject.Click += new System.EventHandler(this.projectToolStripNewProject_Click);
     //
     // strDangXuat
     //
     this.strDangXuat.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strDangXuat.BackgroundImage")));
     this.strDangXuat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripMenuItem1});
     this.strDangXuat.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strDangXuat.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strDangXuat.Name = "strDangXuat";
     this.strDangXuat.Size = new System.Drawing.Size(138, 22);
     this.strDangXuat.Text = "Open";
     //
     // projectToolStripMenuItem1
     //
     this.projectToolStripMenuItem1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem1.BackgroundImage")));
     this.projectToolStripMenuItem1.ForeColor = System.Drawing.Color.White;
     this.projectToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem1.Image")));
     this.projectToolStripMenuItem1.Name = "projectToolStripMenuItem1";
     this.projectToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
     this.projectToolStripMenuItem1.Text = "Project";
     this.projectToolStripMenuItem1.Click += new System.EventHandler(this.projectToolStripMenuItem1_Click);
     //
     // _btSave
     //
     this._btSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("_btSave.BackgroundImage")));
     this._btSave.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this._btSave.Image = ((System.Drawing.Image)(resources.GetObject("_btSave.Image")));
     this._btSave.Name = "_btSave";
     this._btSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this._btSave.Size = new System.Drawing.Size(138, 22);
     this._btSave.Text = "Save";
     this._btSave.Click += new System.EventHandler(this._btSave_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("exitToolStripMenuItem.BackgroundImage")));
     this.exitToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.exitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("exitToolStripMenuItem.Image")));
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // strmenuTroGiup
     //
     this.strmenuTroGiup.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strThongTin,
     this.strLienHe});
     this.strmenuTroGiup.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.strmenuTroGiup.ForeColor = System.Drawing.Color.White;
     this.strmenuTroGiup.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.strmenuTroGiup.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strmenuTroGiup.Name = "strmenuTroGiup";
     this.strmenuTroGiup.Size = new System.Drawing.Size(39, 20);
     this.strmenuTroGiup.Text = "&Edit";
     //
     // strThongTin
     //
     this.strThongTin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strThongTin.BackgroundImage")));
     this.strThongTin.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strThongTin.Image = ((System.Drawing.Image)(resources.GetObject("strThongTin.Image")));
     this.strThongTin.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strThongTin.Name = "strThongTin";
     this.strThongTin.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.strThongTin.Size = new System.Drawing.Size(144, 22);
     this.strThongTin.Text = "Undo";
     //
     // strLienHe
     //
     this.strLienHe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strLienHe.BackgroundImage")));
     this.strLienHe.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strLienHe.Image = ((System.Drawing.Image)(resources.GetObject("strLienHe.Image")));
     this.strLienHe.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strLienHe.Name = "strLienHe";
     this.strLienHe.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.strLienHe.Size = new System.Drawing.Size(144, 22);
     this.strLienHe.Text = "Redo";
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectExploreToolStripMenuItem});
     this.viewToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.viewToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "&View";
     //
     // projectExploreToolStripMenuItem
     //
     this.projectExploreToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectExploreToolStripMenuItem.BackgroundImage")));
     this.projectExploreToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.projectExploreToolStripMenuItem.Name = "projectExploreToolStripMenuItem";
     this.projectExploreToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.projectExploreToolStripMenuItem.Text = "Project Explore";
     //
     // execureToolStripMenuItem
     //
     this.execureToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem,
     this.pauseToolStripMenuItem,
     this.stopToolStripMenuItem});
     this.execureToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.execureToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.execureToolStripMenuItem.Name = "execureToolStripMenuItem";
     this.execureToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
     this.execureToolStripMenuItem.Text = "&Execure";
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem.BackgroundImage")));
     this.runToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.runToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem.Image")));
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
     this.runToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.runToolStripMenuItem.Text = "Run";
     //
     // pauseToolStripMenuItem
     //
     this.pauseToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pauseToolStripMenuItem.BackgroundImage")));
     this.pauseToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.pauseToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pauseToolStripMenuItem.Image")));
     this.pauseToolStripMenuItem.Name = "pauseToolStripMenuItem";
     this.pauseToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.pauseToolStripMenuItem.Text = "Pause";
     //
     // stopToolStripMenuItem
     //
     this.stopToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("stopToolStripMenuItem.BackgroundImage")));
     this.stopToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.stopToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("stopToolStripMenuItem.Image")));
     this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
     this.stopToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.stopToolStripMenuItem.Text = "Stop";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.thoToolStripMenuItem,
     this.tácGiảToolStripMenuItem});
     this.aboutToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.aboutToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.aboutToolStripMenuItem.Text = "&About";
     //
     // thoToolStripMenuItem
     //
     this.thoToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("thoToolStripMenuItem.BackgroundImage")));
     this.thoToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.thoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("thoToolStripMenuItem.Image")));
     this.thoToolStripMenuItem.Name = "thoToolStripMenuItem";
     this.thoToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.thoToolStripMenuItem.Text = "Thông Tin Phần Mềm";
     //
     // tácGiảToolStripMenuItem
     //
     this.tácGiảToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tácGiảToolStripMenuItem.BackgroundImage")));
     this.tácGiảToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.tácGiảToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("tácGiảToolStripMenuItem.Image")));
     this.tácGiảToolStripMenuItem.Name = "tácGiảToolStripMenuItem";
     this.tácGiảToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.tácGiảToolStripMenuItem.Text = "Tác Giả";
     //
     // metroShell1
     //
     this.metroShell1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.metroShell1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("metroShell1.BackgroundImage")));
     this.metroShell1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     //
     //
     //
     this.metroShell1.BackgroundStyle.Class = "";
     this.metroShell1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell1.CaptionVisible = true;
     this.metroShell1.Dock = System.Windows.Forms.DockStyle.Top;
     this.metroShell1.ForeColor = System.Drawing.Color.DimGray;
     this.metroShell1.HelpButtonText = null;
     this.metroShell1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.metroShell1.Location = new System.Drawing.Point(5, 1);
     this.metroShell1.Name = "metroShell1";
     this.metroShell1.Size = new System.Drawing.Size(851, 24);
     this.metroShell1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell1.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell1.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell1.SystemText.QatDialogOkButton = "OK";
     this.metroShell1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell1.TabIndex = 11;
     this.metroShell1.TabStripFont = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroShell1.Text = "metroShell1";
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripButton,
     this.openToolStripButton,
     this.saveToolStripButton,
     this.toolStripSeparator,
     this.toolStripButtonRun,
     this.toolStripButtonPause,
     this.toolStripButtonStop,
     this.toolStripSeparator1,
     this.toolStripButtonUndo,
     this.toolStripButtonRedo,
     this.toolStripSeparator2,
     this.cutToolStripButton,
     this.copyToolStripButton,
     this.pasteToolStripButton,
     this.toolStripSeparator3,
     this.helpToolStripButton});
     this.toolStrip1.Location = new System.Drawing.Point(5, 49);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(851, 25);
     this.toolStrip1.TabIndex = 13;
     this.toolStrip1.Text = "toolStrip1";
     //
     // newToolStripButton
     //
     this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
     this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.newToolStripButton.Text = "&New";
     //
     // openToolStripButton
     //
     this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
     this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripButton.Name = "openToolStripButton";
     this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.openToolStripButton.Text = "&Open";
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
     this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.saveToolStripButton.Text = "&Save";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonRun
     //
     this.toolStripButtonRun.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRun.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRun.Image")));
     this.toolStripButtonRun.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRun.Name = "toolStripButtonRun";
     this.toolStripButtonRun.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRun.Text = "&Run";
     //
     // toolStripButtonPause
     //
     this.toolStripButtonPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonPause.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPause.Image")));
     this.toolStripButtonPause.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPause.Name = "toolStripButtonPause";
     this.toolStripButtonPause.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonPause.Text = "&Pause";
     //
     // toolStripButtonStop
     //
     this.toolStripButtonStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonStop.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonStop.Image")));
     this.toolStripButtonStop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonStop.Name = "toolStripButtonStop";
     this.toolStripButtonStop.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonStop.Text = "&Stop";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonUndo
     //
     this.toolStripButtonUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonUndo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonUndo.Image")));
     this.toolStripButtonUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonUndo.Name = "toolStripButtonUndo";
     this.toolStripButtonUndo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonUndo.Text = "&Undo";
     //
     // toolStripButtonRedo
     //
     this.toolStripButtonRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRedo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRedo.Image")));
     this.toolStripButtonRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRedo.Name = "toolStripButtonRedo";
     this.toolStripButtonRedo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRedo.Text = "&Redo";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
     this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.cutToolStripButton.Text = "C&ut";
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
     this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.copyToolStripButton.Text = "&Copy";
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
     this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.pasteToolStripButton.Text = "&Paste";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // helpToolStripButton
     //
     this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
     this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.helpToolStripButton.Name = "helpToolStripButton";
     this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.helpToolStripButton.Text = "He&lp";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 479);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(851, 0);
     this.dockSite4.TabIndex = 17;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 169, 405)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 74);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(172, 405);
     this.dockSite1.TabIndex = 14;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(169, 405);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Solution Explore";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panelDockContainer1.Controls.Add(this._treeViewProjectExplore);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(163, 379);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // _treeViewProjectExplore
     //
     this._treeViewProjectExplore.ContextMenuStrip = this.contextMenuStripTreeView;
     this._treeViewProjectExplore.Dock = System.Windows.Forms.DockStyle.Fill;
     this._treeViewProjectExplore.ImageIndex = 0;
     this._treeViewProjectExplore.ImageList = this.imageListTrV;
     this._treeViewProjectExplore.Location = new System.Drawing.Point(0, 0);
     this._treeViewProjectExplore.Name = "_treeViewProjectExplore";
     this._treeViewProjectExplore.SelectedImageIndex = 0;
     this._treeViewProjectExplore.Size = new System.Drawing.Size(163, 379);
     this._treeViewProjectExplore.TabIndex = 0;
     this._treeViewProjectExplore.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this._treeViewProjectExplore_AfterSelect);
     this._treeViewProjectExplore.DoubleClick += new System.EventHandler(this._treeViewProjectExplore_DoubleClick);
     //
     // contextMenuStripTreeView
     //
     this.contextMenuStripTreeView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem1,
     this.addFileToolStripMenuItem,
     this.deleteToolStripMenuItem});
     this.contextMenuStripTreeView.Name = "contextMenuStripTreeView";
     this.contextMenuStripTreeView.Size = new System.Drawing.Size(118, 70);
     //
     // runToolStripMenuItem1
     //
     this.runToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem1.Image")));
     this.runToolStripMenuItem1.Name = "runToolStripMenuItem1";
     this.runToolStripMenuItem1.Size = new System.Drawing.Size(117, 22);
     this.runToolStripMenuItem1.Text = "Run";
     this.runToolStripMenuItem1.Click += new System.EventHandler(this.runToolStripMenuItem1_Click);
     //
     // addFileToolStripMenuItem
     //
     this.addFileToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("addFileToolStripMenuItem.Image")));
     this.addFileToolStripMenuItem.Name = "addFileToolStripMenuItem";
     this.addFileToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.addFileToolStripMenuItem.Text = "Add File";
     this.addFileToolStripMenuItem.Click += new System.EventHandler(this.addFileToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteToolStripMenuItem.Image")));
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     //
     // imageListTrV
     //
     this.imageListTrV.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTrV.ImageStream")));
     this.imageListTrV.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListTrV.Images.SetKeyName(0, "1.png");
     this.imageListTrV.Images.SetKeyName(1, "2.png");
     this.imageListTrV.Images.SetKeyName(2, "Folder.png");
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(856, 74);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 405);
     this.dockSite2.TabIndex = 15;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 479);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(851, 0);
     this.dockSite8.TabIndex = 21;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 478);
     this.dockSite5.TabIndex = 18;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(856, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 478);
     this.dockSite6.TabIndex = 19;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(851, 0);
     this.dockSite7.TabIndex = 20;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(851, 0);
     this.dockSite3.TabIndex = 16;
     this.dockSite3.TabStop = false;
     //
     // tabControl1X
     //
     this.tabControl1X.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabControl1X.Controls.Add(this.tabPageHex);
     this.tabControl1X.Controls.Add(this.tabPageText);
     this.tabControl1X.Controls.Add(this.tabPageExcell);
     this.tabControl1X.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1X.Location = new System.Drawing.Point(177, 74);
     this.tabControl1X.Name = "tabControl1X";
     this.tabControl1X.SelectedIndex = 0;
     this.tabControl1X.Size = new System.Drawing.Size(679, 405);
     this.tabControl1X.TabIndex = 22;
     //
     // tabPageHex
     //
     this.tabPageHex.Controls.Add(this.pictureBox1);
     this.tabPageHex.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageHex.Location = new System.Drawing.Point(4, 25);
     this.tabPageHex.Name = "tabPageHex";
     this.tabPageHex.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageHex.Size = new System.Drawing.Size(671, 376);
     this.tabPageHex.TabIndex = 0;
     this.tabPageHex.Text = "Introduction";
     this.tabPageHex.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(665, 370);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabPageText
     //
     this.tabPageText.Controls.Add(this.tabControl2);
     this.tabPageText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageText.Location = new System.Drawing.Point(4, 25);
     this.tabPageText.Name = "tabPageText";
     this.tabPageText.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageText.Size = new System.Drawing.Size(671, 376);
     this.tabPageText.TabIndex = 1;
     this.tabPageText.Text = "Short Menu";
     this.tabPageText.UseVisualStyleBackColor = true;
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabMenu);
     this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
     this.tabControl2.Location = new System.Drawing.Point(3, 3);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(665, 370);
     this.tabControl2.TabIndex = 21;
     //
     // tabMenu
     //
     this.tabMenu.Controls.Add(this.tableLayoutPanel1);
     this.tabMenu.Location = new System.Drawing.Point(4, 22);
     this.tabMenu.Name = "tabMenu";
     this.tabMenu.Padding = new System.Windows.Forms.Padding(3);
     this.tabMenu.Size = new System.Drawing.Size(657, 344);
     this.tabMenu.TabIndex = 1;
     this.tabMenu.Text = "Short Menu";
     this.tabMenu.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 616F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 8F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelX1, 1, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 56F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 9F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(651, 338);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.56995F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 69.43005F));
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(41, 59);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(610, 294);
     this.tableLayoutPanel2.TabIndex = 0;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.17172F));
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel5, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.itemPanel3, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(189, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 2;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.69444F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 197F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(418, 288);
     this.tableLayoutPanel3.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Controls.Add(this.itemPanel4, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel5, 1, 0);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel6, 0, 1);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel7, 1, 1);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 94);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 2;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(412, 191);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // itemPanel4
     //
     //
     //
     //
     this.itemPanel4.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel4.ContainerControlProcessDialogKey = true;
     this.itemPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer4});
     this.itemPanel4.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel4.Location = new System.Drawing.Point(3, 3);
     this.itemPanel4.Name = "itemPanel4";
     this.itemPanel4.Size = new System.Drawing.Size(200, 89);
     this.itemPanel4.TabIndex = 0;
     this.itemPanel4.Text = "itemPanel4";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "";
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem4});
     //
     // metroTileItem4
     //
     this.metroTileItem4.Name = "metroTileItem4";
     this.metroTileItem4.Text = "metroTileItem4";
     this.metroTileItem4.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.metroTileItem4.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem4.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.metroTileItem4.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.metroTileItem4.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem4.TileStyle.Class = "";
     this.metroTileItem4.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem4.TileStyle.PaddingBottom = 4;
     this.metroTileItem4.TileStyle.PaddingLeft = 4;
     this.metroTileItem4.TileStyle.PaddingRight = 4;
     this.metroTileItem4.TileStyle.PaddingTop = 4;
     this.metroTileItem4.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel5
     //
     //
     //
     //
     this.itemPanel5.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel5.ContainerControlProcessDialogKey = true;
     this.itemPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer5});
     this.itemPanel5.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel5.Location = new System.Drawing.Point(209, 3);
     this.itemPanel5.Name = "itemPanel5";
     this.itemPanel5.Size = new System.Drawing.Size(200, 89);
     this.itemPanel5.TabIndex = 1;
     this.itemPanel5.Text = "itemPanel5";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.Class = "";
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem5});
     //
     // metroTileItem5
     //
     this.metroTileItem5.Name = "metroTileItem5";
     this.metroTileItem5.Text = "metroTileItem5";
     this.metroTileItem5.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.DarkOlive;
     this.metroTileItem5.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem5.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(96)))));
     this.metroTileItem5.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(107)))), ((int)(((byte)(86)))));
     this.metroTileItem5.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem5.TileStyle.Class = "";
     this.metroTileItem5.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem5.TileStyle.PaddingBottom = 4;
     this.metroTileItem5.TileStyle.PaddingLeft = 4;
     this.metroTileItem5.TileStyle.PaddingRight = 4;
     this.metroTileItem5.TileStyle.PaddingTop = 4;
     this.metroTileItem5.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel6
     //
     //
     //
     //
     this.itemPanel6.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel6.ContainerControlProcessDialogKey = true;
     this.itemPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6});
     this.itemPanel6.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel6.Location = new System.Drawing.Point(3, 98);
     this.itemPanel6.Name = "itemPanel6";
     this.itemPanel6.Size = new System.Drawing.Size(200, 90);
     this.itemPanel6.TabIndex = 2;
     this.itemPanel6.Text = "itemPanel6";
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.Class = "";
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem6});
     //
     // metroTileItem6
     //
     this.metroTileItem6.Name = "metroTileItem6";
     this.metroTileItem6.Text = "metroTileItem6";
     this.metroTileItem6.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.metroTileItem6.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem6.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.metroTileItem6.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.metroTileItem6.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem6.TileStyle.Class = "";
     this.metroTileItem6.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem6.TileStyle.PaddingBottom = 4;
     this.metroTileItem6.TileStyle.PaddingLeft = 4;
     this.metroTileItem6.TileStyle.PaddingRight = 4;
     this.metroTileItem6.TileStyle.PaddingTop = 4;
     this.metroTileItem6.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel7
     //
     //
     //
     //
     this.itemPanel7.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel7.ContainerControlProcessDialogKey = true;
     this.itemPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer7});
     this.itemPanel7.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel7.Location = new System.Drawing.Point(209, 98);
     this.itemPanel7.Name = "itemPanel7";
     this.itemPanel7.Size = new System.Drawing.Size(200, 90);
     this.itemPanel7.TabIndex = 3;
     this.itemPanel7.Text = "itemPanel7";
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.Class = "";
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem7});
     //
     // metroTileItem7
     //
     this.metroTileItem7.Name = "metroTileItem7";
     this.metroTileItem7.Text = "metroTileItem7";
     this.metroTileItem7.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem7.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem7.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem7.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem7.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem7.TileStyle.Class = "";
     this.metroTileItem7.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem7.TileStyle.PaddingBottom = 4;
     this.metroTileItem7.TileStyle.PaddingLeft = 4;
     this.metroTileItem7.TileStyle.PaddingRight = 4;
     this.metroTileItem7.TileStyle.PaddingTop = 4;
     this.metroTileItem7.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel3
     //
     //
     //
     //
     this.itemPanel3.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel3.ContainerControlProcessDialogKey = true;
     this.itemPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     this.itemPanel3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel3.Location = new System.Drawing.Point(3, 3);
     this.itemPanel3.Name = "itemPanel3";
     this.itemPanel3.Size = new System.Drawing.Size(412, 85);
     this.itemPanel3.TabIndex = 1;
     this.itemPanel3.Text = "itemPanel3";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem3});
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.Text = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem3.TileSize = new System.Drawing.Size(420, 90);
     //
     //
     //
     this.metroTileItem3.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(187)))), ((int)(((byte)(17)))));
     this.metroTileItem3.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(176)))), ((int)(((byte)(16)))));
     this.metroTileItem3.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem3.TileStyle.Class = "";
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingBottom = 4;
     this.metroTileItem3.TileStyle.PaddingLeft = 4;
     this.metroTileItem3.TileStyle.PaddingRight = 4;
     this.metroTileItem3.TileStyle.PaddingTop = 4;
     this.metroTileItem3.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Controls.Add(this.itemPanel1, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.itemPanel2, 0, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 143F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(180, 288);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // itemPanel1
     //
     //
     //
     //
     this.itemPanel1.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.Location = new System.Drawing.Point(3, 3);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(174, 139);
     this.itemPanel1.TabIndex = 0;
     this.itemPanel1.Text = "itemPanel1";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem1});
     //
     // metroTileItem1
     //
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "metroTileItem1";
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Teal;
     this.metroTileItem1.TileSize = new System.Drawing.Size(180, 150);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(169)))), ((int)(((byte)(142)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(187)))), ((int)(((byte)(158)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.Class = "";
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleTextColor = System.Drawing.SystemColors.MenuHighlight;
     //
     // itemPanel2
     //
     //
     //
     //
     this.itemPanel2.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(3, 148);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(174, 137);
     this.itemPanel2.TabIndex = 1;
     this.itemPanel2.Text = "itemPanel2";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem2});
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.Text = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 150);
     //
     //
     //
     this.metroTileItem2.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.metroTileItem2.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.metroTileItem2.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem2.TileStyle.Class = "";
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingBottom = 4;
     this.metroTileItem2.TileStyle.PaddingLeft = 4;
     this.metroTileItem2.TileStyle.PaddingRight = 4;
     this.metroTileItem2.TileStyle.PaddingTop = 4;
     this.metroTileItem2.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(41, 3);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(183, 50);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "<b><font size=\'26\' color=\'#00B7EF\'>Menu</font></b>";
     //
     // tabPageExcell
     //
     this.tabPageExcell.Controls.Add(this.tabControl1);
     this.tabPageExcell.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageExcell.Location = new System.Drawing.Point(4, 25);
     this.tabPageExcell.Name = "tabPageExcell";
     this.tabPageExcell.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageExcell.Size = new System.Drawing.Size(671, 376);
     this.tabPageExcell.TabIndex = 2;
     this.tabPageExcell.Text = "Excel";
     this.tabPageExcell.UseVisualStyleBackColor = true;
     //
     // tabControl1
     //
     this.tabControl1.DisplayStyle = System.Windows.Forms.TabStyle.Chrome;
     //
     //
     //
     this.tabControl1.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.tabControl1.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
     this.tabControl1.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.White;
     this.tabControl1.DisplayStyleProvider.FocusTrack = false;
     this.tabControl1.DisplayStyleProvider.HotTrack = true;
     this.tabControl1.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tabControl1.DisplayStyleProvider.Opacity = 1F;
     this.tabControl1.DisplayStyleProvider.Overlap = 16;
     this.tabControl1.DisplayStyleProvider.Padding = new System.Drawing.Point(7, 5);
     this.tabControl1.DisplayStyleProvider.Radius = 16;
     this.tabControl1.DisplayStyleProvider.ShowTabCloser = true;
     this.tabControl1.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HotTrack = true;
     this.tabControl1.ImageList = this.imageList1;
     this.tabControl1.Location = new System.Drawing.Point(3, 3);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(665, 370);
     this.tabControl1.TabIndex = 6;
     this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "battery.png");
     this.imageList1.Images.SetKeyName(1, "book_open.png");
     this.imageList1.Images.SetKeyName(2, "brush3.png");
     this.imageList1.Images.SetKeyName(3, "calculator.png");
     this.imageList1.Images.SetKeyName(4, "cd_music.png");
     this.imageList1.Images.SetKeyName(5, "Close");
     this.imageList1.Images.SetKeyName(6, "google_favicon.png");
     //
     // tabPage23
     //
     this.tabPage23.ImageKey = "(none)";
     this.tabPage23.Location = new System.Drawing.Point(4, 27);
     this.tabPage23.Name = "tabPage23";
     this.tabPage23.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage23.Size = new System.Drawing.Size(657, 339);
     this.tabPage23.TabIndex = 2;
     this.tabPage23.Text = "tabPage23";
     this.tabPage23.UseVisualStyleBackColor = true;
     //
     // tabPage21
     //
     this.tabPage21.ImageKey = "(none)";
     this.tabPage21.Location = new System.Drawing.Point(4, 27);
     this.tabPage21.Name = "tabPage21";
     this.tabPage21.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage21.Size = new System.Drawing.Size(657, 339);
     this.tabPage21.TabIndex = 0;
     this.tabPage21.Text = "Allgemein";
     this.tabPage21.UseVisualStyleBackColor = true;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(861, 481);
     this.Controls.Add(this.tabControl1X);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.metroShell1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "frmMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmMain";
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     this.contextMenuStripTreeView.ResumeLayout(false);
     this.tabControl1X.ResumeLayout(false);
     this.tabPageHex.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabPageText.ResumeLayout(false);
     this.tabControl2.ResumeLayout(false);
     this.tabMenu.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tabPageExcell.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.barBottomDockSite = new DevComponents.DotNetBar.DockSite();
     this.dockSite1         = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer3 = new DevComponents.DotNetBar.PanelDockContainer();
     this.textBox4            = new System.Windows.Forms.TextBox();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.textBox1            = new System.Windows.Forms.TextBox();
     this.dockContainerItem1  = new DevComponents.DotNetBar.DockContainerItem();
     this.dockContainerItem3  = new DevComponents.DotNetBar.DockContainerItem();
     this.bar2 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer4 = new DevComponents.DotNetBar.PanelDockContainer();
     this.textBox2            = new System.Windows.Forms.TextBox();
     this.dockContainerItem4  = new DevComponents.DotNetBar.DockContainerItem();
     this.bar3 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer2 = new DevComponents.DotNetBar.PanelDockContainer();
     this.textBox3            = new System.Windows.Forms.TextBox();
     this.dockContainerItem2  = new DevComponents.DotNetBar.DockContainerItem();
     this.barLeftDockSite     = new DevComponents.DotNetBar.DockSite();
     this.barRightDockSite    = new DevComponents.DotNetBar.DockSite();
     this.barTopDockSite      = new DevComponents.DotNetBar.DockSite();
     this.bar4        = new DevComponents.DotNetBar.Bar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer3.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar2)).BeginInit();
     this.bar2.SuspendLayout();
     this.panelDockContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar3)).BeginInit();
     this.bar3.SuspendLayout();
     this.panelDockContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar4)).BeginInit();
     this.SuspendLayout();
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite  = this.barBottomDockSite;
     this.dotNetBarManager1.DefinitionName  = "";
     this.dotNetBarManager1.FillDockSite    = this.dockSite1;
     this.dotNetBarManager1.LeftDockSite    = this.barLeftDockSite;
     this.dotNetBarManager1.ParentForm      = this;
     this.dotNetBarManager1.RightDockSite   = this.barRightDockSite;
     this.dotNetBarManager1.Style           = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ThemeAware      = false;
     this.dotNetBarManager1.TopDockSite     = this.barTopDockSite;
     this.dotNetBarManager1.DockTabClosing += new DevComponents.DotNetBar.DockTabClosingEventHandler(this.OnDocumentClosing);
     //
     // barBottomDockSite
     //
     this.barBottomDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.barBottomDockSite.Dock           = System.Windows.Forms.DockStyle.Bottom;
     this.barBottomDockSite.Location       = new System.Drawing.Point(0, 430);
     this.barBottomDockSite.Name           = "barBottomDockSite";
     this.barBottomDockSite.NeedsLayout    = false;
     this.barBottomDockSite.Size           = new System.Drawing.Size(720, 0);
     this.barBottomDockSite.TabIndex       = 3;
     this.barBottomDockSite.TabStop        = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.bar1,
         this.bar2,
         this.bar3
     });
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
         new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 358, 405),
         new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
             new DevComponents.DotNetBar.DocumentBarContainer(this.bar2, 357, 217),
             new DevComponents.DotNetBar.DocumentBarContainer(this.bar3, 357, 185)
         }, DevComponents.DotNetBar.eOrientation.Vertical)
     }, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location    = new System.Drawing.Point(0, 25);
     this.dockSite1.Name        = "dockSite1";
     this.dockSite1.NeedsLayout = false;
     this.dockSite1.Size        = new System.Drawing.Size(720, 405);
     this.dockSite1.TabIndex    = 4;
     this.dockSite1.TabStop     = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName        = "DotNetBar Bar";
     this.bar1.AccessibleRole        = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.AlwaysDisplayDockTab  = true;
     this.bar1.CanCustomize          = false;
     this.bar1.CanDockBottom         = false;
     this.bar1.CanDockDocument       = true;
     this.bar1.CanDockLeft           = false;
     this.bar1.CanDockRight          = false;
     this.bar1.CanDockTop            = false;
     this.bar1.CanHide   = true;
     this.bar1.CanUndock = false;
     this.bar1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelDockContainer3,
         this.panelDockContainer1
     });
     this.bar1.DockSide         = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.dockContainerItem1,
         this.dockContainerItem3
     });
     this.bar1.LayoutType      = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Name            = "bar1";
     this.bar1.SelectedDockTab = 0;
     this.bar1.Stretch         = true;
     this.bar1.Style           = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex        = 0;
     this.bar1.TabStop         = false;
     //
     // panelDockContainer3
     //
     this.panelDockContainer3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.textBox4
     });
     this.panelDockContainer3.Location        = new System.Drawing.Point(2, 2);
     this.panelDockContainer3.Name            = "panelDockContainer3";
     this.panelDockContainer3.Size            = new System.Drawing.Size(0, 0);
     this.panelDockContainer3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer3.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer3.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelDockContainer3.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelDockContainer3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer3.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer3.Style.GradientAngle = 90;
     this.panelDockContainer3.TabIndex            = 3;
     //
     // textBox4
     //
     this.textBox4.AutoSize  = false;
     this.textBox4.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.textBox4.Multiline = true;
     this.textBox4.Name      = "textBox4";
     this.textBox4.Size      = new System.Drawing.Size(0, 0);
     this.textBox4.TabIndex  = 1;
     this.textBox4.Text      = "Document 3";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.textBox1
     });
     this.panelDockContainer1.Location        = new System.Drawing.Point(3, 28);
     this.panelDockContainer1.Name            = "panelDockContainer1";
     this.panelDockContainer1.Size            = new System.Drawing.Size(354, 374);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelDockContainer1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex            = 0;
     //
     // textBox1
     //
     this.textBox1.AutoSize  = false;
     this.textBox1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Multiline = true;
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new System.Drawing.Size(354, 374);
     this.textBox1.TabIndex  = 0;
     this.textBox1.Text      = "Document 1, Drag & Drop tabs to change docking layout";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Height  = 378;
     this.dockContainerItem1.Name    = "dockContainerItem1";
     this.dockContainerItem1.Text    = "Document 1";
     this.dockContainerItem1.Width   = 358;
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer3;
     this.dockContainerItem3.Height  = 378;
     this.dockContainerItem3.Name    = "dockContainerItem3";
     this.dockContainerItem3.Text    = "Document 3";
     this.dockContainerItem3.Width   = 358;
     //
     // bar2
     //
     this.bar2.AccessibleDescription = "DotNetBar Bar (bar2)";
     this.bar2.AccessibleName        = "DotNetBar Bar";
     this.bar2.AccessibleRole        = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar2.AlwaysDisplayDockTab  = true;
     this.bar2.CanCustomize          = false;
     this.bar2.CanDockBottom         = false;
     this.bar2.CanDockDocument       = true;
     this.bar2.CanDockLeft           = false;
     this.bar2.CanDockRight          = false;
     this.bar2.CanDockTop            = false;
     this.bar2.CanUndock             = false;
     this.bar2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelDockContainer4
     });
     this.bar2.DockSide         = DevComponents.DotNetBar.eDockSide.Document;
     this.bar2.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.bar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.dockContainerItem4
     });
     this.bar2.LayoutType      = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar2.Location        = new System.Drawing.Point(363, 0);
     this.bar2.Name            = "bar2";
     this.bar2.SelectedDockTab = 0;
     this.bar2.Stretch         = true;
     this.bar2.Style           = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar2.TabIndex        = 1;
     this.bar2.TabStop         = false;
     //
     // panelDockContainer4
     //
     this.panelDockContainer4.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.textBox2
     });
     this.panelDockContainer4.Location        = new System.Drawing.Point(3, 28);
     this.panelDockContainer4.Name            = "panelDockContainer4";
     this.panelDockContainer4.Size            = new System.Drawing.Size(351, 186);
     this.panelDockContainer4.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer4.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer4.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelDockContainer4.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelDockContainer4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer4.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer4.Style.GradientAngle = 90;
     this.panelDockContainer4.TabIndex            = 4;
     //
     // textBox2
     //
     this.textBox2.AutoSize  = false;
     this.textBox2.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.textBox2.Multiline = true;
     this.textBox2.Name      = "textBox2";
     this.textBox2.Size      = new System.Drawing.Size(351, 186);
     this.textBox2.TabIndex  = 1;
     this.textBox2.Text      = "Document 4";
     //
     // dockContainerItem4
     //
     this.dockContainerItem4.Control = this.panelDockContainer4;
     this.dockContainerItem4.Height  = 190;
     this.dockContainerItem4.Name    = "dockContainerItem4";
     this.dockContainerItem4.Text    = "Document 4";
     this.dockContainerItem4.Width   = 355;
     //
     // bar3
     //
     this.bar3.AccessibleDescription = "DotNetBar Bar (bar3)";
     this.bar3.AccessibleName        = "DotNetBar Bar";
     this.bar3.AccessibleRole        = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar3.AlwaysDisplayDockTab  = true;
     this.bar3.CanCustomize          = false;
     this.bar3.CanDockBottom         = false;
     this.bar3.CanDockDocument       = true;
     this.bar3.CanDockLeft           = false;
     this.bar3.CanDockRight          = false;
     this.bar3.CanDockTop            = false;
     this.bar3.CanHide   = true;
     this.bar3.CanUndock = false;
     this.bar3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelDockContainer2
     });
     this.bar3.DockSide         = DevComponents.DotNetBar.eDockSide.Document;
     this.bar3.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.bar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.dockContainerItem2
     });
     this.bar3.LayoutType      = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar3.Location        = new System.Drawing.Point(363, 220);
     this.bar3.Name            = "bar3";
     this.bar3.SelectedDockTab = 0;
     this.bar3.Stretch         = true;
     this.bar3.Style           = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar3.TabIndex        = 2;
     this.bar3.TabStop         = false;
     //
     // panelDockContainer2
     //
     this.panelDockContainer2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.textBox3
     });
     this.panelDockContainer2.Location        = new System.Drawing.Point(3, 28);
     this.panelDockContainer2.Name            = "panelDockContainer2";
     this.panelDockContainer2.Size            = new System.Drawing.Size(351, 154);
     this.panelDockContainer2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer2.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer2.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelDockContainer2.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelDockContainer2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer2.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer2.Style.GradientAngle = 90;
     this.panelDockContainer2.TabIndex            = 2;
     //
     // textBox3
     //
     this.textBox3.AutoSize  = false;
     this.textBox3.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.textBox3.Multiline = true;
     this.textBox3.Name      = "textBox3";
     this.textBox3.Size      = new System.Drawing.Size(351, 154);
     this.textBox3.TabIndex  = 1;
     this.textBox3.Text      = "Document 2";
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Control = this.panelDockContainer2;
     this.dockContainerItem2.Height  = 158;
     this.dockContainerItem2.Name    = "dockContainerItem2";
     this.dockContainerItem2.Text    = "Document 2";
     this.dockContainerItem2.Width   = 355;
     //
     // barLeftDockSite
     //
     this.barLeftDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.barLeftDockSite.Dock           = System.Windows.Forms.DockStyle.Left;
     this.barLeftDockSite.Location       = new System.Drawing.Point(0, 25);
     this.barLeftDockSite.Name           = "barLeftDockSite";
     this.barLeftDockSite.NeedsLayout    = false;
     this.barLeftDockSite.Size           = new System.Drawing.Size(0, 405);
     this.barLeftDockSite.TabIndex       = 0;
     this.barLeftDockSite.TabStop        = false;
     //
     // barRightDockSite
     //
     this.barRightDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.barRightDockSite.Dock           = System.Windows.Forms.DockStyle.Right;
     this.barRightDockSite.Location       = new System.Drawing.Point(720, 25);
     this.barRightDockSite.Name           = "barRightDockSite";
     this.barRightDockSite.NeedsLayout    = false;
     this.barRightDockSite.Size           = new System.Drawing.Size(0, 405);
     this.barRightDockSite.TabIndex       = 1;
     this.barRightDockSite.TabStop        = false;
     //
     // barTopDockSite
     //
     this.barTopDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.barTopDockSite.Dock           = System.Windows.Forms.DockStyle.Top;
     this.barTopDockSite.Location       = new System.Drawing.Point(0, 25);
     this.barTopDockSite.Name           = "barTopDockSite";
     this.barTopDockSite.NeedsLayout    = false;
     this.barTopDockSite.Size           = new System.Drawing.Size(720, 0);
     this.barTopDockSite.TabIndex       = 2;
     this.barTopDockSite.TabStop        = false;
     //
     // bar4
     //
     this.bar4.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2
     });
     this.bar4.Name     = "bar4";
     this.bar4.Size     = new System.Drawing.Size(720, 25);
     this.bar4.Stretch  = true;
     this.bar4.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar4.TabIndex = 2;
     this.bar4.TabStop  = false;
     this.bar4.Text     = "bar4";
     //
     // buttonItem1
     //
     this.buttonItem1.Name   = "buttonItem1";
     this.buttonItem1.Text   = "New Document";
     this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
     //
     // buttonItem2
     //
     this.buttonItem2.Name   = "buttonItem2";
     this.buttonItem2.Text   = "Show All Tabs";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(720, 430);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.dockSite1,
         this.barLeftDockSite,
         this.barRightDockSite,
         this.barTopDockSite,
         this.barBottomDockSite,
         this.bar4
     });
     this.Name = "Form1";
     this.Text = "Show Case of Document Docking";
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer3.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar2)).EndInit();
     this.bar2.ResumeLayout(false);
     this.panelDockContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar3)).EndInit();
     this.bar3.ResumeLayout(false);
     this.panelDockContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar4)).EndInit();
     this.ResumeLayout(false);
 }