Esempio n. 1
0
        void LoadTiles(DataTable dtValidation, string sResearch_Type)
        {
            DataRow[] drrValidation = dtValidation.Select("Research_Type ='" + sResearch_Type + "'");
            if (drrValidation.Length > 0)
            {
                DataTable dtDistinct = drrValidation.CopyToDataTable().DefaultView.ToTable(true, "VALIDATION_NAME");
                //distinctTable = dt.DefaultView.ToTable(true, "FILENAME");

                if (sResearch_Type == "TR")
                {
                    foreach (DataRow drValidation in dtDistinct.Rows)
                    {
                        DevComponents.DotNetBar.Metro.MetroTileItem mt = new DevComponents.DotNetBar.Metro.MetroTileItem();
                        mt.Text = drValidation["VALIDATION_NAME"].ToString();
                        itemContainerTRValidations.SubItems.Add(mt);
                    }
                }
                else
                {
                    foreach (DataRow drValidation in dtDistinct.Rows)
                    {
                        DevComponents.DotNetBar.Metro.MetroTileItem mt = new DevComponents.DotNetBar.Metro.MetroTileItem();
                        mt.Text = drValidation["VALIDATION_NAME"].ToString();
                        itemContainerWRValidations.SubItems.Add(mt);
                    }
                }
            }
        }
Esempio n. 2
0
        private void Validation_Table_Load(object sender, EventArgs e)
        {
            dtValidation = GV.MSSQL1.BAL_FetchTable(GV.sProjectID + "_validations", "VALIDATION_NAME IS NOT NULL");
            LoadTiles(dtValidation, "TR");
            LoadTiles(dtValidation, "WR");

            DevComponents.DotNetBar.Metro.MetroTileItem mtTR = new DevComponents.DotNetBar.Metro.MetroTileItem();
            DevComponents.DotNetBar.Metro.MetroTileItem mtWR = new DevComponents.DotNetBar.Metro.MetroTileItem();
            mtTR.Text = mtWR.Text = "Add New";
            itemContainerTRValidations.SubItems.Add(mtTR);
            itemContainerWRValidations.SubItems.Add(mtWR);
        }
Esempio n. 3
0
 public metro()
 {
     InitializeComponent();
     #region checkforaddons
     try
     {
         int plgcnt = 2;
         string[] fileEntries = Directory.GetFiles(plugindir, "*.dll");
         DirectoryInfo addonnfo = new DirectoryInfo(plugindir);
         if (addonnfo.Exists)
         {
             if (IsDirectoryEmpty(plugindir) == false)
             {
                 int i = 0;
                 foreach (string fileName in fileEntries)
                 {
                     assembly = fileName;
                     string totalfilename = Path.GetFileNameWithoutExtension(fileName);
                     DevComponents.DotNetBar.Metro.MetroTileItem itemplug = new DevComponents.DotNetBar.Metro.MetroTileItem();
                     itemplug.Name = totalfilename;
                     try
                     {
                         Resources _r = new Resources(Assembly.LoadFile(assembly));
                         System.Drawing.Bitmap s = _r.Bitmaps["MetroIcon"];
                         if (s != null)
                         {
                             itemplug.TileStyle.BackgroundImage = _r.Bitmaps["MetroIcon"];
                             itemplug.TileStyle.BackgroundImagePosition = eStyleBackgroundImage.Stretch;
                             itemplug.Refresh();
                         }
                         else
                         {
                             itemplug.Text = itemplug.Name.ToString();
                         }
                     }
                     catch (Exception ex) { }
                     itemplug.Click += new EventHandler(itemplug_Click);
                     itemContainer3.SubItems.Add(itemplug);
                     plgcnt++;
                     i++;
                 }
             }
         }
         if (plgcnt > 0)
         {
             label20.Text = plgcnt.ToString();
         }
         else
         {
             label20.Text = "0";
         }
         itemContainer3.Refresh();
     }
     catch (Exception ex) { MessageBox.Show(ex.Message); }
     #endregion
 }
Esempio n. 4
0
 private void metroTabItem6_Click(object sender, EventArgs e)
 {
     if (metroTabItem3.Visible == true)
     {
         metroTabItem3.Visible = false;
         metroShell1.Refresh();
     }
     if (itemContainer1.SubItems.Count == 0)
     {
         timer1.Start();
         try
         {
             string updateurl = "http://nicoding.com/api.php?app=ripleech&plugin=all&info=name";
             HttpWebRequest request = (HttpWebRequest)WebRequest.Create(updateurl);
             WebResponse response = request.GetResponse();
             System.IO.StreamReader sr = new System.IO.StreamReader(response.GetResponseStream(), System.Text.Encoding.GetEncoding("windows-1252"));
             string pluginsavail = sr.ReadToEnd();
             string[] lines = Regex.Split(pluginsavail, "<br>");
             itemContainer1.SubItems.Clear();
             int currentline = 0;
             int totallines = lines.Count() - 1;
             foreach (string line in lines)
             {
                 if (currentline != totallines)
                 {
                     DevComponents.DotNetBar.Metro.MetroTileItem itemplugdl = new DevComponents.DotNetBar.Metro.MetroTileItem();
                     itemplugdl.Name = line;
                     itemplugdl.Text = (itemplugdl.Name.ToString());
                     itemplugdl.Click += new EventHandler(itemplugdl_Click);
                     itemContainer1.SubItems.Add(itemplugdl);
                     currentline++;
                 }
             }
         }
         catch
         {
             MessageBox.Show("Unable to get plugins at this time.");
             metroTabItem6.Visible = false;
         }
     }
 }
Esempio n. 5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(main));
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar16 = new DevComponents.DotNetBar.RibbonBar();
     this.Exit = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
     this.Refresh = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this._save = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this._open = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this._newproject = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar9 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar8 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar7 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar5 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar15 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar12 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar11 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar10 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar14 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this._File = new DevComponents.DotNetBar.RibbonTabItem();
     this._Edit = new DevComponents.DotNetBar.RibbonTabItem();
     this._Test = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItem3 = new DevComponents.DotNetBar.RibbonTabItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this._New = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.treeViewproject = new System.Windows.Forms.TreeView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addNewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabControl1 = new System.Windows.Forms.CustomTabControl();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel4.SuspendLayout();
     this.ribbonPanel5.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Controls.Add(this.ribbonPanel4);
     this.ribbonControl1.Controls.Add(this.ribbonPanel5);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._File,
     this._Edit,
     this._Test,
     this.ribbonTabItem3});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(996, 129);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar16);
     this.ribbonPanel1.Controls.Add(this.ribbonBar13);
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel1.MaximumSize = new System.Drawing.Size(0, 70);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(996, 70);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar16
     //
     this.ribbonBar16.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar16.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar16.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar16.BackgroundStyle.Class = "";
     this.ribbonBar16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar16.ContainerControlProcessDialogKey = true;
     this.ribbonBar16.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar16.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.Exit});
     this.ribbonBar16.Location = new System.Drawing.Point(306, 0);
     this.ribbonBar16.Name = "ribbonBar16";
     this.ribbonBar16.Size = new System.Drawing.Size(100, 67);
     this.ribbonBar16.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar16.TabIndex = 4;
     //
     //
     //
     this.ribbonBar16.TitleStyle.Class = "";
     this.ribbonBar16.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar16.TitleStyleMouseOver.Class = "";
     this.ribbonBar16.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // Exit
     //
     this.Exit.Image = ((System.Drawing.Image)(resources.GetObject("Exit.Image")));
     this.Exit.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Exit.Name = "Exit";
     this.Exit.SubItemsExpandWidth = 14;
     this.Exit.Text = "<div width=\"70\"  align=\"center\">Exit</div>";
     this.Exit.Click += new System.EventHandler(this.Exit_Click);
     //
     // ribbonBar13
     //
     this.ribbonBar13.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar13.BackgroundStyle.Class = "";
     this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar13.ContainerControlProcessDialogKey = true;
     this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.Refresh});
     this.ribbonBar13.Location = new System.Drawing.Point(232, 0);
     this.ribbonBar13.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar13.Name = "ribbonBar13";
     this.ribbonBar13.Size = new System.Drawing.Size(74, 67);
     this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar13.TabIndex = 3;
     //
     //
     //
     this.ribbonBar13.TitleStyle.Class = "";
     this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar13.TitleStyleMouseOver.Class = "";
     this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // Refresh
     //
     this.Refresh.Image = ((System.Drawing.Image)(resources.GetObject("Refresh.Image")));
     this.Refresh.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.Refresh.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Refresh.Name = "Refresh";
     this.Refresh.SubItemsExpandWidth = 14;
     this.Refresh.Text = "<div width=\"70\"  align=\"center\">Refersh</div>";
     this.Refresh.Click += new System.EventHandler(this.Refresh_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._save});
     this.ribbonBar3.Location = new System.Drawing.Point(158, 0);
     this.ribbonBar3.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(74, 67);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 2;
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _save
     //
     this._save.Image = ((System.Drawing.Image)(resources.GetObject("_save.Image")));
     this._save.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._save.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._save.Name = "_save";
     this._save.SubItemsExpandWidth = 14;
     this._save.Text = "<div width=\"70\"  align=\"center\">Save</div>";
     this._save.Click += new System.EventHandler(this.buttonItem5_Click);
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._open});
     this.ribbonBar2.Location = new System.Drawing.Point(79, 0);
     this.ribbonBar2.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(79, 67);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 1;
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _open
     //
     this._open.Image = ((System.Drawing.Image)(resources.GetObject("_open.Image")));
     this._open.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._open.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._open.Name = "_open";
     this._open.SubItemsExpandWidth = 14;
     this._open.Text = "<div width=\"70\"  align=\"center\">Open</div>";
     this._open.Click += new System.EventHandler(this.buttonItem3_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.Class = "";
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._newproject});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(76, 67);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _newproject
     //
     this._newproject.Image = ((System.Drawing.Image)(resources.GetObject("_newproject.Image")));
     this._newproject.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._newproject.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._newproject.Name = "_newproject";
     this._newproject.SubItemsExpandWidth = 14;
     this._newproject.Text = "<div width=\"70\"  align=\"center\">New Project</div>";
     this._newproject.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel2.Controls.Add(this.ribbonBar9);
     this.ribbonPanel2.Controls.Add(this.ribbonBar8);
     this.ribbonPanel2.Controls.Add(this.ribbonBar7);
     this.ribbonPanel2.Controls.Add(this.ribbonBar6);
     this.ribbonPanel2.Controls.Add(this.ribbonBar5);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel2.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel2.Style.Class = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     this.ribbonPanel2.Visible = false;
     //
     // ribbonBar9
     //
     this.ribbonBar9.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar9.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar9.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.BackgroundStyle.Class = "";
     this.ribbonBar9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar9.ContainerControlProcessDialogKey = true;
     this.ribbonBar9.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar9.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem14});
     this.ribbonBar9.Location = new System.Drawing.Point(403, 0);
     this.ribbonBar9.Name = "ribbonBar9";
     this.ribbonBar9.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar9.TabIndex = 4;
     //
     //
     //
     this.ribbonBar9.TitleStyle.Class = "";
     this.ribbonBar9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.TitleStyleMouseOver.Class = "";
     this.ribbonBar9.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem14.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItemsExpandWidth = 14;
     this.buttonItem14.Text = "<div width=\"70\"  align=\"center\">Parse</div>";
     //
     // ribbonBar8
     //
     this.ribbonBar8.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar8.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar8.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.BackgroundStyle.Class = "";
     this.ribbonBar8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar8.ContainerControlProcessDialogKey = true;
     this.ribbonBar8.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar8.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem13});
     this.ribbonBar8.Location = new System.Drawing.Point(303, 0);
     this.ribbonBar8.Name = "ribbonBar8";
     this.ribbonBar8.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar8.TabIndex = 3;
     //
     //
     //
     this.ribbonBar8.TitleStyle.Class = "";
     this.ribbonBar8.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.TitleStyleMouseOver.Class = "";
     this.ribbonBar8.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem13.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 14;
     this.buttonItem13.Text = "<div width=\"70\"  align=\"center\">Cut</div>";
     //
     // ribbonBar7
     //
     this.ribbonBar7.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar7.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar7.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.BackgroundStyle.Class = "";
     this.ribbonBar7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar7.ContainerControlProcessDialogKey = true;
     this.ribbonBar7.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12});
     this.ribbonBar7.Location = new System.Drawing.Point(203, 0);
     this.ribbonBar7.Name = "ribbonBar7";
     this.ribbonBar7.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar7.TabIndex = 2;
     //
     //
     //
     this.ribbonBar7.TitleStyle.Class = "";
     this.ribbonBar7.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.TitleStyleMouseOver.Class = "";
     this.ribbonBar7.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem12.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 14;
     this.buttonItem12.Text = "<div width=\"70\"  align=\"center\">Copy</div>";
     //
     // ribbonBar6
     //
     this.ribbonBar6.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar6.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar6.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.BackgroundStyle.Class = "";
     this.ribbonBar6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar6.ContainerControlProcessDialogKey = true;
     this.ribbonBar6.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem8});
     this.ribbonBar6.Location = new System.Drawing.Point(103, 0);
     this.ribbonBar6.Name = "ribbonBar6";
     this.ribbonBar6.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar6.TabIndex = 1;
     //
     //
     //
     this.ribbonBar6.TitleStyle.Class = "";
     this.ribbonBar6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.TitleStyleMouseOver.Class = "";
     this.ribbonBar6.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem8.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.SubItemsExpandWidth = 14;
     this.buttonItem8.Text = "<div width=\"70\"  align=\"center\">Redo</div>";
     //
     // ribbonBar5
     //
     this.ribbonBar5.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar5.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar5.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.BackgroundStyle.Class = "";
     this.ribbonBar5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.ContainerControlProcessDialogKey = true;
     this.ribbonBar5.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem11});
     this.ribbonBar5.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar5.Name = "ribbonBar5";
     this.ribbonBar5.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar5.TabIndex = 0;
     //
     //
     //
     this.ribbonBar5.TitleStyle.Class = "";
     this.ribbonBar5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.TitleStyleMouseOver.Class = "";
     this.ribbonBar5.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem11.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.SubItemsExpandWidth = 14;
     this.buttonItem11.Text = "<div width=\"70\"  align=\"center\">Undo</div>";
     //
     // ribbonPanel4
     //
     this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel4.Controls.Add(this.ribbonBar4);
     this.ribbonPanel4.Controls.Add(this.ribbonBar15);
     this.ribbonPanel4.Controls.Add(this.ribbonBar12);
     this.ribbonPanel4.Controls.Add(this.ribbonBar11);
     this.ribbonPanel4.Controls.Add(this.ribbonBar10);
     this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel4.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel4.Name = "ribbonPanel4";
     this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel4.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel4.Style.Class = "";
     this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel4.StyleMouseDown.Class = "";
     this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel4.StyleMouseOver.Class = "";
     this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel4.TabIndex = 4;
     this.ribbonPanel4.Visible = false;
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem5});
     this.ribbonBar4.Location = new System.Drawing.Point(403, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 4;
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem5
     //
     this.buttonItem5.Enabled = false;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem5.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 14;
     this.buttonItem5.Text = "<div width=\"70\"  align=\"center\">Spy</div>";
     this.buttonItem5.Click += new System.EventHandler(this.buttonItem5_Click_1);
     //
     // ribbonBar15
     //
     this.ribbonBar15.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar15.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar15.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar15.BackgroundStyle.Class = "";
     this.ribbonBar15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar15.ContainerControlProcessDialogKey = true;
     this.ribbonBar15.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar15.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.ribbonBar15.Location = new System.Drawing.Point(303, 0);
     this.ribbonBar15.Name = "ribbonBar15";
     this.ribbonBar15.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar15.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar15.TabIndex = 3;
     this.ribbonBar15.Text = " ";
     //
     //
     //
     this.ribbonBar15.TitleStyle.Class = "";
     this.ribbonBar15.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar15.TitleStyleMouseOver.Class = "";
     this.ribbonBar15.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Enabled = false;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 14;
     this.buttonItem2.Text = "<div width=\"70\"  align=\"center\">Resum</div>";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click_1);
     //
     // ribbonBar12
     //
     this.ribbonBar12.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar12.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar12.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar12.BackgroundStyle.Class = "";
     this.ribbonBar12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar12.ContainerControlProcessDialogKey = true;
     this.ribbonBar12.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar12.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem4});
     this.ribbonBar12.Location = new System.Drawing.Point(203, 0);
     this.ribbonBar12.Name = "ribbonBar12";
     this.ribbonBar12.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar12.TabIndex = 2;
     //
     //
     //
     this.ribbonBar12.TitleStyle.Class = "";
     this.ribbonBar12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar12.TitleStyleMouseOver.Class = "";
     this.ribbonBar12.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem4
     //
     this.buttonItem4.Enabled = false;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem4.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 14;
     this.buttonItem4.Text = "<div width=\"70\"  align=\"center\">Stop</div>";
     this.buttonItem4.Click += new System.EventHandler(this.buttonItem4_Click);
     //
     // ribbonBar11
     //
     this.ribbonBar11.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar11.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar11.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.BackgroundStyle.Class = "";
     this.ribbonBar11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar11.ContainerControlProcessDialogKey = true;
     this.ribbonBar11.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar11.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem16});
     this.ribbonBar11.Location = new System.Drawing.Point(103, 0);
     this.ribbonBar11.Name = "ribbonBar11";
     this.ribbonBar11.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar11.TabIndex = 1;
     //
     //
     //
     this.ribbonBar11.TitleStyle.Class = "";
     this.ribbonBar11.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.TitleStyleMouseOver.Class = "";
     this.ribbonBar11.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem16
     //
     this.buttonItem16.Enabled = false;
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem16.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "<div width=\"70\"  align=\"center\">Pause</div>";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar10
     //
     this.ribbonBar10.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar10.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar10.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.BackgroundStyle.Class = "";
     this.ribbonBar10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar10.ContainerControlProcessDialogKey = true;
     this.ribbonBar10.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar10.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem15});
     this.ribbonBar10.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar10.Name = "ribbonBar10";
     this.ribbonBar10.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar10.TabIndex = 0;
     //
     //
     //
     this.ribbonBar10.TitleStyle.Class = "";
     this.ribbonBar10.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.TitleStyleMouseOver.Class = "";
     this.ribbonBar10.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem15
     //
     this.buttonItem15.Enabled = false;
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem15.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.SubItemsExpandWidth = 14;
     this.buttonItem15.Text = "<div width=\"70\"  align=\"center\">Run</div>";
     this.buttonItem15.Click += new System.EventHandler(this.buttonItem15_Click);
     //
     // ribbonPanel5
     //
     this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel5.Controls.Add(this.ribbonBar14);
     this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel5.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel5.Name = "ribbonPanel5";
     this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel5.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel5.Style.Class = "";
     this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel5.StyleMouseDown.Class = "";
     this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel5.StyleMouseOver.Class = "";
     this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel5.TabIndex = 5;
     this.ribbonPanel5.Visible = false;
     //
     // ribbonBar14
     //
     this.ribbonBar14.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar14.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar14.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar14.BackgroundStyle.Class = "";
     this.ribbonBar14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar14.ContainerControlProcessDialogKey = true;
     this.ribbonBar14.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar14.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3});
     this.ribbonBar14.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar14.Name = "ribbonBar14";
     this.ribbonBar14.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar14.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar14.TabIndex = 0;
     //
     //
     //
     this.ribbonBar14.TitleStyle.Class = "";
     this.ribbonBar14.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar14.TitleStyleMouseOver.Class = "";
     this.ribbonBar14.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem3.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 14;
     this.buttonItem3.Text = "<div width=\"70\"  align=\"center\">Hướng dẫn\r\n</div>";
     //
     // _File
     //
     this._File.Checked = true;
     this._File.Name = "_File";
     this._File.Panel = this.ribbonPanel1;
     this._File.Text = "FILE";
     //
     // _Edit
     //
     this._Edit.Name = "_Edit";
     this._Edit.Panel = this.ribbonPanel2;
     this._Edit.Text = "EDIT";
     //
     // _Test
     //
     this._Test.Name = "_Test";
     this._Test.Panel = this.ribbonPanel4;
     this._Test.Text = "TEST";
     //
     // ribbonTabItem3
     //
     this.ribbonTabItem3.Name = "ribbonTabItem3";
     this.ribbonTabItem3.Panel = this.ribbonPanel5;
     this.ribbonTabItem3.Text = "ABOUT";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // _New
     //
     this._New.Image = ((System.Drawing.Image)(resources.GetObject("_New.Image")));
     this._New.ImageFixedSize = new System.Drawing.Size(40, 40);
     this._New.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._New.Name = "_New";
     this._New.SubItemsExpandWidth = 14;
     this._New.Text = "New File";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(40, 40);
     this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItemsExpandWidth = 14;
     this.buttonItem1.Text = "New File";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem9.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10});
     this.buttonItem9.SubItemsExpandWidth = 14;
     this.buttonItem9.Text = "<div width=\"70\"  align=\"center\">New File</div>";
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.ImageFixedSize = new System.Drawing.Size(40, 40);
     this.buttonItem10.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.SubItemsExpandWidth = 14;
     this.buttonItem10.Text = "<div width=\"70\" align=\"center\">Close</div>";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 516);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(996, 0);
     this.dockSite4.TabIndex = 4;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 246, 386)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 130);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(249, 386);
     this.dockSite1.TabIndex = 1;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CanDockBottom = false;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.bar1.DockOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(246, 386);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Solution Explorer";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.Add(this.treeViewproject);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(240, 360);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.StyleMouseDown.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
     this.panelDockContainer1.StyleMouseDown.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139)))));
     this.panelDockContainer1.StyleMouseDown.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.panelDockContainer1.StyleMouseDown.ForeColor.Color = System.Drawing.SystemColors.ControlText;
     this.panelDockContainer1.StyleMouseOver.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(244)))), ((int)(((byte)(204)))));
     this.panelDockContainer1.StyleMouseOver.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(208)))), ((int)(((byte)(145)))));
     this.panelDockContainer1.StyleMouseOver.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.panelDockContainer1.StyleMouseOver.ForeColor.Color = System.Drawing.SystemColors.ControlText;
     this.panelDockContainer1.TabIndex = 0;
     //
     // treeViewproject
     //
     this.treeViewproject.ContextMenuStrip = this.contextMenuStrip1;
     this.treeViewproject.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeViewproject.ImageIndex = 0;
     this.treeViewproject.ImageList = this.imageList1;
     this.treeViewproject.Location = new System.Drawing.Point(0, 0);
     this.treeViewproject.Name = "treeViewproject";
     this.treeViewproject.SelectedImageIndex = 0;
     this.treeViewproject.Size = new System.Drawing.Size(240, 360);
     this.treeViewproject.TabIndex = 0;
     this.treeViewproject.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     this.treeViewproject.DoubleClick += new System.EventHandler(this.treeViewproject_DoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addNewFileToolStripMenuItem,
     this.deleteToolStripMenuItem,
     this.runToolStripMenuItem,
     this.spyToolStripMenuItem,
     this.refreshToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(145, 114);
     //
     // addNewFileToolStripMenuItem
     //
     this.addNewFileToolStripMenuItem.Name = "addNewFileToolStripMenuItem";
     this.addNewFileToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.addNewFileToolStripMenuItem.Text = "Add New File";
     this.addNewFileToolStripMenuItem.Click += new System.EventHandler(this.addNewFileToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.Enabled = false;
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.runToolStripMenuItem.Text = "Run";
     this.runToolStripMenuItem.Click += new System.EventHandler(this.runToolStripMenuItem_Click);
     //
     // spyToolStripMenuItem
     //
     this.spyToolStripMenuItem.Name = "spyToolStripMenuItem";
     this.spyToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.spyToolStripMenuItem.Text = "Spy";
     this.spyToolStripMenuItem.Click += new System.EventHandler(this.spyToolStripMenuItem_Click_1);
     //
     // refreshToolStripMenuItem
     //
     this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
     this.refreshToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.refreshToolStripMenuItem.Text = "Refresh";
     this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "xls.png");
     this.imageList1.Images.SetKeyName(1, "folder-512.png");
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "Solution Explorer";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(1001, 130);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 386);
     this.dockSite2.TabIndex = 2;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 516);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(996, 0);
     this.dockSite8.TabIndex = 8;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 515);
     this.dockSite5.TabIndex = 5;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(1001, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 515);
     this.dockSite6.TabIndex = 6;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(996, 0);
     this.dockSite7.TabIndex = 7;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(996, 0);
     this.dockSite3.TabIndex = 3;
     this.dockSite3.TabStop = false;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem2.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.metroTileItem2.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.metroTileItem2.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem2.TileStyle.Class = "";
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingBottom = 4;
     this.metroTileItem2.TileStyle.PaddingLeft = 4;
     this.metroTileItem2.TileStyle.PaddingRight = 4;
     this.metroTileItem2.TileStyle.PaddingTop = 4;
     this.metroTileItem2.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.closeTabToolStripMenuItem,
     this.copyToolStripMenuItem});
     this.contextMenuStrip2.Name = "contextMenuStrip2";
     this.contextMenuStrip2.Size = new System.Drawing.Size(127, 48);
     //
     // closeTabToolStripMenuItem
     //
     this.closeTabToolStripMenuItem.Name = "closeTabToolStripMenuItem";
     this.closeTabToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.closeTabToolStripMenuItem.Text = "Close Tab";
     this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click_1);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.copyToolStripMenuItem.Text = "Copy";
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.pictureBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 28);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(739, 354);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Start Page";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(733, 348);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabControl1
     //
     this.tabControl1.AllowDrop = true;
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.DisplayStyle = System.Windows.Forms.TabStyle.IE8;
     //
     //
     //
     this.tabControl1.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.tabControl1.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
     this.tabControl1.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.Red;
     this.tabControl1.DisplayStyleProvider.FocusTrack = false;
     this.tabControl1.DisplayStyleProvider.HotTrack = true;
     this.tabControl1.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tabControl1.DisplayStyleProvider.Opacity = 1F;
     this.tabControl1.DisplayStyleProvider.Overlap = 0;
     this.tabControl1.DisplayStyleProvider.Padding = new System.Drawing.Point(6, 5);
     this.tabControl1.DisplayStyleProvider.Radius = 3;
     this.tabControl1.DisplayStyleProvider.ShowTabCloser = true;
     this.tabControl1.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HotTrack = true;
     this.tabControl1.ImageList = this.imageList1;
     this.tabControl1.Location = new System.Drawing.Point(254, 130);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(747, 386);
     this.tabControl1.TabIndex = 9;
     this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown);
     //
     // main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1006, 518);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Automation Test";
     this.Load += new System.EventHandler(this.main_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel4.ResumeLayout(false);
     this.ribbonPanel5.ResumeLayout(false);
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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);
 }
 /// <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);
 }
Esempio n. 8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.strmenuHeThong = new System.Windows.Forms.ToolStripMenuItem();
     this.strDangNhap = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripNewProject = new System.Windows.Forms.ToolStripMenuItem();
     this.strDangXuat = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this._btSave = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.strmenuTroGiup = new System.Windows.Forms.ToolStripMenuItem();
     this.strThongTin = new System.Windows.Forms.ToolStripMenuItem();
     this.strLienHe = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.projectExploreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.execureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.thoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tácGiảToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.metroShell1 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonRun = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPause = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonStop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonUndo = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this._treeViewProjectExplore = new System.Windows.Forms.TreeView();
     this.contextMenuStripTreeView = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.runToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.addFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageListTrV = new System.Windows.Forms.ImageList(this.components);
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.tabControl1X = new System.Windows.Forms.TabControl();
     this.tabPageHex = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabPageText = new System.Windows.Forms.TabPage();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabMenu = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.itemPanel4 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem4 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel5 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem5 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel6 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem6 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel7 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem7 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel3 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabPageExcell = new System.Windows.Forms.TabPage();
     this.tabControl1 = new System.Windows.Forms.CustomTabControl();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.tabPage23 = new System.Windows.Forms.TabPage();
     this.tabPage21 = new System.Windows.Forms.TabPage();
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     this.contextMenuStripTreeView.SuspendLayout();
     this.tabControl1X.SuspendLayout();
     this.tabPageHex.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabPageText.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabMenu.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tabPageExcell.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.menuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strmenuHeThong,
     this.strmenuTroGiup,
     this.viewToolStripMenuItem,
     this.execureToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(5, 25);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(851, 24);
     this.menuStrip1.TabIndex = 12;
     this.menuStrip1.Text = "menuStrip1";
     //
     // strmenuHeThong
     //
     this.strmenuHeThong.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strDangNhap,
     this.strDangXuat,
     this._btSave,
     this.exitToolStripMenuItem});
     this.strmenuHeThong.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.strmenuHeThong.ForeColor = System.Drawing.Color.White;
     this.strmenuHeThong.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.strmenuHeThong.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strmenuHeThong.ImageTransparentColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.strmenuHeThong.Name = "strmenuHeThong";
     this.strmenuHeThong.Size = new System.Drawing.Size(37, 20);
     this.strmenuHeThong.Text = "&File";
     //
     // strDangNhap
     //
     this.strDangNhap.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strDangNhap.BackgroundImage")));
     this.strDangNhap.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripNewProject});
     this.strDangNhap.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strDangNhap.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strDangNhap.Name = "strDangNhap";
     this.strDangNhap.Size = new System.Drawing.Size(138, 22);
     this.strDangNhap.Text = "New";
     //
     // projectToolStripNewProject
     //
     this.projectToolStripNewProject.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectToolStripNewProject.BackgroundImage")));
     this.projectToolStripNewProject.ForeColor = System.Drawing.Color.White;
     this.projectToolStripNewProject.Image = ((System.Drawing.Image)(resources.GetObject("projectToolStripNewProject.Image")));
     this.projectToolStripNewProject.Name = "projectToolStripNewProject";
     this.projectToolStripNewProject.Size = new System.Drawing.Size(111, 22);
     this.projectToolStripNewProject.Text = "Project";
     this.projectToolStripNewProject.Click += new System.EventHandler(this.projectToolStripNewProject_Click);
     //
     // strDangXuat
     //
     this.strDangXuat.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strDangXuat.BackgroundImage")));
     this.strDangXuat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripMenuItem1});
     this.strDangXuat.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strDangXuat.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strDangXuat.Name = "strDangXuat";
     this.strDangXuat.Size = new System.Drawing.Size(138, 22);
     this.strDangXuat.Text = "Open";
     //
     // projectToolStripMenuItem1
     //
     this.projectToolStripMenuItem1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem1.BackgroundImage")));
     this.projectToolStripMenuItem1.ForeColor = System.Drawing.Color.White;
     this.projectToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem1.Image")));
     this.projectToolStripMenuItem1.Name = "projectToolStripMenuItem1";
     this.projectToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
     this.projectToolStripMenuItem1.Text = "Project";
     this.projectToolStripMenuItem1.Click += new System.EventHandler(this.projectToolStripMenuItem1_Click);
     //
     // _btSave
     //
     this._btSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("_btSave.BackgroundImage")));
     this._btSave.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this._btSave.Image = ((System.Drawing.Image)(resources.GetObject("_btSave.Image")));
     this._btSave.Name = "_btSave";
     this._btSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this._btSave.Size = new System.Drawing.Size(138, 22);
     this._btSave.Text = "Save";
     this._btSave.Click += new System.EventHandler(this._btSave_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("exitToolStripMenuItem.BackgroundImage")));
     this.exitToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.exitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("exitToolStripMenuItem.Image")));
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // strmenuTroGiup
     //
     this.strmenuTroGiup.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strThongTin,
     this.strLienHe});
     this.strmenuTroGiup.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.strmenuTroGiup.ForeColor = System.Drawing.Color.White;
     this.strmenuTroGiup.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.strmenuTroGiup.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strmenuTroGiup.Name = "strmenuTroGiup";
     this.strmenuTroGiup.Size = new System.Drawing.Size(39, 20);
     this.strmenuTroGiup.Text = "&Edit";
     //
     // strThongTin
     //
     this.strThongTin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strThongTin.BackgroundImage")));
     this.strThongTin.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strThongTin.Image = ((System.Drawing.Image)(resources.GetObject("strThongTin.Image")));
     this.strThongTin.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strThongTin.Name = "strThongTin";
     this.strThongTin.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.strThongTin.Size = new System.Drawing.Size(144, 22);
     this.strThongTin.Text = "Undo";
     //
     // strLienHe
     //
     this.strLienHe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strLienHe.BackgroundImage")));
     this.strLienHe.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strLienHe.Image = ((System.Drawing.Image)(resources.GetObject("strLienHe.Image")));
     this.strLienHe.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strLienHe.Name = "strLienHe";
     this.strLienHe.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.strLienHe.Size = new System.Drawing.Size(144, 22);
     this.strLienHe.Text = "Redo";
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectExploreToolStripMenuItem});
     this.viewToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.viewToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "&View";
     //
     // projectExploreToolStripMenuItem
     //
     this.projectExploreToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectExploreToolStripMenuItem.BackgroundImage")));
     this.projectExploreToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.projectExploreToolStripMenuItem.Name = "projectExploreToolStripMenuItem";
     this.projectExploreToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.projectExploreToolStripMenuItem.Text = "Project Explore";
     //
     // execureToolStripMenuItem
     //
     this.execureToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem,
     this.pauseToolStripMenuItem,
     this.stopToolStripMenuItem});
     this.execureToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.execureToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.execureToolStripMenuItem.Name = "execureToolStripMenuItem";
     this.execureToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
     this.execureToolStripMenuItem.Text = "&Execure";
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem.BackgroundImage")));
     this.runToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.runToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem.Image")));
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
     this.runToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.runToolStripMenuItem.Text = "Run";
     //
     // pauseToolStripMenuItem
     //
     this.pauseToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pauseToolStripMenuItem.BackgroundImage")));
     this.pauseToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.pauseToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pauseToolStripMenuItem.Image")));
     this.pauseToolStripMenuItem.Name = "pauseToolStripMenuItem";
     this.pauseToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.pauseToolStripMenuItem.Text = "Pause";
     //
     // stopToolStripMenuItem
     //
     this.stopToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("stopToolStripMenuItem.BackgroundImage")));
     this.stopToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.stopToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("stopToolStripMenuItem.Image")));
     this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
     this.stopToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.stopToolStripMenuItem.Text = "Stop";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.thoToolStripMenuItem,
     this.tácGiảToolStripMenuItem});
     this.aboutToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.aboutToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.aboutToolStripMenuItem.Text = "&About";
     //
     // thoToolStripMenuItem
     //
     this.thoToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("thoToolStripMenuItem.BackgroundImage")));
     this.thoToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.thoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("thoToolStripMenuItem.Image")));
     this.thoToolStripMenuItem.Name = "thoToolStripMenuItem";
     this.thoToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.thoToolStripMenuItem.Text = "Thông Tin Phần Mềm";
     //
     // tácGiảToolStripMenuItem
     //
     this.tácGiảToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tácGiảToolStripMenuItem.BackgroundImage")));
     this.tácGiảToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.tácGiảToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("tácGiảToolStripMenuItem.Image")));
     this.tácGiảToolStripMenuItem.Name = "tácGiảToolStripMenuItem";
     this.tácGiảToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.tácGiảToolStripMenuItem.Text = "Tác Giả";
     //
     // metroShell1
     //
     this.metroShell1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.metroShell1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("metroShell1.BackgroundImage")));
     this.metroShell1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     //
     //
     //
     this.metroShell1.BackgroundStyle.Class = "";
     this.metroShell1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell1.CaptionVisible = true;
     this.metroShell1.Dock = System.Windows.Forms.DockStyle.Top;
     this.metroShell1.ForeColor = System.Drawing.Color.DimGray;
     this.metroShell1.HelpButtonText = null;
     this.metroShell1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.metroShell1.Location = new System.Drawing.Point(5, 1);
     this.metroShell1.Name = "metroShell1";
     this.metroShell1.Size = new System.Drawing.Size(851, 24);
     this.metroShell1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell1.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell1.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell1.SystemText.QatDialogOkButton = "OK";
     this.metroShell1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell1.TabIndex = 11;
     this.metroShell1.TabStripFont = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroShell1.Text = "metroShell1";
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripButton,
     this.openToolStripButton,
     this.saveToolStripButton,
     this.toolStripSeparator,
     this.toolStripButtonRun,
     this.toolStripButtonPause,
     this.toolStripButtonStop,
     this.toolStripSeparator1,
     this.toolStripButtonUndo,
     this.toolStripButtonRedo,
     this.toolStripSeparator2,
     this.cutToolStripButton,
     this.copyToolStripButton,
     this.pasteToolStripButton,
     this.toolStripSeparator3,
     this.helpToolStripButton});
     this.toolStrip1.Location = new System.Drawing.Point(5, 49);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(851, 25);
     this.toolStrip1.TabIndex = 13;
     this.toolStrip1.Text = "toolStrip1";
     //
     // newToolStripButton
     //
     this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
     this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.newToolStripButton.Text = "&New";
     //
     // openToolStripButton
     //
     this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
     this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripButton.Name = "openToolStripButton";
     this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.openToolStripButton.Text = "&Open";
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
     this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.saveToolStripButton.Text = "&Save";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonRun
     //
     this.toolStripButtonRun.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRun.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRun.Image")));
     this.toolStripButtonRun.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRun.Name = "toolStripButtonRun";
     this.toolStripButtonRun.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRun.Text = "&Run";
     //
     // toolStripButtonPause
     //
     this.toolStripButtonPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonPause.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPause.Image")));
     this.toolStripButtonPause.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPause.Name = "toolStripButtonPause";
     this.toolStripButtonPause.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonPause.Text = "&Pause";
     //
     // toolStripButtonStop
     //
     this.toolStripButtonStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonStop.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonStop.Image")));
     this.toolStripButtonStop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonStop.Name = "toolStripButtonStop";
     this.toolStripButtonStop.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonStop.Text = "&Stop";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonUndo
     //
     this.toolStripButtonUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonUndo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonUndo.Image")));
     this.toolStripButtonUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonUndo.Name = "toolStripButtonUndo";
     this.toolStripButtonUndo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonUndo.Text = "&Undo";
     //
     // toolStripButtonRedo
     //
     this.toolStripButtonRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRedo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRedo.Image")));
     this.toolStripButtonRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRedo.Name = "toolStripButtonRedo";
     this.toolStripButtonRedo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRedo.Text = "&Redo";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
     this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.cutToolStripButton.Text = "C&ut";
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
     this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.copyToolStripButton.Text = "&Copy";
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
     this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.pasteToolStripButton.Text = "&Paste";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // helpToolStripButton
     //
     this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
     this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.helpToolStripButton.Name = "helpToolStripButton";
     this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.helpToolStripButton.Text = "He&lp";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 479);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(851, 0);
     this.dockSite4.TabIndex = 17;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 169, 405)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 74);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(172, 405);
     this.dockSite1.TabIndex = 14;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(169, 405);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Solution Explore";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panelDockContainer1.Controls.Add(this._treeViewProjectExplore);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(163, 379);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // _treeViewProjectExplore
     //
     this._treeViewProjectExplore.ContextMenuStrip = this.contextMenuStripTreeView;
     this._treeViewProjectExplore.Dock = System.Windows.Forms.DockStyle.Fill;
     this._treeViewProjectExplore.ImageIndex = 0;
     this._treeViewProjectExplore.ImageList = this.imageListTrV;
     this._treeViewProjectExplore.Location = new System.Drawing.Point(0, 0);
     this._treeViewProjectExplore.Name = "_treeViewProjectExplore";
     this._treeViewProjectExplore.SelectedImageIndex = 0;
     this._treeViewProjectExplore.Size = new System.Drawing.Size(163, 379);
     this._treeViewProjectExplore.TabIndex = 0;
     this._treeViewProjectExplore.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this._treeViewProjectExplore_AfterSelect);
     this._treeViewProjectExplore.DoubleClick += new System.EventHandler(this._treeViewProjectExplore_DoubleClick);
     //
     // contextMenuStripTreeView
     //
     this.contextMenuStripTreeView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem1,
     this.addFileToolStripMenuItem,
     this.deleteToolStripMenuItem});
     this.contextMenuStripTreeView.Name = "contextMenuStripTreeView";
     this.contextMenuStripTreeView.Size = new System.Drawing.Size(118, 70);
     //
     // runToolStripMenuItem1
     //
     this.runToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem1.Image")));
     this.runToolStripMenuItem1.Name = "runToolStripMenuItem1";
     this.runToolStripMenuItem1.Size = new System.Drawing.Size(117, 22);
     this.runToolStripMenuItem1.Text = "Run";
     this.runToolStripMenuItem1.Click += new System.EventHandler(this.runToolStripMenuItem1_Click);
     //
     // addFileToolStripMenuItem
     //
     this.addFileToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("addFileToolStripMenuItem.Image")));
     this.addFileToolStripMenuItem.Name = "addFileToolStripMenuItem";
     this.addFileToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.addFileToolStripMenuItem.Text = "Add File";
     this.addFileToolStripMenuItem.Click += new System.EventHandler(this.addFileToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteToolStripMenuItem.Image")));
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     //
     // imageListTrV
     //
     this.imageListTrV.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTrV.ImageStream")));
     this.imageListTrV.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListTrV.Images.SetKeyName(0, "1.png");
     this.imageListTrV.Images.SetKeyName(1, "2.png");
     this.imageListTrV.Images.SetKeyName(2, "Folder.png");
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(856, 74);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 405);
     this.dockSite2.TabIndex = 15;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 479);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(851, 0);
     this.dockSite8.TabIndex = 21;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 478);
     this.dockSite5.TabIndex = 18;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(856, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 478);
     this.dockSite6.TabIndex = 19;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(851, 0);
     this.dockSite7.TabIndex = 20;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(851, 0);
     this.dockSite3.TabIndex = 16;
     this.dockSite3.TabStop = false;
     //
     // tabControl1X
     //
     this.tabControl1X.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabControl1X.Controls.Add(this.tabPageHex);
     this.tabControl1X.Controls.Add(this.tabPageText);
     this.tabControl1X.Controls.Add(this.tabPageExcell);
     this.tabControl1X.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1X.Location = new System.Drawing.Point(177, 74);
     this.tabControl1X.Name = "tabControl1X";
     this.tabControl1X.SelectedIndex = 0;
     this.tabControl1X.Size = new System.Drawing.Size(679, 405);
     this.tabControl1X.TabIndex = 22;
     //
     // tabPageHex
     //
     this.tabPageHex.Controls.Add(this.pictureBox1);
     this.tabPageHex.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageHex.Location = new System.Drawing.Point(4, 25);
     this.tabPageHex.Name = "tabPageHex";
     this.tabPageHex.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageHex.Size = new System.Drawing.Size(671, 376);
     this.tabPageHex.TabIndex = 0;
     this.tabPageHex.Text = "Introduction";
     this.tabPageHex.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(665, 370);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabPageText
     //
     this.tabPageText.Controls.Add(this.tabControl2);
     this.tabPageText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageText.Location = new System.Drawing.Point(4, 25);
     this.tabPageText.Name = "tabPageText";
     this.tabPageText.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageText.Size = new System.Drawing.Size(671, 376);
     this.tabPageText.TabIndex = 1;
     this.tabPageText.Text = "Short Menu";
     this.tabPageText.UseVisualStyleBackColor = true;
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabMenu);
     this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
     this.tabControl2.Location = new System.Drawing.Point(3, 3);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(665, 370);
     this.tabControl2.TabIndex = 21;
     //
     // tabMenu
     //
     this.tabMenu.Controls.Add(this.tableLayoutPanel1);
     this.tabMenu.Location = new System.Drawing.Point(4, 22);
     this.tabMenu.Name = "tabMenu";
     this.tabMenu.Padding = new System.Windows.Forms.Padding(3);
     this.tabMenu.Size = new System.Drawing.Size(657, 344);
     this.tabMenu.TabIndex = 1;
     this.tabMenu.Text = "Short Menu";
     this.tabMenu.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 616F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 8F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelX1, 1, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 56F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 9F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(651, 338);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.56995F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 69.43005F));
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(41, 59);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(610, 294);
     this.tableLayoutPanel2.TabIndex = 0;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.17172F));
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel5, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.itemPanel3, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(189, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 2;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.69444F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 197F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(418, 288);
     this.tableLayoutPanel3.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Controls.Add(this.itemPanel4, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel5, 1, 0);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel6, 0, 1);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel7, 1, 1);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 94);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 2;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(412, 191);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // itemPanel4
     //
     //
     //
     //
     this.itemPanel4.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel4.ContainerControlProcessDialogKey = true;
     this.itemPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer4});
     this.itemPanel4.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel4.Location = new System.Drawing.Point(3, 3);
     this.itemPanel4.Name = "itemPanel4";
     this.itemPanel4.Size = new System.Drawing.Size(200, 89);
     this.itemPanel4.TabIndex = 0;
     this.itemPanel4.Text = "itemPanel4";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "";
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem4});
     //
     // metroTileItem4
     //
     this.metroTileItem4.Name = "metroTileItem4";
     this.metroTileItem4.Text = "metroTileItem4";
     this.metroTileItem4.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.metroTileItem4.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem4.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.metroTileItem4.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.metroTileItem4.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem4.TileStyle.Class = "";
     this.metroTileItem4.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem4.TileStyle.PaddingBottom = 4;
     this.metroTileItem4.TileStyle.PaddingLeft = 4;
     this.metroTileItem4.TileStyle.PaddingRight = 4;
     this.metroTileItem4.TileStyle.PaddingTop = 4;
     this.metroTileItem4.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel5
     //
     //
     //
     //
     this.itemPanel5.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel5.ContainerControlProcessDialogKey = true;
     this.itemPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer5});
     this.itemPanel5.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel5.Location = new System.Drawing.Point(209, 3);
     this.itemPanel5.Name = "itemPanel5";
     this.itemPanel5.Size = new System.Drawing.Size(200, 89);
     this.itemPanel5.TabIndex = 1;
     this.itemPanel5.Text = "itemPanel5";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.Class = "";
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem5});
     //
     // metroTileItem5
     //
     this.metroTileItem5.Name = "metroTileItem5";
     this.metroTileItem5.Text = "metroTileItem5";
     this.metroTileItem5.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.DarkOlive;
     this.metroTileItem5.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem5.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(96)))));
     this.metroTileItem5.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(107)))), ((int)(((byte)(86)))));
     this.metroTileItem5.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem5.TileStyle.Class = "";
     this.metroTileItem5.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem5.TileStyle.PaddingBottom = 4;
     this.metroTileItem5.TileStyle.PaddingLeft = 4;
     this.metroTileItem5.TileStyle.PaddingRight = 4;
     this.metroTileItem5.TileStyle.PaddingTop = 4;
     this.metroTileItem5.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel6
     //
     //
     //
     //
     this.itemPanel6.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel6.ContainerControlProcessDialogKey = true;
     this.itemPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6});
     this.itemPanel6.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel6.Location = new System.Drawing.Point(3, 98);
     this.itemPanel6.Name = "itemPanel6";
     this.itemPanel6.Size = new System.Drawing.Size(200, 90);
     this.itemPanel6.TabIndex = 2;
     this.itemPanel6.Text = "itemPanel6";
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.Class = "";
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem6});
     //
     // metroTileItem6
     //
     this.metroTileItem6.Name = "metroTileItem6";
     this.metroTileItem6.Text = "metroTileItem6";
     this.metroTileItem6.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.metroTileItem6.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem6.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.metroTileItem6.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.metroTileItem6.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem6.TileStyle.Class = "";
     this.metroTileItem6.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem6.TileStyle.PaddingBottom = 4;
     this.metroTileItem6.TileStyle.PaddingLeft = 4;
     this.metroTileItem6.TileStyle.PaddingRight = 4;
     this.metroTileItem6.TileStyle.PaddingTop = 4;
     this.metroTileItem6.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel7
     //
     //
     //
     //
     this.itemPanel7.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel7.ContainerControlProcessDialogKey = true;
     this.itemPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer7});
     this.itemPanel7.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel7.Location = new System.Drawing.Point(209, 98);
     this.itemPanel7.Name = "itemPanel7";
     this.itemPanel7.Size = new System.Drawing.Size(200, 90);
     this.itemPanel7.TabIndex = 3;
     this.itemPanel7.Text = "itemPanel7";
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.Class = "";
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem7});
     //
     // metroTileItem7
     //
     this.metroTileItem7.Name = "metroTileItem7";
     this.metroTileItem7.Text = "metroTileItem7";
     this.metroTileItem7.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem7.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem7.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem7.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem7.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem7.TileStyle.Class = "";
     this.metroTileItem7.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem7.TileStyle.PaddingBottom = 4;
     this.metroTileItem7.TileStyle.PaddingLeft = 4;
     this.metroTileItem7.TileStyle.PaddingRight = 4;
     this.metroTileItem7.TileStyle.PaddingTop = 4;
     this.metroTileItem7.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel3
     //
     //
     //
     //
     this.itemPanel3.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel3.ContainerControlProcessDialogKey = true;
     this.itemPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     this.itemPanel3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel3.Location = new System.Drawing.Point(3, 3);
     this.itemPanel3.Name = "itemPanel3";
     this.itemPanel3.Size = new System.Drawing.Size(412, 85);
     this.itemPanel3.TabIndex = 1;
     this.itemPanel3.Text = "itemPanel3";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem3});
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.Text = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem3.TileSize = new System.Drawing.Size(420, 90);
     //
     //
     //
     this.metroTileItem3.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(187)))), ((int)(((byte)(17)))));
     this.metroTileItem3.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(176)))), ((int)(((byte)(16)))));
     this.metroTileItem3.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem3.TileStyle.Class = "";
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingBottom = 4;
     this.metroTileItem3.TileStyle.PaddingLeft = 4;
     this.metroTileItem3.TileStyle.PaddingRight = 4;
     this.metroTileItem3.TileStyle.PaddingTop = 4;
     this.metroTileItem3.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Controls.Add(this.itemPanel1, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.itemPanel2, 0, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 143F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(180, 288);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // itemPanel1
     //
     //
     //
     //
     this.itemPanel1.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.Location = new System.Drawing.Point(3, 3);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(174, 139);
     this.itemPanel1.TabIndex = 0;
     this.itemPanel1.Text = "itemPanel1";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem1});
     //
     // metroTileItem1
     //
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "metroTileItem1";
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Teal;
     this.metroTileItem1.TileSize = new System.Drawing.Size(180, 150);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(169)))), ((int)(((byte)(142)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(187)))), ((int)(((byte)(158)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.Class = "";
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleTextColor = System.Drawing.SystemColors.MenuHighlight;
     //
     // itemPanel2
     //
     //
     //
     //
     this.itemPanel2.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(3, 148);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(174, 137);
     this.itemPanel2.TabIndex = 1;
     this.itemPanel2.Text = "itemPanel2";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem2});
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.Text = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 150);
     //
     //
     //
     this.metroTileItem2.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.metroTileItem2.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.metroTileItem2.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem2.TileStyle.Class = "";
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingBottom = 4;
     this.metroTileItem2.TileStyle.PaddingLeft = 4;
     this.metroTileItem2.TileStyle.PaddingRight = 4;
     this.metroTileItem2.TileStyle.PaddingTop = 4;
     this.metroTileItem2.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(41, 3);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(183, 50);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "<b><font size=\'26\' color=\'#00B7EF\'>Menu</font></b>";
     //
     // tabPageExcell
     //
     this.tabPageExcell.Controls.Add(this.tabControl1);
     this.tabPageExcell.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageExcell.Location = new System.Drawing.Point(4, 25);
     this.tabPageExcell.Name = "tabPageExcell";
     this.tabPageExcell.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageExcell.Size = new System.Drawing.Size(671, 376);
     this.tabPageExcell.TabIndex = 2;
     this.tabPageExcell.Text = "Excel";
     this.tabPageExcell.UseVisualStyleBackColor = true;
     //
     // tabControl1
     //
     this.tabControl1.DisplayStyle = System.Windows.Forms.TabStyle.Chrome;
     //
     //
     //
     this.tabControl1.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.tabControl1.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
     this.tabControl1.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.White;
     this.tabControl1.DisplayStyleProvider.FocusTrack = false;
     this.tabControl1.DisplayStyleProvider.HotTrack = true;
     this.tabControl1.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tabControl1.DisplayStyleProvider.Opacity = 1F;
     this.tabControl1.DisplayStyleProvider.Overlap = 16;
     this.tabControl1.DisplayStyleProvider.Padding = new System.Drawing.Point(7, 5);
     this.tabControl1.DisplayStyleProvider.Radius = 16;
     this.tabControl1.DisplayStyleProvider.ShowTabCloser = true;
     this.tabControl1.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HotTrack = true;
     this.tabControl1.ImageList = this.imageList1;
     this.tabControl1.Location = new System.Drawing.Point(3, 3);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(665, 370);
     this.tabControl1.TabIndex = 6;
     this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "battery.png");
     this.imageList1.Images.SetKeyName(1, "book_open.png");
     this.imageList1.Images.SetKeyName(2, "brush3.png");
     this.imageList1.Images.SetKeyName(3, "calculator.png");
     this.imageList1.Images.SetKeyName(4, "cd_music.png");
     this.imageList1.Images.SetKeyName(5, "Close");
     this.imageList1.Images.SetKeyName(6, "google_favicon.png");
     //
     // tabPage23
     //
     this.tabPage23.ImageKey = "(none)";
     this.tabPage23.Location = new System.Drawing.Point(4, 27);
     this.tabPage23.Name = "tabPage23";
     this.tabPage23.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage23.Size = new System.Drawing.Size(657, 339);
     this.tabPage23.TabIndex = 2;
     this.tabPage23.Text = "tabPage23";
     this.tabPage23.UseVisualStyleBackColor = true;
     //
     // tabPage21
     //
     this.tabPage21.ImageKey = "(none)";
     this.tabPage21.Location = new System.Drawing.Point(4, 27);
     this.tabPage21.Name = "tabPage21";
     this.tabPage21.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage21.Size = new System.Drawing.Size(657, 339);
     this.tabPage21.TabIndex = 0;
     this.tabPage21.Text = "Allgemein";
     this.tabPage21.UseVisualStyleBackColor = true;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(861, 481);
     this.Controls.Add(this.tabControl1X);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.metroShell1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "frmMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmMain";
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     this.contextMenuStripTreeView.ResumeLayout(false);
     this.tabControl1X.ResumeLayout(false);
     this.tabPageHex.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabPageText.ResumeLayout(false);
     this.tabControl2.ResumeLayout(false);
     this.tabMenu.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tabPageExcell.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }