コード例 #1
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.listSystem = new System.Windows.Forms.ListBox();
     this.listWeb    = new System.Windows.Forms.ListBox();
     this.tabStrip1  = new DevComponents.DotNetBar.TabStrip();
     this.tabSystem  = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabCustom  = new DevComponents.DotNetBar.TabItem(this.components);
     this.colorPanel = new System.Windows.Forms.Panel();
     this.tabWeb     = new DevComponents.DotNetBar.TabItem(this.components);
     this.SuspendLayout();
     //
     // listSystem
     //
     this.listSystem.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.listSystem.DrawMode              = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.listSystem.IntegralHeight        = false;
     this.listSystem.Name                  = "listSystem";
     this.listSystem.Size                  = new System.Drawing.Size(200, 158);
     this.listSystem.TabIndex              = 0;
     this.listSystem.DrawItem             += new System.Windows.Forms.DrawItemEventHandler(this.DrawSystemItem);
     this.listSystem.SelectedIndexChanged += new System.EventHandler(this.SystemSelectionChange);
     //
     // listWeb
     //
     this.listWeb.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.listWeb.DrawMode              = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.listWeb.IntegralHeight        = false;
     this.listWeb.Name                  = "listWeb";
     this.listWeb.Size                  = new System.Drawing.Size(200, 158);
     this.listWeb.TabIndex              = 0;
     this.listWeb.DrawItem             += new System.Windows.Forms.DrawItemEventHandler(this.DrawWebItem);
     this.listWeb.SelectedIndexChanged += new System.EventHandler(this.WebSelectionChange);
     //
     // tabStrip1
     //
     this.tabStrip1.CanReorderTabs     = true;
     this.tabStrip1.CloseButtonVisible = true;
     this.tabStrip1.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.tabStrip1.ForeColor   = System.Drawing.SystemColors.ControlDark;
     this.tabStrip1.Location    = new System.Drawing.Point(0, 158);
     this.tabStrip1.Name        = "tabStrip1";
     this.tabStrip1.SelectedTab = this.tabCustom;
     this.tabStrip1.Size        = new System.Drawing.Size(200, 24);
     this.tabStrip1.TabIndex    = 1;
     this.tabStrip1.Tabs.Add(this.tabCustom);
     this.tabStrip1.Tabs.Add(this.tabWeb);
     this.tabStrip1.Tabs.Add(this.tabSystem);
     this.tabStrip1.Text = "tabStrip1";
     //
     // tabSystem
     //
     this.tabSystem.AttachedControl = this.listSystem;
     this.tabSystem.Name            = "tabSystem";
     this.tabSystem.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Default;
     this.tabSystem.Text            = "System";
     //
     // tabCustom
     //
     this.tabCustom.AttachedControl = this.colorPanel;
     this.tabCustom.Name            = "tabCustom";
     this.tabCustom.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Default;
     this.tabCustom.Text            = "Custom";
     //
     // colorPanel
     //
     this.colorPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.colorPanel.Name     = "colorPanel";
     this.colorPanel.Size     = new System.Drawing.Size(200, 158);
     this.colorPanel.TabIndex = 2;
     this.colorPanel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.CustomColorMouseUp);
     this.colorPanel.Paint   += new System.Windows.Forms.PaintEventHandler(this.PaintCustomColors);
     //
     // tabWeb
     //
     this.tabWeb.AttachedControl = this.listWeb;
     this.tabWeb.Name            = "tabWeb";
     this.tabWeb.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Default;
     this.tabWeb.Text            = "Web";
     //
     // ColorPicker
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.listWeb,
         this.listSystem,
         this.colorPanel,
         this.tabStrip1
     });
     this.ForeColor = System.Drawing.Color.White;
     this.Name      = "ColorPicker";
     this.Size      = new System.Drawing.Size(200, 182);
     this.ResumeLayout(false);
 }
コード例 #2
0
ファイル: ColorPicker.cs プロジェクト: viticm/pap2
		/// <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.listSystem = new System.Windows.Forms.ListBox();
			this.listWeb = new System.Windows.Forms.ListBox();
			this.tabStrip1 = new DevComponents.DotNetBar.TabStrip();
			this.tabSystem = new DevComponents.DotNetBar.TabItem(this.components);
			this.tabCustom = new DevComponents.DotNetBar.TabItem(this.components);
			this.colorPanel = new System.Windows.Forms.Panel();
			this.tabWeb = new DevComponents.DotNetBar.TabItem(this.components);
			this.SuspendLayout();
			// 
			// listSystem
			// 
			this.listSystem.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listSystem.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.listSystem.IntegralHeight = false;
			this.listSystem.Name = "listSystem";
			this.listSystem.Size = new System.Drawing.Size(200, 158);
			this.listSystem.TabIndex = 0;
			this.listSystem.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.DrawSystemItem);
			this.listSystem.SelectedIndexChanged += new System.EventHandler(this.SystemSelectionChange);
			// 
			// listWeb
			// 
			this.listWeb.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listWeb.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.listWeb.IntegralHeight = false;
			this.listWeb.Name = "listWeb";
			this.listWeb.Size = new System.Drawing.Size(200, 158);
			this.listWeb.TabIndex = 0;
			this.listWeb.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.DrawWebItem);
			this.listWeb.SelectedIndexChanged += new System.EventHandler(this.WebSelectionChange);
			// 
			// tabStrip1
			// 
			this.tabStrip1.CanReorderTabs = true;
			this.tabStrip1.CloseButtonVisible = true;
			this.tabStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.tabStrip1.ForeColor = System.Drawing.SystemColors.ControlDark;
			this.tabStrip1.Location = new System.Drawing.Point(0, 158);
			this.tabStrip1.Name = "tabStrip1";
			this.tabStrip1.SelectedTab = this.tabCustom;
			this.tabStrip1.Size = new System.Drawing.Size(200, 24);
			this.tabStrip1.TabIndex = 1;
			this.tabStrip1.Tabs.Add(this.tabCustom);
			this.tabStrip1.Tabs.Add(this.tabWeb);
			this.tabStrip1.Tabs.Add(this.tabSystem);
			this.tabStrip1.Text = "tabStrip1";
			// 
			// tabSystem
			// 
			this.tabSystem.AttachedControl = this.listSystem;
			this.tabSystem.Name = "tabSystem";
			this.tabSystem.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Default;
			this.tabSystem.Text = "System";
			// 
			// tabCustom
			// 
			this.tabCustom.AttachedControl = this.colorPanel;
			this.tabCustom.Name = "tabCustom";
			this.tabCustom.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Default;
			this.tabCustom.Text = "Custom";
			// 
			// colorPanel
			// 
			this.colorPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			this.colorPanel.Name = "colorPanel";
			this.colorPanel.Size = new System.Drawing.Size(200, 158);
			this.colorPanel.TabIndex = 2;
			this.colorPanel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.CustomColorMouseUp);
			this.colorPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.PaintCustomColors);
			// 
			// tabWeb
			// 
			this.tabWeb.AttachedControl = this.listWeb;
			this.tabWeb.Name = "tabWeb";
			this.tabWeb.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Default;
			this.tabWeb.Text = "Web";
			// 
			// ColorPicker
			// 
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.listWeb,
																		  this.listSystem,
																		  this.colorPanel,
																		  this.tabStrip1});
			this.ForeColor = System.Drawing.Color.White;
			this.Name = "ColorPicker";
			this.Size = new System.Drawing.Size(200, 182);
			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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_Main));
     this.ribbonControlQLKS = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanelQTHT = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBarPower = new DevComponents.DotNetBar.RibbonBar();
     this.btiQTPower = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarChangeRole = new DevComponents.DotNetBar.RibbonBar();
     this.btiQTChangeRole = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLogin = new DevComponents.DotNetBar.RibbonBar();
     this.btiQTLogin = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanelPhong = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBarQLLP = new DevComponents.DotNetBar.RibbonBar();
     this.btiPQuanLyLP = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLapDMP = new DevComponents.DotNetBar.RibbonBar();
     this.btiPLapDMP = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarTraCuuPhong = new DevComponents.DotNetBar.RibbonBar();
     this.btiPTraCuuPhong = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLapPhieuThue = new DevComponents.DotNetBar.RibbonBar();
     this.btiPLapPhieuThue = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanelHoaDon = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBarQLLKH = new DevComponents.DotNetBar.RibbonBar();
     this.btiKHQuanLyLKH = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarQLKH = new DevComponents.DotNetBar.RibbonBar();
     this.btiKHQuanLyKH = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLapHoaDon = new DevComponents.DotNetBar.RibbonBar();
     this.btiKHLapHoaDon = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel3 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBarVersion = new DevComponents.DotNetBar.RibbonBar();
     this.btidpSoftVersion = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarAbout = new DevComponents.DotNetBar.RibbonBar();
     this.btidpSoftAbout = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpQLKH = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarTDQD = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpTDQD = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLBCTK = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpLBCTK = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLHDTT = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpLHDTT = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarTCP = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpTCP = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLPTP = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpLPTP = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarLDMP = new DevComponents.DotNetBar.RibbonBar();
     this.btiHelpLDMP = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBarBackup = new DevComponents.DotNetBar.RibbonBar();
     this.btiTXBackup = new DevComponents.DotNetBar.ButtonItem();
     this.btiTXRestore = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.btiTXExport = new DevComponents.DotNetBar.ButtonItem();
     this.btiTXImport = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBarBaoCao = new DevComponents.DotNetBar.RibbonBar();
     this.btiTXBaoCaoTK = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItemQTHT = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItemPhong = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItemKhachHang = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItemExport = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItemHelp = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItemAbout = new DevComponents.DotNetBar.RibbonTabItem();
     this.office2007StartButtonQLKS = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.galleryContainer1 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem_TOP_QLKS = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.tabStripQLKS = new DevComponents.DotNetBar.TabStrip();
     this.ribbonControlQLKS.SuspendLayout();
     this.ribbonPanelQTHT.SuspendLayout();
     this.ribbonPanelPhong.SuspendLayout();
     this.ribbonPanelHoaDon.SuspendLayout();
     this.ribbonPanel3.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControlQLKS
     //
     //
     //
     //
     this.ribbonControlQLKS.BackgroundStyle.Class = "";
     this.ribbonControlQLKS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControlQLKS.CaptionVisible = true;
     this.ribbonControlQLKS.Controls.Add(this.ribbonPanelQTHT);
     this.ribbonControlQLKS.Controls.Add(this.ribbonPanelPhong);
     this.ribbonControlQLKS.Controls.Add(this.ribbonPanelHoaDon);
     this.ribbonControlQLKS.Controls.Add(this.ribbonPanel3);
     this.ribbonControlQLKS.Controls.Add(this.ribbonPanel2);
     this.ribbonControlQLKS.Controls.Add(this.ribbonPanel1);
     this.ribbonControlQLKS.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControlQLKS.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItemQTHT,
     this.ribbonTabItemPhong,
     this.ribbonTabItemKhachHang,
     this.ribbonTabItemExport,
     this.ribbonTabItemHelp,
     this.ribbonTabItemAbout});
     this.ribbonControlQLKS.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControlQLKS.Location = new System.Drawing.Point(5, 1);
     this.ribbonControlQLKS.Name = "ribbonControlQLKS";
     this.ribbonControlQLKS.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControlQLKS.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButtonQLKS,
     this.buttonItem_TOP_QLKS,
     this.qatCustomizeItem1});
     this.ribbonControlQLKS.Size = new System.Drawing.Size(725, 154);
     this.ribbonControlQLKS.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonControlQLKS.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControlQLKS.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControlQLKS.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControlQLKS.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControlQLKS.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControlQLKS.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControlQLKS.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControlQLKS.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControlQLKS.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControlQLKS.SystemText.QatDialogOkButton = "OK";
     this.ribbonControlQLKS.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControlQLKS.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControlQLKS.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControlQLKS.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControlQLKS.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControlQLKS.TabGroupHeight = 14;
     this.ribbonControlQLKS.TabIndex = 1;
     this.ribbonControlQLKS.Text = "ribbonControl1";
     this.ribbonControlQLKS.Click += new System.EventHandler(this.ribbonControlQLKS_Click);
     //
     // ribbonPanelQTHT
     //
     this.ribbonPanelQTHT.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanelQTHT.Controls.Add(this.ribbonBarPower);
     this.ribbonPanelQTHT.Controls.Add(this.ribbonBarChangeRole);
     this.ribbonPanelQTHT.Controls.Add(this.ribbonBarLogin);
     this.ribbonPanelQTHT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanelQTHT.Location = new System.Drawing.Point(0, 56);
     this.ribbonPanelQTHT.Name = "ribbonPanelQTHT";
     this.ribbonPanelQTHT.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanelQTHT.Size = new System.Drawing.Size(725, 96);
     //
     //
     //
     this.ribbonPanelQTHT.Style.Class = "";
     this.ribbonPanelQTHT.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanelQTHT.StyleMouseDown.Class = "";
     this.ribbonPanelQTHT.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanelQTHT.StyleMouseOver.Class = "";
     this.ribbonPanelQTHT.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanelQTHT.TabIndex = 1;
     //
     // ribbonBarPower
     //
     this.ribbonBarPower.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarPower.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarPower.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarPower.BackgroundStyle.Class = "";
     this.ribbonBarPower.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarPower.ContainerControlProcessDialogKey = true;
     this.ribbonBarPower.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarPower.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiQTPower});
     this.ribbonBarPower.Location = new System.Drawing.Point(299, 0);
     this.ribbonBarPower.Name = "ribbonBarPower";
     this.ribbonBarPower.Size = new System.Drawing.Size(140, 93);
     this.ribbonBarPower.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarPower.TabIndex = 2;
     //
     //
     //
     this.ribbonBarPower.TitleStyle.Class = "";
     this.ribbonBarPower.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarPower.TitleStyleMouseOver.Class = "";
     this.ribbonBarPower.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiQTPower
     //
     this.btiQTPower.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiQTPower.Image = global::_042082.Properties.Resources.Icon_1121;
     this.btiQTPower.Name = "btiQTPower";
     this.btiQTPower.SubItemsExpandWidth = 14;
     this.btiQTPower.Text = "Bảng Phân Quyền";
     this.btiQTPower.Click += new System.EventHandler(this.buttonItemPower_Click);
     //
     // ribbonBarChangeRole
     //
     this.ribbonBarChangeRole.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarChangeRole.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarChangeRole.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarChangeRole.BackgroundStyle.Class = "";
     this.ribbonBarChangeRole.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarChangeRole.ContainerControlProcessDialogKey = true;
     this.ribbonBarChangeRole.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarChangeRole.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiQTChangeRole});
     this.ribbonBarChangeRole.Location = new System.Drawing.Point(144, 0);
     this.ribbonBarChangeRole.Name = "ribbonBarChangeRole";
     this.ribbonBarChangeRole.Size = new System.Drawing.Size(155, 93);
     this.ribbonBarChangeRole.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarChangeRole.TabIndex = 1;
     //
     //
     //
     this.ribbonBarChangeRole.TitleStyle.Class = "";
     this.ribbonBarChangeRole.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarChangeRole.TitleStyleMouseOver.Class = "";
     this.ribbonBarChangeRole.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiQTChangeRole
     //
     this.btiQTChangeRole.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiQTChangeRole.Image = global::_042082.Properties.Resources.notebook_small1;
     this.btiQTChangeRole.Name = "btiQTChangeRole";
     this.btiQTChangeRole.SubItemsExpandWidth = 14;
     this.btiQTChangeRole.Text = "Thay Đổi Qui Định";
     this.btiQTChangeRole.Click += new System.EventHandler(this.buttonItemChangeRole_Click);
     //
     // ribbonBarLogin
     //
     this.ribbonBarLogin.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLogin.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLogin.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLogin.BackgroundStyle.Class = "";
     this.ribbonBarLogin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLogin.ContainerControlProcessDialogKey = true;
     this.ribbonBarLogin.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLogin.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiQTLogin});
     this.ribbonBarLogin.Location = new System.Drawing.Point(3, 0);
     this.ribbonBarLogin.Name = "ribbonBarLogin";
     this.ribbonBarLogin.Size = new System.Drawing.Size(141, 93);
     this.ribbonBarLogin.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLogin.TabIndex = 0;
     //
     //
     //
     this.ribbonBarLogin.TitleStyle.Class = "";
     this.ribbonBarLogin.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLogin.TitleStyleMouseOver.Class = "";
     this.ribbonBarLogin.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiQTLogin
     //
     this.btiQTLogin.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiQTLogin.Image = global::_042082.Properties.Resources.Key_Queen;
     this.btiQTLogin.Name = "btiQTLogin";
     this.btiQTLogin.SubItemsExpandWidth = 17;
     this.btiQTLogin.Text = "Đăng Nhập";
     this.btiQTLogin.Click += new System.EventHandler(this.buttonItemLogin_Click);
     //
     // ribbonPanelPhong
     //
     this.ribbonPanelPhong.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanelPhong.Controls.Add(this.ribbonBarQLLP);
     this.ribbonPanelPhong.Controls.Add(this.ribbonBarLapDMP);
     this.ribbonPanelPhong.Controls.Add(this.ribbonBarTraCuuPhong);
     this.ribbonPanelPhong.Controls.Add(this.ribbonBarLapPhieuThue);
     this.ribbonPanelPhong.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanelPhong.Location = new System.Drawing.Point(0, 0);
     this.ribbonPanelPhong.Name = "ribbonPanelPhong";
     this.ribbonPanelPhong.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanelPhong.Size = new System.Drawing.Size(727, 152);
     //
     //
     //
     this.ribbonPanelPhong.Style.Class = "";
     this.ribbonPanelPhong.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanelPhong.StyleMouseDown.Class = "";
     this.ribbonPanelPhong.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanelPhong.StyleMouseOver.Class = "";
     this.ribbonPanelPhong.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanelPhong.TabIndex = 2;
     this.ribbonPanelPhong.Visible = false;
     //
     // ribbonBarQLLP
     //
     this.ribbonBarQLLP.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarQLLP.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarQLLP.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarQLLP.BackgroundStyle.Class = "";
     this.ribbonBarQLLP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarQLLP.ContainerControlProcessDialogKey = true;
     this.ribbonBarQLLP.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarQLLP.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiPQuanLyLP});
     this.ribbonBarQLLP.Location = new System.Drawing.Point(349, 0);
     this.ribbonBarQLLP.Name = "ribbonBarQLLP";
     this.ribbonBarQLLP.Size = new System.Drawing.Size(115, 149);
     this.ribbonBarQLLP.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarQLLP.TabIndex = 3;
     //
     //
     //
     this.ribbonBarQLLP.TitleStyle.Class = "";
     this.ribbonBarQLLP.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarQLLP.TitleStyleMouseOver.Class = "";
     this.ribbonBarQLLP.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiPQuanLyLP
     //
     this.btiPQuanLyLP.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiPQuanLyLP.Image = global::_042082.Properties.Resources.Icon_34;
     this.btiPQuanLyLP.Name = "btiPQuanLyLP";
     this.btiPQuanLyLP.SubItemsExpandWidth = 14;
     this.btiPQuanLyLP.Text = "Quản Lý<br /> Loại Phòng";
     this.btiPQuanLyLP.Click += new System.EventHandler(this.btiPQuanLyLP_Click);
     //
     // ribbonBarLapDMP
     //
     this.ribbonBarLapDMP.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLapDMP.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLapDMP.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLapDMP.BackgroundStyle.Class = "";
     this.ribbonBarLapDMP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLapDMP.ContainerControlProcessDialogKey = true;
     this.ribbonBarLapDMP.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLapDMP.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiPLapDMP});
     this.ribbonBarLapDMP.Location = new System.Drawing.Point(231, 0);
     this.ribbonBarLapDMP.Name = "ribbonBarLapDMP";
     this.ribbonBarLapDMP.Size = new System.Drawing.Size(118, 149);
     this.ribbonBarLapDMP.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLapDMP.TabIndex = 2;
     //
     //
     //
     this.ribbonBarLapDMP.TitleStyle.Class = "";
     this.ribbonBarLapDMP.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLapDMP.TitleStyleMouseOver.Class = "";
     this.ribbonBarLapDMP.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiPLapDMP
     //
     this.btiPLapDMP.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiPLapDMP.Image = global::_042082.Properties.Resources.Pen;
     this.btiPLapDMP.Name = "btiPLapDMP";
     this.btiPLapDMP.SubItemsExpandWidth = 14;
     this.btiPLapDMP.Text = "Lập Danh<br/> Mục Phòng";
     this.btiPLapDMP.Click += new System.EventHandler(this.btiPLapDMP_Click);
     //
     // ribbonBarTraCuuPhong
     //
     this.ribbonBarTraCuuPhong.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarTraCuuPhong.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarTraCuuPhong.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarTraCuuPhong.BackgroundStyle.Class = "";
     this.ribbonBarTraCuuPhong.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarTraCuuPhong.ContainerControlProcessDialogKey = true;
     this.ribbonBarTraCuuPhong.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarTraCuuPhong.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiPTraCuuPhong});
     this.ribbonBarTraCuuPhong.Location = new System.Drawing.Point(131, 0);
     this.ribbonBarTraCuuPhong.Name = "ribbonBarTraCuuPhong";
     this.ribbonBarTraCuuPhong.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarTraCuuPhong.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarTraCuuPhong.TabIndex = 1;
     //
     //
     //
     this.ribbonBarTraCuuPhong.TitleStyle.Class = "";
     this.ribbonBarTraCuuPhong.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarTraCuuPhong.TitleStyleMouseOver.Class = "";
     this.ribbonBarTraCuuPhong.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiPTraCuuPhong
     //
     this.btiPTraCuuPhong.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiPTraCuuPhong.Image = global::_042082.Properties.Resources.Icon_231;
     this.btiPTraCuuPhong.Name = "btiPTraCuuPhong";
     this.btiPTraCuuPhong.SubItemsExpandWidth = 14;
     this.btiPTraCuuPhong.Text = "Tra Cứu <br />Phòng";
     this.btiPTraCuuPhong.Click += new System.EventHandler(this.btiPTraCuuPhong_Click);
     //
     // ribbonBarLapPhieuThue
     //
     this.ribbonBarLapPhieuThue.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLapPhieuThue.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLapPhieuThue.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLapPhieuThue.BackgroundStyle.Class = "";
     this.ribbonBarLapPhieuThue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLapPhieuThue.ContainerControlProcessDialogKey = true;
     this.ribbonBarLapPhieuThue.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLapPhieuThue.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiPLapPhieuThue});
     this.ribbonBarLapPhieuThue.Location = new System.Drawing.Point(3, 0);
     this.ribbonBarLapPhieuThue.Name = "ribbonBarLapPhieuThue";
     this.ribbonBarLapPhieuThue.Size = new System.Drawing.Size(128, 149);
     this.ribbonBarLapPhieuThue.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLapPhieuThue.TabIndex = 0;
     //
     //
     //
     this.ribbonBarLapPhieuThue.TitleStyle.Class = "";
     this.ribbonBarLapPhieuThue.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLapPhieuThue.TitleStyleMouseOver.Class = "";
     this.ribbonBarLapPhieuThue.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiPLapPhieuThue
     //
     this.btiPLapPhieuThue.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiPLapPhieuThue.Image = global::_042082.Properties.Resources.LPTP;
     this.btiPLapPhieuThue.Name = "btiPLapPhieuThue";
     this.btiPLapPhieuThue.SubItemsExpandWidth = 14;
     this.btiPLapPhieuThue.Text = "Lập Phiếu<br/> Thuê Phòng";
     this.btiPLapPhieuThue.Click += new System.EventHandler(this.btiPLapPhieuThue_Click);
     //
     // ribbonPanelHoaDon
     //
     this.ribbonPanelHoaDon.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanelHoaDon.Controls.Add(this.ribbonBarQLLKH);
     this.ribbonPanelHoaDon.Controls.Add(this.ribbonBarQLKH);
     this.ribbonPanelHoaDon.Controls.Add(this.ribbonBarLapHoaDon);
     this.ribbonPanelHoaDon.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanelHoaDon.Location = new System.Drawing.Point(0, 0);
     this.ribbonPanelHoaDon.Name = "ribbonPanelHoaDon";
     this.ribbonPanelHoaDon.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanelHoaDon.Size = new System.Drawing.Size(727, 152);
     //
     //
     //
     this.ribbonPanelHoaDon.Style.Class = "";
     this.ribbonPanelHoaDon.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanelHoaDon.StyleMouseDown.Class = "";
     this.ribbonPanelHoaDon.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanelHoaDon.StyleMouseOver.Class = "";
     this.ribbonPanelHoaDon.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanelHoaDon.TabIndex = 3;
     this.ribbonPanelHoaDon.Visible = false;
     //
     // ribbonBarQLLKH
     //
     this.ribbonBarQLLKH.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarQLLKH.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarQLLKH.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarQLLKH.BackgroundStyle.Class = "";
     this.ribbonBarQLLKH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarQLLKH.ContainerControlProcessDialogKey = true;
     this.ribbonBarQLLKH.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarQLLKH.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiKHQuanLyLKH});
     this.ribbonBarQLLKH.Location = new System.Drawing.Point(247, 0);
     this.ribbonBarQLLKH.Name = "ribbonBarQLLKH";
     this.ribbonBarQLLKH.Size = new System.Drawing.Size(118, 149);
     this.ribbonBarQLLKH.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarQLLKH.TabIndex = 2;
     //
     //
     //
     this.ribbonBarQLLKH.TitleStyle.Class = "";
     this.ribbonBarQLLKH.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarQLLKH.TitleStyleMouseOver.Class = "";
     this.ribbonBarQLLKH.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiKHQuanLyLKH
     //
     this.btiKHQuanLyLKH.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiKHQuanLyLKH.Image = global::_042082.Properties.Resources._32px_Puppeter_template;
     this.btiKHQuanLyLKH.Name = "btiKHQuanLyLKH";
     this.btiKHQuanLyLKH.SubItemsExpandWidth = 14;
     this.btiKHQuanLyLKH.Text = "Quản Lý Loại<br/> Khách Hàng";
     this.btiKHQuanLyLKH.Click += new System.EventHandler(this.btiKHQuanLyLKH_Click);
     //
     // ribbonBarQLKH
     //
     this.ribbonBarQLKH.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarQLKH.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarQLKH.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarQLKH.BackgroundStyle.Class = "";
     this.ribbonBarQLKH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarQLKH.ContainerControlProcessDialogKey = true;
     this.ribbonBarQLKH.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarQLKH.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiKHQuanLyKH});
     this.ribbonBarQLKH.Location = new System.Drawing.Point(125, 0);
     this.ribbonBarQLKH.Name = "ribbonBarQLKH";
     this.ribbonBarQLKH.Size = new System.Drawing.Size(122, 149);
     this.ribbonBarQLKH.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarQLKH.TabIndex = 1;
     //
     //
     //
     this.ribbonBarQLKH.TitleStyle.Class = "";
     this.ribbonBarQLKH.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarQLKH.TitleStyleMouseOver.Class = "";
     this.ribbonBarQLKH.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiKHQuanLyKH
     //
     this.btiKHQuanLyKH.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiKHQuanLyKH.Image = global::_042082.Properties.Resources._32px_System_users;
     this.btiKHQuanLyKH.Name = "btiKHQuanLyKH";
     this.btiKHQuanLyKH.SubItemsExpandWidth = 14;
     this.btiKHQuanLyKH.Text = "Quản Lý<br /> Khách Hàng";
     this.btiKHQuanLyKH.Click += new System.EventHandler(this.btiKHQuanLyKH_Click);
     //
     // ribbonBarLapHoaDon
     //
     this.ribbonBarLapHoaDon.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLapHoaDon.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLapHoaDon.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLapHoaDon.BackgroundStyle.Class = "";
     this.ribbonBarLapHoaDon.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLapHoaDon.ContainerControlProcessDialogKey = true;
     this.ribbonBarLapHoaDon.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLapHoaDon.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiKHLapHoaDon});
     this.ribbonBarLapHoaDon.Location = new System.Drawing.Point(3, 0);
     this.ribbonBarLapHoaDon.Name = "ribbonBarLapHoaDon";
     this.ribbonBarLapHoaDon.Size = new System.Drawing.Size(122, 149);
     this.ribbonBarLapHoaDon.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLapHoaDon.TabIndex = 0;
     //
     //
     //
     this.ribbonBarLapHoaDon.TitleStyle.Class = "";
     this.ribbonBarLapHoaDon.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLapHoaDon.TitleStyleMouseOver.Class = "";
     this.ribbonBarLapHoaDon.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiKHLapHoaDon
     //
     this.btiKHLapHoaDon.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiKHLapHoaDon.Image = global::_042082.Properties.Resources._36px_Edit_copy_green;
     this.btiKHLapHoaDon.Name = "btiKHLapHoaDon";
     this.btiKHLapHoaDon.SubItemsExpandWidth = 14;
     this.btiKHLapHoaDon.Text = "Lập Hóa Đơn<br /> Thanh Toán";
     this.btiKHLapHoaDon.Click += new System.EventHandler(this.btiKHLapHoaDon_Click);
     //
     // ribbonPanel3
     //
     this.ribbonPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel3.Controls.Add(this.ribbonBarVersion);
     this.ribbonPanel3.Controls.Add(this.ribbonBarAbout);
     this.ribbonPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel3.Location = new System.Drawing.Point(0, 0);
     this.ribbonPanel3.Name = "ribbonPanel3";
     this.ribbonPanel3.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel3.Size = new System.Drawing.Size(727, 152);
     //
     //
     //
     this.ribbonPanel3.Style.Class = "";
     this.ribbonPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseDown.Class = "";
     this.ribbonPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseOver.Class = "";
     this.ribbonPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel3.TabIndex = 6;
     this.ribbonPanel3.Visible = false;
     //
     // ribbonBarVersion
     //
     this.ribbonBarVersion.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarVersion.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarVersion.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarVersion.BackgroundStyle.Class = "";
     this.ribbonBarVersion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarVersion.ContainerControlProcessDialogKey = true;
     this.ribbonBarVersion.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarVersion.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btidpSoftVersion});
     this.ribbonBarVersion.Location = new System.Drawing.Point(113, 0);
     this.ribbonBarVersion.Name = "ribbonBarVersion";
     this.ribbonBarVersion.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarVersion.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarVersion.TabIndex = 1;
     this.ribbonBarVersion.Text = "Software Version";
     //
     //
     //
     this.ribbonBarVersion.TitleStyle.Class = "";
     this.ribbonBarVersion.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarVersion.TitleStyleMouseOver.Class = "";
     this.ribbonBarVersion.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btidpSoftVersion
     //
     this.btidpSoftVersion.Image = global::_042082.Properties.Resources._120px_Khu_hiu_Wikipedia_;
     this.btidpSoftVersion.Name = "btidpSoftVersion";
     this.btidpSoftVersion.SubItemsExpandWidth = 14;
     this.btidpSoftVersion.Text = "Phiên<br/> Bản";
     this.btidpSoftVersion.Click += new System.EventHandler(this.btidpSoftVersion_Click);
     //
     // ribbonBarAbout
     //
     this.ribbonBarAbout.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarAbout.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarAbout.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarAbout.BackgroundStyle.Class = "";
     this.ribbonBarAbout.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarAbout.ContainerControlProcessDialogKey = true;
     this.ribbonBarAbout.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarAbout.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btidpSoftAbout});
     this.ribbonBarAbout.Location = new System.Drawing.Point(3, 0);
     this.ribbonBarAbout.Name = "ribbonBarAbout";
     this.ribbonBarAbout.Size = new System.Drawing.Size(110, 149);
     this.ribbonBarAbout.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarAbout.TabIndex = 0;
     this.ribbonBarAbout.Text = "About";
     //
     //
     //
     this.ribbonBarAbout.TitleStyle.Class = "";
     this.ribbonBarAbout.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarAbout.TitleStyleMouseOver.Class = "";
     this.ribbonBarAbout.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btidpSoftAbout
     //
     this.btidpSoftAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btidpSoftAbout.Image = global::_042082.Properties.Resources._26px_Runner_animated_svg;
     this.btidpSoftAbout.Name = "btidpSoftAbout";
     this.btidpSoftAbout.SubItemsExpandWidth = 14;
     this.btidpSoftAbout.Text = "dpSoft<br /> Company";
     this.btidpSoftAbout.Click += new System.EventHandler(this.btidpSoftAbout_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel2.Controls.Add(this.ribbonBar1);
     this.ribbonPanel2.Controls.Add(this.ribbonBarTDQD);
     this.ribbonPanel2.Controls.Add(this.ribbonBarLBCTK);
     this.ribbonPanel2.Controls.Add(this.ribbonBarLHDTT);
     this.ribbonPanel2.Controls.Add(this.ribbonBarTCP);
     this.ribbonPanel2.Controls.Add(this.ribbonBarLPTP);
     this.ribbonPanel2.Controls.Add(this.ribbonBarLDMP);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 0);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel2.Size = new System.Drawing.Size(727, 152);
     //
     //
     //
     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 = 5;
     this.ribbonPanel2.Visible = false;
     //
     // 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.btiHelpQLKH});
     this.ribbonBar1.Location = new System.Drawing.Point(625, 0);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(100, 149);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 6;
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpQLKH
     //
     this.btiHelpQLKH.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpQLKH.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpQLKH.Name = "btiHelpQLKH";
     this.btiHelpQLKH.SubItemsExpandWidth = 14;
     this.btiHelpQLKH.Text = "Quản Lý<br />Khách Hàng";
     this.btiHelpQLKH.Click += new System.EventHandler(this.btiHelpQLKH_Click);
     //
     // ribbonBarTDQD
     //
     this.ribbonBarTDQD.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarTDQD.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarTDQD.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarTDQD.BackgroundStyle.Class = "";
     this.ribbonBarTDQD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarTDQD.ContainerControlProcessDialogKey = true;
     this.ribbonBarTDQD.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarTDQD.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiHelpTDQD});
     this.ribbonBarTDQD.Location = new System.Drawing.Point(525, 0);
     this.ribbonBarTDQD.Name = "ribbonBarTDQD";
     this.ribbonBarTDQD.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarTDQD.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarTDQD.TabIndex = 5;
     //
     //
     //
     this.ribbonBarTDQD.TitleStyle.Class = "";
     this.ribbonBarTDQD.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarTDQD.TitleStyleMouseOver.Class = "";
     this.ribbonBarTDQD.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpTDQD
     //
     this.btiHelpTDQD.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpTDQD.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpTDQD.Name = "btiHelpTDQD";
     this.btiHelpTDQD.SubItemsExpandWidth = 14;
     this.btiHelpTDQD.Text = "Thay Đổi <br/>Quy Định";
     this.btiHelpTDQD.Click += new System.EventHandler(this.btiHelpTDQD_Click);
     //
     // ribbonBarLBCTK
     //
     this.ribbonBarLBCTK.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLBCTK.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLBCTK.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLBCTK.BackgroundStyle.Class = "";
     this.ribbonBarLBCTK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLBCTK.ContainerControlProcessDialogKey = true;
     this.ribbonBarLBCTK.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLBCTK.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiHelpLBCTK});
     this.ribbonBarLBCTK.Location = new System.Drawing.Point(425, 0);
     this.ribbonBarLBCTK.Name = "ribbonBarLBCTK";
     this.ribbonBarLBCTK.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarLBCTK.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLBCTK.TabIndex = 4;
     //
     //
     //
     this.ribbonBarLBCTK.TitleStyle.Class = "";
     this.ribbonBarLBCTK.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLBCTK.TitleStyleMouseOver.Class = "";
     this.ribbonBarLBCTK.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpLBCTK
     //
     this.btiHelpLBCTK.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpLBCTK.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpLBCTK.Name = "btiHelpLBCTK";
     this.btiHelpLBCTK.SubItemsExpandWidth = 14;
     this.btiHelpLBCTK.Text = "Lập Báo Cáo<br /> Thống Kê";
     this.btiHelpLBCTK.Click += new System.EventHandler(this.btiHelpLBCTK_Click);
     //
     // ribbonBarLHDTT
     //
     this.ribbonBarLHDTT.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLHDTT.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLHDTT.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLHDTT.BackgroundStyle.Class = "";
     this.ribbonBarLHDTT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLHDTT.ContainerControlProcessDialogKey = true;
     this.ribbonBarLHDTT.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLHDTT.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiHelpLHDTT});
     this.ribbonBarLHDTT.Location = new System.Drawing.Point(325, 0);
     this.ribbonBarLHDTT.Name = "ribbonBarLHDTT";
     this.ribbonBarLHDTT.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarLHDTT.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLHDTT.TabIndex = 3;
     //
     //
     //
     this.ribbonBarLHDTT.TitleStyle.Class = "";
     this.ribbonBarLHDTT.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLHDTT.TitleStyleMouseOver.Class = "";
     this.ribbonBarLHDTT.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpLHDTT
     //
     this.btiHelpLHDTT.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpLHDTT.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpLHDTT.Name = "btiHelpLHDTT";
     this.btiHelpLHDTT.SubItemsExpandWidth = 14;
     this.btiHelpLHDTT.Text = "Lập Hóa Đơn <br/> Thanh Toán";
     this.btiHelpLHDTT.Click += new System.EventHandler(this.btiHelpLHDTT_Click);
     //
     // ribbonBarTCP
     //
     this.ribbonBarTCP.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarTCP.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarTCP.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarTCP.BackgroundStyle.Class = "";
     this.ribbonBarTCP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarTCP.ContainerControlProcessDialogKey = true;
     this.ribbonBarTCP.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarTCP.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiHelpTCP});
     this.ribbonBarTCP.Location = new System.Drawing.Point(225, 0);
     this.ribbonBarTCP.Name = "ribbonBarTCP";
     this.ribbonBarTCP.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarTCP.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarTCP.TabIndex = 2;
     //
     //
     //
     this.ribbonBarTCP.TitleStyle.Class = "";
     this.ribbonBarTCP.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarTCP.TitleStyleMouseOver.Class = "";
     this.ribbonBarTCP.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpTCP
     //
     this.btiHelpTCP.BeginGroup = true;
     this.btiHelpTCP.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpTCP.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpTCP.Name = "btiHelpTCP";
     this.btiHelpTCP.SubItemsExpandWidth = 14;
     this.btiHelpTCP.Text = "Tra Cứu Phòng";
     this.btiHelpTCP.Click += new System.EventHandler(this.btiHelpTCP_Click);
     //
     // ribbonBarLPTP
     //
     this.ribbonBarLPTP.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLPTP.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLPTP.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLPTP.BackgroundStyle.Class = "";
     this.ribbonBarLPTP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLPTP.ContainerControlProcessDialogKey = true;
     this.ribbonBarLPTP.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLPTP.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiHelpLPTP});
     this.ribbonBarLPTP.Location = new System.Drawing.Point(125, 0);
     this.ribbonBarLPTP.Name = "ribbonBarLPTP";
     this.ribbonBarLPTP.Size = new System.Drawing.Size(100, 149);
     this.ribbonBarLPTP.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLPTP.TabIndex = 1;
     //
     //
     //
     this.ribbonBarLPTP.TitleStyle.Class = "";
     this.ribbonBarLPTP.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLPTP.TitleStyleMouseOver.Class = "";
     this.ribbonBarLPTP.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpLPTP
     //
     this.btiHelpLPTP.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpLPTP.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpLPTP.Name = "btiHelpLPTP";
     this.btiHelpLPTP.SubItemsExpandWidth = 14;
     this.btiHelpLPTP.Text = "Lập Phiếu <br />Thuê Phòng";
     this.btiHelpLPTP.Click += new System.EventHandler(this.btiHelpLPTP_Click);
     //
     // ribbonBarLDMP
     //
     this.ribbonBarLDMP.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarLDMP.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarLDMP.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLDMP.BackgroundStyle.Class = "";
     this.ribbonBarLDMP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarLDMP.ContainerControlProcessDialogKey = true;
     this.ribbonBarLDMP.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarLDMP.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiHelpLDMP});
     this.ribbonBarLDMP.Location = new System.Drawing.Point(3, 0);
     this.ribbonBarLDMP.Name = "ribbonBarLDMP";
     this.ribbonBarLDMP.Size = new System.Drawing.Size(122, 149);
     this.ribbonBarLDMP.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarLDMP.TabIndex = 0;
     //
     //
     //
     this.ribbonBarLDMP.TitleStyle.Class = "";
     this.ribbonBarLDMP.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarLDMP.TitleStyleMouseOver.Class = "";
     this.ribbonBarLDMP.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiHelpLDMP
     //
     this.btiHelpLDMP.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiHelpLDMP.Image = global::_042082.Properties.Resources.Help;
     this.btiHelpLDMP.Name = "btiHelpLDMP";
     this.btiHelpLDMP.SubItemsExpandWidth = 14;
     this.btiHelpLDMP.Text = "Lập Danh<br/> Mục Phòng";
     this.btiHelpLDMP.Click += new System.EventHandler(this.btiHelpLDMP_Click);
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel1.Controls.Add(this.ribbonBarBackup);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBarBaoCao);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 0);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(727, 152);
     //
     //
     //
     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 = 4;
     this.ribbonPanel1.Visible = false;
     //
     // ribbonBarBackup
     //
     this.ribbonBarBackup.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarBackup.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarBackup.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarBackup.BackgroundStyle.Class = "";
     this.ribbonBarBackup.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarBackup.ContainerControlProcessDialogKey = true;
     this.ribbonBarBackup.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarBackup.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiTXBackup,
     this.btiTXRestore});
     this.ribbonBarBackup.Location = new System.Drawing.Point(309, 0);
     this.ribbonBarBackup.Name = "ribbonBarBackup";
     this.ribbonBarBackup.Size = new System.Drawing.Size(192, 149);
     this.ribbonBarBackup.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarBackup.TabIndex = 2;
     this.ribbonBarBackup.Text = "Backup && Restore";
     //
     //
     //
     this.ribbonBarBackup.TitleStyle.Class = "";
     this.ribbonBarBackup.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarBackup.TitleStyleMouseOver.Class = "";
     this.ribbonBarBackup.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiTXBackup
     //
     this.btiTXBackup.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiTXBackup.Image = global::_042082.Properties.Resources.Icon_5;
     this.btiTXBackup.Name = "btiTXBackup";
     this.btiTXBackup.SubItemsExpandWidth = 14;
     this.btiTXBackup.Text = "Backup<br /> Database";
     this.btiTXBackup.Click += new System.EventHandler(this.btiTXBackup_Click);
     //
     // btiTXRestore
     //
     this.btiTXRestore.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiTXRestore.Image = global::_042082.Properties.Resources.Icon_8;
     this.btiTXRestore.Name = "btiTXRestore";
     this.btiTXRestore.SubItemsExpandWidth = 14;
     this.btiTXRestore.Text = "Restore <br />Database";
     this.btiTXRestore.Click += new System.EventHandler(this.btiTXRestore_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.btiTXExport,
     this.btiTXImport});
     this.ribbonBar2.Location = new System.Drawing.Point(113, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(196, 149);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar2.TabIndex = 1;
     this.ribbonBar2.Text = "Export && Import";
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiTXExport
     //
     this.btiTXExport.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiTXExport.Image = global::_042082.Properties.Resources.Icon_48;
     this.btiTXExport.Name = "btiTXExport";
     this.btiTXExport.SubItemsExpandWidth = 14;
     this.btiTXExport.Text = "Export File";
     this.btiTXExport.Click += new System.EventHandler(this.btiTXExport_Click);
     //
     // btiTXImport
     //
     this.btiTXImport.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiTXImport.Image = global::_042082.Properties.Resources.Icon_50;
     this.btiTXImport.Name = "btiTXImport";
     this.btiTXImport.SubItemsExpandWidth = 14;
     this.btiTXImport.Text = "Import File";
     this.btiTXImport.Click += new System.EventHandler(this.btiTXImport_Click);
     //
     // ribbonBarBaoCao
     //
     this.ribbonBarBaoCao.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBarBaoCao.BackgroundMouseOverStyle.Class = "";
     this.ribbonBarBaoCao.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarBaoCao.BackgroundStyle.Class = "";
     this.ribbonBarBaoCao.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBarBaoCao.ContainerControlProcessDialogKey = true;
     this.ribbonBarBaoCao.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBarBaoCao.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btiTXBaoCaoTK});
     this.ribbonBarBaoCao.Location = new System.Drawing.Point(3, 0);
     this.ribbonBarBaoCao.Name = "ribbonBarBaoCao";
     this.ribbonBarBaoCao.Size = new System.Drawing.Size(110, 149);
     this.ribbonBarBaoCao.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarBaoCao.TabIndex = 0;
     //
     //
     //
     this.ribbonBarBaoCao.TitleStyle.Class = "";
     this.ribbonBarBaoCao.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBarBaoCao.TitleStyleMouseOver.Class = "";
     this.ribbonBarBaoCao.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btiTXBaoCaoTK
     //
     this.btiTXBaoCaoTK.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btiTXBaoCaoTK.Image = global::_042082.Properties.Resources.Icon_125;
     this.btiTXBaoCaoTK.Name = "btiTXBaoCaoTK";
     this.btiTXBaoCaoTK.SubItemsExpandWidth = 14;
     this.btiTXBaoCaoTK.Text = "Báo Cáo<br /> Thống Kê";
     this.btiTXBaoCaoTK.Click += new System.EventHandler(this.btiTXBaoCaoTK_Click);
     //
     // ribbonTabItemQTHT
     //
     this.ribbonTabItemQTHT.Checked = true;
     this.ribbonTabItemQTHT.Name = "ribbonTabItemQTHT";
     this.ribbonTabItemQTHT.Panel = this.ribbonPanelQTHT;
     this.ribbonTabItemQTHT.Text = "Quản Trị";
     //
     // ribbonTabItemPhong
     //
     this.ribbonTabItemPhong.Name = "ribbonTabItemPhong";
     this.ribbonTabItemPhong.Panel = this.ribbonPanelPhong;
     this.ribbonTabItemPhong.Text = "Phòng";
     //
     // ribbonTabItemKhachHang
     //
     this.ribbonTabItemKhachHang.Name = "ribbonTabItemKhachHang";
     this.ribbonTabItemKhachHang.Panel = this.ribbonPanelHoaDon;
     this.ribbonTabItemKhachHang.Text = "Khách Hàng";
     //
     // ribbonTabItemExport
     //
     this.ribbonTabItemExport.Name = "ribbonTabItemExport";
     this.ribbonTabItemExport.Panel = this.ribbonPanel1;
     this.ribbonTabItemExport.Text = "Trích Xuất";
     //
     // ribbonTabItemHelp
     //
     this.ribbonTabItemHelp.Name = "ribbonTabItemHelp";
     this.ribbonTabItemHelp.Panel = this.ribbonPanel2;
     this.ribbonTabItemHelp.Text = "Hướng Dẫn";
     //
     // ribbonTabItemAbout
     //
     this.ribbonTabItemAbout.Name = "ribbonTabItemAbout";
     this.ribbonTabItemAbout.Panel = this.ribbonPanel3;
     this.ribbonTabItemAbout.Text = "dpSoft Company";
     //
     // office2007StartButtonQLKS
     //
     this.office2007StartButtonQLKS.AutoExpandOnClick = true;
     this.office2007StartButtonQLKS.CanCustomize = false;
     this.office2007StartButtonQLKS.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButtonQLKS.Image = global::_042082.Properties.Resources.Start_QLKS;
     this.office2007StartButtonQLKS.ImagePaddingHorizontal = 2;
     this.office2007StartButtonQLKS.ImagePaddingVertical = 2;
     this.office2007StartButtonQLKS.Name = "office2007StartButtonQLKS";
     this.office2007StartButtonQLKS.ShowSubItems = false;
     this.office2007StartButtonQLKS.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButtonQLKS.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2,
     this.itemContainer4});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3,
     this.galleryContainer1});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5,
     this.buttonItem6,
     this.buttonItem7});
     //
     // buttonItem2
     //
     this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 24;
     this.buttonItem2.Text = "&New";
     //
     // buttonItem3
     //
     this.buttonItem3.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 24;
     this.buttonItem3.Text = "&Open...";
     //
     // buttonItem4
     //
     this.buttonItem4.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 24;
     this.buttonItem4.Text = "&Save...";
     //
     // buttonItem5
     //
     this.buttonItem5.BeginGroup = true;
     this.buttonItem5.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 24;
     this.buttonItem5.Text = "S&hare...";
     //
     // buttonItem6
     //
     this.buttonItem6.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.SubItemsExpandWidth = 24;
     this.buttonItem6.Text = "&Print...";
     //
     // buttonItem7
     //
     this.buttonItem7.BeginGroup = true;
     this.buttonItem7.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.SubItemsExpandWidth = 24;
     this.buttonItem7.Text = "&Close";
     //
     // galleryContainer1
     //
     //
     //
     //
     this.galleryContainer1.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer1.EnableGalleryPopup = false;
     this.galleryContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer1.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer1.MultiLine = false;
     this.galleryContainer1.Name = "galleryContainer1";
     this.galleryContainer1.PopupUsesStandardScrollbars = false;
     this.galleryContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem8,
     this.buttonItem9,
     this.buttonItem10,
     this.buttonItem11});
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.CanCustomize = false;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem8
     //
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem9
     //
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem10
     //
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "&3. Customer Email.rtf";
     //
     // buttonItem11
     //
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "&4. example.rtf";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     // buttonItem12
     //
     this.buttonItem12.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem12.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 24;
     this.buttonItem12.Text = "Opt&ions";
     //
     // buttonItem13
     //
     this.buttonItem13.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem13.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 24;
     this.buttonItem13.Text = "E&xit";
     //
     // buttonItem_TOP_QLKS
     //
     this.buttonItem_TOP_QLKS.Name = "buttonItem_TOP_QLKS";
     this.buttonItem_TOP_QLKS.Text = "Quản Lý Khách Sạn";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // tabStripQLKS
     //
     this.tabStripQLKS.AutoSelectAttachedControl = true;
     this.tabStripQLKS.CanReorderTabs = true;
     this.tabStripQLKS.CloseButtonOnTabsVisible = true;
     this.tabStripQLKS.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabStripQLKS.CloseButtonVisible = true;
     this.tabStripQLKS.ColorScheme.TabBackground = System.Drawing.Color.Transparent;
     this.tabStripQLKS.ColorScheme.TabBorder = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabStripQLKS.ColorScheme.TabItemBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(230)))), ((int)(((byte)(249))))), 0F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(220)))), ((int)(((byte)(248))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(179)))), ((int)(((byte)(208)))), ((int)(((byte)(245))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(229)))), ((int)(((byte)(247))))), 1F)});
     this.tabStripQLKS.ColorScheme.TabItemHotBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(253)))), ((int)(((byte)(235))))), 0F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(236)))), ((int)(((byte)(168))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(218)))), ((int)(((byte)(89))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(230)))), ((int)(((byte)(141))))), 1F)});
     this.tabStripQLKS.ColorScheme.TabItemSelectedBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.White, 0F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))), 1F)});
     this.tabStripQLKS.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabStripQLKS.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStripQLKS.Location = new System.Drawing.Point(5, 155);
     this.tabStripQLKS.MdiForm = this;
     this.tabStripQLKS.MdiTabbedDocuments = true;
     this.tabStripQLKS.Name = "tabStripQLKS";
     this.tabStripQLKS.SelectedTab = null;
     this.tabStripQLKS.SelectedTabFont = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStripQLKS.Size = new System.Drawing.Size(725, 21);
     this.tabStripQLKS.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabStripQLKS.TabIndex = 0;
     this.tabStripQLKS.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabStripQLKS.Text = "tabStrip1";
     //
     // frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(735, 453);
     this.Controls.Add(this.tabStripQLKS);
     this.Controls.Add(this.ribbonControlQLKS);
     this.IsMdiContainer = true;
     this.Name = "frm_Main";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frm_Main_FormClosing);
     this.Load += new System.EventHandler(this.frm_Main_Load);
     this.ribbonControlQLKS.ResumeLayout(false);
     this.ribbonControlQLKS.PerformLayout();
     this.ribbonPanelQTHT.ResumeLayout(false);
     this.ribbonPanelPhong.ResumeLayout(false);
     this.ribbonPanelHoaDon.ResumeLayout(false);
     this.ribbonPanel3.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel1.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.tabStrip1 = new DevComponents.DotNetBar.TabStrip();
			this.SuspendLayout();
			// 
			// tabStrip1
			// 
			this.tabStrip1.CanReorderTabs = true;
			this.tabStrip1.CloseButtonVisible = true;
			this.tabStrip1.Dock = System.Windows.Forms.DockStyle.Top;
			this.tabStrip1.ImageList = null;
			this.tabStrip1.Name = "tabStrip1";
			this.tabStrip1.SelectedTab = null;
			this.tabStrip1.Size = new System.Drawing.Size(256, 26);
			this.tabStrip1.Style = DevComponents.DotNetBar.eTabStripStyle.OneNote;
			this.tabStrip1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
			this.tabStrip1.TabIndex = 0;
			this.tabStrip1.Text = "tabStrip1";
			this.tabStrip1.AutoHideSystemBox=true;
			this.tabStrip1.CloseButtonVisible=false;
			this.tabStrip1.TabRemoved += new System.EventHandler(this.tabStrip1_TabRemoved);
            this.tabStrip1.TabItemOpen += new EventHandler(tabStrip1_TabItemAdded);
			this.tabStrip1.SelectedTabChanged += new DevComponents.DotNetBar.TabStrip.SelectedTabChangedEventHandler(this.tabStrip1_SelectedTabChanged);
			this.tabStrip1.SelectedTabChanging += new DevComponents.DotNetBar.TabStrip.SelectedTabChangingEventHandler(this.tabStrip1_SelectedTabChanging);
			this.tabStrip1.TabMoved+=new TabStrip.TabMovedEventHandler(this.tabStrip1_TabMoved);
			this.tabStrip1.NavigateBack+=new TabStrip.UserActionEventHandler(this.tabStrip1_NavigateBack);
			this.tabStrip1.NavigateForward+=new TabStrip.UserActionEventHandler(this.tabStrip1_NavigateForward);
			this.tabStrip1.TabItemClose+=new TabStrip.UserActionEventHandler(this.tabStrip1_TabItemClose);
			this.tabStrip1.TabItemOpen+=new EventHandler(this.tabStrip1_TabItemOpen);
            this.tabStrip1.TabsCleared += new EventHandler(this.tabStrip1_TabsCleared);
			this.tabStrip1.BeforeTabDisplay+=new EventHandler(this.tabStrip1_BeforeTabDisplay);
			this.tabStrip1.TabStop=false;
			// 
			// TabControl
			// 
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.tabStrip1});
			this.Name = "TabControl";
			this.Size = new System.Drawing.Size(256, 152);
			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(RibbonShell));
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem30 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem31 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem32 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem33 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem34 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem35 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem36 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem37 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem38 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem39 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem40 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem41 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem42 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem43 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem44 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem45 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem46 = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonAlignLeft = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignCenter = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignRight = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignJustify = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer8 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.comboFont = new DevComponents.DotNetBar.ComboBoxItem();
     this.comboFontSize = new DevComponents.DotNetBar.ComboBoxItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.buttonFontBold = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontItalic = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontUnderline = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontStrike = new DevComponents.DotNetBar.ButtonItem();
     this.buttonTextColor = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem54 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonCut = new DevComponents.DotNetBar.ButtonItem();
     this.buttonCopy = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem55 = new DevComponents.DotNetBar.ButtonItem();
     this.checkBoxItem1 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem2 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem3 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem4 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem5 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem6 = new DevComponents.DotNetBar.CheckBoxItem();
     this.buttonReplace = new DevComponents.DotNetBar.ButtonItem();
     this.buttonGoto = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem50 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem51 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem52 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItemGroup1 = new DevComponents.DotNetBar.RibbonTabItemGroup();
     this.ribbonControl = new DevComponents.DotNetBar.RibbonControl();
     this.buttonFile = new DevComponents.DotNetBar.ApplicationButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.tnLogin = new DevComponents.DotNetBar.ButtonItem();
     this.tnLogout = new DevComponents.DotNetBar.ButtonItem();
     this.btnCPassword = new DevComponents.DotNetBar.ButtonItem();
     this.btnClose = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandTheme = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem56 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.colorPickerDropDown1 = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.switchButtonItem1 = new DevComponents.DotNetBar.SwitchButtonItem();
     this.RibbonStateCommand = new DevComponents.DotNetBar.Command(this.components);
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.tabStrip1 = new DevComponents.DotNetBar.TabStrip();
     this.microChartItem1 = new DevComponents.DotNetBar.MicroChartItem();
     this.microChartItem2 = new DevComponents.DotNetBar.MicroChartItem();
     this.panBottom = new DevComponents.DotNetBar.PanelEx();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonChangeStyle = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleMetro = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2010Blue = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2010Silver = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2010Black = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleVS2010 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem62 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem60 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleCustom = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.bottomControl1 = new Gas_test2.Res.BottomControl();
     this.panBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // buttonItem47
     //
     this.buttonItem47.BeginGroup = true;
     this.buttonItem47.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem47.Image")));
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Text = "Search for Templates Online...";
     //
     // buttonItem48
     //
     this.buttonItem48.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem48.Image")));
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.Text = "Browse for Templates...";
     //
     // buttonItem49
     //
     this.buttonItem49.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem49.Image")));
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Text = "Save Current Template...";
     //
     // buttonItem20
     //
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "Apex";
     this.buttonItem20.Tooltip = "Apex";
     //
     // buttonItem21
     //
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "Aspect";
     this.buttonItem21.Tooltip = "Aspect";
     //
     // buttonItem22
     //
     this.buttonItem22.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "Concourse";
     this.buttonItem22.Tooltip = "Concourse";
     //
     // buttonItem30
     //
     this.buttonItem30.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem30.Image")));
     this.buttonItem30.Name = "buttonItem30";
     this.buttonItem30.Text = "Currency";
     this.buttonItem30.Tooltip = "Currency";
     //
     // buttonItem31
     //
     this.buttonItem31.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem31.Image")));
     this.buttonItem31.Name = "buttonItem31";
     this.buttonItem31.Text = "Deluxe";
     this.buttonItem31.Tooltip = "Deluxe";
     //
     // buttonItem32
     //
     this.buttonItem32.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem32.Image")));
     this.buttonItem32.Name = "buttonItem32";
     this.buttonItem32.Text = "Equity";
     this.buttonItem32.Tooltip = "Equity";
     //
     // buttonItem33
     //
     this.buttonItem33.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem33.Image")));
     this.buttonItem33.Name = "buttonItem33";
     this.buttonItem33.Text = "Flow";
     this.buttonItem33.Tooltip = "Flow";
     //
     // buttonItem34
     //
     this.buttonItem34.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem34.Image")));
     this.buttonItem34.Name = "buttonItem34";
     this.buttonItem34.Text = "Foundry";
     this.buttonItem34.Tooltip = "Foundry";
     //
     // buttonItem35
     //
     this.buttonItem35.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem35.Image")));
     this.buttonItem35.Name = "buttonItem35";
     this.buttonItem35.Text = "Median";
     this.buttonItem35.Tooltip = "Median";
     //
     // buttonItem36
     //
     this.buttonItem36.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem36.Image")));
     this.buttonItem36.Name = "buttonItem36";
     this.buttonItem36.Text = "Metro";
     this.buttonItem36.Tooltip = "Metro";
     //
     // buttonItem37
     //
     this.buttonItem37.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem37.Image")));
     this.buttonItem37.Name = "buttonItem37";
     this.buttonItem37.Text = "Office";
     this.buttonItem37.Tooltip = "Office";
     //
     // buttonItem38
     //
     this.buttonItem38.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem38.Image")));
     this.buttonItem38.Name = "buttonItem38";
     this.buttonItem38.Text = "Opulent";
     this.buttonItem38.Tooltip = "Opulent";
     //
     // buttonItem39
     //
     this.buttonItem39.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem39.Image")));
     this.buttonItem39.Name = "buttonItem39";
     this.buttonItem39.Text = "Oriel";
     this.buttonItem39.Tooltip = "Oriel";
     //
     // buttonItem40
     //
     this.buttonItem40.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem40.Image")));
     this.buttonItem40.Name = "buttonItem40";
     this.buttonItem40.Text = "Origin";
     this.buttonItem40.Tooltip = "Origin";
     //
     // buttonItem41
     //
     this.buttonItem41.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem41.Image")));
     this.buttonItem41.Name = "buttonItem41";
     this.buttonItem41.Text = "Civic";
     this.buttonItem41.Tooltip = "Civic";
     //
     // buttonItem42
     //
     this.buttonItem42.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem42.Image")));
     this.buttonItem42.Name = "buttonItem42";
     this.buttonItem42.Text = "Solstice";
     this.buttonItem42.Tooltip = "Solstice";
     //
     // buttonItem43
     //
     this.buttonItem43.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem43.Image")));
     this.buttonItem43.Name = "buttonItem43";
     this.buttonItem43.Text = "Technic";
     this.buttonItem43.Tooltip = "Technic";
     //
     // buttonItem44
     //
     this.buttonItem44.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem44.Image")));
     this.buttonItem44.Name = "buttonItem44";
     this.buttonItem44.Text = "Trek";
     this.buttonItem44.Tooltip = "Trek";
     //
     // buttonItem45
     //
     this.buttonItem45.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem45.Image")));
     this.buttonItem45.Name = "buttonItem45";
     this.buttonItem45.Text = "Urban";
     this.buttonItem45.Tooltip = "Urban";
     //
     // buttonItem46
     //
     this.buttonItem46.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem46.Image")));
     this.buttonItem46.Name = "buttonItem46";
     this.buttonItem46.Text = "Verve";
     this.buttonItem46.Tooltip = "Verve";
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.BeginGroup = true;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonAlignLeft,
     this.buttonAlignCenter,
     this.buttonAlignRight,
     this.buttonAlignJustify});
     //
     //
     //
     this.itemContainer7.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonAlignLeft
     //
     this.buttonAlignLeft.Enabled = false;
     this.buttonAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignLeft.Image")));
     this.buttonAlignLeft.Name = "buttonAlignLeft";
     this.buttonAlignLeft.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlL);
     this.buttonAlignLeft.Text = "Align &Left";
     //
     // buttonAlignCenter
     //
     this.buttonAlignCenter.Enabled = false;
     this.buttonAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignCenter.Image")));
     this.buttonAlignCenter.Name = "buttonAlignCenter";
     this.buttonAlignCenter.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlE);
     this.buttonAlignCenter.Text = "Align &Center";
     //
     // buttonAlignRight
     //
     this.buttonAlignRight.Enabled = false;
     this.buttonAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignRight.Image")));
     this.buttonAlignRight.Name = "buttonAlignRight";
     this.buttonAlignRight.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonAlignRight.Text = "Align &Right";
     //
     // buttonAlignJustify
     //
     this.buttonAlignJustify.Enabled = false;
     this.buttonAlignJustify.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignJustify.Image")));
     this.buttonAlignJustify.Name = "buttonAlignJustify";
     this.buttonAlignJustify.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlJ);
     this.buttonAlignJustify.Text = "&Justify";
     //
     // itemContainer8
     //
     //
     //
     //
     this.itemContainer8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer8.BeginGroup = true;
     this.itemContainer8.Name = "itemContainer8";
     this.itemContainer8.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25,
     this.buttonItem26});
     //
     //
     //
     this.itemContainer8.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem23
     //
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "&Numbered Bullets";
     //
     // buttonItem24
     //
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "&Bullets";
     //
     // buttonItem25
     //
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "&Indent";
     //
     // buttonItem26
     //
     this.buttonItem26.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem26.Image")));
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "&Outdent";
     //
     // buttonItem27
     //
     this.buttonItem27.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.NotificationMarkText = "4";
     this.buttonItem27.Text = "&Borders";
     //
     // buttonItem28
     //
     this.buttonItem28.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem28.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem28.Image")));
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "&Shading";
     //
     // comboFont
     //
     this.comboFont.ComboWidth = 96;
     this.comboFont.DropDownHeight = 106;
     this.comboFont.DropDownWidth = 242;
     this.comboFont.Enabled = false;
     this.comboFont.FontCombo = true;
     this.comboFont.ItemHeight = 14;
     this.comboFont.Name = "comboFont";
     //
     // comboFontSize
     //
     this.comboFontSize.ComboWidth = 40;
     this.comboFontSize.DropDownHeight = 106;
     this.comboFontSize.Enabled = false;
     this.comboFontSize.ItemHeight = 16;
     this.comboFontSize.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9});
     this.comboFontSize.Name = "comboFontSize";
     //
     // comboItem1
     //
     this.comboItem1.Text = "6";
     //
     // comboItem2
     //
     this.comboItem2.Text = "7";
     //
     // comboItem3
     //
     this.comboItem3.Text = "8";
     //
     // comboItem4
     //
     this.comboItem4.Text = "9";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10";
     //
     // comboItem6
     //
     this.comboItem6.Text = "11";
     //
     // comboItem7
     //
     this.comboItem7.Text = "12";
     //
     // comboItem8
     //
     this.comboItem8.Text = "13";
     //
     // comboItem9
     //
     this.comboItem9.Text = "14";
     //
     // buttonFontBold
     //
     this.buttonFontBold.Enabled = false;
     this.buttonFontBold.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontBold.Image")));
     this.buttonFontBold.Name = "buttonFontBold";
     this.buttonFontBold.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlB);
     this.buttonFontBold.Text = "&Bold";
     //
     // buttonFontItalic
     //
     this.buttonFontItalic.Enabled = false;
     this.buttonFontItalic.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontItalic.Image")));
     this.buttonFontItalic.Name = "buttonFontItalic";
     this.buttonFontItalic.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonFontItalic.Text = "&Italic";
     //
     // buttonFontUnderline
     //
     this.buttonFontUnderline.Enabled = false;
     this.buttonFontUnderline.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontUnderline.Image")));
     this.buttonFontUnderline.Name = "buttonFontUnderline";
     this.buttonFontUnderline.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlU);
     this.buttonFontUnderline.Text = "&Underline";
     //
     // buttonFontStrike
     //
     this.buttonFontStrike.Enabled = false;
     this.buttonFontStrike.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontStrike.Image")));
     this.buttonFontStrike.Name = "buttonFontStrike";
     this.buttonFontStrike.Text = "&Strike";
     //
     // buttonTextColor
     //
     this.buttonTextColor.Enabled = false;
     this.buttonTextColor.Image = ((System.Drawing.Image)(resources.GetObject("buttonTextColor.Image")));
     this.buttonTextColor.Name = "buttonTextColor";
     this.buttonTextColor.SelectedColorImageRectangle = new System.Drawing.Rectangle(0, 13, 16, 3);
     this.buttonTextColor.Text = "Text &Color";
     //
     // buttonItem53
     //
     this.buttonItem53.Enabled = false;
     this.buttonItem53.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem53.Image")));
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Text = "&Paste";
     //
     // buttonItem54
     //
     this.buttonItem54.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem54.Image")));
     this.buttonItem54.Name = "buttonItem54";
     this.buttonItem54.Text = "Paste &Special...";
     //
     // buttonCut
     //
     this.buttonCut.Enabled = false;
     this.buttonCut.Image = ((System.Drawing.Image)(resources.GetObject("buttonCut.Image")));
     this.buttonCut.Name = "buttonCut";
     this.buttonCut.Text = "Cu&t";
     //
     // buttonCopy
     //
     this.buttonCopy.Enabled = false;
     this.buttonCopy.Image = ((System.Drawing.Image)(resources.GetObject("buttonCopy.Image")));
     this.buttonCopy.Name = "buttonCopy";
     this.buttonCopy.Text = "&Copy";
     //
     // buttonItem55
     //
     this.buttonItem55.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem55.Image")));
     this.buttonItem55.Name = "buttonItem55";
     this.buttonItem55.Text = "Format Painter";
     //
     // checkBoxItem1
     //
     this.checkBoxItem1.Checked = true;
     this.checkBoxItem1.CheckState = System.Windows.Forms.CheckState.Indeterminate;
     this.checkBoxItem1.Name = "checkBoxItem1";
     this.checkBoxItem1.Text = "Header";
     this.checkBoxItem1.ThreeState = true;
     //
     // checkBoxItem2
     //
     this.checkBoxItem2.Name = "checkBoxItem2";
     this.checkBoxItem2.Text = "Footer";
     //
     // checkBoxItem3
     //
     this.checkBoxItem3.Checked = true;
     this.checkBoxItem3.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxItem3.Name = "checkBoxItem3";
     this.checkBoxItem3.Text = "Margins";
     //
     // checkBoxItem4
     //
     this.checkBoxItem4.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem4.Name = "checkBoxItem4";
     this.checkBoxItem4.Text = "Horizontal Layout";
     //
     // checkBoxItem5
     //
     this.checkBoxItem5.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem5.Name = "checkBoxItem5";
     this.checkBoxItem5.Text = "Vertical Layout";
     //
     // checkBoxItem6
     //
     this.checkBoxItem6.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem6.Checked = true;
     this.checkBoxItem6.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxItem6.Name = "checkBoxItem6";
     this.checkBoxItem6.Text = "Automatic Layout";
     //
     // buttonReplace
     //
     this.buttonReplace.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonReplace.Enabled = false;
     this.buttonReplace.Image = ((System.Drawing.Image)(resources.GetObject("buttonReplace.Image")));
     this.buttonReplace.Name = "buttonReplace";
     this.buttonReplace.Text = "&Replace";
     //
     // buttonGoto
     //
     this.buttonGoto.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonGoto.Enabled = false;
     this.buttonGoto.Image = ((System.Drawing.Image)(resources.GetObject("buttonGoto.Image")));
     this.buttonGoto.Name = "buttonGoto";
     this.buttonGoto.Text = "&Goto";
     //
     // buttonItem50
     //
     this.buttonItem50.Checked = true;
     this.buttonItem50.Name = "buttonItem50";
     this.buttonItem50.OptionGroup = "orientation";
     this.buttonItem50.Text = "Auto";
     //
     // buttonItem51
     //
     this.buttonItem51.Name = "buttonItem51";
     this.buttonItem51.OptionGroup = "orientation";
     this.buttonItem51.Text = "Horizontal";
     //
     // buttonItem52
     //
     this.buttonItem52.Name = "buttonItem52";
     this.buttonItem52.OptionGroup = "orientation";
     this.buttonItem52.Text = "Vertical";
     //
     // ribbonTabItemGroup1
     //
     this.ribbonTabItemGroup1.Color = DevComponents.DotNetBar.eRibbonTabGroupColor.Orange;
     this.ribbonTabItemGroup1.GroupTitle = "Tab Group";
     this.ribbonTabItemGroup1.Name = "ribbonTabItemGroup1";
     //
     //
     //
     this.ribbonTabItemGroup1.Style.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(158)))), ((int)(((byte)(159)))));
     this.ribbonTabItemGroup1.Style.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(225)))), ((int)(((byte)(226)))));
     this.ribbonTabItemGroup1.Style.BackColorGradientAngle = 90;
     this.ribbonTabItemGroup1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderBottomWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(58)))), ((int)(((byte)(59)))));
     this.ribbonTabItemGroup1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderLeftWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderRightWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderTopWidth = 1;
     this.ribbonTabItemGroup1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonTabItemGroup1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.ribbonTabItemGroup1.Style.TextColor = System.Drawing.Color.Black;
     this.ribbonTabItemGroup1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     // ribbonControl
     //
     this.ribbonControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(242)))));
     //
     //
     //
     this.ribbonControl.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl.CaptionVisible = true;
     this.ribbonControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl.ForeColor = System.Drawing.Color.Black;
     this.ribbonControl.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFile,
     this.buttonItem9,
     this.switchButtonItem1});
     this.ribbonControl.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.qatCustomizeItem1});
     this.ribbonControl.Size = new System.Drawing.Size(908, 154);
     this.ribbonControl.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl.SystemText.MaximizeRibbonText = "最大化功能区";
     this.ribbonControl.SystemText.MinimizeRibbonText = "最小化功能区";
     this.ribbonControl.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl.SystemText.QatCustomizeMenuLabel = "配置快捷工具栏";
     this.ribbonControl.SystemText.QatCustomizeText = "配置快捷工具栏";
     this.ribbonControl.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl.SystemText.QatDialogCaption = "配置快捷工具栏";
     this.ribbonControl.SystemText.QatDialogCategoriesLabel = "选择功能:";
     this.ribbonControl.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl.SystemText.QatDialogPlacementCheckbox = "将快捷工具栏置于菜单之下";
     this.ribbonControl.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl.SystemText.QatPlaceAboveRibbonText = "在功能区上方显示";
     this.ribbonControl.SystemText.QatPlaceBelowRibbonText = "在功能区下方显示";
     this.ribbonControl.SystemText.QatRemoveItemText = "从快速访问工具栏删除";
     this.ribbonControl.TabGroupHeight = 14;
     this.ribbonControl.TabIndex = 0;
     this.ribbonControl.Text = "ribbonControl";
     this.ribbonControl.BeforeRibbonPanelPopupClose += new DevComponents.DotNetBar.RibbonPopupCloseEventHandler(this.ribbonControl_BeforeRibbonPanelPopupClose);
     this.ribbonControl.ExpandedChanged += new System.EventHandler(this.ribbonControl_ExpandedChanged);
     //
     // buttonFile
     //
     this.buttonFile.AutoExpandOnClick = true;
     this.buttonFile.CanCustomize = false;
     this.buttonFile.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.buttonFile.Image = ((System.Drawing.Image)(resources.GetObject("buttonFile.Image")));
     this.buttonFile.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.buttonFile.ImagePaddingHorizontal = 0;
     this.buttonFile.ImagePaddingVertical = 0;
     this.buttonFile.Name = "buttonFile";
     this.buttonFile.ShowSubItems = false;
     this.buttonFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.buttonFile.Text = "&系统";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2,
     this.btnCPassword,
     this.btnClose,
     this.itemContainer4});
     //
     //
     //
     this.itemContainer1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     //
     //
     //
     this.itemContainer2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tnLogin,
     this.tnLogout});
     //
     //
     //
     this.itemContainer3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // tnLogin
     //
     this.tnLogin.BeginGroup = true;
     this.tnLogin.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.tnLogin.Image = ((System.Drawing.Image)(resources.GetObject("tnLogin.Image")));
     this.tnLogin.Name = "tnLogin";
     this.tnLogin.SubItemsExpandWidth = 24;
     this.tnLogin.Text = "登录(&L)";
     this.tnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // tnLogout
     //
     this.tnLogout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.tnLogout.Image = ((System.Drawing.Image)(resources.GetObject("tnLogout.Image")));
     this.tnLogout.Name = "tnLogout";
     this.tnLogout.SubItemsExpandWidth = 24;
     this.tnLogout.Text = "注销";
     this.tnLogout.Click += new System.EventHandler(this.tnLogout_Click);
     //
     // btnCPassword
     //
     this.btnCPassword.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnCPassword.Image = ((System.Drawing.Image)(resources.GetObject("btnCPassword.Image")));
     this.btnCPassword.Name = "btnCPassword";
     this.btnCPassword.SubItemsExpandWidth = 24;
     this.btnCPassword.Text = "修改密码(&P)";
     this.btnCPassword.Click += new System.EventHandler(this.btnCPassword_Click);
     //
     // btnClose
     //
     this.btnClose.BeginGroup = true;
     this.btnClose.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.Name = "btnClose";
     this.btnClose.SubItemsExpandWidth = 24;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbout,
     this.btnExit});
     //
     //
     //
     this.itemContainer4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnAbout
     //
     this.btnAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnAbout.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnAbout.Image")));
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.SubItemsExpandWidth = 24;
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // btnExit
     //
     this.btnExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Image = ((System.Drawing.Image)(resources.GetObject("btnExit.Image")));
     this.btnExit.Name = "btnExit";
     this.btnExit.SubItemsExpandWidth = 24;
     this.btnExit.Text = "退出(&E)";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // buttonItem9
     //
     this.buttonItem9.AutoExpandOnClick = true;
     this.buttonItem9.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10,
     this.buttonItem11,
     this.buttonItem15,
     this.buttonItem17,
     this.buttonItem18,
     this.buttonItem19,
     this.buttonItem29,
     this.buttonItem56,
     this.buttonItem57,
     this.buttonItem58,
     this.buttonItem59,
     this.colorPickerDropDown1});
     this.buttonItem9.Text = "系统样式";
     //
     // buttonItem10
     //
     this.buttonItem10.Command = this.AppCommandTheme;
     this.buttonItem10.CommandParameter = "Metro";
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.OptionGroup = "style";
     this.buttonItem10.Text = "Metro/Office 2013";
     //
     // AppCommandTheme
     //
     this.AppCommandTheme.Name = "AppCommandTheme";
     this.AppCommandTheme.Executed += new System.EventHandler(this.AppCommandTheme_Executed);
     //
     // buttonItem11
     //
     this.buttonItem11.Command = this.AppCommandTheme;
     this.buttonItem11.CommandParameter = "Office2010Blue";
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.OptionGroup = "style";
     this.buttonItem11.Text = "Office 2010 Blue";
     //
     // buttonItem15
     //
     this.buttonItem15.Command = this.AppCommandTheme;
     this.buttonItem15.CommandParameter = "Office2010Silver";
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.OptionGroup = "style";
     this.buttonItem15.Text = "Office 2010 <font color=\"Silver\"><b>Silver</b></font>";
     //
     // buttonItem17
     //
     this.buttonItem17.Command = this.AppCommandTheme;
     this.buttonItem17.CommandParameter = "Office2010Black";
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.OptionGroup = "style";
     this.buttonItem17.Text = "Office 2010 Black";
     //
     // buttonItem18
     //
     this.buttonItem18.Command = this.AppCommandTheme;
     this.buttonItem18.CommandParameter = "VisualStudio2010Blue";
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.OptionGroup = "style";
     this.buttonItem18.Text = "Visual Studio 2010";
     //
     // buttonItem19
     //
     this.buttonItem19.Command = this.AppCommandTheme;
     this.buttonItem19.CommandParameter = "Windows7Blue";
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.OptionGroup = "style";
     this.buttonItem19.Text = "Windows 7";
     //
     // buttonItem29
     //
     this.buttonItem29.Command = this.AppCommandTheme;
     this.buttonItem29.CommandParameter = "Office2007Blue";
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.OptionGroup = "style";
     this.buttonItem29.Text = "Office 2007 <font color=\"Blue\"><b>Blue</b></font>";
     //
     // buttonItem56
     //
     this.buttonItem56.Command = this.AppCommandTheme;
     this.buttonItem56.CommandParameter = "Office2007Black";
     this.buttonItem56.Name = "buttonItem56";
     this.buttonItem56.OptionGroup = "style";
     this.buttonItem56.Text = "Office 2007 <font color=\"black\"><b>Black</b></font>";
     //
     // buttonItem57
     //
     this.buttonItem57.Command = this.AppCommandTheme;
     this.buttonItem57.CommandParameter = "Office2007Silver";
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.OptionGroup = "style";
     this.buttonItem57.Text = "Office 2007 <font color=\"Silver\"><b>Silver</b></font>";
     //
     // buttonItem58
     //
     this.buttonItem58.Command = this.AppCommandTheme;
     this.buttonItem58.CommandParameter = "Office2007VistaGlass";
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.OptionGroup = "style";
     this.buttonItem58.Text = "Vista Glass";
     //
     // buttonItem59
     //
     this.buttonItem59.Checked = true;
     this.buttonItem59.Command = this.AppCommandTheme;
     this.buttonItem59.CommandParameter = "VisualStudio2012Light";
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.OptionGroup = "style";
     this.buttonItem59.Text = "Visual Studio 2012 Light";
     //
     // colorPickerDropDown1
     //
     this.colorPickerDropDown1.BeginGroup = true;
     this.colorPickerDropDown1.Command = this.AppCommandTheme;
     this.colorPickerDropDown1.Name = "colorPickerDropDown1";
     this.colorPickerDropDown1.Text = "Custom scheme";
     this.colorPickerDropDown1.Tooltip = "Custom color scheme is created based on currently selected color table. Try selec" +
     "ting Silver or Blue color table and then creating custom color scheme.";
     //
     // switchButtonItem1
     //
     this.switchButtonItem1.ButtonHeight = 20;
     this.switchButtonItem1.ButtonWidth = 62;
     this.switchButtonItem1.Command = this.RibbonStateCommand;
     this.switchButtonItem1.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.switchButtonItem1.Margin.Bottom = 2;
     this.switchButtonItem1.Margin.Left = 4;
     this.switchButtonItem1.Name = "switchButtonItem1";
     this.switchButtonItem1.OffText = "显示";
     this.switchButtonItem1.OnText = "隐藏";
     this.switchButtonItem1.Tooltip = "最大化/最小化功能区";
     //
     // RibbonStateCommand
     //
     this.RibbonStateCommand.Name = "RibbonStateCommand";
     this.RibbonStateCommand.Executed += new System.EventHandler(this.RibbonStateCommand_Executed);
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // 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))))));
     //
     // tabStrip1
     //
     this.tabStrip1.AutoSelectAttachedControl = true;
     this.tabStrip1.CanReorderTabs = true;
     this.tabStrip1.CloseButtonOnTabsVisible = true;
     this.tabStrip1.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabStrip1.CloseButtonVisible = false;
     this.tabStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabStrip1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStrip1.ForeColor = System.Drawing.Color.Black;
     this.tabStrip1.Location = new System.Drawing.Point(5, 155);
     this.tabStrip1.MdiForm = this;
     this.tabStrip1.MdiTabbedDocuments = true;
     this.tabStrip1.Name = "tabStrip1";
     this.tabStrip1.SelectedTab = null;
     this.tabStrip1.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStrip1.Size = new System.Drawing.Size(908, 26);
     this.tabStrip1.Style = DevComponents.DotNetBar.eTabStripStyle.Metro;
     this.tabStrip1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.tabStrip1.TabIndex = 7;
     this.tabStrip1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabStrip1.Text = "tabStrip1";
     //
     // microChartItem1
     //
     this.microChartItem1.Name = "microChartItem1";
     //
     // microChartItem2
     //
     this.microChartItem2.Name = "microChartItem2";
     //
     // panBottom
     //
     this.panBottom.CanvasColor = System.Drawing.SystemColors.Control;
     this.panBottom.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panBottom.Controls.Add(this.bottomControl1);
     this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panBottom.Location = new System.Drawing.Point(5, 395);
     this.panBottom.Name = "panBottom";
     this.panBottom.Size = new System.Drawing.Size(908, 28);
     this.panBottom.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panBottom.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panBottom.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panBottom.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panBottom.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panBottom.Style.GradientAngle = 90;
     this.panBottom.TabIndex = 8;
     this.panBottom.Text = "panelEx1";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonChangeStyle
     //
     this.buttonChangeStyle.AutoExpandOnClick = true;
     this.buttonChangeStyle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonChangeStyle.Name = "buttonChangeStyle";
     this.buttonChangeStyle.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonStyleMetro,
     this.buttonStyleOffice2010Blue,
     this.buttonStyleOffice2010Silver,
     this.buttonStyleOffice2010Black,
     this.buttonStyleVS2010,
     this.buttonItem62,
     this.buttonStyleOffice2007Blue,
     this.buttonStyleOffice2007Black,
     this.buttonStyleOffice2007Silver,
     this.buttonItem60,
     this.buttonItem16,
     this.buttonStyleCustom});
     this.buttonChangeStyle.Text = "Style";
     //
     // buttonStyleMetro
     //
     this.buttonStyleMetro.Command = this.AppCommandTheme;
     this.buttonStyleMetro.CommandParameter = "Metro";
     this.buttonStyleMetro.Name = "buttonStyleMetro";
     this.buttonStyleMetro.OptionGroup = "style";
     this.buttonStyleMetro.Text = "Metro/Office 2013";
     //
     // buttonStyleOffice2010Blue
     //
     this.buttonStyleOffice2010Blue.Command = this.AppCommandTheme;
     this.buttonStyleOffice2010Blue.CommandParameter = "Office2010Blue";
     this.buttonStyleOffice2010Blue.Name = "buttonStyleOffice2010Blue";
     this.buttonStyleOffice2010Blue.OptionGroup = "style";
     this.buttonStyleOffice2010Blue.Text = "Office 2010 Blue";
     //
     // buttonStyleOffice2010Silver
     //
     this.buttonStyleOffice2010Silver.Command = this.AppCommandTheme;
     this.buttonStyleOffice2010Silver.CommandParameter = "Office2010Silver";
     this.buttonStyleOffice2010Silver.Name = "buttonStyleOffice2010Silver";
     this.buttonStyleOffice2010Silver.OptionGroup = "style";
     this.buttonStyleOffice2010Silver.Text = "Office 2010 <font color=\"Silver\"><b>Silver</b></font>";
     //
     // buttonStyleOffice2010Black
     //
     this.buttonStyleOffice2010Black.Command = this.AppCommandTheme;
     this.buttonStyleOffice2010Black.CommandParameter = "Office2010Black";
     this.buttonStyleOffice2010Black.Name = "buttonStyleOffice2010Black";
     this.buttonStyleOffice2010Black.OptionGroup = "style";
     this.buttonStyleOffice2010Black.Text = "Office 2010 Black";
     //
     // buttonStyleVS2010
     //
     this.buttonStyleVS2010.Command = this.AppCommandTheme;
     this.buttonStyleVS2010.CommandParameter = "VisualStudio2010Blue";
     this.buttonStyleVS2010.Name = "buttonStyleVS2010";
     this.buttonStyleVS2010.OptionGroup = "style";
     this.buttonStyleVS2010.Text = "Visual Studio 2010";
     //
     // buttonItem62
     //
     this.buttonItem62.Command = this.AppCommandTheme;
     this.buttonItem62.CommandParameter = "Windows7Blue";
     this.buttonItem62.Name = "buttonItem62";
     this.buttonItem62.OptionGroup = "style";
     this.buttonItem62.Text = "Windows 7";
     //
     // buttonStyleOffice2007Blue
     //
     this.buttonStyleOffice2007Blue.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Blue.CommandParameter = "Office2007Blue";
     this.buttonStyleOffice2007Blue.Name = "buttonStyleOffice2007Blue";
     this.buttonStyleOffice2007Blue.OptionGroup = "style";
     this.buttonStyleOffice2007Blue.Text = "Office 2007 <font color=\"Blue\"><b>Blue</b></font>";
     //
     // buttonStyleOffice2007Black
     //
     this.buttonStyleOffice2007Black.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Black.CommandParameter = "Office2007Black";
     this.buttonStyleOffice2007Black.Name = "buttonStyleOffice2007Black";
     this.buttonStyleOffice2007Black.OptionGroup = "style";
     this.buttonStyleOffice2007Black.Text = "Office 2007 <font color=\"black\"><b>Black</b></font>";
     //
     // buttonStyleOffice2007Silver
     //
     this.buttonStyleOffice2007Silver.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Silver.CommandParameter = "Office2007Silver";
     this.buttonStyleOffice2007Silver.Name = "buttonStyleOffice2007Silver";
     this.buttonStyleOffice2007Silver.OptionGroup = "style";
     this.buttonStyleOffice2007Silver.Text = "Office 2007 <font color=\"Silver\"><b>Silver</b></font>";
     //
     // buttonItem60
     //
     this.buttonItem60.Command = this.AppCommandTheme;
     this.buttonItem60.CommandParameter = "Office2007VistaGlass";
     this.buttonItem60.Name = "buttonItem60";
     this.buttonItem60.OptionGroup = "style";
     this.buttonItem60.Text = "Vista Glass";
     //
     // buttonItem16
     //
     this.buttonItem16.Checked = true;
     this.buttonItem16.Command = this.AppCommandTheme;
     this.buttonItem16.CommandParameter = "VisualStudio2012Light";
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.OptionGroup = "style";
     this.buttonItem16.Text = "Visual Studio 2012 Light";
     //
     // buttonStyleCustom
     //
     this.buttonStyleCustom.BeginGroup = true;
     this.buttonStyleCustom.Command = this.AppCommandTheme;
     this.buttonStyleCustom.Name = "buttonStyleCustom";
     this.buttonStyleCustom.Text = "Custom scheme";
     this.buttonStyleCustom.Tooltip = "Custom color scheme is created based on currently selected color table. Try selec" +
     "ting Silver or Blue color table and then creating custom color scheme.";
     //
     // 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(908, 28);
     this.bottomControl1.TabIndex = 0;
     //
     // RibbonShell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(918, 425);
     this.Controls.Add(this.panBottom);
     this.Controls.Add(this.tabStrip1);
     this.Controls.Add(this.ribbonControl);
     this.IsMdiContainer = true;
     this.Name = "RibbonShell";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "AgileEAS.NET SOA中间件";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.MdiChildActivate += new System.EventHandler(this.RibbonShell_MdiChildActivate);
     this.panBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }