Пример #1
0
        private void CloseContent(DevComponents.DotNetBar.LabelItem labelitem)
        {
            string key = labelitem.Tag.ToString();

            DevComponents.DotNetBar.ItemContainer itemContainer
                = itemPanel1.GetItem("itemContainer_" + key) as DevComponents.DotNetBar.ItemContainer;
            foreach (var btn in itemContainer.SubItems)
            {
                ucTaskInfo buttonItem = btn as ucTaskInfo;
                if (buttonItem != null)
                {
                    if (m_currentTask != null && m_currentTask.TaskId == buttonItem.TaskId)
                    {
                        m_currentTask = null;
                    }
                    if (ShownTaskList.Find(it => it.TaskId == buttonItem.TaskId) != null)
                    {
                        ShownTaskList.Remove(buttonItem);
                    }
                }
            }

            itemContainer.SubItems.Clear();
            itemPanel1.Refresh();
            if (OpenedList.Contains(labelitem.Name))
            {
                OpenedList.Remove(labelitem.Name);
            }
            labelitem.Symbol = "\uf054";
        }
Пример #2
0
 public ucTaskInfo()
 {
     InitializeComponent();
     label          = new DevComponents.DotNetBar.LabelItem();
     label.Text     = "name";
     label.Width    = 100;
     label.WordWrap = false;
     image          = new DevComponents.DotNetBar.ButtonItem();
     //image.Name = "itemContainer";
     image.Image          = Properties.Resources.bkpng;
     image.FixedSize      = new System.Drawing.Size(100, 58);
     image.ImageFixedSize = new System.Drawing.Size(96, 54);
     image.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     image.Shape          = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2);
     progress             = new DevComponents.DotNetBar.ProgressBarItem();
     progress.Value       = 1000;
     progress.Text        = "已完成";
     progress.TextVisible = true;
     progress.Maximum     = 1000;
     progress.Size        = new System.Drawing.Size(100, 20);
     this.SubItems.Add(label);
     this.SubItems.Add(image);
     this.SubItems.Add(progress);
     this.FixedSize = new System.Drawing.Size(100, 100);
     this.MultiLine = true;
     //image.AutoCheckOnClick = true;
     this.image.Click       += new EventHandler(image_Click);
     this.image.DoubleClick += new EventHandler(image_DoubleClick);
 }
Пример #3
0
        void m_viewModel_TaskDeleted(DataModel.TaskInfoV3_1 obj)
        {
            if (!m_isInited)
            {
                return;
            }

            if (InvokeRequired)
            {
                this.Invoke(new Action <DataModel.TaskInfoV3_1>(m_viewModel_TaskDeleted), obj);
            }
            else
            {
                string key = m_viewModel.GetTaskTimeLineKeyValue(obj);
                DevComponents.DotNetBar.ItemContainer itemContainer
                    = itemPanel1.GetItem("itemContainer_" + key) as DevComponents.DotNetBar.ItemContainer;
                DevComponents.DotNetBar.LabelItem labelItem
                               = itemPanel1.GetItem("labelItem_" + key) as DevComponents.DotNetBar.LabelItem;
                labelItem.Text = "<b>" + m_viewModel.GetTaskTimeLineByKey(key).ToString() + "</b>";

                if (itemContainer.SubItems.Contains("buttonItemTask_" + obj.TaskId))
                {
                    var item = itemContainer.SubItems["buttonItemTask_" + obj.TaskId] as ucTaskInfo;
                    if (item != null && ShownTaskList.Contains(item))
                    {
                        ShownTaskList.Remove(item);
                    }
                    itemContainer.SubItems.Remove("buttonItemTask_" + obj.TaskId);
                    itemPanel1.Refresh();
                }
            }
        }
Пример #4
0
        private void BuildTaskList()
        {
            MyLog4Net.Container.Instance.Log.Debug("BuildTaskList");

            string firstLabelItem = "";
            var    timelinelist   = m_viewModel.GetTaskTimeLine();

            itemPanel1.Visible = false;;
            itemPanel1.Items.Clear();
            ShownTaskList.Clear();
            foreach (var item in timelinelist)
            {
                if (string.IsNullOrEmpty(firstLabelItem))
                {
                    firstLabelItem = "labelItem_" + item.Key.ToString();
                }
                ;
                AddContainerItem(item.Key, item.Value);
            }

            if (timelinelist.Count == 0)
            {
                DevComponents.DotNetBar.LabelItem labelItem = new DevComponents.DotNetBar.LabelItem();
                labelItem.Name            = "NullValueLabel";
                labelItem.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
                labelItem.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
                labelItem.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
                labelItem.PaddingBottom   = 1;
                labelItem.PaddingLeft     = 1;
                labelItem.PaddingRight    = 1;
                labelItem.PaddingTop      = 1;
                labelItem.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
                labelItem.Text            = "<b>没有任务,请通过本地导入,HTTP/FTP导入或平台导入等方式添加文件</b>";
                labelItem.TextAlignment   = StringAlignment.Center;
                labelItem.Font            = new System.Drawing.Font("微软雅黑", 20);
                itemPanel1.Items.Add(labelItem);
            }


            itemPanel1.Visible = true;;

            MyLog4Net.Container.Instance.Log.Debug("BuildTaskList ret");
            if (OpenedList.Count == 0 && !string.IsNullOrEmpty(firstLabelItem))
            {
                OpenedList.Add(firstLabelItem);
            }
            foreach (var item in OpenedList)
            {
                DevComponents.DotNetBar.LabelItem labelitem
                    = itemPanel1.GetItem(item) as DevComponents.DotNetBar.LabelItem;
                if (labelitem != null)
                {
                    OpenContent(labelitem);
                }
            }
        }
Пример #5
0
        private void LoadSubMenu(XmlNode MenuNode, DevComponents.DotNetBar.ButtonItem MenuItem, DevComponents.DotNetBar.ButtonItem RootMenu)
        {
            SortedList MenuItems = new SortedList(new MySort());

            foreach (XmlNode node in MenuNode.ChildNodes)
            {
                XmlElement xe = (XmlElement)node;
                switch (node.Name)
                {
                case "MenuItem":
                    DevComponents.DotNetBar.ButtonItem menuitem = new DevComponents.DotNetBar.ButtonItem();
                    menuitem.ImagePaddingHorizontal = 8;
                    menuitem.Text = xe.GetAttribute("Text");
                    MenuInfo menuinfo = new MenuInfo();
                    menuinfo.RootMenu   = RootMenu;
                    menuinfo.SearchText = node.SelectSingleNode("SearchText").InnerText;
                    if (node.Attributes["ClickedText"] == null)
                    {
                        menuinfo.ClickedText = menuitem.Text;
                    }
                    else
                    {
                        menuinfo.ClickedText = xe.GetAttribute("ClickedText");
                    }
                    MenuInfoTable.Add(menuitem, menuinfo);
                    menuitem.Click += new EventHandler(MenuItem_Click);
                    MenuItems.Add(int.Parse(xe.GetAttribute("Id")), menuitem);
                    break;

                case "Separator":
                    DevComponents.DotNetBar.LabelItem labelitem = new DevComponents.DotNetBar.LabelItem();
                    labelitem.BackColor       = System.Drawing.Color.Transparent;
                    labelitem.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
                    labelitem.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
                    labelitem.DividerStyle    = true;
                    labelitem.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(21)))), ((int)(((byte)(110)))));
                    labelitem.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
                    MenuItems.Add(int.Parse(xe.GetAttribute("Id")), labelitem);
                    break;

                case "SubMenuItem":
                    DevComponents.DotNetBar.ButtonItem menuitem2 = new DevComponents.DotNetBar.ButtonItem();
                    menuitem2.ImagePaddingHorizontal = 8;
                    menuitem2.Text = xe.GetAttribute("Text");
                    LoadSubMenu(node, menuitem2, RootMenu);
                    MenuItems.Add(int.Parse(xe.GetAttribute("Id")), menuitem2);
                    break;
                }
            }

            foreach (object o in MenuItems.Values)
            {
                MenuItem.SubItems.Add((DevComponents.DotNetBar.BaseItem)o);
            }
        }
Пример #6
0
        private DevComponents.DotNetBar.ItemContainer AddContainerItem(string key, TaskTimeLine item)
        {
            MyLog4Net.Container.Instance.Log.Debug("GetTaskTimeLine item:" + key);
            DevComponents.DotNetBar.LabelItem     labelItem     = new DevComponents.DotNetBar.LabelItem();
            DevComponents.DotNetBar.ItemContainer itemContainer = new DevComponents.DotNetBar.ItemContainer();
            labelItem.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
            labelItem.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
            labelItem.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
            labelItem.Name            = "labelItem_" + key;
            labelItem.PaddingBottom   = 1;
            labelItem.PaddingLeft     = 1;
            labelItem.PaddingRight    = 1;
            labelItem.PaddingTop      = 1;
            labelItem.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
            labelItem.Text            = "<b>" + item.ToString() + "</b>";
            labelItem.Symbol          = "\uf054"; //"\uf078"
            labelItem.Click          += new EventHandler(labelItem_Click);
            labelItem.Tag             = key;
            itemContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            itemContainer.MultiLine = true;
            itemContainer.Name      = "itemContainer_" + key;

            //foreach (IVX.DataModel.TaskInfoV3_1 info in item.Value.TaskList)
            //{
            //    MyLog4Net.Container.Instance.Log.Debug("item.Value.TaskList item id:" + info.TaskId);

            //    ucTaskInfo buttonItem = new ucTaskInfo();
            //    buttonItem.Name = "buttonItemTask_" + info.TaskId;
            //    buttonItem.Text = "<b>" + info.TaskName + "</b>";

            //    buttonItem.Tooltip = "<b>["+info.TaskId+"]" + info.TaskName + "</b>"+Environment.NewLine + info.StartTime.ToString("yyyy-MM-dd HH:mm:ss");
            //    //if (itemContainer.SubItems.Count<100)
            //    //itemContainer.SubItems.Add(buttonItem);
            //    //else if (itemContainer.SubItems.Count == 100)
            //    //{
            //    //    ucTaskInfo buttonItemt = new ucTaskInfo();
            //    //    buttonItemt.Name = "buttonItemTask_" + item.Key.ToString();
            //    //    buttonItemt.Text = "<b>获取更多内容...</b>";

            //    //    itemContainer.SubItems.Add(buttonItemt);
            //    //}


            //    itemContainer.SubItems.Add(buttonItem);

            //}
            itemPanel1.Items.Add(labelItem);
            itemPanel1.Items.Add(itemContainer);
            return(itemContainer);
        }
Пример #7
0
 private void labelItem_Click(object sender, EventArgs e)
 {
     DevComponents.DotNetBar.LabelItem labelitem = sender as DevComponents.DotNetBar.LabelItem;
     if (labelitem != null)
     {
         if (labelitem.Symbol == "\uf078")
         {
             CloseContent(labelitem);
         }
         else
         {
             OpenContent(labelitem);
         }
     }
 }
Пример #8
0
        private void OpenContent(DevComponents.DotNetBar.LabelItem labelitem)
        {
            string key = labelitem.Tag.ToString();

            DevComponents.DotNetBar.ItemContainer itemContainer
                = itemPanel1.GetItem("itemContainer_" + key) as DevComponents.DotNetBar.ItemContainer;
            foreach (IVX.DataModel.TaskInfoV3_1 info in m_viewModel.GetTaskTimeLineByKey(key).TaskList)
            {
                AddButtonItem(itemContainer, info);
            }
            if (!OpenedList.Contains(labelitem.Name))
            {
                OpenedList.Add(labelitem.Name);
            }
            itemPanel1.Refresh();
            labelitem.Symbol = "\uf078";
        }
Пример #9
0
        void m_viewModel_TaskAdded(DataModel.TaskInfoV3_1 obj)
        {
            if (!m_isInited)
            {
                return;
            }

            if (InvokeRequired)
            {
                this.Invoke(new Action <DataModel.TaskInfoV3_1>(m_viewModel_TaskAdded), obj);
            }
            else
            {
                string key = m_viewModel.GetTaskTimeLineKeyValue(obj);

                if (itemPanel1.GetItem("NullValueLabel") != null)
                {
                    itemPanel1.Items.Remove("NullValueLabel");
                }

                DevComponents.DotNetBar.ItemContainer itemContainer
                    = itemPanel1.GetItem("itemContainer_" + key) as DevComponents.DotNetBar.ItemContainer;
                if (itemContainer == null)
                {
                    itemContainer = AddContainerItem(key, new TaskTimeLine()
                    {
                        TaskList = new List <DataModel.TaskInfoV3_1>()
                        {
                            obj
                        }, Type = key
                    });
                }
                DevComponents.DotNetBar.LabelItem labelItem
                               = itemPanel1.GetItem("labelItem_" + key) as DevComponents.DotNetBar.LabelItem;
                labelItem.Text = "<b>" + m_viewModel.GetTaskTimeLineByKey(key).ToString() + "</b>";
                var item = AddButtonItem(itemContainer, obj);
                if (OpenedList.Contains(key))
                {
                    ShownTaskList.Add(item);
                }
                itemPanel1.Refresh();
            }
        }
Пример #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     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.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.buttonItem46 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem50 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem51 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem52 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem54 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem55 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.office2007StartButton1 = 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.buttonItem1 = 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.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem41 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem42 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem43 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem44 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem45 = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.sideBar1 = new DevComponents.DotNetBar.SideBar();
     this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem2 = new DevComponents.DotNetBar.SideBarPanelItem();
     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.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.sideBarPanelItem5 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem30 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem31 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem1 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.tabControl2 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.groupPanel5 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rez_danlz = new System.Windows.Forms.Label();
     this.rez_medic = new System.Windows.Forms.Label();
     this.rez_dn = new System.Windows.Forms.Label();
     this.rez_cnp = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.checkedListBox4 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox3 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox2 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.label11 = new System.Windows.Forms.Label();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label15 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.balloonTip1 = new DevComponents.DotNetBar.BalloonTip();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).BeginInit();
     this.tabControl2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.groupPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.groupPanel5.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AutoScroll = true;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Office2007ColorTable = DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.VistaGlass;
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem46,
     this.buttonItem48,
     this.buttonItem55,
     this.buttonItem58});
     this.ribbonControl1.Size = new System.Drawing.Size(1284, 137);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(1284, 80);
     this.ribbonPanel1.TabIndex = 1;
     this.ribbonPanel1.Click += new System.EventHandler(this.ribbonPanel1_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ribbonBar3.AutoOverflowEnabled = true;
     this.ribbonBar3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.labelItem3});
     this.ribbonBar3.Location = new System.Drawing.Point(990, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(290, 77);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar3.TabIndex = 2;
     this.ribbonBar3.Text = "Data  operarii";
     this.ribbonBar3.ItemClick += new System.EventHandler(this.ribbonBar3_ItemClick);
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.Text = "                                                 ";
     //
     // labelItem3
     //
     this.labelItem3.Image = global::MedLab2.Properties.Resources.icon_time_to_market;
     this.labelItem3.Name = "labelItem3";
     //
     // ribbonBar2
     //
     this.ribbonBar2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ribbonBar2.AutoOverflowEnabled = true;
     this.ribbonBar2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem16});
     this.ribbonBar2.Location = new System.Drawing.Point(236, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(286, 77);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar2.TabIndex = 1;
     this.ribbonBar2.Text = "Utilizator curent";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "                                                         ";
     //
     // buttonItem16
     //
     this.buttonItem16.ImagePaddingHorizontal = 8;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "Sign out";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem32,
     this.buttonItem33,
     this.buttonItem34,
     this.buttonItem35,
     this.buttonItem36});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(282, 77);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 0;
     //
     // buttonItem32
     //
     this.buttonItem32.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem32.ImagePaddingHorizontal = 8;
     this.buttonItem32.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem32.Name = "buttonItem32";
     this.buttonItem32.SubItemsExpandWidth = 14;
     this.buttonItem32.Text = "Word";
     this.buttonItem32.Click += new System.EventHandler(this.buttonItem32_Click);
     //
     // buttonItem33
     //
     this.buttonItem33.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem33.ImagePaddingHorizontal = 8;
     this.buttonItem33.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem33.Name = "buttonItem33";
     this.buttonItem33.SubItemsExpandWidth = 14;
     this.buttonItem33.Text = "Excel";
     this.buttonItem33.Click += new System.EventHandler(this.buttonItem33_Click);
     //
     // buttonItem34
     //
     this.buttonItem34.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem34.ImagePaddingHorizontal = 8;
     this.buttonItem34.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem34.Name = "buttonItem34";
     this.buttonItem34.SubItemsExpandWidth = 14;
     this.buttonItem34.Text = "Outlook";
     this.buttonItem34.Click += new System.EventHandler(this.buttonItem34_Click);
     //
     // buttonItem35
     //
     this.buttonItem35.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem35.ImagePaddingHorizontal = 8;
     this.buttonItem35.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem35.Name = "buttonItem35";
     this.buttonItem35.SubItemsExpandWidth = 14;
     this.buttonItem35.Text = "PowerPoint";
     this.buttonItem35.Click += new System.EventHandler(this.buttonItem35_Click);
     //
     // buttonItem36
     //
     this.buttonItem36.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem36.ImagePaddingHorizontal = 8;
     this.buttonItem36.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem36.Name = "buttonItem36";
     this.buttonItem36.SubItemsExpandWidth = 14;
     this.buttonItem36.Text = "Calculator";
     this.buttonItem36.Click += new System.EventHandler(this.buttonItem36_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.ImagePaddingHorizontal = 8;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "Instrumente";
     //
     // buttonItem46
     //
     this.buttonItem46.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem46.ImagePaddingHorizontal = 8;
     this.buttonItem46.Name = "buttonItem46";
     this.buttonItem46.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem46.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem46.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem47,
     this.buttonItem49,
     this.buttonItem50,
     this.buttonItem51});
     this.buttonItem46.Text = "Pacineti";
     this.buttonItem46.Click += new System.EventHandler(this.buttonItem46_Click);
     //
     // buttonItem47
     //
     this.buttonItem47.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem47.ImagePaddingHorizontal = 8;
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem47.Text = "Cautare dupa &nume";
     this.buttonItem47.Click += new System.EventHandler(this.buttonItem47_Click);
     //
     // buttonItem49
     //
     this.buttonItem49.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem49.ImagePaddingHorizontal = 8;
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem49.Text = "Cautare dupa &cnp";
     this.buttonItem49.Click += new System.EventHandler(this.buttonItem49_Click);
     //
     // buttonItem50
     //
     this.buttonItem50.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem50.ImagePaddingHorizontal = 8;
     this.buttonItem50.Name = "buttonItem50";
     this.buttonItem50.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem50.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem50.Click += new System.EventHandler(this.buttonItem50_Click);
     //
     // buttonItem51
     //
     this.buttonItem51.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem51.ImagePaddingHorizontal = 8;
     this.buttonItem51.Name = "buttonItem51";
     this.buttonItem51.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem51.Text = "&Stergere din baza de date";
     this.buttonItem51.Click += new System.EventHandler(this.buttonItem51_Click);
     //
     // buttonItem48
     //
     this.buttonItem48.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem48.ImagePaddingHorizontal = 8;
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem48.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem48.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem52,
     this.buttonItem53,
     this.buttonItem54});
     this.buttonItem48.Text = "Utilizatori";
     //
     // buttonItem52
     //
     this.buttonItem52.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem52.ImagePaddingHorizontal = 8;
     this.buttonItem52.Name = "buttonItem52";
     this.buttonItem52.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem52.Text = "&Adaugare utilizator";
     this.buttonItem52.Click += new System.EventHandler(this.buttonItem52_Click);
     //
     // buttonItem53
     //
     this.buttonItem53.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem53.ImagePaddingHorizontal = 8;
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDel);
     this.buttonItem53.Text = "Stergere utilizator";
     this.buttonItem53.Click += new System.EventHandler(this.buttonItem53_Click);
     //
     // buttonItem54
     //
     this.buttonItem54.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem54.ImagePaddingHorizontal = 8;
     this.buttonItem54.Name = "buttonItem54";
     this.buttonItem54.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem54.Text = "Schimbare parola utilizator";
     this.buttonItem54.Click += new System.EventHandler(this.buttonItem54_Click);
     //
     // buttonItem55
     //
     this.buttonItem55.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem55.ImagePaddingHorizontal = 8;
     this.buttonItem55.Name = "buttonItem55";
     this.buttonItem55.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem55.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem55.Text = "Setari";
     //
     // buttonItem58
     //
     this.buttonItem58.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem58.ImagePaddingHorizontal = 8;
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem58.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem58.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem57,
     this.buttonItem59});
     this.buttonItem58.Text = "Ajutor";
     //
     // buttonItem57
     //
     this.buttonItem57.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem57.ImagePaddingHorizontal = 8;
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem57.Text = "Suport tehnic";
     this.buttonItem57.Click += new System.EventHandler(this.buttonItem57_Click);
     //
     // buttonItem59
     //
     this.buttonItem59.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem59.ImagePaddingHorizontal = 8;
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "Despre MedLAB...";
     this.buttonItem59.Click += new System.EventHandler(this.buttonItem59_Click);
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     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.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.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.ImagePaddingHorizontal = 8;
     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.ImagePaddingHorizontal = 8;
     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.ImagePaddingHorizontal = 8;
     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.ImagePaddingHorizontal = 8;
     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.ImagePaddingHorizontal = 8;
     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.ImagePaddingHorizontal = 8;
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.SubItemsExpandWidth = 24;
     this.buttonItem7.Text = "&Close";
     //
     // galleryContainer1
     //
     //
     //
     //
     this.galleryContainer1.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     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.ImagePaddingHorizontal = 8;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem9
     //
     this.buttonItem9.ImagePaddingHorizontal = 8;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem10
     //
     this.buttonItem10.ImagePaddingHorizontal = 8;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "&3. Customer Email.rtf";
     //
     // buttonItem11
     //
     this.buttonItem11.ImagePaddingHorizontal = 8;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "&4. example.rtf";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     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.ImagePaddingHorizontal = 8;
     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.ImagePaddingHorizontal = 8;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 24;
     this.buttonItem13.Text = "E&xit";
     //
     // buttonItem1
     //
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem37,
     this.buttonItem38,
     this.buttonItem39,
     this.buttonItem40});
     this.buttonItem1.Text = "Pacienti";
     //
     // buttonItem37
     //
     this.buttonItem37.ImagePaddingHorizontal = 8;
     this.buttonItem37.Name = "buttonItem37";
     this.buttonItem37.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem37.Text = "Cautare dupa &nume";
     this.buttonItem37.Click += new System.EventHandler(this.buttonItem37_Click);
     //
     // buttonItem38
     //
     this.buttonItem38.ImagePaddingHorizontal = 8;
     this.buttonItem38.Name = "buttonItem38";
     this.buttonItem38.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 7, 2, 5);
     this.buttonItem38.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem38.Text = "Cautare dupa &cnp";
     this.buttonItem38.Click += new System.EventHandler(this.buttonItem38_Click);
     //
     // buttonItem39
     //
     this.buttonItem39.ImagePaddingHorizontal = 8;
     this.buttonItem39.Name = "buttonItem39";
     this.buttonItem39.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem39.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem39.Click += new System.EventHandler(this.buttonItem39_Click);
     //
     // buttonItem40
     //
     this.buttonItem40.ImagePaddingHorizontal = 8;
     this.buttonItem40.Name = "buttonItem40";
     this.buttonItem40.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem40.Text = "&Stergere din baza de date";
     this.buttonItem40.Click += new System.EventHandler(this.buttonItem40_Click);
     //
     // buttonItem14
     //
     this.buttonItem14.ImagePaddingHorizontal = 8;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem41,
     this.buttonItem42,
     this.buttonItem43});
     this.buttonItem14.Text = "Utilizatori";
     //
     // buttonItem41
     //
     this.buttonItem41.ImagePaddingHorizontal = 8;
     this.buttonItem41.Name = "buttonItem41";
     this.buttonItem41.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem41.Text = "&Adaugare utilizator nou";
     //
     // buttonItem42
     //
     this.buttonItem42.ImagePaddingHorizontal = 8;
     this.buttonItem42.Name = "buttonItem42";
     this.buttonItem42.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonItem42.Text = "Ste&rgere utilizator";
     //
     // buttonItem43
     //
     this.buttonItem43.ImagePaddingHorizontal = 8;
     this.buttonItem43.Name = "buttonItem43";
     this.buttonItem43.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem43.Text = "Schimbare &parola administrator";
     //
     // buttonItem15
     //
     this.buttonItem15.ImagePaddingHorizontal = 8;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "Setari";
     //
     // buttonItem17
     //
     this.buttonItem17.ImagePaddingHorizontal = 8;
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem44,
     this.buttonItem45});
     this.buttonItem17.Text = "Ajutor";
     //
     // buttonItem44
     //
     this.buttonItem44.ImagePaddingHorizontal = 8;
     this.buttonItem44.Name = "buttonItem44";
     this.buttonItem44.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 3, 2, 3);
     this.buttonItem44.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem44.Text = "Suport tehnic";
     this.buttonItem44.Click += new System.EventHandler(this.buttonItem44_Click);
     //
     // buttonItem45
     //
     this.buttonItem45.ImagePaddingHorizontal = 8;
     this.buttonItem45.Name = "buttonItem45";
     this.buttonItem45.Text = "Despre MedLab...";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // sideBar1
     //
     this.sideBar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.sideBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.sideBar1.Appearance = DevComponents.DotNetBar.eSideBarAppearance.Flat;
     this.sideBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.sideBar1.BorderStyle = DevComponents.DotNetBar.eBorderType.Etched;
     this.sideBar1.ExpandedPanel = this.sideBarPanelItem3;
     this.sideBar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.sideBar1.Location = new System.Drawing.Point(32, 139);
     this.sideBar1.Name = "sideBar1";
     this.sideBar1.Panels.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.sideBarPanelItem2,
     this.sideBarPanelItem3,
     this.sideBarPanelItem4,
     this.sideBarPanelItem5,
     this.sideBarPanelItem1});
     this.sideBar1.Size = new System.Drawing.Size(242, 523);
     this.sideBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.sideBar1.TabIndex = 2;
     this.sideBar1.Text = "sideBar1";
     //
     // sideBarPanelItem3
     //
     this.sideBarPanelItem3.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem3.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem3.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem3.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem3.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem3.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem3.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem3.Name = "sideBarPanelItem3";
     this.sideBarPanelItem3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     this.sideBarPanelItem3.Text = "Utilizator";
     //
     // buttonItem27
     //
     this.buttonItem27.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem27.FontBold = true;
     this.buttonItem27.ForeColor = System.Drawing.Color.Black;
     this.buttonItem27.Image = global::MedLab2.Properties.Resources.add_user___Copy;
     this.buttonItem27.ImagePaddingHorizontal = 8;
     this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "Adaugare utilizator nou";
     this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
     //
     // buttonItem28
     //
     this.buttonItem28.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem28.FontBold = true;
     this.buttonItem28.ForeColor = System.Drawing.Color.Black;
     this.buttonItem28.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem28.ImagePaddingHorizontal = 8;
     this.buttonItem28.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "Stergere utilizator din baza de date";
     this.buttonItem28.Click += new System.EventHandler(this.buttonItem28_Click);
     //
     // buttonItem29
     //
     this.buttonItem29.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem29.FontBold = true;
     this.buttonItem29.ForeColor = System.Drawing.Color.Black;
     this.buttonItem29.Image = global::MedLab2.Properties.Resources.edit_user_2;
     this.buttonItem29.ImagePaddingHorizontal = 8;
     this.buttonItem29.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "Schimbare parola utilizator";
     this.buttonItem29.Click += new System.EventHandler(this.buttonItem29_Click);
     //
     // sideBarPanelItem2
     //
     this.sideBarPanelItem2.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem2.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem2.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem2.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem2.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem2.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem2.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem2.Name = "sideBarPanelItem2";
     this.sideBarPanelItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25,
     this.buttonItem26});
     this.sideBarPanelItem2.Text = "Pacienti";
     this.sideBarPanelItem2.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     //
     // buttonItem23
     //
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.FontBold = true;
     this.buttonItem23.ForeColor = System.Drawing.Color.Black;
     this.buttonItem23.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem23.ImagePaddingHorizontal = 8;
     this.buttonItem23.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "Cautare dupa nume";
     this.buttonItem23.Click += new System.EventHandler(this.buttonItem23_Click);
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem24.FontBold = true;
     this.buttonItem24.ForeColor = System.Drawing.Color.Black;
     this.buttonItem24.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem24.ImagePaddingHorizontal = 8;
     this.buttonItem24.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem24.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem24.ImageSmall")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "Cautare dupa cnp";
     this.buttonItem24.Click += new System.EventHandler(this.buttonItem24_Click);
     //
     // buttonItem25
     //
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem25.FontBold = true;
     this.buttonItem25.ForeColor = System.Drawing.Color.Black;
     this.buttonItem25.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem25.ImagePaddingHorizontal = 8;
     this.buttonItem25.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "Cautare dupa cod inregistrare";
     this.buttonItem25.Click += new System.EventHandler(this.buttonItem25_Click);
     //
     // buttonItem26
     //
     this.buttonItem26.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem26.FontBold = true;
     this.buttonItem26.ForeColor = System.Drawing.Color.Black;
     this.buttonItem26.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem26.ImagePaddingHorizontal = 8;
     this.buttonItem26.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "Stergere din baza de date";
     this.buttonItem26.Click += new System.EventHandler(this.buttonItem26_Click);
     //
     // sideBarPanelItem4
     //
     this.sideBarPanelItem4.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem4.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem4.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem4.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem4.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem4.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem4.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem4.Name = "sideBarPanelItem4";
     this.sideBarPanelItem4.Text = "Setari";
     //
     // sideBarPanelItem5
     //
     this.sideBarPanelItem5.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem5.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem5.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem5.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem5.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem5.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem5.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem5.Name = "sideBarPanelItem5";
     this.sideBarPanelItem5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem30,
     this.buttonItem31});
     this.sideBarPanelItem5.Text = "Ajutor";
     //
     // buttonItem30
     //
     this.buttonItem30.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem30.FontBold = true;
     this.buttonItem30.ForeColor = System.Drawing.Color.Black;
     this.buttonItem30.Image = global::MedLab2.Properties.Resources.HelpIcon_2;
     this.buttonItem30.ImagePaddingHorizontal = 8;
     this.buttonItem30.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem30.Name = "buttonItem30";
     this.buttonItem30.Text = "Suport tehnic";
     this.buttonItem30.Click += new System.EventHandler(this.buttonItem30_Click);
     //
     // buttonItem31
     //
     this.buttonItem31.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem31.FontBold = true;
     this.buttonItem31.ForeColor = System.Drawing.Color.Black;
     this.buttonItem31.Image = global::MedLab2.Properties.Resources.ReflectionImage2;
     this.buttonItem31.ImagePaddingHorizontal = 8;
     this.buttonItem31.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem31.Name = "buttonItem31";
     this.buttonItem31.Text = "Despre MedLAB...";
     this.buttonItem31.Click += new System.EventHandler(this.buttonItem31_Click);
     //
     // sideBarPanelItem1
     //
     this.sideBarPanelItem1.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem1.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem1.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem1.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem1.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem1.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem1.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem1.Name = "sideBarPanelItem1";
     this.sideBarPanelItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem18,
     this.buttonItem19,
     this.buttonItem20,
     this.buttonItem21,
     this.buttonItem22});
     this.sideBarPanelItem1.Text = "Instrumente";
     //
     // buttonItem18
     //
     this.buttonItem18.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem18.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem18.FontBold = true;
     this.buttonItem18.ForeColor = System.Drawing.Color.Black;
     this.buttonItem18.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem18.ImagePaddingHorizontal = 8;
     this.buttonItem18.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "Word";
     this.buttonItem18.Click += new System.EventHandler(this.buttonItem18_Click);
     //
     // buttonItem19
     //
     this.buttonItem19.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem19.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem19.FontBold = true;
     this.buttonItem19.ForeColor = System.Drawing.Color.Black;
     this.buttonItem19.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem19.ImagePaddingHorizontal = 8;
     this.buttonItem19.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "Excel";
     this.buttonItem19.Click += new System.EventHandler(this.buttonItem19_Click);
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem20.FontBold = true;
     this.buttonItem20.ForeColor = System.Drawing.Color.Black;
     this.buttonItem20.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem20.ImagePaddingHorizontal = 8;
     this.buttonItem20.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "Outlook";
     this.buttonItem20.Click += new System.EventHandler(this.buttonItem20_Click);
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem21.FontBold = true;
     this.buttonItem21.ForeColor = System.Drawing.Color.Black;
     this.buttonItem21.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem21.ImagePaddingHorizontal = 8;
     this.buttonItem21.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "PowerPoint";
     this.buttonItem21.Click += new System.EventHandler(this.buttonItem21_Click);
     //
     // buttonItem22
     //
     this.buttonItem22.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem22.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem22.FontBold = true;
     this.buttonItem22.ForeColor = System.Drawing.Color.Black;
     this.buttonItem22.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem22.ImagePaddingHorizontal = 8;
     this.buttonItem22.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "Calculator";
     this.buttonItem22.Click += new System.EventHandler(this.buttonItem22_Click);
     //
     // tabControl2
     //
     this.tabControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl2.BackColor = System.Drawing.Color.Transparent;
     this.tabControl2.CanReorderTabs = true;
     this.tabControl2.Controls.Add(this.tabControlPanel1);
     this.tabControl2.Controls.Add(this.tabControlPanel2);
     this.tabControl2.Controls.Add(this.tabControlPanel3);
     this.tabControl2.Location = new System.Drawing.Point(303, 139);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControl2.SelectedTabIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(592, 601);
     this.tabControl2.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl2.TabIndex = 4;
     this.tabControl2.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineWithNavigationBox;
     this.tabControl2.Tabs.Add(this.tabItem2);
     this.tabControl2.Tabs.Add(this.tabItem1);
     this.tabControl2.Tabs.Add(this.tabItem3);
     this.tabControl2.TabScrollAutoRepeat = true;
     this.tabControl2.TabStripTabStop = true;
     this.tabControl2.Text = "tabControl2";
     this.tabControl2.Click += new System.EventHandler(this.tabControl2_Click);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.groupPanel6);
     this.tabControlPanel1.Controls.Add(this.groupPanel5);
     this.tabControlPanel1.Controls.Add(this.groupPanel4);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 2;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // groupPanel6
     //
     this.groupPanel6.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.buttonX5);
     this.groupPanel6.Controls.Add(this.buttonX3);
     this.groupPanel6.Controls.Add(this.buttonX2);
     this.groupPanel6.Controls.Add(this.dataGridViewX1);
     this.groupPanel6.DrawTitleBox = false;
     this.groupPanel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel6.Location = new System.Drawing.Point(21, 212);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(645, 469);
     //
     //
     //
     this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel6.Style.BackColorGradientAngle = 90;
     this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderBottomWidth = 1;
     this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderLeftWidth = 1;
     this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderRightWidth = 1;
     this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderTopWidth = 1;
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel6.TabIndex = 12;
     this.groupPanel6.Text = "Introducere rezultate analize";
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX5.Location = new System.Drawing.Point(26, 289);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(137, 56);
     this.buttonX5.TabIndex = 6;
     this.buttonX5.Text = "Adauga in baza de date";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX3.Location = new System.Drawing.Point(343, 289);
     this.buttonX3.Name = "buttonX3";
     this.buttonX3.Size = new System.Drawing.Size(137, 56);
     this.buttonX3.TabIndex = 5;
     this.buttonX3.Text = "E-mail";
     this.buttonX3.Click += new System.EventHandler(this.buttonX3_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX2.Location = new System.Drawing.Point(182, 290);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(137, 56);
     this.buttonX2.TabIndex = 4;
     this.buttonX2.Text = "Printare";
     this.buttonX2.Click += new System.EventHandler(this.buttonX2_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AllowUserToOrderColumns = true;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(3, 12);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.Size = new System.Drawing.Size(562, 260);
     this.dataGridViewX1.TabIndex = 2;
     //
     // groupPanel5
     //
     this.groupPanel5.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel5.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel5.Controls.Add(this.rez_danlz);
     this.groupPanel5.Controls.Add(this.rez_medic);
     this.groupPanel5.Controls.Add(this.rez_dn);
     this.groupPanel5.Controls.Add(this.rez_cnp);
     this.groupPanel5.Controls.Add(this.label21);
     this.groupPanel5.Controls.Add(this.label20);
     this.groupPanel5.Controls.Add(this.label19);
     this.groupPanel5.Controls.Add(this.label18);
     this.groupPanel5.Controls.Add(this.label17);
     this.groupPanel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel5.Location = new System.Drawing.Point(21, 83);
     this.groupPanel5.Name = "groupPanel5";
     this.groupPanel5.Size = new System.Drawing.Size(624, 125);
     //
     //
     //
     this.groupPanel5.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel5.Style.BackColorGradientAngle = 90;
     this.groupPanel5.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel5.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderBottomWidth = 1;
     this.groupPanel5.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel5.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderLeftWidth = 1;
     this.groupPanel5.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderRightWidth = 1;
     this.groupPanel5.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderTopWidth = 1;
     this.groupPanel5.Style.CornerDiameter = 4;
     this.groupPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel5.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel5.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel5.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel5.TabIndex = 1;
     this.groupPanel5.Text = "Rezultatele cautarii";
     this.groupPanel5.Click += new System.EventHandler(this.groupPanel5_Click);
     //
     // rez_danlz
     //
     this.rez_danlz.AutoSize = true;
     this.rez_danlz.BackColor = System.Drawing.Color.Transparent;
     this.rez_danlz.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_danlz.Location = new System.Drawing.Point(270, 78);
     this.rez_danlz.Name = "rez_danlz";
     this.rez_danlz.Size = new System.Drawing.Size(0, 16);
     this.rez_danlz.TabIndex = 26;
     //
     // rez_medic
     //
     this.rez_medic.AutoSize = true;
     this.rez_medic.BackColor = System.Drawing.Color.Transparent;
     this.rez_medic.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_medic.Location = new System.Drawing.Point(270, 53);
     this.rez_medic.Name = "rez_medic";
     this.rez_medic.Size = new System.Drawing.Size(0, 16);
     this.rez_medic.TabIndex = 25;
     //
     // rez_dn
     //
     this.rez_dn.AutoSize = true;
     this.rez_dn.BackColor = System.Drawing.Color.Transparent;
     this.rez_dn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_dn.Location = new System.Drawing.Point(270, 27);
     this.rez_dn.Name = "rez_dn";
     this.rez_dn.Size = new System.Drawing.Size(0, 16);
     this.rez_dn.TabIndex = 24;
     //
     // rez_cnp
     //
     this.rez_cnp.AutoSize = true;
     this.rez_cnp.BackColor = System.Drawing.Color.Transparent;
     this.rez_cnp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_cnp.Location = new System.Drawing.Point(270, 0);
     this.rez_cnp.Name = "rez_cnp";
     this.rez_cnp.Size = new System.Drawing.Size(0, 16);
     this.rez_cnp.TabIndex = 23;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(23, 78);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(181, 16);
     this.label21.TabIndex = 22;
     this.label21.Text = "Data efectuarii analizelor";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(23, 53);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(94, 16);
     this.label20.TabIndex = 21;
     this.label20.Text = "Nume medic";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(23, 27);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(96, 16);
     this.label19.TabIndex = 20;
     this.label19.Text = "Data nasterii";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(23, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(39, 16);
     this.label18.TabIndex = 19;
     this.label18.Text = "CNP";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(178, -21);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(48, 16);
     this.label17.TabIndex = 18;
     this.label17.Text = "Nume";
     //
     // groupPanel4
     //
     this.groupPanel4.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.buttonX4);
     this.groupPanel4.Controls.Add(this.label1);
     this.groupPanel4.Controls.Add(this.textBox6);
     this.groupPanel4.Location = new System.Drawing.Point(21, 15);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(624, 62);
     //
     //
     //
     this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 1;
     this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 1;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 1;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 1;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 0;
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX4.Location = new System.Drawing.Point(443, 3);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(112, 37);
     this.buttonX4.TabIndex = 6;
     this.buttonX4.Text = "Ok";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(23, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(117, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "Cautare pacient";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(197, 17);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(206, 20);
     this.textBox6.TabIndex = 2;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "Introducere rezultate analize";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.AutoScroll = true;
     this.tabControlPanel2.Controls.Add(this.groupPanel3);
     this.tabControlPanel2.Controls.Add(this.groupPanel2);
     this.tabControlPanel2.Controls.Add(this.groupPanel1);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItem2;
     this.tabControlPanel2.Click += new System.EventHandler(this.tabControlPanel2_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.buttonX6);
     this.groupPanel3.Controls.Add(this.textBox12);
     this.groupPanel3.Controls.Add(this.label28);
     this.groupPanel3.Controls.Add(this.label16);
     this.groupPanel3.Controls.Add(this.textBox11);
     this.groupPanel3.Controls.Add(this.label14);
     this.groupPanel3.Controls.Add(this.label13);
     this.groupPanel3.Controls.Add(this.label12);
     this.groupPanel3.Controls.Add(this.checkedListBox4);
     this.groupPanel3.Controls.Add(this.checkedListBox3);
     this.groupPanel3.Controls.Add(this.checkedListBox2);
     this.groupPanel3.Controls.Add(this.checkedListBox1);
     this.groupPanel3.Controls.Add(this.label11);
     this.groupPanel3.DrawTitleBox = false;
     this.groupPanel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel3.IsShadowEnabled = true;
     this.groupPanel3.Location = new System.Drawing.Point(15, 346);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(616, 336);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 24;
     this.groupPanel3.Text = "Analize Solicitate";
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.BackColor = System.Drawing.Color.Maroon;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX6.Location = new System.Drawing.Point(325, 248);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(137, 56);
     this.buttonX6.TabIndex = 25;
     this.buttonX6.Text = "Adauga in baza de date";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // textBox12
     //
     this.textBox12.BackColor = System.Drawing.Color.White;
     this.textBox12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox12.Location = new System.Drawing.Point(150, 248);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(137, 22);
     this.textBox12.TabIndex = 23;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(18, 251);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(85, 16);
     this.label28.TabIndex = 15;
     this.label28.Text = "Cod cerere";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(19, 282);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(73, 16);
     this.label16.TabIndex = 22;
     this.label16.Text = "Cost total";
     //
     // textBox11
     //
     this.textBox11.BackColor = System.Drawing.Color.White;
     this.textBox11.Enabled = false;
     this.textBox11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox11.Location = new System.Drawing.Point(150, 276);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(137, 22);
     this.textBox11.TabIndex = 21;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(322, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(203, 16);
     this.label14.TabIndex = 20;
     this.label14.Text = "Markeri endocrini si tumorali";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(19, 124);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(170, 16);
     this.label13.TabIndex = 19;
     this.label13.Text = "Imunologie si serologie";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(322, 7);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(76, 16);
     this.label12.TabIndex = 18;
     this.label12.Text = "Biochimie";
     //
     // checkedListBox4
     //
     this.checkedListBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox4.FormattingEnabled = true;
     this.checkedListBox4.Location = new System.Drawing.Point(325, 143);
     this.checkedListBox4.Name = "checkedListBox4";
     this.checkedListBox4.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox4.TabIndex = 17;
     //
     // checkedListBox3
     //
     this.checkedListBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox3.FormattingEnabled = true;
     this.checkedListBox3.Location = new System.Drawing.Point(20, 143);
     this.checkedListBox3.Name = "checkedListBox3";
     this.checkedListBox3.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox3.TabIndex = 16;
     //
     // checkedListBox2
     //
     this.checkedListBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox2.FormattingEnabled = true;
     this.checkedListBox2.Location = new System.Drawing.Point(325, 21);
     this.checkedListBox2.Name = "checkedListBox2";
     this.checkedListBox2.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox2.TabIndex = 14;
     //
     // checkedListBox1
     //
     this.checkedListBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(20, 21);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox1.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(19, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(97, 16);
     this.label11.TabIndex = 12;
     this.label11.Text = "Hematologie";
     //
     // groupPanel2
     //
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.textBox9);
     this.groupPanel2.Controls.Add(this.textBox10);
     this.groupPanel2.Controls.Add(this.textBox8);
     this.groupPanel2.Controls.Add(this.label10);
     this.groupPanel2.Controls.Add(this.label9);
     this.groupPanel2.Controls.Add(this.label7);
     this.groupPanel2.DrawTitleBox = false;
     this.groupPanel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel2.IsShadowEnabled = true;
     this.groupPanel2.Location = new System.Drawing.Point(15, 228);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(616, 116);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 23;
     this.groupPanel2.Text = "Date medic";
     //
     // textBox9
     //
     this.textBox9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox9.Location = new System.Drawing.Point(244, 32);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(303, 20);
     this.textBox9.TabIndex = 26;
     //
     // textBox10
     //
     this.textBox10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox10.Location = new System.Drawing.Point(244, 58);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(303, 20);
     this.textBox10.TabIndex = 24;
     //
     // textBox8
     //
     this.textBox8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(244, 6);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(303, 20);
     this.textBox8.TabIndex = 25;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(38, 58);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(61, 16);
     this.label10.TabIndex = 23;
     this.label10.Text = "Telefon";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(39, 32);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(48, 16);
     this.label9.TabIndex = 22;
     this.label9.Text = "Spital";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(39, 6);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(48, 16);
     this.label7.TabIndex = 21;
     this.label7.Text = "Nume";
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.textBox1);
     this.groupPanel1.Controls.Add(this.dateTimePicker1);
     this.groupPanel1.Controls.Add(this.label15);
     this.groupPanel1.Controls.Add(this.textBox7);
     this.groupPanel1.Controls.Add(this.label8);
     this.groupPanel1.Controls.Add(this.textBox4);
     this.groupPanel1.Controls.Add(this.textBox5);
     this.groupPanel1.Controls.Add(this.label2);
     this.groupPanel1.Controls.Add(this.label3);
     this.groupPanel1.Controls.Add(this.textBox3);
     this.groupPanel1.Controls.Add(this.label4);
     this.groupPanel1.Controls.Add(this.textBox2);
     this.groupPanel1.Controls.Add(this.label6);
     this.groupPanel1.Controls.Add(this.label5);
     this.groupPanel1.DrawTitleBox = false;
     this.groupPanel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel1.IsShadowEnabled = true;
     this.groupPanel1.Location = new System.Drawing.Point(15, -2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(616, 220);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.superTooltip1.SetSuperTooltip(this.groupPanel1, new DevComponents.DotNetBar.SuperTooltipInfo("MedLAB Help", "", "", global::MedLab2.Properties.Resources.ReflectionImage, global::MedLab2.Properties.Resources.ReflectionImage2, DevComponents.DotNetBar.eTooltipColor.System));
     this.groupPanel1.TabIndex = 22;
     this.groupPanel1.Text = "Date pacient";
     //
     // textBox1
     //
     this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(244, 2);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(303, 20);
     this.textBox1.TabIndex = 21;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Location = new System.Drawing.Point(244, 33);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(303, 20);
     this.dateTimePicker1.TabIndex = 34;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(45, 137);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(52, 16);
     this.label15.TabIndex = 33;
     this.label15.Text = "E-mail";
     //
     // textBox7
     //
     this.textBox7.BackColor = System.Drawing.Color.White;
     this.textBox7.Enabled = false;
     this.textBox7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox7.Location = new System.Drawing.Point(244, 163);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(303, 20);
     this.textBox7.TabIndex = 32;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(39, 111);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 16);
     this.label8.TabIndex = 30;
     this.label8.Text = "Telefon";
     //
     // textBox4
     //
     this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox4.Location = new System.Drawing.Point(244, 111);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(303, 20);
     this.textBox4.TabIndex = 29;
     //
     // textBox5
     //
     this.textBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox5.Location = new System.Drawing.Point(244, 137);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(303, 20);
     this.textBox5.TabIndex = 31;
     this.textBox5.Text = "*****@*****.**";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(39, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 22;
     this.label2.Text = "Nume";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(37, 33);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 16);
     this.label3.TabIndex = 23;
     this.label3.Text = "Data nasterii";
     //
     // textBox3
     //
     this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location = new System.Drawing.Point(244, 85);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(303, 20);
     this.textBox3.TabIndex = 28;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(39, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(39, 16);
     this.label4.TabIndex = 24;
     this.label4.Text = "CNP";
     //
     // textBox2
     //
     this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(244, 59);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(303, 20);
     this.textBox2.TabIndex = 25;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(37, 163);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(181, 16);
     this.label6.TabIndex = 27;
     this.label6.Text = "Data efectuarii analizelor";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(39, 85);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 16);
     this.label5.TabIndex = 26;
     this.label5.Text = "Adresa";
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "Introducere date pacient";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     this.tabControlPanel3.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel3;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "Statistica";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX1.Location = new System.Drawing.Point(3, 372);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(137, 56);
     this.buttonX1.TabIndex = 3;
     this.buttonX1.Text = "Adauga in baza de date";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // reflectionImage2
     //
     this.reflectionImage2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     //
     //
     //
     this.reflectionImage2.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image = global::MedLab2.Properties.Resources.ReflectionImage;
     this.reflectionImage2.Location = new System.Drawing.Point(32, 668);
     this.reflectionImage2.Name = "reflectionImage2";
     this.reflectionImage2.Size = new System.Drawing.Size(77, 75);
     this.reflectionImage2.TabIndex = 6;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.reflectionLabel1.Location = new System.Drawing.Point(115, 662);
     this.reflectionLabel1.Name = "reflectionLabel1";
     this.reflectionLabel1.Size = new System.Drawing.Size(147, 81);
     this.reflectionLabel1.TabIndex = 7;
     this.reflectionLabel1.Text = "<b><font size=\"+14\"><i>Med</i><font color=\"#B02B2C\">LAB</font></font></b>";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMargin = new System.Drawing.Size(5, 5);
     this.AutoScrollMinSize = new System.Drawing.Size(5, 5);
     this.ClientSize = new System.Drawing.Size(1284, 750);
     this.Controls.Add(this.reflectionImage2);
     this.Controls.Add(this.reflectionLabel1);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.sideBar1);
     this.Controls.Add(this.ribbonControl1);
     this.DoubleBuffered = true;
     this.HelpButton = true;
     this.Name = "MainForm";
     this.Text = "MedLAB";
     this.Activated += new System.EventHandler(this.MainForm_Activated);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.Click += new System.EventHandler(this.MainForm_Click);
     this.Enter += new System.EventHandler(this.MainForm_Enter);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).EndInit();
     this.tabControl2.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.groupPanel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.groupPanel5.ResumeLayout(false);
     this.groupPanel5.PerformLayout();
     this.groupPanel4.ResumeLayout(false);
     this.groupPanel4.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormularioSeleccionDestinatarios));
     this.dataGridViewContactos = new System.Windows.Forms.DataGridView();
     this.icon = new System.Windows.Forms.DataGridViewImageColumn();
     this.nombreContactoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cargoContactoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.correoElectrónicoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.carnetEmpresaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombreEmpresaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.contactoEmpresaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.empresaDataSet = new Sistema_De_Administracion_De_Servicios.EmpresaDataSet();
     this.txtCco = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtCc = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtPara = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnAceptar = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnPara = new System.Windows.Forms.CheckBox();
     this.btnCc = new System.Windows.Forms.CheckBox();
     this.btnCco = new System.Windows.Forms.CheckBox();
     this.btnAgregar = new System.Windows.Forms.Button();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.controlContainerItem2 = new DevComponents.DotNetBar.ControlContainerItem();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.optPrincipal = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente1 = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente2 = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente3 = new DevComponents.DotNetBar.ButtonItem();
     this.btnFiltrar = new DevComponents.DotNetBar.ButtonItem();
     this.controlContainerItem7 = new DevComponents.DotNetBar.ControlContainerItem();
     this.controlContainerItem3 = new DevComponents.DotNetBar.ControlContainerItem();
     this.contactoEmpresaTableAdapter = new Sistema_De_Administracion_De_Servicios.EmpresaDataSetTableAdapters.ContactoEmpresaTableAdapter();
     this.ico = new System.Windows.Forms.DataGridViewImageColumn();
     this.nombreContactoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cargoContactoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.correoElectrónicoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContactos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactoEmpresaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.empresaDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewContactos
     //
     this.dataGridViewContactos.AllowUserToAddRows = false;
     this.dataGridViewContactos.AllowUserToDeleteRows = false;
     this.dataGridViewContactos.AllowUserToResizeRows = false;
     this.dataGridViewContactos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridViewContactos.AutoGenerateColumns = false;
     this.dataGridViewContactos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewContactos.BackgroundColor = System.Drawing.Color.White;
     this.dataGridViewContactos.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridViewContactos.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dataGridViewContactos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dataGridViewContactos.ColumnHeadersHeight = 20;
     this.dataGridViewContactos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataGridViewContactos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.icon,
     this.nombreContactoDataGridViewTextBoxColumn,
     this.cargoContactoDataGridViewTextBoxColumn,
     this.correoElectrónicoDataGridViewTextBoxColumn,
     this.carnetEmpresaDataGridViewTextBoxColumn,
     this.nombreEmpresaDataGridViewTextBoxColumn});
     this.dataGridViewContactos.DataSource = this.contactoEmpresaBindingSource;
     this.dataGridViewContactos.EnableHeadersVisualStyles = false;
     this.dataGridViewContactos.GridColor = System.Drawing.Color.White;
     this.dataGridViewContactos.Location = new System.Drawing.Point(12, 67);
     this.dataGridViewContactos.Name = "dataGridViewContactos";
     this.dataGridViewContactos.ReadOnly = true;
     this.dataGridViewContactos.RowHeadersVisible = false;
     this.dataGridViewContactos.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dataGridViewContactos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewContactos.Size = new System.Drawing.Size(604, 137);
     this.dataGridViewContactos.TabIndex = 1;
     this.dataGridViewContactos.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewContactos_CellDoubleClick);
     this.dataGridViewContactos.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewContactos_CellFormatting);
     //
     // icon
     //
     this.icon.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.icon.HeaderText = "";
     this.icon.Image = ((System.Drawing.Image)(resources.GetObject("icon.Image")));
     this.icon.Name = "icon";
     this.icon.ReadOnly = true;
     this.icon.Width = 20;
     //
     // nombreContactoDataGridViewTextBoxColumn
     //
     this.nombreContactoDataGridViewTextBoxColumn.DataPropertyName = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn.HeaderText = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn.Name = "nombreContactoDataGridViewTextBoxColumn";
     this.nombreContactoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // cargoContactoDataGridViewTextBoxColumn
     //
     this.cargoContactoDataGridViewTextBoxColumn.DataPropertyName = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn.HeaderText = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn.Name = "cargoContactoDataGridViewTextBoxColumn";
     this.cargoContactoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // correoElectrónicoDataGridViewTextBoxColumn
     //
     this.correoElectrónicoDataGridViewTextBoxColumn.DataPropertyName = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn.HeaderText = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn.Name = "correoElectrónicoDataGridViewTextBoxColumn";
     this.correoElectrónicoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // carnetEmpresaDataGridViewTextBoxColumn
     //
     this.carnetEmpresaDataGridViewTextBoxColumn.DataPropertyName = "Carnet Empresa";
     this.carnetEmpresaDataGridViewTextBoxColumn.HeaderText = "Carnet Empresa";
     this.carnetEmpresaDataGridViewTextBoxColumn.Name = "carnetEmpresaDataGridViewTextBoxColumn";
     this.carnetEmpresaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // nombreEmpresaDataGridViewTextBoxColumn
     //
     this.nombreEmpresaDataGridViewTextBoxColumn.DataPropertyName = "Nombre Empresa";
     this.nombreEmpresaDataGridViewTextBoxColumn.HeaderText = "Nombre Empresa";
     this.nombreEmpresaDataGridViewTextBoxColumn.Name = "nombreEmpresaDataGridViewTextBoxColumn";
     this.nombreEmpresaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // contactoEmpresaBindingSource
     //
     this.contactoEmpresaBindingSource.DataMember = "ContactoEmpresa";
     this.contactoEmpresaBindingSource.DataSource = this.empresaDataSet;
     //
     // empresaDataSet
     //
     this.empresaDataSet.DataSetName = "EmpresaDataSet";
     this.empresaDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtCco
     //
     this.txtCco.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCco.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCco.Border.Class = "TextBoxBorder";
     this.txtCco.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCco.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCco.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtCco.Location = new System.Drawing.Point(78, 348);
     this.txtCco.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtCco.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtCco.Multiline = true;
     this.txtCco.Name = "txtCco";
     this.txtCco.Size = new System.Drawing.Size(537, 40);
     this.txtCco.TabIndex = 13;
     //
     // txtCc
     //
     this.txtCc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCc.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCc.Border.Class = "TextBoxBorder";
     this.txtCc.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCc.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtCc.Location = new System.Drawing.Point(79, 302);
     this.txtCc.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtCc.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtCc.Multiline = true;
     this.txtCc.Name = "txtCc";
     this.txtCc.Size = new System.Drawing.Size(537, 40);
     this.txtCc.TabIndex = 12;
     //
     // txtPara
     //
     this.txtPara.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPara.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtPara.Border.Class = "TextBoxBorder";
     this.txtPara.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPara.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPara.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtPara.Location = new System.Drawing.Point(79, 256);
     this.txtPara.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtPara.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtPara.Multiline = true;
     this.txtPara.Name = "txtPara";
     this.txtPara.PreventEnterBeep = true;
     this.txtPara.Size = new System.Drawing.Size(537, 40);
     this.txtPara.TabIndex = 11;
     //
     // btnAceptar
     //
     this.btnAceptar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAceptar.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnAceptar.Location = new System.Drawing.Point(460, 403);
     this.btnAceptar.Name = "btnAceptar";
     this.btnAceptar.Size = new System.Drawing.Size(75, 23);
     this.btnAceptar.TabIndex = 17;
     this.btnAceptar.Text = "Aceptar";
     this.btnAceptar.UseVisualStyleBackColor = true;
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancelar.Location = new System.Drawing.Point(541, 403);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 18;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnPara
     //
     this.btnPara.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPara.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnPara.Location = new System.Drawing.Point(13, 256);
     this.btnPara.Name = "btnPara";
     this.btnPara.Size = new System.Drawing.Size(60, 40);
     this.btnPara.TabIndex = 25;
     this.btnPara.Text = "Para";
     this.btnPara.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnPara.UseVisualStyleBackColor = true;
     //
     // btnCc
     //
     this.btnCc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCc.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnCc.Location = new System.Drawing.Point(13, 302);
     this.btnCc.Name = "btnCc";
     this.btnCc.Size = new System.Drawing.Size(60, 40);
     this.btnCc.TabIndex = 26;
     this.btnCc.Text = "Cc";
     this.btnCc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCc.UseVisualStyleBackColor = true;
     //
     // btnCco
     //
     this.btnCco.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCco.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnCco.Location = new System.Drawing.Point(12, 349);
     this.btnCco.Name = "btnCco";
     this.btnCco.Size = new System.Drawing.Size(60, 40);
     this.btnCco.TabIndex = 27;
     this.btnCco.Text = "Cco";
     this.btnCco.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCco.UseVisualStyleBackColor = true;
     //
     // btnAgregar
     //
     this.btnAgregar.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnAgregar.Location = new System.Drawing.Point(185, 210);
     this.btnAgregar.Name = "btnAgregar";
     this.btnAgregar.Size = new System.Drawing.Size(259, 40);
     this.btnAgregar.TabIndex = 31;
     this.btnAgregar.Text = "Agregar";
     this.btnAgregar.UseVisualStyleBackColor = true;
     this.btnAgregar.Click += new System.EventHandler(this.btnAgregar_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1});
     this.ribbonBar1.Location = new System.Drawing.Point(65, 84);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(75, 78);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItemsExpandWidth = 14;
     this.buttonItem1.Text = "buttonItem1";
     //
     // sliderItem1
     //
     this.sliderItem1.Name = "sliderItem1";
     this.sliderItem1.Text = "sliderItem1";
     this.sliderItem1.Value = 0;
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.controlContainerItem1});
     this.ribbonBar2.Location = new System.Drawing.Point(39, 79);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(136, 96);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 33;
     this.ribbonBar2.Text = "ribbonBar2";
     //
     //
     //
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.find48;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 14;
     this.buttonItem2.Text = "buttonItem2";
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = true;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem2});
     this.ribbonBar3.Location = new System.Drawing.Point(78, 32);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(75, 23);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 33;
     this.ribbonBar3.Text = "ribbonBar3";
     //
     //
     //
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // controlContainerItem2
     //
     this.controlContainerItem2.AllowItemResize = true;
     this.controlContainerItem2.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem2.Name = "controlContainerItem2";
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "bar1 (bar1)";
     this.bar1.AccessibleName = "bar1";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.AntiAlias = true;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.optPrincipal,
     this.optSuplente1,
     this.optSuplente2,
     this.optSuplente3,
     this.btnFiltrar});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(628, 41);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 32;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingLeft = 20;
     this.labelItem2.PaddingRight = 20;
     this.labelItem2.Text = "Mostrar Contactos";
     //
     // optPrincipal
     //
     this.optPrincipal.AutoCheckOnClick = true;
     this.optPrincipal.Image = ((System.Drawing.Image)(resources.GetObject("optPrincipal.Image")));
     this.optPrincipal.Name = "optPrincipal";
     this.optPrincipal.OptionGroup = "groupContactos";
     this.optPrincipal.Tooltip = "Contacto Principal";
     this.optPrincipal.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente1
     //
     this.optSuplente1.AutoCheckOnClick = true;
     this.optSuplente1.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente1.Image")));
     this.optSuplente1.Name = "optSuplente1";
     this.optSuplente1.OptionGroup = "groupContactos";
     this.optSuplente1.Tooltip = "Suplente 1";
     this.optSuplente1.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente2
     //
     this.optSuplente2.AutoCheckOnClick = true;
     this.optSuplente2.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente2.Image")));
     this.optSuplente2.Name = "optSuplente2";
     this.optSuplente2.OptionGroup = "groupContactos";
     this.optSuplente2.Tooltip = "Suplente 2";
     this.optSuplente2.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente3
     //
     this.optSuplente3.AutoCheckOnClick = true;
     this.optSuplente3.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente3.Image")));
     this.optSuplente3.Name = "optSuplente3";
     this.optSuplente3.OptionGroup = "groupContactos";
     this.optSuplente3.Tooltip = "Suplente 3";
     this.optSuplente3.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // btnFiltrar
     //
     this.btnFiltrar.BeginGroup = true;
     this.btnFiltrar.Image = ((System.Drawing.Image)(resources.GetObject("btnFiltrar.Image")));
     this.btnFiltrar.Name = "btnFiltrar";
     this.btnFiltrar.Tooltip = "Filtrar";
     this.btnFiltrar.Click += new System.EventHandler(this.btnFiltrar_Click);
     //
     // controlContainerItem7
     //
     this.controlContainerItem7.AllowItemResize = false;
     this.controlContainerItem7.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem7.Name = "controlContainerItem7";
     //
     // controlContainerItem3
     //
     this.controlContainerItem3.AllowItemResize = false;
     this.controlContainerItem3.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem3.Name = "controlContainerItem3";
     //
     // contactoEmpresaTableAdapter
     //
     this.contactoEmpresaTableAdapter.ClearBeforeFill = true;
     //
     // ico
     //
     this.ico.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.ico.FillWeight = 60.9137F;
     this.ico.HeaderText = "";
     this.ico.Image = ((System.Drawing.Image)(resources.GetObject("ico.Image")));
     this.ico.MinimumWidth = 20;
     this.ico.Name = "ico";
     this.ico.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.ico.Width = 20;
     //
     // nombreContactoDataGridViewTextBoxColumn1
     //
     this.nombreContactoDataGridViewTextBoxColumn1.DataPropertyName = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.nombreContactoDataGridViewTextBoxColumn1.HeaderText = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn1.Name = "nombreContactoDataGridViewTextBoxColumn1";
     this.nombreContactoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.nombreContactoDataGridViewTextBoxColumn1.Width = 116;
     //
     // cargoContactoDataGridViewTextBoxColumn1
     //
     this.cargoContactoDataGridViewTextBoxColumn1.DataPropertyName = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.cargoContactoDataGridViewTextBoxColumn1.HeaderText = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn1.Name = "cargoContactoDataGridViewTextBoxColumn1";
     this.cargoContactoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cargoContactoDataGridViewTextBoxColumn1.Width = 117;
     //
     // correoElectrónicoDataGridViewTextBoxColumn1
     //
     this.correoElectrónicoDataGridViewTextBoxColumn1.DataPropertyName = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.correoElectrónicoDataGridViewTextBoxColumn1.HeaderText = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn1.Name = "correoElectrónicoDataGridViewTextBoxColumn1";
     this.correoElectrónicoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.correoElectrónicoDataGridViewTextBoxColumn1.Width = 116;
     //
     // FormularioSeleccionDestinatarios
     //
     this.AcceptButton = this.btnAceptar;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.InactiveBorder;
     this.CancelButton = this.btnCancelar;
     this.ClientSize = new System.Drawing.Size(628, 438);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.btnAgregar);
     this.Controls.Add(this.btnCco);
     this.Controls.Add(this.btnCc);
     this.Controls.Add(this.btnPara);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.btnAceptar);
     this.Controls.Add(this.txtCco);
     this.Controls.Add(this.txtCc);
     this.Controls.Add(this.txtPara);
     this.Controls.Add(this.dataGridViewContactos);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "FormularioSeleccionDestinatarios";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FormularioSeleccionDestinatarios";
     this.Load += new System.EventHandler(this.FormularioSeleccionDestinatarios_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContactos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactoEmpresaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.empresaDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ribbonTabItem2 = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.galleryContainer2 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.errorProvider_dangnhap = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txt_Password = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btClose = new DevComponents.DotNetBar.ButtonX();
     this.txt_UserName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btCancel = new DevComponents.DotNetBar.ButtonX();
     this.btLogin = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider_dangnhap)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonTabItem2
     //
     this.ribbonTabItem2.Name = "ribbonTabItem2";
     this.ribbonTabItem2.Text = "ribbonTabItem2";
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Text = "ribbonTabItem1";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // galleryContainer2
     //
     //
     //
     //
     this.galleryContainer2.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer2.EnableGalleryPopup = false;
     this.galleryContainer2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer2.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer2.MultiLine = false;
     this.galleryContainer2.Name = "galleryContainer2";
     this.galleryContainer2.PopupUsesStandardScrollbars = false;
     //
     // labelItem1
     //
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.CanCustomize = false;
     this.labelItem1.Name = "labelItem1";
     //
     // errorProvider_dangnhap
     //
     this.errorProvider_dangnhap.ContainerControl = this;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.panel2);
     this.groupBox1.Font = new System.Drawing.Font("MS Mincho", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(3, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(408, 218);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Login System";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.labelX1);
     this.panel2.Controls.Add(this.panel1);
     this.panel2.Controls.Add(this.labelX3);
     this.panel2.Controls.Add(this.txt_Password);
     this.panel2.Controls.Add(this.btClose);
     this.panel2.Controls.Add(this.txt_UserName);
     this.panel2.Controls.Add(this.btCancel);
     this.panel2.Controls.Add(this.btLogin);
     this.panel2.Location = new System.Drawing.Point(9, 54);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(393, 154);
     this.panel2.TabIndex = 33;
     this.panel2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panel2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panel2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("MS Mincho", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.Blue;
     this.labelX1.Location = new System.Drawing.Point(19, 14);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(90, 20);
     this.labelX1.TabIndex = 28;
     this.labelX1.Text = "User name";
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::_042082.Properties.Resources.Customers;
     this.panel1.Location = new System.Drawing.Point(314, 18);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(48, 47);
     this.panel1.TabIndex = 31;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("MS Mincho", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.ForeColor = System.Drawing.Color.Blue;
     this.labelX3.Location = new System.Drawing.Point(19, 50);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(76, 20);
     this.labelX3.TabIndex = 27;
     this.labelX3.Text = "Password";
     //
     // txt_Password
     //
     //
     //
     //
     this.txt_Password.Border.Class = "TextBoxBorder";
     this.txt_Password.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_Password.Font = new System.Drawing.Font("MS Mincho", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_Password.Location = new System.Drawing.Point(127, 50);
     this.txt_Password.Name = "txt_Password";
     this.txt_Password.PasswordChar = '*';
     this.txt_Password.Size = new System.Drawing.Size(169, 23);
     this.txt_Password.TabIndex = 24;
     //
     // btClose
     //
     this.btClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btClose.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btClose.Image = global::_042082.Properties.Resources.Icon_30;
     this.btClose.Location = new System.Drawing.Point(258, 97);
     this.btClose.Name = "btClose";
     this.btClose.Size = new System.Drawing.Size(38, 38);
     this.btClose.TabIndex = 30;
     this.btClose.Click += new System.EventHandler(this.btClose_Click);
     //
     // txt_UserName
     //
     //
     //
     //
     this.txt_UserName.Border.Class = "TextBoxBorder";
     this.txt_UserName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_UserName.Font = new System.Drawing.Font("MS Mincho", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_UserName.Location = new System.Drawing.Point(127, 12);
     this.txt_UserName.Name = "txt_UserName";
     this.txt_UserName.Size = new System.Drawing.Size(169, 23);
     this.txt_UserName.TabIndex = 23;
     //
     // btCancel
     //
     this.btCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btCancel.Font = new System.Drawing.Font("MS Mincho", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btCancel.Location = new System.Drawing.Point(136, 97);
     this.btCancel.Name = "btCancel";
     this.btCancel.Size = new System.Drawing.Size(116, 38);
     this.btCancel.TabIndex = 26;
     this.btCancel.Text = "Customer";
     this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
     //
     // btLogin
     //
     this.btLogin.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btLogin.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btLogin.Font = new System.Drawing.Font("MS Mincho", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btLogin.Location = new System.Drawing.Point(19, 97);
     this.btLogin.Name = "btLogin";
     this.btLogin.Size = new System.Drawing.Size(111, 38);
     this.btLogin.TabIndex = 25;
     this.btLogin.Text = "Login";
     this.btLogin.Click += new System.EventHandler(this.btLogin_Click);
     //
     // frmLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(415, 224);
     this.Controls.Add(this.groupBox1);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmLogin";
     this.ShowInTaskbar = false;
     this.Text = "Login Form";
     this.Load += new System.EventHandler(this.frmDanhSachHoaDon_Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider_dangnhap)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spy));
     this.galleryContainer2 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.galleryContainer3 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.trvTree = new System.Windows.Forms.TreeView();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.datagridviewprob = new System.Windows.Forms.DataGridView();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.toolStrip1.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridviewprob)).BeginInit();
     this.SuspendLayout();
     //
     // galleryContainer2
     //
     //
     //
     //
     this.galleryContainer2.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer2.EnableGalleryPopup = false;
     this.galleryContainer2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer2.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer2.MultiLine = false;
     this.galleryContainer2.Name = "galleryContainer2";
     this.galleryContainer2.PopupUsesStandardScrollbars = false;
     //
     // labelItem1
     //
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.CanCustomize = false;
     this.labelItem1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelItem1.Name = "labelItem1";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // galleryContainer3
     //
     //
     //
     //
     this.galleryContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer3.EnableGalleryPopup = false;
     this.galleryContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer3.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer3.MultiLine = false;
     this.galleryContainer3.Name = "galleryContainer3";
     this.galleryContainer3.PopupUsesStandardScrollbars = false;
     //
     // labelItem2
     //
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem2.CanCustomize = false;
     this.labelItem2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelItem2.Name = "labelItem2";
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "dockContainerItem2";
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.qatCustomizeItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(799, 41);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "Spy Interface";
     this.ribbonControl1.TitleText = "<div >Spy Interface</div>";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // toolStrip1
     //
     this.toolStrip1.Font = new System.Drawing.Font("Khmer UI", 9F);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2});
     this.toolStrip1.Location = new System.Drawing.Point(5, 42);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(799, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(52, 22);
     this.toolStripButton1.Text = "Save";
     //
     // toolStripButton2
     //
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(66, 22);
     this.toolStripButton2.Text = "Refresh";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 417);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(799, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 217, 350)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 67);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(220, 350);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.DockOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem3});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(217, 350);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Spy Windows";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.Add(this.trvTree);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(211, 324);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // trvTree
     //
     this.trvTree.Dock = System.Windows.Forms.DockStyle.Fill;
     this.trvTree.Location = new System.Drawing.Point(0, 0);
     this.trvTree.Name = "trvTree";
     this.trvTree.Size = new System.Drawing.Size(211, 324);
     this.trvTree.TabIndex = 0;
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer1;
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "dockContainerItem3";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(804, 67);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 350);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 417);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(799, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 416);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(804, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 416);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(799, 0);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(799, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // datagridviewprob
     //
     this.datagridviewprob.BackgroundColor = System.Drawing.Color.White;
     this.datagridviewprob.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.datagridviewprob.Dock = System.Windows.Forms.DockStyle.Fill;
     this.datagridviewprob.Location = new System.Drawing.Point(225, 67);
     this.datagridviewprob.Name = "datagridviewprob";
     this.datagridviewprob.Size = new System.Drawing.Size(579, 350);
     this.datagridviewprob.TabIndex = 10;
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // Spy
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(809, 419);
     this.Controls.Add(this.datagridviewprob);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "Spy";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Spy";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridviewprob)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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);
 }
 /// <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(frmReport));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.btnBack = new DevComponents.DotNetBar.ButtonX();
     this.pnlFilter = new DevComponents.DotNetBar.PanelEx();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnView = new DevComponents.DotNetBar.ButtonX();
     this.txtString3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cmbReportList = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.chkBool3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dtmDate2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.chkBool2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dtmDate1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.lblString1 = new DevComponents.DotNetBar.LabelX();
     this.lblString3 = new DevComponents.DotNetBar.LabelX();
     this.chkBool1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.lblDate2 = new DevComponents.DotNetBar.LabelX();
     this.lblString2 = new DevComponents.DotNetBar.LabelX();
     this.lblDate1 = new DevComponents.DotNetBar.LabelX();
     this.lblDate3 = new DevComponents.DotNetBar.LabelX();
     this.dtmDate3 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.grdList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.lblList = new DevComponents.DotNetBar.LabelItem();
     this.txtString2 = new PT.Manager.PTComponent.MultiDropDownTextBox(this.components);
     this.txtString1 = new PT.Manager.PTComponent.MultiDropDownTextBox(this.components);
     this.panelEx1.SuspendLayout();
     this.pnlFilter.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate3)).BeginInit();
     this.panelEx4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.crystalReportViewer1);
     this.panelEx1.Controls.Add(this.btnBack);
     this.panelEx1.Controls.Add(this.pnlFilter);
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(1039, 495);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex = -1;
     this.crystalReportViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crystalReportViewer1.Location = new System.Drawing.Point(0, 231);
     this.crystalReportViewer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.crystalReportViewer1.Name = "crystalReportViewer1";
     this.crystalReportViewer1.SelectionFormula = "";
     this.crystalReportViewer1.Size = new System.Drawing.Size(1039, 264);
     this.crystalReportViewer1.TabIndex = 13;
     this.crystalReportViewer1.ViewTimeSelectionFormula = "";
     this.crystalReportViewer1.ReportRefresh += new CrystalDecisions.Windows.Forms.RefreshEventHandler(this.crystalReportViewer1_ReportRefresh);
     //
     // btnBack
     //
     this.btnBack.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBack.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBack.Dock = System.Windows.Forms.DockStyle.Top;
     this.btnBack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnBack.Location = new System.Drawing.Point(0, 207);
     this.btnBack.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnBack.Name = "btnBack";
     this.btnBack.Size = new System.Drawing.Size(1039, 24);
     this.btnBack.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBack.TabIndex = 12;
     this.btnBack.Text = "Hiện Toàn Màn Hình";
     this.btnBack.Click += new System.EventHandler(this.btnBack_Click_1);
     //
     // pnlFilter
     //
     this.pnlFilter.CanvasColor = System.Drawing.SystemColors.Control;
     this.pnlFilter.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlFilter.Controls.Add(this.panelEx3);
     this.pnlFilter.Controls.Add(this.panelEx4);
     this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlFilter.Location = new System.Drawing.Point(0, 0);
     this.pnlFilter.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.pnlFilter.Name = "pnlFilter";
     this.pnlFilter.Size = new System.Drawing.Size(1039, 207);
     this.pnlFilter.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlFilter.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.pnlFilter.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.pnlFilter.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.pnlFilter.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlFilter.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.pnlFilter.Style.GradientAngle = 90;
     this.pnlFilter.TabIndex = 11;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.txtString2);
     this.panelEx3.Controls.Add(this.txtString1);
     this.panelEx3.Controls.Add(this.labelX1);
     this.panelEx3.Controls.Add(this.btnView);
     this.panelEx3.Controls.Add(this.txtString3);
     this.panelEx3.Controls.Add(this.cmbReportList);
     this.panelEx3.Controls.Add(this.chkBool3);
     this.panelEx3.Controls.Add(this.dtmDate2);
     this.panelEx3.Controls.Add(this.chkBool2);
     this.panelEx3.Controls.Add(this.dtmDate1);
     this.panelEx3.Controls.Add(this.lblString1);
     this.panelEx3.Controls.Add(this.lblString3);
     this.panelEx3.Controls.Add(this.chkBool1);
     this.panelEx3.Controls.Add(this.lblDate2);
     this.panelEx3.Controls.Add(this.lblString2);
     this.panelEx3.Controls.Add(this.lblDate1);
     this.panelEx3.Controls.Add(this.lblDate3);
     this.panelEx3.Controls.Add(this.dtmDate3);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx3.Location = new System.Drawing.Point(0, 0);
     this.panelEx3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(346, 207);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 17;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.labelX1.Location = new System.Drawing.Point(6, 12);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(46, 24);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "Báo Cáo";
     //
     // btnView
     //
     this.btnView.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnView.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnView.Image = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageFixedSize = new System.Drawing.Size(20, 20);
     this.btnView.Location = new System.Drawing.Point(5, 170);
     this.btnView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnView.Name = "btnView";
     this.btnView.Size = new System.Drawing.Size(328, 33);
     this.btnView.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnView.TabIndex = 9;
     this.btnView.Text = "Xem Báo Cáo";
     this.btnView.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtString3
     //
     //
     //
     //
     this.txtString3.Border.Class = "TextBoxBorder";
     this.txtString3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString3.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtString3.Location = new System.Drawing.Point(224, 109);
     this.txtString3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.txtString3.Name = "txtString3";
     this.txtString3.Size = new System.Drawing.Size(100, 20);
     this.txtString3.TabIndex = 16;
     //
     // cmbReportList
     //
     this.cmbReportList.DisplayMember = "Text";
     this.cmbReportList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbReportList.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.cmbReportList.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cmbReportList.FormattingEnabled = true;
     this.cmbReportList.ItemHeight = 15;
     this.cmbReportList.Location = new System.Drawing.Point(58, 13);
     this.cmbReportList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cmbReportList.Name = "cmbReportList";
     this.cmbReportList.Size = new System.Drawing.Size(276, 21);
     this.cmbReportList.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbReportList.TabIndex = 1;
     this.cmbReportList.SelectedValueChanged += new System.EventHandler(this.cmbReportList_SelectedValueChanged);
     //
     // chkBool3
     //
     //
     //
     //
     this.chkBool3.BackgroundStyle.Class = "";
     this.chkBool3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool3.Enabled = false;
     this.chkBool3.Location = new System.Drawing.Point(223, 135);
     this.chkBool3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool3.Name = "chkBool3";
     this.chkBool3.Size = new System.Drawing.Size(82, 19);
     this.chkBool3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool3.TabIndex = 14;
     this.chkBool3.Text = "Bool 3";
     //
     // dtmDate2
     //
     //
     //
     //
     this.dtmDate2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate2.ButtonDropDown.Visible = true;
     this.dtmDate2.Enabled = false;
     this.dtmDate2.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate2.IsPopupCalendarOpen = false;
     this.dtmDate2.Location = new System.Drawing.Point(116, 62);
     this.dtmDate2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate2.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate2.Name = "dtmDate2";
     this.dtmDate2.Size = new System.Drawing.Size(100, 20);
     this.dtmDate2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate2.TabIndex = 1;
     //
     // chkBool2
     //
     //
     //
     //
     this.chkBool2.BackgroundStyle.Class = "";
     this.chkBool2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool2.Enabled = false;
     this.chkBool2.Location = new System.Drawing.Point(116, 135);
     this.chkBool2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool2.Name = "chkBool2";
     this.chkBool2.Size = new System.Drawing.Size(82, 19);
     this.chkBool2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool2.TabIndex = 1;
     this.chkBool2.Text = "Bool 2";
     //
     // dtmDate1
     //
     //
     //
     //
     this.dtmDate1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate1.ButtonDropDown.Visible = true;
     this.dtmDate1.Enabled = false;
     this.dtmDate1.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate1.IsPopupCalendarOpen = false;
     this.dtmDate1.Location = new System.Drawing.Point(9, 62);
     this.dtmDate1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate1.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate1.Name = "dtmDate1";
     this.dtmDate1.Size = new System.Drawing.Size(100, 20);
     this.dtmDate1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate1.TabIndex = 11;
     //
     // lblString1
     //
     //
     //
     //
     this.lblString1.BackgroundStyle.Class = "";
     this.lblString1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString1.Location = new System.Drawing.Point(10, 89);
     this.lblString1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString1.Name = "lblString1";
     this.lblString1.Size = new System.Drawing.Size(95, 18);
     this.lblString1.TabIndex = 6;
     this.lblString1.Text = "String 1";
     //
     // lblString3
     //
     //
     //
     //
     this.lblString3.BackgroundStyle.Class = "";
     this.lblString3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString3.Location = new System.Drawing.Point(224, 89);
     this.lblString3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString3.Name = "lblString3";
     this.lblString3.Size = new System.Drawing.Size(95, 18);
     this.lblString3.TabIndex = 9;
     this.lblString3.Text = "String 3";
     //
     // chkBool1
     //
     //
     //
     //
     this.chkBool1.BackgroundStyle.Class = "";
     this.chkBool1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool1.Enabled = false;
     this.chkBool1.Location = new System.Drawing.Point(9, 135);
     this.chkBool1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool1.Name = "chkBool1";
     this.chkBool1.Size = new System.Drawing.Size(82, 19);
     this.chkBool1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool1.TabIndex = 0;
     this.chkBool1.Text = "Bool 1";
     //
     // lblDate2
     //
     //
     //
     //
     this.lblDate2.BackgroundStyle.Class = "";
     this.lblDate2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate2.Location = new System.Drawing.Point(116, 42);
     this.lblDate2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate2.Name = "lblDate2";
     this.lblDate2.Size = new System.Drawing.Size(95, 18);
     this.lblDate2.TabIndex = 5;
     this.lblDate2.Text = "Date 2";
     //
     // lblString2
     //
     //
     //
     //
     this.lblString2.BackgroundStyle.Class = "";
     this.lblString2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString2.Location = new System.Drawing.Point(117, 89);
     this.lblString2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString2.Name = "lblString2";
     this.lblString2.Size = new System.Drawing.Size(95, 18);
     this.lblString2.TabIndex = 7;
     this.lblString2.Text = "String 2";
     //
     // lblDate1
     //
     //
     //
     //
     this.lblDate1.BackgroundStyle.Class = "";
     this.lblDate1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate1.Location = new System.Drawing.Point(9, 40);
     this.lblDate1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate1.Name = "lblDate1";
     this.lblDate1.Size = new System.Drawing.Size(95, 18);
     this.lblDate1.TabIndex = 4;
     this.lblDate1.Text = "Date 1";
     //
     // lblDate3
     //
     //
     //
     //
     this.lblDate3.BackgroundStyle.Class = "";
     this.lblDate3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate3.Location = new System.Drawing.Point(223, 43);
     this.lblDate3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate3.Name = "lblDate3";
     this.lblDate3.Size = new System.Drawing.Size(95, 18);
     this.lblDate3.TabIndex = 13;
     this.lblDate3.Text = "Date 3";
     //
     // dtmDate3
     //
     //
     //
     //
     this.dtmDate3.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate3.ButtonDropDown.Visible = true;
     this.dtmDate3.Enabled = false;
     this.dtmDate3.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate3.IsPopupCalendarOpen = false;
     this.dtmDate3.Location = new System.Drawing.Point(223, 62);
     this.dtmDate3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate3.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate3.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate3.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate3.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate3.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate3.Name = "dtmDate3";
     this.dtmDate3.Size = new System.Drawing.Size(100, 20);
     this.dtmDate3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate3.TabIndex = 12;
     //
     // panelEx4
     //
     this.panelEx4.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx4.Controls.Add(this.panelEx2);
     this.panelEx4.Controls.Add(this.grdList);
     this.panelEx4.Controls.Add(this.bar1);
     this.panelEx4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx4.Location = new System.Drawing.Point(0, 0);
     this.panelEx4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx4.Name = "panelEx4";
     this.panelEx4.Size = new System.Drawing.Size(1039, 207);
     this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx4.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx4.Style.GradientAngle = 90;
     this.panelEx4.TabIndex = 18;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Location = new System.Drawing.Point(433, 42);
     this.panelEx2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(328, 163);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 14;
     //
     // grdList
     //
     this.grdList.BackgroundColor = System.Drawing.Color.White;
     this.grdList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdList.DefaultCellStyle = dataGridViewCellStyle1;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.Enabled = false;
     this.grdList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdList.Location = new System.Drawing.Point(0, 29);
     this.grdList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.grdList.Name = "grdList";
     this.grdList.Size = new System.Drawing.Size(1039, 178);
     this.grdList.TabIndex = 1;
     this.grdList.Visible = false;
     //
     // bar1
     //
     this.bar1.AntiAlias = true;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.DockTabStripHeight = 15;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1,
     this.lblList});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(1039, 29);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 16;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(20, 20);
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     this.buttonItem1.Tooltip = "Lấy Dữ Liệu";
     //
     // lblList
     //
     this.lblList.Name = "lblList";
     //
     // txtString2
     //
     this.txtString2.AutoComplete = false;
     this.txtString2.AutoDropdown = false;
     this.txtString2.AutoReSizeColumn = false;
     this.txtString2.BackColorEven = System.Drawing.Color.White;
     this.txtString2.BackColorOdd = System.Drawing.Color.White;
     //
     //
     //
     this.txtString2.Border.Class = "TextBoxBorder";
     this.txtString2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString2.ColumnHeaders = "";
     this.txtString2.ColumnNames = "";
     this.txtString2.ColumnWidthDefault = 75;
     this.txtString2.ColumnWidths = "";
     this.txtString2.DataSource = null;
     this.txtString2.Language = "Language1";
     this.txtString2.LinkedColumnIndex = 0;
     this.txtString2.LinkedTextBox = null;
     this.txtString2.Location = new System.Drawing.Point(118, 109);
     this.txtString2.Name = "txtString2";
     this.txtString2.RowsDisplay = 10;
     this.txtString2.Size = new System.Drawing.Size(100, 20);
     this.txtString2.TabIndex = 18;
     //
     // txtString1
     //
     this.txtString1.AutoComplete = false;
     this.txtString1.AutoDropdown = false;
     this.txtString1.AutoReSizeColumn = false;
     this.txtString1.BackColorEven = System.Drawing.Color.White;
     this.txtString1.BackColorOdd = System.Drawing.Color.White;
     //
     //
     //
     this.txtString1.Border.Class = "TextBoxBorder";
     this.txtString1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString1.ColumnHeaders = "";
     this.txtString1.ColumnNames = "";
     this.txtString1.ColumnWidthDefault = 75;
     this.txtString1.ColumnWidths = "";
     this.txtString1.DataSource = null;
     this.txtString1.Language = "Language1";
     this.txtString1.LinkedColumnIndex = 0;
     this.txtString1.LinkedTextBox = null;
     this.txtString1.Location = new System.Drawing.Point(9, 109);
     this.txtString1.Name = "txtString1";
     this.txtString1.RowsDisplay = 10;
     this.txtString1.Size = new System.Drawing.Size(100, 20);
     this.txtString1.TabIndex = 18;
     //
     // frmReport
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.ClientSize = new System.Drawing.Size(1039, 495);
     this.Controls.Add(this.panelEx1);
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "frmReport";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "frmReport";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmReport_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmReport_FormClosing);
     this.panelEx1.ResumeLayout(false);
     this.pnlFilter.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate3)).EndInit();
     this.panelEx4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TabsMainForm));
     this.barMainToolbar = new DevComponents.DotNetBar.Bar();
     this.btnSystem = new DevComponents.DotNetBar.ButtonItem();
     this.btnReLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnModifPWD = new DevComponents.DotNetBar.ButtonItem();
     this.btnQuit = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows = new DevComponents.DotNetBar.ButtonItem();
     this.btnMainTabs = new DevComponents.DotNetBar.ButtonItem();
     this.btnRemoveSelectedTab = new DevComponents.DotNetBar.ButtonItem();
     this.btnRemoveAllTab = new DevComponents.DotNetBar.ButtonItem();
     this.btnTool = new DevComponents.DotNetBar.ButtonItem();
     this.btnCalculator = new DevComponents.DotNetBar.ButtonItem();
     this.btnNoteBook = new DevComponents.DotNetBar.ButtonItem();
     this.btnOthers = new DevComponents.DotNetBar.ButtonItem();
     this.btnLanguages = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangCN = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangTW = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangUS = new DevComponents.DotNetBar.ButtonItem();
     this.btnSelectTheme = new DevComponents.DotNetBar.ButtonItem();
     this.btnDefault = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindowsXP = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows7Blue = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Vista = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2010Silver = new DevComponents.DotNetBar.ButtonItem();
     this.btnHelps = new DevComponents.DotNetBar.ButtonItem();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.barSecondToolbar = new DevComponents.DotNetBar.Bar();
     this.btnToMain = new DevComponents.DotNetBar.ButtonItem();
     this.btnReLoadMenu = new DevComponents.DotNetBar.ButtonItem();
     this.btnQuitSystem = new DevComponents.DotNetBar.ButtonItem();
     this.barBottom = new DevComponents.DotNetBar.Bar();
     this.lblBottomInfo = new DevComponents.DotNetBar.LabelX();
     this.lblCompany = new DevComponents.DotNetBar.LabelItem();
     this.lblDept = new DevComponents.DotNetBar.LabelItem();
     this.lblUser = new DevComponents.DotNetBar.LabelItem();
     this.btnHiddle = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSiteLeft = new DevComponents.DotNetBar.DockSite();
     this.barLeft = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.tvMain = new System.Windows.Forms.TreeView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.navigationBar = new DevComponents.DotNetBar.NavigationBar();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSiteRight = new DevComponents.DotNetBar.DockSite();
     this.barRight = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer2 = new DevComponents.DotNetBar.PanelDockContainer();
     this.pnlMessage = new System.Windows.Forms.Panel();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.barRightN = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer3 = new DevComponents.DotNetBar.PanelDockContainer();
     this.txtNoteBook = new System.Windows.Forms.RichTextBox();
     this.barNoteBook = new DevComponents.DotNetBar.Bar();
     this.btnSaveNoteBook = new DevComponents.DotNetBar.ButtonItem();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSiteRightN = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.tabControlMain = new DevComponents.DotNetBar.TabControl();
     this.tabItemMainPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.panelMain = new DevComponents.DotNetBar.PanelEx();
     this.webBrowser = new System.Windows.Forms.WebBrowser();
     this.tabItemMain = new DevComponents.DotNetBar.TabItem(this.components);
     this.contextMenuStripTab = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsMenuItemCloseThis = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemCloseOther = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemCloseAll = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsMenuItemShowFull = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemReLogOn = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsMenuItemExit = new System.Windows.Forms.ToolStripMenuItem();
     this.styleManager = new DevComponents.DotNetBar.StyleManager(this.components);
     this.tmrTask = new System.Windows.Forms.Timer(this.components);
     this.tmrLock = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barMainToolbar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barSecondToolbar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barBottom)).BeginInit();
     this.barBottom.SuspendLayout();
     this.dockSiteLeft.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barLeft)).BeginInit();
     this.barLeft.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navigationBar)).BeginInit();
     this.dockSiteRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barRight)).BeginInit();
     this.barRight.SuspendLayout();
     this.panelDockContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barRightN)).BeginInit();
     this.barRightN.SuspendLayout();
     this.panelDockContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barNoteBook)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).BeginInit();
     this.tabControlMain.SuspendLayout();
     this.tabItemMainPanel.SuspendLayout();
     this.panelMain.SuspendLayout();
     this.contextMenuStripTab.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // barMainToolbar
     //
     this.barMainToolbar.AccessibleDescription = "DotNetBar Bar (barMainToolbar)";
     this.barMainToolbar.AccessibleName = "DotNetBar Bar";
     this.barMainToolbar.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barMainToolbar.BarType = DevComponents.DotNetBar.eBarType.MenuBar;
     this.barMainToolbar.CloseSingleTab = true;
     this.barMainToolbar.Dock = System.Windows.Forms.DockStyle.Top;
     this.barMainToolbar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSystem,
     this.btnWindows,
     this.btnTool,
     this.btnOthers,
     this.btnHelps});
     this.barMainToolbar.Location = new System.Drawing.Point(0, 0);
     this.barMainToolbar.MenuBar = true;
     this.barMainToolbar.Name = "barMainToolbar";
     this.barMainToolbar.Size = new System.Drawing.Size(935, 26);
     this.barMainToolbar.Stretch = true;
     this.barMainToolbar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barMainToolbar.TabIndex = 41;
     this.barMainToolbar.TabStop = false;
     this.barMainToolbar.Text = "bar2";
     //
     // btnSystem
     //
     this.btnSystem.Name = "btnSystem";
     this.btnSystem.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnReLogin,
     this.btnModifPWD,
     this.btnQuit});
     this.btnSystem.Text = "系统(&S)";
     //
     // btnReLogin
     //
     this.btnReLogin.Name = "btnReLogin";
     this.btnReLogin.Text = "重新登录";
     this.btnReLogin.Click += new System.EventHandler(this.tsMenuItemReLogOn_Click);
     //
     // btnModifPWD
     //
     this.btnModifPWD.Name = "btnModifPWD";
     this.btnModifPWD.Text = "修改密码";
     this.btnModifPWD.Click += new System.EventHandler(this.btnModifPWD_Click);
     //
     // btnQuit
     //
     this.btnQuit.Name = "btnQuit";
     this.btnQuit.Text = "退出系统";
     this.btnQuit.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // btnWindows
     //
     this.btnWindows.Name = "btnWindows";
     this.btnWindows.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnMainTabs,
     this.btnRemoveSelectedTab,
     this.btnRemoveAllTab});
     this.btnWindows.Text = "窗口(&W)";
     //
     // btnMainTabs
     //
     this.btnMainTabs.Name = "btnMainTabs";
     this.btnMainTabs.Text = "主控窗口";
     this.btnMainTabs.Click += new System.EventHandler(this.btnToMain_Click);
     //
     // btnRemoveSelectedTab
     //
     this.btnRemoveSelectedTab.Name = "btnRemoveSelectedTab";
     this.btnRemoveSelectedTab.Text = "关闭当前窗口";
     this.btnRemoveSelectedTab.Click += new System.EventHandler(this.tsMenuItemCloseThis_Click);
     //
     // btnRemoveAllTab
     //
     this.btnRemoveAllTab.Name = "btnRemoveAllTab";
     this.btnRemoveAllTab.Text = "关闭所有窗口";
     this.btnRemoveAllTab.Click += new System.EventHandler(this.tsMenuItemCloseAll_Click);
     //
     // btnTool
     //
     this.btnTool.Name = "btnTool";
     this.btnTool.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCalculator,
     this.btnNoteBook});
     this.btnTool.Text = "工具(&T)";
     //
     // btnCalculator
     //
     this.btnCalculator.Name = "btnCalculator";
     this.btnCalculator.Text = "计算器";
     this.btnCalculator.Click += new System.EventHandler(this.btnCalculator_Click);
     //
     // btnNoteBook
     //
     this.btnNoteBook.Name = "btnNoteBook";
     this.btnNoteBook.Text = "记事本";
     this.btnNoteBook.Click += new System.EventHandler(this.btnNoteBook_Click);
     //
     // btnOthers
     //
     this.btnOthers.Name = "btnOthers";
     this.btnOthers.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLanguages,
     this.btnSelectTheme});
     this.btnOthers.Text = "其它(&O)";
     //
     // btnLanguages
     //
     this.btnLanguages.Name = "btnLanguages";
     this.btnLanguages.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLangCN,
     this.btnLangTW,
     this.btnLangUS});
     this.btnLanguages.Text = "语言选择";
     //
     // btnLangCN
     //
     this.btnLangCN.Name = "btnLangCN";
     this.btnLangCN.Tag = "zh-CN";
     this.btnLangCN.Text = "中文(简体)";
     this.btnLangCN.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnLangTW
     //
     this.btnLangTW.Name = "btnLangTW";
     this.btnLangTW.Tag = "zh-TW";
     this.btnLangTW.Text = "中文(繁体)";
     this.btnLangTW.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnLangUS
     //
     this.btnLangUS.Name = "btnLangUS";
     this.btnLangUS.Tag = "en-US";
     this.btnLangUS.Text = "英文";
     this.btnLangUS.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnSelectTheme
     //
     this.btnSelectTheme.Name = "btnSelectTheme";
     this.btnSelectTheme.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnDefault,
     this.btnWindowsXP,
     this.btnWindows7Blue,
     this.btnOffice2007Blue,
     this.btnOffice2007Silver,
     this.btnOffice2007Black,
     this.btnOffice2007Vista,
     this.btnOffice2010Silver});
     this.btnSelectTheme.Text = "风格选择";
     //
     // btnDefault
     //
     this.btnDefault.Name = "btnDefault";
     this.btnDefault.Text = "Default";
     this.btnDefault.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnWindowsXP
     //
     this.btnWindowsXP.Name = "btnWindowsXP";
     this.btnWindowsXP.Text = "WindowsXP";
     this.btnWindowsXP.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnWindows7Blue
     //
     this.btnWindows7Blue.Name = "btnWindows7Blue";
     this.btnWindows7Blue.Text = "Windows7Blue";
     this.btnWindows7Blue.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Blue
     //
     this.btnOffice2007Blue.Name = "btnOffice2007Blue";
     this.btnOffice2007Blue.Text = "Office2007Blue";
     this.btnOffice2007Blue.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Silver
     //
     this.btnOffice2007Silver.Name = "btnOffice2007Silver";
     this.btnOffice2007Silver.Text = "Office2007Silver";
     this.btnOffice2007Silver.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Black
     //
     this.btnOffice2007Black.Name = "btnOffice2007Black";
     this.btnOffice2007Black.Text = "Office2007Black";
     this.btnOffice2007Black.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Vista
     //
     this.btnOffice2007Vista.Name = "btnOffice2007Vista";
     this.btnOffice2007Vista.Text = "Office2007Vista";
     this.btnOffice2007Vista.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2010Silver
     //
     this.btnOffice2010Silver.Name = "btnOffice2010Silver";
     this.btnOffice2010Silver.Text = "Office2010Silver";
     this.btnOffice2010Silver.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnHelps
     //
     this.btnHelps.Name = "btnHelps";
     this.btnHelps.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbout});
     this.btnHelps.Text = "帮助(&H)";
     //
     // btnAbout
     //
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // barSecondToolbar
     //
     this.barSecondToolbar.AccessibleDescription = "DotNetBar Bar (barSecondToolbar)";
     this.barSecondToolbar.AccessibleName = "DotNetBar Bar";
     this.barSecondToolbar.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barSecondToolbar.Dock = System.Windows.Forms.DockStyle.Top;
     this.barSecondToolbar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnToMain,
     this.btnReLoadMenu,
     this.btnQuitSystem});
     this.barSecondToolbar.Location = new System.Drawing.Point(0, 26);
     this.barSecondToolbar.MenuBar = true;
     this.barSecondToolbar.Name = "barSecondToolbar";
     this.barSecondToolbar.Size = new System.Drawing.Size(935, 40);
     this.barSecondToolbar.Stretch = true;
     this.barSecondToolbar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barSecondToolbar.TabIndex = 44;
     this.barSecondToolbar.TabStop = false;
     this.barSecondToolbar.Text = "bar3";
     //
     // btnToMain
     //
     this.btnToMain.Image = ((System.Drawing.Image)(resources.GetObject("btnToMain.Image")));
     this.btnToMain.Name = "btnToMain";
     this.btnToMain.Text = "主控窗口";
     this.btnToMain.Tooltip = "主控窗口";
     this.btnToMain.Click += new System.EventHandler(this.btnToMain_Click);
     //
     // btnReLoadMenu
     //
     this.btnReLoadMenu.Image = ((System.Drawing.Image)(resources.GetObject("btnReLoadMenu.Image")));
     this.btnReLoadMenu.Name = "btnReLoadMenu";
     this.btnReLoadMenu.Text = "重置功能菜单";
     this.btnReLoadMenu.Tooltip = "重置功能菜单";
     this.btnReLoadMenu.Click += new System.EventHandler(this.btnReLoadMenu_Click);
     //
     // btnQuitSystem
     //
     this.btnQuitSystem.Image = ((System.Drawing.Image)(resources.GetObject("btnQuitSystem.Image")));
     this.btnQuitSystem.Name = "btnQuitSystem";
     this.btnQuitSystem.Text = "退出系统";
     this.btnQuitSystem.Tooltip = "退出系统";
     this.btnQuitSystem.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // barBottom
     //
     this.barBottom.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.barBottom.Controls.Add(this.lblBottomInfo);
     this.barBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barBottom.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.lblCompany,
     this.lblDept,
     this.lblUser,
     this.btnHiddle});
     this.barBottom.Location = new System.Drawing.Point(0, 552);
     this.barBottom.Name = "barBottom";
     this.barBottom.Size = new System.Drawing.Size(935, 25);
     this.barBottom.Stretch = true;
     this.barBottom.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barBottom.TabIndex = 57;
     this.barBottom.TabStop = false;
     this.barBottom.Text = "bar1";
     //
     // lblBottomInfo
     //
     this.lblBottomInfo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblBottomInfo.BackgroundStyle.Class = "";
     this.lblBottomInfo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblBottomInfo.Location = new System.Drawing.Point(10, 3);
     this.lblBottomInfo.Name = "lblBottomInfo";
     this.lblBottomInfo.Size = new System.Drawing.Size(302, 25);
     this.lblBottomInfo.TabIndex = 8;
     this.lblBottomInfo.Text = "欢迎使用C#.NET通用权限管理系统组件";
     //
     // lblCompany
     //
     this.lblCompany.Image = ((System.Drawing.Image)(resources.GetObject("lblCompany.Image")));
     this.lblCompany.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblCompany.Name = "lblCompany";
     //
     // lblDept
     //
     this.lblDept.Image = ((System.Drawing.Image)(resources.GetObject("lblDept.Image")));
     this.lblDept.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblDept.Name = "lblDept";
     //
     // lblUser
     //
     this.lblUser.Image = ((System.Drawing.Image)(resources.GetObject("lblUser.Image")));
     this.lblUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblUser.Name = "lblUser";
     //
     // btnHiddle
     //
     this.btnHiddle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.btnHiddle.Name = "btnHiddle";
     //
     // dotNetBarManager
     //
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager.BottomDockSite = this.dockSite4;
     this.dotNetBarManager.EnableFullSizeDock = false;
     this.dotNetBarManager.LeftDockSite = this.dockSiteLeft;
     this.dotNetBarManager.ParentForm = this;
     this.dotNetBarManager.RightDockSite = this.dockSiteRight;
     this.dotNetBarManager.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.dotNetBarManager.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager.ToolbarRightDockSite = this.dockSiteRightN;
     this.dotNetBarManager.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 552);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(935, 0);
     this.dockSite4.TabIndex = 62;
     this.dockSite4.TabStop = false;
     //
     // dockSiteLeft
     //
     this.dockSiteLeft.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteLeft.Controls.Add(this.barLeft);
     this.dockSiteLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSiteLeft.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barLeft, 255, 486)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSiteLeft.Location = new System.Drawing.Point(0, 66);
     this.dockSiteLeft.Name = "dockSiteLeft";
     this.dockSiteLeft.Size = new System.Drawing.Size(258, 486);
     this.dockSiteLeft.TabIndex = 59;
     this.dockSiteLeft.TabStop = false;
     //
     // barLeft
     //
     this.barLeft.AccessibleDescription = "DotNetBar Bar (barLeft)";
     this.barLeft.AccessibleName = "DotNetBar Bar";
     this.barLeft.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barLeft.AutoSyncBarCaption = true;
     this.barLeft.CanDockBottom = false;
     this.barLeft.CanDockTop = false;
     this.barLeft.CloseSingleTab = true;
     this.barLeft.Controls.Add(this.panelDockContainer1);
     this.barLeft.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barLeft.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barLeft.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.barLeft.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barLeft.Location = new System.Drawing.Point(0, 0);
     this.barLeft.Name = "barLeft";
     this.barLeft.Size = new System.Drawing.Size(255, 486);
     this.barLeft.Stretch = true;
     this.barLeft.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barLeft.TabIndex = 0;
     this.barLeft.TabStop = false;
     this.barLeft.Text = "功能导航菜单";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer1.Controls.Add(this.tvMain);
     this.panelDockContainer1.Controls.Add(this.navigationBar);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(249, 460);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // tvMain
     //
     this.tvMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvMain.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tvMain.ImageIndex = 0;
     this.tvMain.ImageList = this.imageList;
     this.tvMain.Location = new System.Drawing.Point(0, 0);
     this.tvMain.Name = "tvMain";
     this.tvMain.SelectedImageIndex = 0;
     this.tvMain.Size = new System.Drawing.Size(249, 420);
     this.tvMain.TabIndex = 13;
     this.tvMain.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvMain_AfterExpand);
     this.tvMain.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tvMain_MouseClick);
     this.tvMain.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.tvMain_MouseDoubleClick);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "books-stack.png");
     this.imageList.Images.SetKeyName(1, "books.png");
     this.imageList.Images.SetKeyName(2, "book-small.png");
     this.imageList.Images.SetKeyName(3, "book-open.png");
     //
     // navigationBar
     //
     this.navigationBar.BackgroundStyle.BackColor1.Color = System.Drawing.SystemColors.Control;
     this.navigationBar.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.navigationBar.BackgroundStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.navigationBar.ConfigureAddRemoveVisible = false;
     this.navigationBar.ConfigureItemVisible = false;
     this.navigationBar.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.navigationBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.navigationBar.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.navigationBar.ItemPaddingBottom = 2;
     this.navigationBar.ItemPaddingTop = 2;
     this.navigationBar.Location = new System.Drawing.Point(0, 420);
     this.navigationBar.Name = "navigationBar";
     this.navigationBar.ShowShortcutKeysInToolTips = true;
     this.navigationBar.Size = new System.Drawing.Size(249, 40);
     this.navigationBar.SplitterVisible = true;
     this.navigationBar.SummaryLineVisible = false;
     this.navigationBar.TabIndex = 12;
     this.navigationBar.Text = "navigationBar1";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "功能导航菜单";
     //
     // dockSiteRight
     //
     this.dockSiteRight.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteRight.Controls.Add(this.barRight);
     this.dockSiteRight.Controls.Add(this.barRightN);
     this.dockSiteRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSiteRight.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barRight, 255, 486))),
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barRightN, 226, 486)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSiteRight.Location = new System.Drawing.Point(448, 66);
     this.dockSiteRight.Name = "dockSiteRight";
     this.dockSiteRight.Size = new System.Drawing.Size(487, 486);
     this.dockSiteRight.TabIndex = 60;
     this.dockSiteRight.TabStop = false;
     this.dockSiteRight.Text = "即时通信";
     //
     // barRight
     //
     this.barRight.AccessibleDescription = "DotNetBar Bar (barRight)";
     this.barRight.AccessibleName = "DotNetBar Bar";
     this.barRight.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barRight.AutoSyncBarCaption = true;
     this.barRight.CanDockBottom = false;
     this.barRight.CanDockTop = false;
     this.barRight.CloseSingleTab = true;
     this.barRight.Controls.Add(this.panelDockContainer2);
     this.barRight.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barRight.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barRight.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem2});
     this.barRight.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barRight.Location = new System.Drawing.Point(3, 0);
     this.barRight.Name = "barRight";
     this.barRight.Size = new System.Drawing.Size(255, 486);
     this.barRight.Stretch = true;
     this.barRight.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barRight.TabIndex = 1;
     this.barRight.TabStop = false;
     this.barRight.Text = "即时通信";
     //
     // panelDockContainer2
     //
     this.panelDockContainer2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer2.Controls.Add(this.pnlMessage);
     this.panelDockContainer2.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer2.Name = "panelDockContainer2";
     this.panelDockContainer2.Size = new System.Drawing.Size(249, 460);
     this.panelDockContainer2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer2.Style.GradientAngle = 90;
     this.panelDockContainer2.TabIndex = 0;
     //
     // pnlMessage
     //
     this.pnlMessage.BackColor = System.Drawing.Color.Transparent;
     this.pnlMessage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMessage.Location = new System.Drawing.Point(0, 0);
     this.pnlMessage.Name = "pnlMessage";
     this.pnlMessage.Size = new System.Drawing.Size(249, 460);
     this.pnlMessage.TabIndex = 9;
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Control = this.panelDockContainer2;
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "即时通信";
     //
     // barRightN
     //
     this.barRightN.AccessibleDescription = "DotNetBar Bar (barRightN)";
     this.barRightN.AccessibleName = "DotNetBar Bar";
     this.barRightN.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barRightN.AutoSyncBarCaption = true;
     this.barRightN.CanDockBottom = false;
     this.barRightN.CanDockTop = false;
     this.barRightN.CloseSingleTab = true;
     this.barRightN.Controls.Add(this.panelDockContainer3);
     this.barRightN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barRightN.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barRightN.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem3});
     this.barRightN.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barRightN.Location = new System.Drawing.Point(261, 0);
     this.barRightN.Name = "barRightN";
     this.barRightN.Size = new System.Drawing.Size(226, 486);
     this.barRightN.Stretch = true;
     this.barRightN.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barRightN.TabIndex = 2;
     this.barRightN.TabStop = false;
     this.barRightN.Text = "备忘录";
     //
     // panelDockContainer3
     //
     this.panelDockContainer3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer3.Controls.Add(this.txtNoteBook);
     this.panelDockContainer3.Controls.Add(this.barNoteBook);
     this.panelDockContainer3.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer3.Name = "panelDockContainer3";
     this.panelDockContainer3.Size = new System.Drawing.Size(220, 460);
     this.panelDockContainer3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer3.Style.GradientAngle = 90;
     this.panelDockContainer3.TabIndex = 0;
     this.panelDockContainer3.Text = "备忘录";
     //
     // txtNoteBook
     //
     this.txtNoteBook.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtNoteBook.Location = new System.Drawing.Point(0, 27);
     this.txtNoteBook.Name = "txtNoteBook";
     this.txtNoteBook.Size = new System.Drawing.Size(220, 433);
     this.txtNoteBook.TabIndex = 11;
     this.txtNoteBook.Text = "";
     //
     // barNoteBook
     //
     this.barNoteBook.Dock = System.Windows.Forms.DockStyle.Top;
     this.barNoteBook.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSaveNoteBook});
     this.barNoteBook.Location = new System.Drawing.Point(0, 0);
     this.barNoteBook.Name = "barNoteBook";
     this.barNoteBook.Size = new System.Drawing.Size(220, 27);
     this.barNoteBook.Stretch = true;
     this.barNoteBook.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barNoteBook.TabIndex = 10;
     this.barNoteBook.TabStop = false;
     this.barNoteBook.Text = "bar1";
     //
     // btnSaveNoteBook
     //
     this.btnSaveNoteBook.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSaveNoteBook.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveNoteBook.Image")));
     this.btnSaveNoteBook.Name = "btnSaveNoteBook";
     this.btnSaveNoteBook.Text = "保存";
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer3;
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "备忘录";
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 552);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(935, 0);
     this.dockSite8.TabIndex = 66;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 552);
     this.dockSite5.TabIndex = 63;
     this.dockSite5.TabStop = false;
     //
     // dockSiteRightN
     //
     this.dockSiteRightN.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteRightN.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSiteRightN.Location = new System.Drawing.Point(935, 0);
     this.dockSiteRightN.Name = "dockSiteRightN";
     this.dockSiteRightN.Size = new System.Drawing.Size(0, 552);
     this.dockSiteRightN.TabIndex = 64;
     this.dockSiteRightN.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(935, 0);
     this.dockSite7.TabIndex = 65;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(935, 0);
     this.dockSite3.TabIndex = 61;
     this.dockSite3.TabStop = false;
     //
     // tabControlMain
     //
     this.tabControlMain.AutoCloseTabs = true;
     this.tabControlMain.AutoHideSystemBox = false;
     this.tabControlMain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlMain.CanReorderTabs = true;
     this.tabControlMain.CloseButtonOnTabsVisible = true;
     this.tabControlMain.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabControlMain.ColorScheme.TabItemSelectedBackground = System.Drawing.Color.WhiteSmoke;
     this.tabControlMain.ColorScheme.TabItemSelectedBackground2 = System.Drawing.Color.WhiteSmoke;
     this.tabControlMain.Controls.Add(this.tabItemMainPanel);
     this.tabControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlMain.Location = new System.Drawing.Point(258, 66);
     this.tabControlMain.Name = "tabControlMain";
     this.tabControlMain.SelectedTabFont = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold);
     this.tabControlMain.SelectedTabIndex = 0;
     this.tabControlMain.Size = new System.Drawing.Size(190, 486);
     this.tabControlMain.Style = DevComponents.DotNetBar.eTabStripStyle.Office2003;
     this.tabControlMain.TabCloseButtonHot = ((System.Drawing.Image)(resources.GetObject("tabControlMain.TabCloseButtonHot")));
     this.tabControlMain.TabCloseButtonNormal = ((System.Drawing.Image)(resources.GetObject("tabControlMain.TabCloseButtonNormal")));
     this.tabControlMain.TabIndex = 67;
     this.tabControlMain.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControlMain.Tabs.Add(this.tabItemMain);
     this.tabControlMain.Text = "tabControl1";
     this.tabControlMain.SelectedTabChanged += new DevComponents.DotNetBar.TabStrip.SelectedTabChangedEventHandler(this.tabControlMain_SelectedTabChanged);
     this.tabControlMain.TabMoved += new DevComponents.DotNetBar.TabStrip.TabMovedEventHandler(this.tabControlMain_TabMoved);
     this.tabControlMain.TabRemoved += new System.EventHandler(this.tabControlMain_TabRemoved);
     //
     // tabItemMainPanel
     //
     this.tabItemMainPanel.Controls.Add(this.panelMain);
     this.tabItemMainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabItemMainPanel.Location = new System.Drawing.Point(0, 25);
     this.tabItemMainPanel.Name = "tabItemMainPanel";
     this.tabItemMainPanel.Padding = new System.Windows.Forms.Padding(1);
     this.tabItemMainPanel.Size = new System.Drawing.Size(190, 461);
     this.tabItemMainPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabItemMainPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabItemMainPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabItemMainPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.tabItemMainPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabItemMainPanel.Style.GradientAngle = 90;
     this.tabItemMainPanel.TabIndex = 1;
     this.tabItemMainPanel.TabItem = this.tabItemMain;
     //
     // panelMain
     //
     this.panelMain.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelMain.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelMain.Controls.Add(this.webBrowser);
     this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelMain.Location = new System.Drawing.Point(1, 1);
     this.panelMain.Name = "panelMain";
     this.panelMain.Size = new System.Drawing.Size(188, 459);
     this.panelMain.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelMain.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelMain.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelMain.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelMain.Style.GradientAngle = 90;
     this.panelMain.TabIndex = 0;
     //
     // webBrowser
     //
     this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location = new System.Drawing.Point(0, 0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 22);
     this.webBrowser.Name = "webBrowser";
     this.webBrowser.Size = new System.Drawing.Size(188, 459);
     this.webBrowser.TabIndex = 0;
     this.webBrowser.Url = new System.Uri("", System.UriKind.Relative);
     //
     // tabItemMain
     //
     this.tabItemMain.AttachedControl = this.tabItemMainPanel;
     this.tabItemMain.CloseButtonVisible = false;
     this.tabItemMain.Image = ((System.Drawing.Image)(resources.GetObject("tabItemMain.Image")));
     this.tabItemMain.Name = "tabItemMain";
     this.tabItemMain.Text = "主页";
     //
     // contextMenuStripTab
     //
     this.contextMenuStripTab.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsMenuItemCloseThis,
     this.tsMenuItemCloseOther,
     this.tsMenuItemCloseAll});
     this.contextMenuStripTab.Name = "contextMenuStrip";
     this.contextMenuStripTab.Size = new System.Drawing.Size(185, 70);
     //
     // tsMenuItemCloseThis
     //
     this.tsMenuItemCloseThis.Name = "tsMenuItemCloseThis";
     this.tsMenuItemCloseThis.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseThis.Text = "关闭当前(&C)";
     this.tsMenuItemCloseThis.Click += new System.EventHandler(this.tsMenuItemCloseThis_Click);
     //
     // tsMenuItemCloseOther
     //
     this.tsMenuItemCloseOther.Name = "tsMenuItemCloseOther";
     this.tsMenuItemCloseOther.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseOther.Text = "除此之外全部关闭(&E)";
     this.tsMenuItemCloseOther.Click += new System.EventHandler(this.tsMenuItemCloseOther_Click);
     //
     // tsMenuItemCloseAll
     //
     this.tsMenuItemCloseAll.Name = "tsMenuItemCloseAll";
     this.tsMenuItemCloseAll.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseAll.Text = "全部关闭(&A)";
     this.tsMenuItemCloseAll.Click += new System.EventHandler(this.tsMenuItemCloseAll_Click);
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsMenuItemShowFull,
     this.tsMenuItemReLogOn,
     this.toolStripSeparator1,
     this.tsMenuItemExit});
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(123, 76);
     //
     // tsMenuItemShowFull
     //
     this.tsMenuItemShowFull.Name = "tsMenuItemShowFull";
     this.tsMenuItemShowFull.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemShowFull.Text = "全屏显示";
     this.tsMenuItemShowFull.Click += new System.EventHandler(this.tsMenuItemShowFull_Click);
     //
     // tsMenuItemReLogOn
     //
     this.tsMenuItemReLogOn.Name = "tsMenuItemReLogOn";
     this.tsMenuItemReLogOn.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemReLogOn.Text = "重新登录";
     this.tsMenuItemReLogOn.Click += new System.EventHandler(this.tsMenuItemReLogOn_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(119, 6);
     //
     // tsMenuItemExit
     //
     this.tsMenuItemExit.Name = "tsMenuItemExit";
     this.tsMenuItemExit.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemExit.Text = "退出";
     this.tsMenuItemExit.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // styleManager
     //
     this.styleManager.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // tmrTask
     //
     this.tmrTask.Enabled = true;
     this.tmrTask.Interval = 3000;
     this.tmrTask.Tick += new System.EventHandler(this.tmrTask_Tick);
     //
     // tmrLock
     //
     this.tmrLock.Interval = 10000;
     this.tmrLock.Tick += new System.EventHandler(this.tmrLock_Tick);
     //
     // TabsMainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(935, 577);
     this.Controls.Add(this.tabControlMain);
     this.Controls.Add(this.dockSiteRight);
     this.Controls.Add(this.dockSiteLeft);
     this.Controls.Add(this.barSecondToolbar);
     this.Controls.Add(this.barMainToolbar);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSiteRightN);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Controls.Add(this.barBottom);
     this.Name = "TabsMainForm";
     this.ShowInTaskbar = true;
     this.Text = "C#.NET通用快速开发架构";
     this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TabsMainFrm_FormClosing);
     this.Load += new System.EventHandler(this.TabsMainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barMainToolbar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barSecondToolbar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barBottom)).EndInit();
     this.barBottom.ResumeLayout(false);
     this.dockSiteLeft.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barLeft)).EndInit();
     this.barLeft.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navigationBar)).EndInit();
     this.dockSiteRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barRight)).EndInit();
     this.barRight.ResumeLayout(false);
     this.panelDockContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barRightN)).EndInit();
     this.barRightN.ResumeLayout(false);
     this.panelDockContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barNoteBook)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).EndInit();
     this.tabControlMain.ResumeLayout(false);
     this.tabItemMainPanel.ResumeLayout(false);
     this.panelMain.ResumeLayout(false);
     this.contextMenuStripTab.ResumeLayout(false);
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #17
0
        private void AddControls()
        {
            ArrayList al = new ArrayList();

            DevComponents.DotNetBar.LabelItem li = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            DevComponents.DotNetBar.Controls.ReflectionImage ri;

            DevComponents.DotNetBar.Controls.ReflectionLabel rl = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text   = "<b><font size='+3'><font color='#B02B2C'>TCP:</font></font></b>";
            rl.Width  = 40;
            rl.Height = 30;
            DevComponents.DotNetBar.ControlContainerItem cci = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;

            al.Add(li);
            al.Add(cci);


            var tcp = from t in ExecServiceList.Lsm where t.SERVICETYPE == "TCP" select t;
            int i   = 0;

            foreach (var item in tcp)
            {
                i++;
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);



                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }

            rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text     = "<b><font size='+3'><font color='#B02B2C'>UDP:</font></font></b>";
            rl.Width    = 40;
            rl.Height   = 30;
            cci         = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;


            li      = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            al.Add(li);
            al.Add(cci);

            var udp = from t in ExecServiceList.Lsm where t.SERVICETYPE == "UDP" select t;

            i = 0;
            foreach (var item in udp)
            {
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);


                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }


            rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text     = "<b><font size='+3'><font color='#B02B2C'>GSM:</font></font></b>";
            rl.Width    = 40;
            rl.Height   = 30;
            cci         = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;

            li      = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            al.Add(li);
            al.Add(cci);


            var gsm = from t in ExecServiceList.Lsm where t.SERVICETYPE == "GSM" select t;

            i = 0;
            foreach (var item in gsm)
            {
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);


                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }

            rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text     = "<b><font size='+3'><font color='#B02B2C'>COM:</font></font></b>";
            rl.Width    = 40;
            rl.Height   = 30;
            cci         = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;

            li      = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            al.Add(li);
            al.Add(cci);

            var com = from t in ExecServiceList.Lsm where t.SERVICETYPE == "COM" select t;

            if (com.Count() > 0)
            {
                toolTip1.SetToolTip(rl, "右击操作");
                rl.MouseClick += new MouseEventHandler(rl_MouseClick);
            }
            i = 0;
            foreach (var item in com)
            {
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);


                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }

            DevComponents.DotNetBar.BaseItem[] bi = new DevComponents.DotNetBar.BaseItem[al.Count];
            for (i = 0; i < al.Count; i++)
            {
                bi[i] = al[i] as DevComponents.DotNetBar.BaseItem;
            }

            itemPanel_top.Items.AddRange(bi);
        }
Пример #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Entorno));
     this.metroShell1 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.metroTabPanel1 = new DevComponents.DotNetBar.Metro.MetroTabPanel();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnNuevo = new DevComponents.DotNetBar.ButtonItem();
     this.btnGuardar = new DevComponents.DotNetBar.ButtonItem();
     this.btnEditar = new DevComponents.DotNetBar.ButtonItem();
     this.btnBorrar = new DevComponents.DotNetBar.ButtonItem();
     this.btnCancelar = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.btnPrimero = new DevComponents.DotNetBar.ButtonItem();
     this.btnAnterior = new DevComponents.DotNetBar.ButtonItem();
     this.btnSiguiente = new DevComponents.DotNetBar.ButtonItem();
     this.btnUltimo = new DevComponents.DotNetBar.ButtonItem();
     this.metroAppButton1 = new DevComponents.DotNetBar.Metro.MetroAppButton();
     this.tabControles = new DevComponents.DotNetBar.Metro.MetroTabItem();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.bubbleButton2 = new DevComponents.DotNetBar.BubbleButton();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.btnBuscar = new DevComponents.DotNetBar.ButtonItem();
     this.metroShell1.SuspendLayout();
     this.metroTabPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // metroShell1
     //
     this.metroShell1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroShell1.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background;
     //
     //
     //
     this.metroShell1.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.metroShell1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.metroShell1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderColorLight = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderColorLight2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.BorderRightColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell1.CaptionVisible = true;
     this.metroShell1.Controls.Add(this.metroTabPanel1);
     this.metroShell1.Dock = System.Windows.Forms.DockStyle.Top;
     this.metroShell1.ForeColor = System.Drawing.Color.Black;
     this.metroShell1.HelpButtonText = null;
     this.metroShell1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroAppButton1,
     this.tabControles});
     this.metroShell1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.metroShell1.Location = new System.Drawing.Point(0, 1);
     this.metroShell1.Name = "metroShell1";
     this.metroShell1.SettingsButtonVisible = false;
     this.metroShell1.Size = new System.Drawing.Size(955, 125);
     this.metroShell1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell1.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell1.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell1.SystemText.QatDialogOkButton = "OK";
     this.metroShell1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell1.TabIndex = 0;
     this.metroShell1.TabStripFont = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroShell1.Text = "metroShell1";
     //
     // metroTabPanel1
     //
     this.metroTabPanel1.CanvasColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroTabPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.metroTabPanel1.Controls.Add(this.bar1);
     this.metroTabPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.metroTabPanel1.Location = new System.Drawing.Point(0, 51);
     this.metroTabPanel1.Name = "metroTabPanel1";
     this.metroTabPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.metroTabPanel1.Size = new System.Drawing.Size(955, 74);
     //
     //
     //
     this.metroTabPanel1.Style.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroTabPanel1.Style.BackColor2 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroTabPanel1.Style.BackColorGradientType = DevComponents.DotNetBar.eGradientType.Radial;
     this.metroTabPanel1.Style.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.metroTabPanel1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.metroTabPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.metroTabPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.metroTabPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTabPanel1.TabIndex = 1;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "bar1 (bar1)";
     this.bar1.AccessibleName = "bar1";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.AntiAlias = true;
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.DockedBorderStyle = DevComponents.DotNetBar.eBorderType.Bump;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.bar1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.bar1.ForeColor = System.Drawing.Color.Black;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnNuevo,
     this.btnGuardar,
     this.btnEditar,
     this.btnBorrar,
     this.btnCancelar,
     this.labelItem2,
     this.btnPrimero,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btnBuscar});
     this.bar1.Location = new System.Drawing.Point(6, 3);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(609, 63);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2010;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnNuevo
     //
     this.btnNuevo.Image = global::Control_Aulas_UAM.Properties.Resources.nuevo48;
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.btnNuevo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.btnNuevo.Text = "buttonItem9";
     this.btnNuevo.Tooltip = "Nuevo";
     //
     // btnGuardar
     //
     this.btnGuardar.Image = global::Control_Aulas_UAM.Properties.Resources.guardar48;
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlG);
     this.btnGuardar.Text = "buttonItem8";
     this.btnGuardar.Tooltip = "Guardar";
     //
     // btnEditar
     //
     this.btnEditar.Image = global::Control_Aulas_UAM.Properties.Resources.edtar48;
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlE);
     this.btnEditar.Text = "buttonItem6";
     this.btnEditar.Tooltip = "Editar";
     //
     // btnBorrar
     //
     this.btnBorrar.Image = global::Control_Aulas_UAM.Properties.Resources.borrar48;
     this.btnBorrar.Name = "btnBorrar";
     this.btnBorrar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDel);
     this.btnBorrar.Text = "buttonItem7";
     this.btnBorrar.Tooltip = "Borrar";
     //
     // btnCancelar
     //
     this.btnCancelar.Image = global::Control_Aulas_UAM.Properties.Resources.cancelar48;
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.btnCancelar.Text = "buttonItem7";
     //
     // labelItem2
     //
     this.labelItem2.Enabled = false;
     this.labelItem2.Image = global::Control_Aulas_UAM.Properties.Resources.linea48;
     this.labelItem2.Name = "labelItem2";
     //
     // btnPrimero
     //
     this.btnPrimero.Image = global::Control_Aulas_UAM.Properties.Resources.previousEnd48;
     this.btnPrimero.Name = "btnPrimero";
     this.btnPrimero.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlUp);
     this.btnPrimero.Text = "buttonItem13";
     this.btnPrimero.Tooltip = "Primero";
     //
     // btnAnterior
     //
     this.btnAnterior.Image = global::Control_Aulas_UAM.Properties.Resources.previous48;
     this.btnAnterior.Name = "btnAnterior";
     this.btnAnterior.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlLeft);
     this.btnAnterior.Text = "buttonItem12";
     this.btnAnterior.Tooltip = "Anterior";
     //
     // btnSiguiente
     //
     this.btnSiguiente.Image = global::Control_Aulas_UAM.Properties.Resources.next48;
     this.btnSiguiente.Name = "btnSiguiente";
     this.btnSiguiente.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlRight);
     this.btnSiguiente.Text = "buttonItem10";
     this.btnSiguiente.Tooltip = "Siguiente";
     //
     // btnUltimo
     //
     this.btnUltimo.Image = global::Control_Aulas_UAM.Properties.Resources.nextEnd48;
     this.btnUltimo.Name = "btnUltimo";
     this.btnUltimo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDown);
     this.btnUltimo.Text = "buttonItem11";
     this.btnUltimo.Tooltip = "Ultimo";
     //
     // metroAppButton1
     //
     this.metroAppButton1.AutoExpandOnClick = true;
     this.metroAppButton1.CanCustomize = false;
     this.metroAppButton1.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.metroAppButton1.ImagePaddingHorizontal = 0;
     this.metroAppButton1.ImagePaddingVertical = 0;
     this.metroAppButton1.Name = "metroAppButton1";
     this.metroAppButton1.ShowSubItems = false;
     this.metroAppButton1.Text = "&File";
     this.metroAppButton1.Visible = false;
     //
     // tabControles
     //
     this.tabControles.Checked = true;
     this.tabControles.Name = "tabControles";
     this.tabControles.Panel = this.metroTabPanel1;
     this.tabControles.Text = "&Controles";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "READY";
     //
     // bubbleButton2
     //
     this.bubbleButton2.Enabled = false;
     this.bubbleButton2.Name = "bubbleButton2";
     //
     // styleManager1
     //
     this.styleManager1.ManagerColorTint = System.Drawing.Color.LightBlue;
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Metro;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.SystemColors.GradientInactiveCaption, System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(142)))), ((int)(((byte)(0))))));
     //
     // btnBuscar
     //
     this.btnBuscar.Image = global::Control_Aulas_UAM.Properties.Resources.find48;
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDown);
     this.btnBuscar.Text = "buttonItem11";
     this.btnBuscar.Tooltip = "Ultimo";
     //
     // Entorno
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.ClientSize = new System.Drawing.Size(956, 401);
     this.Controls.Add(this.metroShell1);
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Entorno";
     this.Sizable = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Control de Asignacion de Espacios";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Entorno_FormClosing);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Entorno_KeyDown_1);
     this.metroShell1.ResumeLayout(false);
     this.metroShell1.PerformLayout();
     this.metroTabPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CalendarControl));
     this.dateNavigator = new DevComponents.DotNetBar.Schedule.DateNavigator();
     this.calendarView = new DevComponents.DotNetBar.Schedule.CalendarView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.barView = new DevComponents.DotNetBar.Bar();
     this.btnDayView = new DevComponents.DotNetBar.ButtonItem();
     this.btnWeekView = new DevComponents.DotNetBar.ButtonItem();
     this.btnMonthView = new DevComponents.DotNetBar.ButtonItem();
     this.panelCalendar = new System.Windows.Forms.Panel();
     this.contextMenuBar1 = new DevComponents.DotNetBar.ContextMenuBar();
     this.InContentContextMenu = new DevComponents.DotNetBar.ButtonItem();
     this.btnAddAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemBuscar = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemNotificar = new DevComponents.DotNetBar.ButtonItem();
     this.InTabContextMenu = new DevComponents.DotNetBar.ButtonItem();
     this.InTabOcultar = new DevComponents.DotNetBar.ButtonItem();
     this.InTabAddNewTab = new DevComponents.DotNetBar.LabelItem();
     this.InTabReplaceTab = new DevComponents.DotNetBar.LabelItem();
     this.InAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemVerAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemDeleteAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemBorrarSerie = new DevComponents.DotNetBar.ButtonItem();
     this.checkBoxItemReprogramada = new DevComponents.DotNetBar.CheckBoxItem();
     this.barStatus = new DevComponents.DotNetBar.Bar();
     this.buttonItemMultiUser = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemSingleUser = new DevComponents.DotNetBar.ButtonItem();
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     ((System.ComponentModel.ISupportInitialize)(this.barView)).BeginInit();
     this.panelCalendar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barStatus)).BeginInit();
     this.tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // dateNavigator
     //
     this.dateNavigator.CalendarView = this.calendarView;
     this.dateNavigator.CanvasColor = System.Drawing.SystemColors.Control;
     this.dateNavigator.Dock = System.Windows.Forms.DockStyle.Top;
     this.dateNavigator.Location = new System.Drawing.Point(0, 0);
     this.dateNavigator.Name = "dateNavigator";
     this.dateNavigator.Size = new System.Drawing.Size(694, 30);
     this.dateNavigator.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.dateNavigator.TabIndex = 5;
     this.dateNavigator.Text = "dateNavigator";
     //
     // calendarView
     //
     this.calendarView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.calendarView.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.calendarView.ContainerControlProcessDialogKey = true;
     this.calendarView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.calendarView.HighlightCurrentDay = true;
     this.calendarView.Images = this.imageList;
     this.calendarView.LabelTimeSlots = true;
     this.calendarView.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.calendarView.Location = new System.Drawing.Point(0, 30);
     this.calendarView.MinimumTimeSlotHeight = 30;
     this.calendarView.MultiUserTabHeight = 19;
     this.calendarView.Name = "calendarView";
     this.calendarView.ShowOnlyWorkDayHours = true;
     this.calendarView.Size = new System.Drawing.Size(694, 271);
     this.calendarView.TabIndex = 4;
     this.calendarView.Text = "calendarView";
     this.calendarView.TimeIndicator.BorderColor = System.Drawing.Color.Empty;
     this.calendarView.TimeIndicator.IndicatorArea = DevComponents.DotNetBar.Schedule.eTimeIndicatorArea.Content;
     this.calendarView.TimeIndicator.Tag = null;
     this.calendarView.TimeIndicator.Visibility = DevComponents.DotNetBar.Schedule.eTimeIndicatorVisibility.AllResources;
     this.calendarView.TimeSlotDuration = 30;
     this.calendarView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.calendarView_MouseUp);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "disabled");
     //
     // barView
     //
     this.barView.AntiAlias = true;
     this.barView.Dock = System.Windows.Forms.DockStyle.Top;
     this.barView.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.barView.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnDayView,
     this.btnWeekView,
     this.btnMonthView});
     this.barView.Location = new System.Drawing.Point(0, 0);
     this.barView.Name = "barView";
     this.barView.RoundCorners = false;
     this.barView.Size = new System.Drawing.Size(700, 63);
     this.barView.Stretch = true;
     this.barView.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barView.TabIndex = 3;
     this.barView.TabStop = false;
     this.barView.Text = "ViewBar";
     //
     // btnDayView
     //
     this.btnDayView.Checked = true;
     this.btnDayView.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat;
     this.btnDayView.FixedSize = new System.Drawing.Size(100, 60);
     this.btnDayView.Image = ((System.Drawing.Image)(resources.GetObject("btnDayView.Image")));
     this.btnDayView.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnDayView.Name = "btnDayView";
     this.btnDayView.OptionGroup = "View";
     this.superTooltip1.SetSuperTooltip(this.btnDayView, new DevComponents.DotNetBar.SuperTooltipInfo("Vista por día", "", "", ((System.Drawing.Image)(resources.GetObject("btnDayView.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.btnDayView.Text = "Día";
     this.btnDayView.Click += new System.EventHandler(this.btnDayView_Click);
     //
     // btnWeekView
     //
     this.btnWeekView.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat;
     this.btnWeekView.FixedSize = new System.Drawing.Size(100, 60);
     this.btnWeekView.Image = ((System.Drawing.Image)(resources.GetObject("btnWeekView.Image")));
     this.btnWeekView.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnWeekView.Name = "btnWeekView";
     this.btnWeekView.OptionGroup = "View";
     this.superTooltip1.SetSuperTooltip(this.btnWeekView, new DevComponents.DotNetBar.SuperTooltipInfo("Vista por semana", "", "", ((System.Drawing.Image)(resources.GetObject("btnWeekView.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.btnWeekView.Text = "Semana";
     this.btnWeekView.Click += new System.EventHandler(this.btnWeekView_Click);
     //
     // btnMonthView
     //
     this.btnMonthView.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat;
     this.btnMonthView.FixedSize = new System.Drawing.Size(100, 60);
     this.btnMonthView.Image = ((System.Drawing.Image)(resources.GetObject("btnMonthView.Image")));
     this.btnMonthView.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnMonthView.Name = "btnMonthView";
     this.btnMonthView.OptionGroup = "View";
     this.superTooltip1.SetSuperTooltip(this.btnMonthView, new DevComponents.DotNetBar.SuperTooltipInfo("Vista por mes", "", "", ((System.Drawing.Image)(resources.GetObject("btnMonthView.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.btnMonthView.Text = "Mes";
     this.btnMonthView.Click += new System.EventHandler(this.btnMonthView_Click);
     //
     // panelCalendar
     //
     this.panelCalendar.Controls.Add(this.contextMenuBar1);
     this.panelCalendar.Controls.Add(this.calendarView);
     this.panelCalendar.Controls.Add(this.dateNavigator);
     this.panelCalendar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelCalendar.Location = new System.Drawing.Point(3, 3);
     this.panelCalendar.Name = "panelCalendar";
     this.panelCalendar.Size = new System.Drawing.Size(694, 301);
     this.panelCalendar.TabIndex = 6;
     //
     // contextMenuBar1
     //
     this.contextMenuBar1.AntiAlias = true;
     this.contextMenuBar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.contextMenuBar1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.InContentContextMenu,
     this.InTabContextMenu,
     this.InAppointment});
     this.contextMenuBar1.Location = new System.Drawing.Point(153, 178);
     this.contextMenuBar1.Name = "contextMenuBar1";
     this.contextMenuBar1.Size = new System.Drawing.Size(116, 69);
     this.contextMenuBar1.Stretch = true;
     this.contextMenuBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.contextMenuBar1.TabIndex = 6;
     this.contextMenuBar1.TabStop = false;
     this.contextMenuBar1.Text = "contextMenuBar1";
     //
     // InContentContextMenu
     //
     this.InContentContextMenu.AutoExpandOnClick = true;
     this.InContentContextMenu.Name = "InContentContextMenu";
     this.InContentContextMenu.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAddAppointment,
     this.buttonItemBuscar,
     this.buttonItemNotificar});
     this.InContentContextMenu.Text = "In Content";
     this.InContentContextMenu.Click += new System.EventHandler(this.InContentContextMenu_Click);
     //
     // btnAddAppointment
     //
     this.btnAddAppointment.Name = "btnAddAppointment";
     this.btnAddAppointment.Text = "Agregar";
     this.btnAddAppointment.Click += new System.EventHandler(this.btnAddAppointment_Click);
     //
     // buttonItemBuscar
     //
     this.buttonItemBuscar.Name = "buttonItemBuscar";
     this.buttonItemBuscar.Text = "Buscar";
     this.buttonItemBuscar.Click += new System.EventHandler(this.buttonItemBuscar_Click);
     //
     // buttonItemNotificar
     //
     this.buttonItemNotificar.Name = "buttonItemNotificar";
     this.buttonItemNotificar.Text = "Notificar";
     this.buttonItemNotificar.Click += new System.EventHandler(this.buttonItemNotificar_Click);
     //
     // InTabContextMenu
     //
     this.InTabContextMenu.AutoExpandOnClick = true;
     this.InTabContextMenu.Name = "InTabContextMenu";
     this.InTabContextMenu.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.InTabOcultar,
     this.InTabAddNewTab,
     this.InTabReplaceTab});
     this.InTabContextMenu.Text = "InTab";
     //
     // InTabOcultar
     //
     this.InTabOcultar.Name = "InTabOcultar";
     this.InTabOcultar.Text = "Ocultar";
     this.InTabOcultar.Click += new System.EventHandler(this.InTabOcultar_Click);
     //
     // InTabAddNewTab
     //
     this.InTabAddNewTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(238)))));
     this.InTabAddNewTab.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.InTabAddNewTab.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.InTabAddNewTab.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(21)))), ((int)(((byte)(110)))));
     this.InTabAddNewTab.Name = "InTabAddNewTab";
     this.InTabAddNewTab.PaddingBottom = 1;
     this.InTabAddNewTab.PaddingLeft = 10;
     this.InTabAddNewTab.PaddingTop = 1;
     this.InTabAddNewTab.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.InTabAddNewTab.Text = "Agregar";
     //
     // InTabReplaceTab
     //
     this.InTabReplaceTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(238)))));
     this.InTabReplaceTab.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.InTabReplaceTab.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.InTabReplaceTab.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(21)))), ((int)(((byte)(110)))));
     this.InTabReplaceTab.Name = "InTabReplaceTab";
     this.InTabReplaceTab.PaddingBottom = 1;
     this.InTabReplaceTab.PaddingLeft = 10;
     this.InTabReplaceTab.PaddingTop = 1;
     this.InTabReplaceTab.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.InTabReplaceTab.Text = "Reemplazar";
     //
     // InAppointment
     //
     this.InAppointment.AutoExpandOnClick = true;
     this.InAppointment.Name = "InAppointment";
     this.InAppointment.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItemVerAppointment,
     this.buttonItemDeleteAppointment,
     this.buttonItemBorrarSerie,
     this.checkBoxItemReprogramada});
     this.InAppointment.Text = "InAppointment";
     //
     // buttonItemVerAppointment
     //
     this.buttonItemVerAppointment.Name = "buttonItemVerAppointment";
     this.buttonItemVerAppointment.Text = "Ver";
     this.buttonItemVerAppointment.Click += new System.EventHandler(this.buttonItemEditarAppointment_Click);
     //
     // buttonItemDeleteAppointment
     //
     this.buttonItemDeleteAppointment.Name = "buttonItemDeleteAppointment";
     this.buttonItemDeleteAppointment.Text = "Borrar";
     this.buttonItemDeleteAppointment.Click += new System.EventHandler(this.buttonItemDeleteAppointment_Click);
     //
     // buttonItemBorrarSerie
     //
     this.buttonItemBorrarSerie.Name = "buttonItemBorrarSerie";
     this.buttonItemBorrarSerie.Text = "Borrar Serie";
     this.buttonItemBorrarSerie.Visible = false;
     this.buttonItemBorrarSerie.Click += new System.EventHandler(this.buttonItemBorrarSerie_Click);
     //
     // checkBoxItemReprogramada
     //
     this.checkBoxItemReprogramada.Name = "checkBoxItemReprogramada";
     this.checkBoxItemReprogramada.Text = "Reprogramada";
     this.checkBoxItemReprogramada.Click += new System.EventHandler(this.checkBoxItemReprogramada_Click);
     //
     // barStatus
     //
     this.barStatus.AntiAlias = true;
     this.barStatus.BackColor = System.Drawing.Color.CornflowerBlue;
     this.barStatus.Dock = System.Windows.Forms.DockStyle.Fill;
     this.barStatus.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.barStatus.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.barStatus.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItemMultiUser,
     this.buttonItemSingleUser});
     this.barStatus.Location = new System.Drawing.Point(3, 310);
     this.barStatus.MaximumSize = new System.Drawing.Size(0, 23);
     this.barStatus.MinimumSize = new System.Drawing.Size(0, 23);
     this.barStatus.Name = "barStatus";
     this.barStatus.RoundCorners = false;
     this.barStatus.Size = new System.Drawing.Size(694, 23);
     this.barStatus.Stretch = true;
     this.barStatus.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barStatus.TabIndex = 7;
     this.barStatus.TabStop = false;
     this.barStatus.Text = "bar1";
     //
     // buttonItemMultiUser
     //
     this.buttonItemMultiUser.Checked = true;
     this.buttonItemMultiUser.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItemMultiUser.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemMultiUser.Image")));
     this.buttonItemMultiUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItemMultiUser.Name = "buttonItemMultiUser";
     this.buttonItemMultiUser.OptionGroup = "UserView";
     this.superTooltip1.SetSuperTooltip(this.buttonItemMultiUser, new DevComponents.DotNetBar.SuperTooltipInfo("Horario por aula", "", "", ((System.Drawing.Image)(resources.GetObject("buttonItemMultiUser.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.buttonItemMultiUser.Click += new System.EventHandler(this.buttonItemMultiUser_Click);
     //
     // buttonItemSingleUser
     //
     this.buttonItemSingleUser.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItemSingleUser.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemSingleUser.Image")));
     this.buttonItemSingleUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItemSingleUser.Name = "buttonItemSingleUser";
     this.buttonItemSingleUser.OptionGroup = "UserView";
     this.superTooltip1.SetSuperTooltip(this.buttonItemSingleUser, new DevComponents.DotNetBar.SuperTooltipInfo("Horario en general", "", "", ((System.Drawing.Image)(resources.GetObject("buttonItemSingleUser.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.buttonItemSingleUser.Click += new System.EventHandler(this.buttonItemSingleUser_Click);
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.ColumnCount = 1;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.Controls.Add(this.barStatus, 0, 1);
     this.tableLayoutPanel.Controls.Add(this.panelCalendar, 0, 0);
     this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(0, 63);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 2;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.Size = new System.Drawing.Size(700, 337);
     this.tableLayoutPanel.TabIndex = 8;
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     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))))));
     //
     // superTooltip1
     //
     this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     //
     // CalendarControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel);
     this.Controls.Add(this.barView);
     this.Name = "CalendarControl";
     this.Size = new System.Drawing.Size(700, 400);
     ((System.ComponentModel.ISupportInitialize)(this.barView)).EndInit();
     this.panelCalendar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barStatus)).EndInit();
     this.tableLayoutPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #20
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Menu_Principal));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.listaCatalogos = new DevComponents.DotNetBar.ItemPanel();
     this.listCatEmpresa = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatSectores = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAgrupaciones = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatTipoMembresia = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatTipoEmpresa = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatTarifas = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatCasos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatSolicitudApoyo = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listTipoActividad = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listaAdministrador = new DevComponents.DotNetBar.ItemPanel();
     this.listAdmControlUsuarios = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAdmComunicacion = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAdmPantallaGerencial = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.usuarioResumen = new DevComponents.DotNetBar.PanelEx();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.labelNombre = new System.Windows.Forms.Label();
     this.imagenUsuario = new System.Windows.Forms.PictureBox();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.btnAbrirServicio = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnAgregarEmpresa = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnReportes = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnComunicacion = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnCatalogos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnAdministrador = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer2 = 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.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem4 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel1.SuspendLayout();
     this.usuarioResumen.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenUsuario)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Controls.Add(this.listaCatalogos);
     this.itemPanel1.Controls.Add(this.listaAdministrador);
     this.itemPanel1.Controls.Add(this.usuarioResumen);
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6,
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.Location = new System.Drawing.Point(22, 25);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(735, 694);
     this.itemPanel1.TabIndex = 4;
     this.itemPanel1.Text = "itemPanel1";
     this.itemPanel1.ThemeAware = true;
     //
     // listaCatalogos
     //
     //
     //
     //
     this.listaCatalogos.BackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.listaCatalogos.BackgroundStyle.BackColorGradientAngle = 90;
     this.listaCatalogos.BackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.listaCatalogos.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderBottomWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.listaCatalogos.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderLeftWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderRightWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderTopWidth = 1;
     this.listaCatalogos.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaCatalogos.ContainerControlProcessDialogKey = true;
     this.listaCatalogos.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listCatEmpresa,
     this.listCatSectores,
     this.listAgrupaciones,
     this.listCatTipoMembresia,
     this.listCatTipoEmpresa,
     this.listCatTarifas,
     this.listCatCasos,
     this.listCatSolicitudApoyo,
     this.listTipoActividad});
     this.listaCatalogos.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaCatalogos.Location = new System.Drawing.Point(250, 448);
     this.listaCatalogos.Name = "listaCatalogos";
     this.listaCatalogos.Size = new System.Drawing.Size(230, 239);
     this.listaCatalogos.TabIndex = 8;
     this.listaCatalogos.Text = "itemPanel2";
     this.listaCatalogos.Visible = false;
     //
     // listCatEmpresa
     //
     this.listCatEmpresa.Name = "listCatEmpresa";
     this.listCatEmpresa.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatEmpresa.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatEmpresa.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatEmpresa.TileStyle.PaddingLeft = 50;
     this.listCatEmpresa.TitleText = "Empresas";
     this.listCatEmpresa.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatEmpresa.Click += new System.EventHandler(this.listCatEmpresa_Click);
     //
     // listCatSectores
     //
     this.listCatSectores.Name = "listCatSectores";
     this.listCatSectores.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatSectores.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatSectores.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatSectores.TileStyle.PaddingLeft = 50;
     this.listCatSectores.TitleText = "Sectores";
     this.listCatSectores.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatSectores.Click += new System.EventHandler(this.listCatSectores_Click);
     //
     // listAgrupaciones
     //
     this.listAgrupaciones.Name = "listAgrupaciones";
     this.listAgrupaciones.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listAgrupaciones.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAgrupaciones.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAgrupaciones.TileStyle.PaddingLeft = 50;
     this.listAgrupaciones.TitleText = "Agrupaciones";
     this.listAgrupaciones.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAgrupaciones.Click += new System.EventHandler(this.listAgrupaciones_Click);
     //
     // listCatTipoMembresia
     //
     this.listCatTipoMembresia.Name = "listCatTipoMembresia";
     this.listCatTipoMembresia.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatTipoMembresia.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatTipoMembresia.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatTipoMembresia.TileStyle.PaddingLeft = 50;
     this.listCatTipoMembresia.TitleText = "Tipo de Membresia";
     this.listCatTipoMembresia.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatTipoMembresia.Click += new System.EventHandler(this.listCatTipoMembresia_Click);
     //
     // listCatTipoEmpresa
     //
     this.listCatTipoEmpresa.Name = "listCatTipoEmpresa";
     this.listCatTipoEmpresa.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatTipoEmpresa.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatTipoEmpresa.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatTipoEmpresa.TileStyle.PaddingLeft = 50;
     this.listCatTipoEmpresa.TitleText = "Tipo de Empresa";
     this.listCatTipoEmpresa.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatTipoEmpresa.Click += new System.EventHandler(this.listCatTipoEmpresa_Click);
     //
     // listCatTarifas
     //
     this.listCatTarifas.Name = "listCatTarifas";
     this.listCatTarifas.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatTarifas.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatTarifas.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatTarifas.TileStyle.PaddingLeft = 50;
     this.listCatTarifas.TitleText = "Tarifas";
     this.listCatTarifas.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatTarifas.Click += new System.EventHandler(this.listCatTarifas_Click);
     //
     // listCatCasos
     //
     this.listCatCasos.Name = "listCatCasos";
     this.listCatCasos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatCasos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatCasos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatCasos.TileStyle.PaddingLeft = 50;
     this.listCatCasos.TitleText = "Casos";
     this.listCatCasos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatCasos.Click += new System.EventHandler(this.listCatCasos_Click);
     //
     // listCatSolicitudApoyo
     //
     this.listCatSolicitudApoyo.Name = "listCatSolicitudApoyo";
     this.listCatSolicitudApoyo.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatSolicitudApoyo.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatSolicitudApoyo.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatSolicitudApoyo.TileStyle.PaddingLeft = 50;
     this.listCatSolicitudApoyo.TitleText = "Solicitud de Apoyo";
     this.listCatSolicitudApoyo.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatSolicitudApoyo.Click += new System.EventHandler(this.listCatSolicitudApoyo_Click);
     //
     // listTipoActividad
     //
     this.listTipoActividad.Name = "listTipoActividad";
     this.listTipoActividad.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listTipoActividad.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listTipoActividad.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listTipoActividad.TileStyle.PaddingLeft = 50;
     this.listTipoActividad.TitleText = "Tipo de Actividad";
     this.listTipoActividad.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listTipoActividad.Click += new System.EventHandler(this.listTipoActividad_Click);
     //
     // listaAdministrador
     //
     this.listaAdministrador.BackColor = System.Drawing.Color.Maroon;
     //
     //
     //
     this.listaAdministrador.BackgroundStyle.Class = "ItemPanel";
     this.listaAdministrador.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaAdministrador.ContainerControlProcessDialogKey = true;
     this.listaAdministrador.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listAdmControlUsuarios,
     this.listAdmComunicacion,
     this.listAdmPantallaGerencial});
     this.listaAdministrador.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaAdministrador.Location = new System.Drawing.Point(500, 447);
     this.listaAdministrador.Name = "listaAdministrador";
     this.listaAdministrador.Size = new System.Drawing.Size(230, 82);
     this.listaAdministrador.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.listaAdministrador.TabIndex = 7;
     this.listaAdministrador.Text = "itemPanel2";
     this.listaAdministrador.Visible = false;
     //
     // listAdmControlUsuarios
     //
     this.listAdmControlUsuarios.Name = "listAdmControlUsuarios";
     this.listAdmControlUsuarios.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmControlUsuarios.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmControlUsuarios.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmControlUsuarios.TileStyle.PaddingLeft = 50;
     this.listAdmControlUsuarios.TitleText = "Control Usuarios";
     this.listAdmControlUsuarios.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmControlUsuarios.Click += new System.EventHandler(this.metroTileItem2_Click);
     //
     // listAdmComunicacion
     //
     this.listAdmComunicacion.Name = "listAdmComunicacion";
     this.listAdmComunicacion.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmComunicacion.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmComunicacion.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmComunicacion.TileStyle.PaddingLeft = 50;
     this.listAdmComunicacion.TitleText = "Comunicación";
     this.listAdmComunicacion.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // listAdmPantallaGerencial
     //
     this.listAdmPantallaGerencial.Name = "listAdmPantallaGerencial";
     this.listAdmPantallaGerencial.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmPantallaGerencial.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmPantallaGerencial.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmPantallaGerencial.TileStyle.PaddingLeft = 50;
     this.listAdmPantallaGerencial.TitleText = "Pantalla Gerencial";
     this.listAdmPantallaGerencial.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmPantallaGerencial.Click += new System.EventHandler(this.listAdmPantallaGerencial_Click);
     //
     // usuarioResumen
     //
     this.usuarioResumen.CanvasColor = System.Drawing.SystemColors.Control;
     this.usuarioResumen.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.usuarioResumen.Controls.Add(this.pictureBox1);
     this.usuarioResumen.Controls.Add(this.labelNombre);
     this.usuarioResumen.Controls.Add(this.imagenUsuario);
     this.usuarioResumen.Location = new System.Drawing.Point(2, 1);
     this.usuarioResumen.Name = "usuarioResumen";
     this.usuarioResumen.Size = new System.Drawing.Size(728, 210);
     this.usuarioResumen.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.usuarioResumen.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.usuarioResumen.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.usuarioResumen.Style.GradientAngle = 90;
     this.usuarioResumen.TabIndex = 5;
     this.usuarioResumen.Click += new System.EventHandler(this.usuarioResumen_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.cadin_png;
     this.pictureBox1.Location = new System.Drawing.Point(111, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(175, 170);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // labelNombre
     //
     this.labelNombre.AutoSize = true;
     this.labelNombre.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelNombre.ForeColor = System.Drawing.Color.Black;
     this.labelNombre.Location = new System.Drawing.Point(447, 3);
     this.labelNombre.Name = "labelNombre";
     this.labelNombre.Size = new System.Drawing.Size(104, 18);
     this.labelNombre.TabIndex = 1;
     this.labelNombre.Text = "Bienvenido";
     //
     // imagenUsuario
     //
     this.imagenUsuario.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.User_blue_icon;
     this.imagenUsuario.Location = new System.Drawing.Point(582, 35);
     this.imagenUsuario.Name = "imagenUsuario";
     this.imagenUsuario.Size = new System.Drawing.Size(96, 96);
     this.imagenUsuario.TabIndex = 0;
     this.imagenUsuario.TabStop = false;
     this.imagenUsuario.DoubleClick += new System.EventHandler(this.imagenUsuario_DoubleClick);
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem1});
     this.itemContainer6.ThemeAware = true;
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = false;
     this.controlContainerItem1.Control = this.usuarioResumen;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     this.controlContainerItem1.ThemeAware = true;
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderBottomColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.ItemSpacing = 20;
     this.itemContainer1.MinimumSize = new System.Drawing.Size(732, 240);
     this.itemContainer1.MultiLine = true;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.ResizeItemsToFit = false;
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbrirServicio,
     this.btnAgregarEmpresa,
     this.btnReportes,
     this.btnComunicacion,
     this.btnCatalogos,
     this.btnAdministrador});
     this.itemContainer1.ThemeAware = true;
     //
     // btnAbrirServicio
     //
     this.btnAbrirServicio.DisabledBackColor = System.Drawing.Color.Transparent;
     this.btnAbrirServicio.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.invoice2;
     this.btnAbrirServicio.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnAbrirServicio.Name = "btnAbrirServicio";
     this.btnAbrirServicio.Text = "<font size=\"+7\"><br/>Servicio / Caso</font>";
     this.btnAbrirServicio.ThemeAware = true;
     this.btnAbrirServicio.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.btnAbrirServicio.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAbrirServicio.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.btnAbrirServicio.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.btnAbrirServicio.TileStyle.BackColorGradientAngle = 45;
     this.btnAbrirServicio.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAbrirServicio.TileStyle.PaddingBottom = 4;
     this.btnAbrirServicio.TileStyle.PaddingLeft = 4;
     this.btnAbrirServicio.TileStyle.PaddingRight = 4;
     this.btnAbrirServicio.TileStyle.PaddingTop = 4;
     this.btnAbrirServicio.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAbrirServicio.TitleText = "Abrir nuevo servicio/caso de una empresa";
     this.btnAbrirServicio.Click += new System.EventHandler(this.btnAbrirServicio_Click);
     //
     // btnAgregarEmpresa
     //
     this.btnAgregarEmpresa.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Building;
     this.btnAgregarEmpresa.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnAgregarEmpresa.Name = "btnAgregarEmpresa";
     this.btnAgregarEmpresa.Text = "<font size=\"+7\"><br/>Empresa</font>";
     this.btnAgregarEmpresa.ThemeAware = true;
     this.btnAgregarEmpresa.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.btnAgregarEmpresa.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAgregarEmpresa.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.btnAgregarEmpresa.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.btnAgregarEmpresa.TileStyle.BackColorGradientAngle = 45;
     this.btnAgregarEmpresa.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAgregarEmpresa.TileStyle.PaddingBottom = 4;
     this.btnAgregarEmpresa.TileStyle.PaddingLeft = 4;
     this.btnAgregarEmpresa.TileStyle.PaddingRight = 4;
     this.btnAgregarEmpresa.TileStyle.PaddingTop = 4;
     this.btnAgregarEmpresa.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAgregarEmpresa.TitleText = "Agregar nueva empresa";
     this.btnAgregarEmpresa.Click += new System.EventHandler(this.btnAgregarEmpresa_Click);
     //
     // btnReportes
     //
     this.btnReportes.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Report;
     this.btnReportes.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnReportes.Name = "btnReportes";
     this.btnReportes.Text = "<font size=\"+7\"><br/>Reportes </font>";
     this.btnReportes.ThemeAware = true;
     this.btnReportes.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.btnReportes.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnReportes.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColorGradientAngle = 45;
     this.btnReportes.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnReportes.TileStyle.PaddingBottom = 4;
     this.btnReportes.TileStyle.PaddingLeft = 4;
     this.btnReportes.TileStyle.PaddingRight = 4;
     this.btnReportes.TileStyle.PaddingTop = 4;
     this.btnReportes.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnReportes.TitleText = "Reportes Generales";
     //
     // btnComunicacion
     //
     this.btnComunicacion.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.mensaje2;
     this.btnComunicacion.ImageIndent = new System.Drawing.Point(5, 10);
     this.btnComunicacion.Name = "btnComunicacion";
     this.btnComunicacion.Text = "<font size=\"+7\"><br/>Comunicación</font>";
     this.btnComunicacion.ThemeAware = true;
     this.btnComunicacion.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.btnComunicacion.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnComunicacion.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.btnComunicacion.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.btnComunicacion.TileStyle.BackColorGradientAngle = 45;
     this.btnComunicacion.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnComunicacion.TileStyle.PaddingBottom = 4;
     this.btnComunicacion.TileStyle.PaddingLeft = 4;
     this.btnComunicacion.TileStyle.PaddingRight = 4;
     this.btnComunicacion.TileStyle.PaddingTop = 4;
     this.btnComunicacion.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnComunicacion.TitleText = "Enviar Comunicación";
     this.btnComunicacion.Click += new System.EventHandler(this.btnComunicacion_Click);
     //
     // btnCatalogos
     //
     this.btnCatalogos.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.catalogicon;
     this.btnCatalogos.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnCatalogos.Name = "btnCatalogos";
     this.btnCatalogos.Text = "<font size=\"+7\"><br/>Catálogos</font>";
     this.btnCatalogos.ThemeAware = true;
     this.btnCatalogos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.btnCatalogos.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnCatalogos.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(118)))), ((int)(((byte)(85)))), ((int)(((byte)(148)))));
     this.btnCatalogos.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(98)))), ((int)(((byte)(185)))));
     this.btnCatalogos.TileStyle.BackColorGradientAngle = 45;
     this.btnCatalogos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnCatalogos.TileStyle.PaddingBottom = 4;
     this.btnCatalogos.TileStyle.PaddingLeft = 4;
     this.btnCatalogos.TileStyle.PaddingRight = 4;
     this.btnCatalogos.TileStyle.PaddingTop = 4;
     this.btnCatalogos.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnCatalogos.TitleText = "Vista de lectura de catálogos";
     //
     // btnAdministrador
     //
     this.btnAdministrador.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Administrative;
     this.btnAdministrador.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnAdministrador.Name = "btnAdministrador";
     this.btnAdministrador.Text = "<font size=\"+7\"><br/>Administración</font>";
     this.btnAdministrador.ThemeAware = true;
     this.btnAdministrador.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.btnAdministrador.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAdministrador.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(76)))), ((int)(((byte)(41)))));
     this.btnAdministrador.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(67)))), ((int)(((byte)(37)))));
     this.btnAdministrador.TileStyle.BackColorGradientAngle = 45;
     this.btnAdministrador.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAdministrador.TileStyle.PaddingBottom = 4;
     this.btnAdministrador.TileStyle.PaddingLeft = 4;
     this.btnAdministrador.TileStyle.PaddingRight = 4;
     this.btnAdministrador.TileStyle.PaddingTop = 4;
     this.btnAdministrador.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAdministrador.TileStyle.TextShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.btnAdministrador.TitleText = "Vista de Administrador";
     this.btnAdministrador.Visible = false;
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 1;
     this.labelItem1.PaddingTop = 1;
     this.labelItem1.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem1.Text = "Stock";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5});
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "Stock-Line";
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "Stock Line 2";
     //
     // buttonItem4
     //
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "Stock Line 3";
     //
     // buttonItem5
     //
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.Text = "Stock Line 4";
     //
     // labelItem2
     //
     this.labelItem2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingBottom = 1;
     this.labelItem2.PaddingTop = 1;
     this.labelItem2.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem2.Text = "Surface";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem6,
     this.buttonItem7,
     this.buttonItem8,
     this.buttonItem9});
     //
     // buttonItem6
     //
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.Text = "Surface Graph 1";
     //
     // buttonItem7
     //
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.Text = "Surface Graph 2";
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "Surface Graph 3";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "Surface Graph 4";
     //
     // labelItem3
     //
     this.labelItem3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem3.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem3.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem3.Name = "labelItem3";
     this.labelItem3.PaddingBottom = 1;
     this.labelItem3.PaddingTop = 1;
     this.labelItem3.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem3.Text = "Doughnut";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10,
     this.buttonItem11});
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "Doughnut Graph 1";
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "Doughnut Graph 2";
     //
     // labelItem4
     //
     this.labelItem4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem4.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem4.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem4.Name = "labelItem4";
     this.labelItem4.PaddingBottom = 1;
     this.labelItem4.PaddingTop = 1;
     this.labelItem4.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem4.Text = "Bubble";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.Text = "Bubble Graph 1";
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.Text = "Bubble Graph 2";
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.Text = "buttonItem14";
     //
     // buttonItem15
     //
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "buttonItem15";
     //
     // buttonItem16
     //
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.Text = "buttonItem16";
     //
     // buttonItem17
     //
     this.buttonItem17.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem17.Image")));
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.Text = "buttonItem17";
     //
     // buttonItem18
     //
     this.buttonItem18.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem18.Image")));
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "buttonItem18";
     //
     // buttonItem19
     //
     this.buttonItem19.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem19.Image")));
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "buttonItem19";
     //
     // buttonItem20
     //
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "buttonItem20";
     //
     // buttonItem21
     //
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "buttonItem21";
     //
     // buttonItem22
     //
     this.buttonItem22.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "buttonItem22";
     //
     // buttonItem23
     //
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "buttonItem23";
     //
     // buttonItem24
     //
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "buttonItem24";
     //
     // buttonItem25
     //
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "buttonItem25";
     //
     // metroTileItem1
     //
     this.metroTileItem1.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Building;
     this.metroTileItem1.ImageIndent = new System.Drawing.Point(2, 10);
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "<font size=\"+7\"><br/>Empresa</font>";
     this.metroTileItem1.ThemeAware = true;
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem1.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleText = "Agregar nueva empresa";
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem3.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingLeft = 50;
     this.metroTileItem3.TitleText = "Solicitud de Apoyo";
     this.metroTileItem3.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingLeft = 50;
     this.metroTileItem2.TitleText = "Tipo de Actividad";
     this.metroTileItem2.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // Menu_Principal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background2;
     this.Controls.Add(this.itemPanel1);
     this.Name = "Menu_Principal";
     this.Size = new System.Drawing.Size(770, 732);
     this.Load += new System.EventHandler(this.Menu_Principal_Load);
     this.itemPanel1.ResumeLayout(false);
     this.usuarioResumen.ResumeLayout(false);
     this.usuarioResumen.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenUsuario)).EndInit();
     this.ResumeLayout(false);
 }
Пример #21
0
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.ribbonControl1         = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1           = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar1             = new DevComponents.DotNetBar.RibbonBar();
     this.ribbonPanel2           = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonTabItem1         = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItem2         = new DevComponents.DotNetBar.RibbonTabItem();
     this.office2007StartButton1 = 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.buttonItem1            = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1      = new DevComponents.DotNetBar.QatCustomizeItem();
     this.styleManager1          = new DevComponents.DotNetBar.StyleManager(this.components);
     this.superTabControl1       = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1  = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.superTabItem1          = new DevComponents.DotNetBar.SuperTabItem();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit();
     this.superTabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class      = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible             = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.ribbonTabItem1,
         this.ribbonTabItem2
     });
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location    = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name        = "ribbonControl1";
     this.ribbonControl1.Padding     = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.office2007StartButton1,
         this.buttonItem1,
         this.qatCustomizeItem1
     });
     this.ribbonControl1.Size  = new System.Drawing.Size(757, 154);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText         = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText         = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText             = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel      = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText           = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton         = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton      = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption           = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel   = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton          = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton      = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText    = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText    = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText          = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex       = 0;
     this.ribbonControl1.Text           = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 56);
     this.ribbonPanel1.Name     = "ribbonPanel1";
     this.ribbonPanel1.Padding  = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size     = new System.Drawing.Size(757, 96);
     //
     //
     //
     this.ribbonPanel1.Style.Class      = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class      = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class      = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // 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.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.Name     = "ribbonBar1";
     this.ribbonBar1.Size     = new System.Drawing.Size(100, 93);
     this.ribbonBar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text     = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class      = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class      = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     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(75, 21);
     //
     //
     //
     this.ribbonPanel2.Style.Class      = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class      = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class      = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.Name    = "ribbonTabItem1";
     this.ribbonTabItem1.Panel   = this.ribbonPanel1;
     this.ribbonTabItem1.Text    = "ribbonTabItem1";
     //
     // ribbonTabItem2
     //
     this.ribbonTabItem2.Name  = "ribbonTabItem2";
     this.ribbonTabItem2.Panel = this.ribbonPanel2;
     this.ribbonTabItem2.Text  = "ribbonTabItem2";
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick      = true;
     this.office2007StartButton1.CanCustomize           = false;
     this.office2007StartButton1.HotTrackingStyle       = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.ImageFixedSize         = new System.Drawing.Size(16, 16);
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical   = 2;
     this.office2007StartButton1.Name         = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.itemContainer1
     });
     this.office2007StartButton1.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.Name                = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 24;
     this.buttonItem2.Text                = "&New";
     //
     // buttonItem3
     //
     this.buttonItem3.ButtonStyle         = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem3.Name                = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 24;
     this.buttonItem3.Text                = "&Open...";
     //
     // buttonItem4
     //
     this.buttonItem4.ButtonStyle         = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     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.Name                = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 24;
     this.buttonItem5.Text                = "S&hare...";
     //
     // buttonItem6
     //
     this.buttonItem6.ButtonStyle         = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     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.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.ForeColor     = System.Drawing.SystemColors.ControlText;
     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.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.Name                = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 24;
     this.buttonItem13.Text                = "E&xit";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // superTabControl1
     //
     //
     //
     //
     //
     //
     //
     this.superTabControl1.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl1.ControlBox.MenuBox.Name = "";
     this.superTabControl1.ControlBox.Name         = "";
     this.superTabControl1.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.superTabControl1.ControlBox.MenuBox,
         this.superTabControl1.ControlBox.CloseBox
     });
     this.superTabControl1.Controls.Add(this.superTabControlPanel1);
     this.superTabControl1.Location           = new System.Drawing.Point(5, 156);
     this.superTabControl1.Name               = "superTabControl1";
     this.superTabControl1.ReorderTabsEnabled = true;
     this.superTabControl1.SelectedTabFont    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.superTabControl1.SelectedTabIndex   = 0;
     this.superTabControl1.Size               = new System.Drawing.Size(200, 100);
     this.superTabControl1.TabFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.superTabControl1.TabIndex           = 1;
     this.superTabControl1.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.superTabItem1
     });
     this.superTabControl1.Text = "superTabControl1";
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(0, 25);
     this.superTabControlPanel1.Name     = "superTabControlPanel1";
     this.superTabControlPanel1.Size     = new System.Drawing.Size(200, 75);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem  = this.superTabItem1;
     //
     // superTabItem1
     //
     this.superTabItem1.AttachedControl = this.superTabControlPanel1;
     this.superTabItem1.GlobalItem      = false;
     this.superTabItem1.Name            = "superTabItem1";
     this.superTabItem1.Text            = "superTabItem1";
     //
     // Form1
     //
     this.ClientSize = new System.Drawing.Size(767, 327);
     this.Controls.Add(this.superTabControl1);
     this.Controls.Add(this.ribbonControl1);
     this.Name = "Form1";
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit();
     this.superTabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Menu_Principal));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.listaCatalogos = new DevComponents.DotNetBar.ItemPanel();
     this.listCatFacultad = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatEdificios = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatDocentes = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatPeriodos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAsignaturaCategorias = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAsignaturas = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulaEstados = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulaTipos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulaTipoUsos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulas = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAlertaEstados = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatEquipos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listaAdministrador = new DevComponents.DotNetBar.ItemPanel();
     this.listAdmControlUsuarios = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAdmSync = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.usuarioResumen = new DevComponents.DotNetBar.PanelEx();
     this.lbCantidadNotificaciones = new DevComponents.DotNetBar.PanelEx();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.labelNombre = new System.Windows.Forms.Label();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.btnCrearSerie = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnVerCalendario = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnReportes = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnCatalogos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnAdministrador = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer2 = 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.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem4 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem4 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem6 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem7 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem8 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.bubbleButton2 = new DevComponents.DotNetBar.BubbleButton();
     this.balloonTip1 = new DevComponents.DotNetBar.BalloonTip();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.metroTileItem5 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem9 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel1.SuspendLayout();
     this.usuarioResumen.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Controls.Add(this.listaCatalogos);
     this.itemPanel1.Controls.Add(this.listaAdministrador);
     this.itemPanel1.Controls.Add(this.usuarioResumen);
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6,
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.itemPanel1.Location = new System.Drawing.Point(3, 3);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(735, 768);
     this.itemPanel1.TabIndex = 4;
     this.itemPanel1.Text = "itemPanel1";
     this.itemPanel1.ThemeAware = true;
     //
     // listaCatalogos
     //
     //
     //
     //
     this.listaCatalogos.BackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.listaCatalogos.BackgroundStyle.BackColorGradientAngle = 90;
     this.listaCatalogos.BackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.listaCatalogos.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderBottomWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.listaCatalogos.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderLeftWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderRightWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderTopWidth = 1;
     this.listaCatalogos.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaCatalogos.ContainerControlProcessDialogKey = true;
     this.listaCatalogos.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listCatFacultad,
     this.listCatEdificios,
     this.listCatDocentes,
     this.listCatPeriodos,
     this.listCatAsignaturaCategorias,
     this.listCatAsignaturas,
     this.listCatAulaEstados,
     this.listCatAulaTipos,
     this.listCatAulaTipoUsos,
     this.listCatAulas,
     this.listCatAlertaEstados,
     this.listCatEquipos});
     this.listaCatalogos.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaCatalogos.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.listaCatalogos.Location = new System.Drawing.Point(0, 424);
     this.listaCatalogos.Name = "listaCatalogos";
     this.listaCatalogos.Size = new System.Drawing.Size(230, 315);
     this.listaCatalogos.TabIndex = 8;
     this.listaCatalogos.Text = "itemPanel2";
     this.listaCatalogos.Visible = false;
     //
     // listCatFacultad
     //
     this.listCatFacultad.Name = "listCatFacultad";
     this.listCatFacultad.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatFacultad.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatFacultad.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatFacultad.TileStyle.PaddingLeft = 50;
     this.listCatFacultad.TitleText = "Facultades";
     this.listCatFacultad.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatFacultad.Click += new System.EventHandler(this.listCatFacultad_Click);
     //
     // listCatEdificios
     //
     this.listCatEdificios.Name = "listCatEdificios";
     this.listCatEdificios.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatEdificios.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatEdificios.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatEdificios.TileStyle.PaddingLeft = 50;
     this.listCatEdificios.TitleText = "Edificios";
     this.listCatEdificios.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatEdificios.Click += new System.EventHandler(this.listCatEdificios_Click);
     //
     // listCatDocentes
     //
     this.listCatDocentes.Name = "listCatDocentes";
     this.listCatDocentes.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatDocentes.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatDocentes.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatDocentes.TileStyle.PaddingLeft = 50;
     this.listCatDocentes.TitleText = "Docentes";
     this.listCatDocentes.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatDocentes.Click += new System.EventHandler(this.listCatDocentes_Click);
     //
     // listCatPeriodos
     //
     this.listCatPeriodos.Name = "listCatPeriodos";
     this.listCatPeriodos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatPeriodos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatPeriodos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatPeriodos.TileStyle.PaddingLeft = 50;
     this.listCatPeriodos.TitleText = "Periodos";
     this.listCatPeriodos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatPeriodos.Click += new System.EventHandler(this.listCatPeriodos_Click);
     //
     // listCatAsignaturaCategorias
     //
     this.listCatAsignaturaCategorias.Name = "listCatAsignaturaCategorias";
     this.listCatAsignaturaCategorias.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAsignaturaCategorias.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAsignaturaCategorias.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAsignaturaCategorias.TileStyle.PaddingLeft = 50;
     this.listCatAsignaturaCategorias.TitleText = "Categorias Asignatura";
     this.listCatAsignaturaCategorias.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAsignaturaCategorias.Click += new System.EventHandler(this.listCatAsignaturaCategorias_Click);
     //
     // listCatAsignaturas
     //
     this.listCatAsignaturas.Name = "listCatAsignaturas";
     this.listCatAsignaturas.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAsignaturas.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAsignaturas.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAsignaturas.TileStyle.PaddingLeft = 50;
     this.listCatAsignaturas.TitleText = "Asignaturas";
     this.listCatAsignaturas.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAsignaturas.Click += new System.EventHandler(this.listCatAsignaturas_Click);
     //
     // listCatAulaEstados
     //
     this.listCatAulaEstados.Name = "listCatAulaEstados";
     this.listCatAulaEstados.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulaEstados.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulaEstados.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulaEstados.TileStyle.PaddingLeft = 50;
     this.listCatAulaEstados.TitleText = "Aula Estados";
     this.listCatAulaEstados.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulaEstados.Click += new System.EventHandler(this.listCatAulaEstados_Click);
     //
     // listCatAulaTipos
     //
     this.listCatAulaTipos.Name = "listCatAulaTipos";
     this.listCatAulaTipos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulaTipos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulaTipos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulaTipos.TileStyle.PaddingLeft = 50;
     this.listCatAulaTipos.TitleText = "Aula Tipos";
     this.listCatAulaTipos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulaTipos.Click += new System.EventHandler(this.listCatAulaTipos_Click);
     //
     // listCatAulaTipoUsos
     //
     this.listCatAulaTipoUsos.Name = "listCatAulaTipoUsos";
     this.listCatAulaTipoUsos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulaTipoUsos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulaTipoUsos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulaTipoUsos.TileStyle.PaddingLeft = 50;
     this.listCatAulaTipoUsos.TitleText = "Aula Usos";
     this.listCatAulaTipoUsos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulaTipoUsos.Click += new System.EventHandler(this.listTipoActividad_Click);
     //
     // listCatAulas
     //
     this.listCatAulas.Name = "listCatAulas";
     this.listCatAulas.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulas.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulas.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulas.TileStyle.PaddingLeft = 50;
     this.listCatAulas.TitleText = "Aulas";
     this.listCatAulas.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulas.Click += new System.EventHandler(this.listCatAulas_Click);
     //
     // listCatAlertaEstados
     //
     this.listCatAlertaEstados.Name = "listCatAlertaEstados";
     this.listCatAlertaEstados.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAlertaEstados.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAlertaEstados.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAlertaEstados.TileStyle.PaddingLeft = 50;
     this.listCatAlertaEstados.TitleText = "Alerta Estados";
     this.listCatAlertaEstados.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAlertaEstados.Click += new System.EventHandler(this.listCatAlertaEstados_Click);
     //
     // listCatEquipos
     //
     this.listCatEquipos.Name = "listCatEquipos";
     this.listCatEquipos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatEquipos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatEquipos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatEquipos.TileStyle.PaddingLeft = 50;
     this.listCatEquipos.TitleText = "Equipos";
     this.listCatEquipos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatEquipos.Click += new System.EventHandler(this.listCatEquipos_Click);
     //
     // listaAdministrador
     //
     this.listaAdministrador.BackColor = System.Drawing.Color.Maroon;
     //
     //
     //
     this.listaAdministrador.BackgroundStyle.Class = "ItemPanel";
     this.listaAdministrador.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaAdministrador.ContainerControlProcessDialogKey = true;
     this.listaAdministrador.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listAdmControlUsuarios,
     this.listAdmSync});
     this.listaAdministrador.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaAdministrador.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.listaAdministrador.Location = new System.Drawing.Point(250, 506);
     this.listaAdministrador.Name = "listaAdministrador";
     this.listaAdministrador.Size = new System.Drawing.Size(230, 60);
     this.listaAdministrador.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.listaAdministrador.TabIndex = 7;
     this.listaAdministrador.Text = "itemPanel2";
     this.listaAdministrador.Visible = false;
     //
     // listAdmControlUsuarios
     //
     this.listAdmControlUsuarios.Name = "listAdmControlUsuarios";
     this.listAdmControlUsuarios.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmControlUsuarios.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmControlUsuarios.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmControlUsuarios.TileStyle.PaddingLeft = 50;
     this.listAdmControlUsuarios.TitleText = "Control Usuarios";
     this.listAdmControlUsuarios.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmControlUsuarios.Click += new System.EventHandler(this.metroTileItem2_Click);
     //
     // listAdmSync
     //
     this.listAdmSync.Name = "listAdmSync";
     this.listAdmSync.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmSync.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmSync.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmSync.TileStyle.PaddingLeft = 50;
     this.listAdmSync.TitleText = "Sincronizar con Class";
     this.listAdmSync.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmSync.Click += new System.EventHandler(this.listAdmSync_Click);
     //
     // usuarioResumen
     //
     this.usuarioResumen.CanvasColor = System.Drawing.SystemColors.Control;
     this.usuarioResumen.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.usuarioResumen.Controls.Add(this.lbCantidadNotificaciones);
     this.usuarioResumen.Controls.Add(this.pictureBox1);
     this.usuarioResumen.Controls.Add(this.labelNombre);
     this.usuarioResumen.Location = new System.Drawing.Point(2, 1);
     this.usuarioResumen.Name = "usuarioResumen";
     this.usuarioResumen.Size = new System.Drawing.Size(728, 245);
     this.usuarioResumen.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.usuarioResumen.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.usuarioResumen.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.usuarioResumen.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.usuarioResumen.Style.GradientAngle = 90;
     this.usuarioResumen.Style.MarginBottom = 10;
     this.usuarioResumen.Style.MarginRight = 30;
     this.usuarioResumen.TabIndex = 5;
     this.usuarioResumen.Click += new System.EventHandler(this.usuarioResumen_Click);
     //
     // lbCantidadNotificaciones
     //
     this.balloonTip1.SetBalloonCaption(this.lbCantidadNotificaciones, "Notificaciones");
     this.lbCantidadNotificaciones.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.lbCantidadNotificaciones.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.lbCantidadNotificaciones.Cursor = System.Windows.Forms.Cursors.Hand;
     this.lbCantidadNotificaciones.Location = new System.Drawing.Point(577, 43);
     this.lbCantidadNotificaciones.Name = "lbCantidadNotificaciones";
     this.lbCantidadNotificaciones.Padding = new System.Windows.Forms.Padding(30, 0, 0, 0);
     this.lbCantidadNotificaciones.Size = new System.Drawing.Size(102, 71);
     this.lbCantidadNotificaciones.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.lbCantidadNotificaciones.Style.BackColor1.Color = System.Drawing.Color.White;
     this.lbCantidadNotificaciones.Style.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources._1356008196_communication;
     this.lbCantidadNotificaciones.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.TopLeft;
     this.lbCantidadNotificaciones.Style.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.lbCantidadNotificaciones.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.lbCantidadNotificaciones.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.lbCantidadNotificaciones.Style.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCantidadNotificaciones.Style.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.lbCantidadNotificaciones.Style.GradientAngle = 90;
     this.lbCantidadNotificaciones.Style.LineAlignment = System.Drawing.StringAlignment.Far;
     this.lbCantidadNotificaciones.Style.MarginBottom = 10;
     this.lbCantidadNotificaciones.Style.MarginLeft = 40;
     this.lbCantidadNotificaciones.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
     this.lbCantidadNotificaciones.StyleMouseDown.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.lbCantidadNotificaciones.StyleMouseDown.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
     this.lbCantidadNotificaciones.StyleMouseDown.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedText;
     this.lbCantidadNotificaciones.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
     this.lbCantidadNotificaciones.StyleMouseOver.BackColor1.Color = System.Drawing.Color.Transparent;
     this.lbCantidadNotificaciones.StyleMouseOver.BackColor2.Color = System.Drawing.Color.White;
     this.lbCantidadNotificaciones.StyleMouseOver.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources._1356008196_communication;
     this.lbCantidadNotificaciones.StyleMouseOver.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.TopLeft;
     this.lbCantidadNotificaciones.StyleMouseOver.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbCantidadNotificaciones.StyleMouseOver.BorderDashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
     this.lbCantidadNotificaciones.StyleMouseOver.BorderWidth = 3;
     this.lbCantidadNotificaciones.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Diagonal;
     this.lbCantidadNotificaciones.StyleMouseOver.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemHotText;
     this.lbCantidadNotificaciones.StyleMouseOver.MarginBottom = 10;
     this.lbCantidadNotificaciones.StyleMouseOver.MarginLeft = 40;
     this.lbCantidadNotificaciones.TabIndex = 5;
     this.lbCantidadNotificaciones.Text = "0";
     this.lbCantidadNotificaciones.Click += new System.EventHandler(this.lbCantidadNotificaciones_Click_1);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::Control_Aulas_UAM.Properties.Resources.UAM_logo;
     this.pictureBox1.Location = new System.Drawing.Point(275, 13);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(190, 178);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // labelNombre
     //
     this.labelNombre.AutoSize = true;
     this.labelNombre.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelNombre.ForeColor = System.Drawing.Color.Black;
     this.labelNombre.Location = new System.Drawing.Point(319, 213);
     this.labelNombre.Name = "labelNombre";
     this.labelNombre.Size = new System.Drawing.Size(104, 18);
     this.labelNombre.TabIndex = 1;
     this.labelNombre.Text = "Bienvenido";
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem1});
     this.itemContainer6.ThemeAware = true;
     //
     //
     //
     this.itemContainer6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = false;
     this.controlContainerItem1.Control = this.usuarioResumen;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     this.controlContainerItem1.ThemeAware = true;
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderBottomColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.ItemSpacing = 20;
     this.itemContainer1.MinimumSize = new System.Drawing.Size(732, 240);
     this.itemContainer1.MultiLine = true;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.ResizeItemsToFit = false;
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCrearSerie,
     this.btnVerCalendario,
     this.btnReportes,
     this.btnCatalogos,
     this.btnAdministrador});
     this.itemContainer1.ThemeAware = true;
     //
     //
     //
     this.itemContainer1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnCrearSerie
     //
     this.btnCrearSerie.DisabledBackColor = System.Drawing.Color.Transparent;
     this.btnCrearSerie.Name = "btnCrearSerie";
     this.btnCrearSerie.Text = "<font size=\"+7\"><br/>Asignar Local</font>";
     this.btnCrearSerie.ThemeAware = true;
     this.btnCrearSerie.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.btnCrearSerie.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnCrearSerie.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.btnCrearSerie.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.btnCrearSerie.TileStyle.BackColorGradientAngle = 45;
     this.btnCrearSerie.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnCrearSerie.TileStyle.PaddingBottom = 4;
     this.btnCrearSerie.TileStyle.PaddingLeft = 4;
     this.btnCrearSerie.TileStyle.PaddingRight = 4;
     this.btnCrearSerie.TileStyle.PaddingTop = 4;
     this.btnCrearSerie.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnCrearSerie.TitleText = "Crear una asignación de Local";
     this.btnCrearSerie.Visible = false;
     this.btnCrearSerie.Click += new System.EventHandler(this.btnCrearSerie_Click);
     //
     // btnVerCalendario
     //
     this.btnVerCalendario.Name = "btnVerCalendario";
     this.btnVerCalendario.Text = "<font size=\"+7\"><br/>Horario por Aula</font>";
     this.btnVerCalendario.ThemeAware = true;
     this.btnVerCalendario.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.btnVerCalendario.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnVerCalendario.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.btnVerCalendario.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.btnVerCalendario.TileStyle.BackColorGradientAngle = 45;
     this.btnVerCalendario.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnVerCalendario.TileStyle.PaddingBottom = 4;
     this.btnVerCalendario.TileStyle.PaddingLeft = 4;
     this.btnVerCalendario.TileStyle.PaddingRight = 4;
     this.btnVerCalendario.TileStyle.PaddingTop = 4;
     this.btnVerCalendario.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnVerCalendario.TitleText = "Ver los horarios de las Aulas";
     this.btnVerCalendario.Click += new System.EventHandler(this.btnVerCalendario_Click);
     //
     // btnReportes
     //
     this.btnReportes.Name = "btnReportes";
     this.btnReportes.Text = "<font size=\"+7\"><br/>Reportes </font>";
     this.btnReportes.ThemeAware = true;
     this.btnReportes.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.btnReportes.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnReportes.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColorGradientAngle = 45;
     this.btnReportes.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnReportes.TileStyle.PaddingBottom = 4;
     this.btnReportes.TileStyle.PaddingLeft = 4;
     this.btnReportes.TileStyle.PaddingRight = 4;
     this.btnReportes.TileStyle.PaddingTop = 4;
     this.btnReportes.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnReportes.TitleText = "Reportes Generales";
     //
     // btnCatalogos
     //
     this.btnCatalogos.Name = "btnCatalogos";
     this.btnCatalogos.Text = "<font size=\"+7\">Catálogos</font>";
     this.btnCatalogos.ThemeAware = true;
     this.btnCatalogos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.btnCatalogos.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnCatalogos.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(118)))), ((int)(((byte)(85)))), ((int)(((byte)(148)))));
     this.btnCatalogos.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(98)))), ((int)(((byte)(185)))));
     this.btnCatalogos.TileStyle.BackColorGradientAngle = 45;
     this.btnCatalogos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnCatalogos.TileStyle.PaddingBottom = 4;
     this.btnCatalogos.TileStyle.PaddingLeft = 4;
     this.btnCatalogos.TileStyle.PaddingRight = 4;
     this.btnCatalogos.TileStyle.PaddingTop = 4;
     this.btnCatalogos.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnCatalogos.TitleText = "Vista de lectura de catálogos";
     this.btnCatalogos.Click += new System.EventHandler(this.btnCatalogos_Click);
     //
     // btnAdministrador
     //
     this.btnAdministrador.Name = "btnAdministrador";
     this.btnAdministrador.Text = "<font size=\"+7\"><br/>Administración</font>";
     this.btnAdministrador.ThemeAware = true;
     this.btnAdministrador.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.btnAdministrador.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAdministrador.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(76)))), ((int)(((byte)(41)))));
     this.btnAdministrador.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(67)))), ((int)(((byte)(37)))));
     this.btnAdministrador.TileStyle.BackColorGradientAngle = 45;
     this.btnAdministrador.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAdministrador.TileStyle.PaddingBottom = 4;
     this.btnAdministrador.TileStyle.PaddingLeft = 4;
     this.btnAdministrador.TileStyle.PaddingRight = 4;
     this.btnAdministrador.TileStyle.PaddingTop = 4;
     this.btnAdministrador.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAdministrador.TileStyle.TextShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.btnAdministrador.TitleText = "Vista de Administrador";
     this.btnAdministrador.Visible = false;
     this.btnAdministrador.Click += new System.EventHandler(this.btnAdministrador_Click);
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 1;
     this.labelItem1.PaddingTop = 1;
     this.labelItem1.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem1.Text = "Stock";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5});
     //
     //
     //
     this.itemContainer2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "Stock-Line";
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "Stock Line 2";
     //
     // buttonItem4
     //
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "Stock Line 3";
     //
     // buttonItem5
     //
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.Text = "Stock Line 4";
     //
     // labelItem2
     //
     this.labelItem2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingBottom = 1;
     this.labelItem2.PaddingTop = 1;
     this.labelItem2.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem2.Text = "Surface";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem6,
     this.buttonItem7,
     this.buttonItem8,
     this.buttonItem9});
     //
     //
     //
     this.itemContainer3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem6
     //
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.Text = "Surface Graph 1";
     //
     // buttonItem7
     //
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.Text = "Surface Graph 2";
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "Surface Graph 3";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "Surface Graph 4";
     //
     // labelItem3
     //
     this.labelItem3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem3.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem3.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem3.Name = "labelItem3";
     this.labelItem3.PaddingBottom = 1;
     this.labelItem3.PaddingTop = 1;
     this.labelItem3.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem3.Text = "Doughnut";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10,
     this.buttonItem11});
     //
     //
     //
     this.itemContainer4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "Doughnut Graph 1";
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "Doughnut Graph 2";
     //
     // labelItem4
     //
     this.labelItem4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem4.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem4.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem4.Name = "labelItem4";
     this.labelItem4.PaddingBottom = 1;
     this.labelItem4.PaddingTop = 1;
     this.labelItem4.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem4.Text = "Bubble";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     //
     //
     this.itemContainer5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.Text = "Bubble Graph 1";
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.Text = "Bubble Graph 2";
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.Text = "buttonItem14";
     //
     // buttonItem15
     //
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "buttonItem15";
     //
     // buttonItem16
     //
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.Text = "buttonItem16";
     //
     // buttonItem17
     //
     this.buttonItem17.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem17.Image")));
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.Text = "buttonItem17";
     //
     // buttonItem18
     //
     this.buttonItem18.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem18.Image")));
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "buttonItem18";
     //
     // buttonItem19
     //
     this.buttonItem19.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem19.Image")));
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "buttonItem19";
     //
     // buttonItem20
     //
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "buttonItem20";
     //
     // buttonItem21
     //
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "buttonItem21";
     //
     // buttonItem22
     //
     this.buttonItem22.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "buttonItem22";
     //
     // buttonItem23
     //
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "buttonItem23";
     //
     // buttonItem24
     //
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "buttonItem24";
     //
     // buttonItem25
     //
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "buttonItem25";
     //
     // metroTileItem1
     //
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "<font size=\"+7\"><br/>Empresa</font>";
     this.metroTileItem1.ThemeAware = true;
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem1.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleText = "Agregar nueva empresa";
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem3.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingLeft = 50;
     this.metroTileItem3.TitleText = "Solicitud de Apoyo";
     this.metroTileItem3.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingLeft = 50;
     this.metroTileItem2.TitleText = "Tipo de Actividad";
     this.metroTileItem2.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem4
     //
     this.metroTileItem4.Name = "metroTileItem4";
     this.metroTileItem4.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem4.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem4.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem4.TileStyle.PaddingLeft = 50;
     this.metroTileItem4.TitleText = "Aula Usos";
     this.metroTileItem4.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem6
     //
     this.metroTileItem6.Image = ((System.Drawing.Image)(resources.GetObject("metroTileItem6.Image")));
     this.metroTileItem6.Name = "metroTileItem6";
     this.metroTileItem6.Text = "<font size=\"+7\"><br/>5</font>";
     this.metroTileItem6.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem6.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // metroTileItem7
     //
     this.metroTileItem7.Image = ((System.Drawing.Image)(resources.GetObject("metroTileItem7.Image")));
     this.metroTileItem7.Name = "metroTileItem7";
     this.metroTileItem7.Text = "<font size=\"+7\"><br/>5</font>";
     this.metroTileItem7.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem7.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // metroTileItem8
     //
     this.metroTileItem8.Name = "metroTileItem8";
     this.metroTileItem8.Text = "<font size=\"+7\">Buscar</font><br/>";
     this.metroTileItem8.ThemeAware = true;
     this.metroTileItem8.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.metroTileItem8.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.metroTileItem8.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.metroTileItem8.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.metroTileItem8.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem8.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem8.TileStyle.PaddingBottom = 4;
     this.metroTileItem8.TileStyle.PaddingLeft = 4;
     this.metroTileItem8.TileStyle.PaddingRight = 4;
     this.metroTileItem8.TileStyle.PaddingTop = 4;
     this.metroTileItem8.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem8.TitleText = "Busquedas según criterios varios";
     //
     // bubbleButton2
     //
     this.bubbleButton2.Name = "bubbleButton2";
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 5000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // metroTileItem5
     //
     this.metroTileItem5.Name = "metroTileItem5";
     this.metroTileItem5.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.metroTileItem5.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem5.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem5.TileStyle.PaddingLeft = 50;
     this.metroTileItem5.TitleText = "Control Usuarios";
     this.metroTileItem5.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem9
     //
     this.metroTileItem9.Name = "metroTileItem9";
     this.metroTileItem9.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.metroTileItem9.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem9.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem9.TileStyle.PaddingLeft = 50;
     this.metroTileItem9.TitleText = "Control Usuarios";
     this.metroTileItem9.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // Menu_Principal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.Controls.Add(this.itemPanel1);
     this.Name = "Menu_Principal";
     this.Size = new System.Drawing.Size(745, 807);
     this.Load += new System.EventHandler(this.Menu_Principal_Load);
     this.itemPanel1.ResumeLayout(false);
     this.usuarioResumen.ResumeLayout(false);
     this.usuarioResumen.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }