Ejemplo n.º 1
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SuportTehnic));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     //
     //
     //
     this.reflectionImage1.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage1.Image = ((System.Drawing.Image)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location = new System.Drawing.Point(2, 88);
     this.reflectionImage1.Name = "reflectionImage1";
     this.reflectionImage1.Size = new System.Drawing.Size(112, 143);
     this.reflectionImage1.TabIndex = 3;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Location = new System.Drawing.Point(12, 12);
     this.reflectionLabel1.Name = "reflectionLabel1";
     this.reflectionLabel1.Size = new System.Drawing.Size(116, 70);
     this.reflectionLabel1.TabIndex = 2;
     this.reflectionLabel1.Text = "<b><font size=\"+10\"><i>Med</i><font color=\"#B02B2C\">LAB</font></font></b>";
     //
     // SuportTehnic
     //
     this.ClientSize = new System.Drawing.Size(399, 403);
     this.Controls.Add(this.reflectionImage1);
     this.Controls.Add(this.reflectionLabel1);
     this.Name = "SuportTehnic";
     this.Text = "Suport Tehnic";
     this.ResumeLayout(false);
 }
Ejemplo n.º 2
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SuportTehnic));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     //
     //
     //
     this.reflectionImage1.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage1.Image    = ((System.Drawing.Image)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location = new System.Drawing.Point(2, 88);
     this.reflectionImage1.Name     = "reflectionImage1";
     this.reflectionImage1.Size     = new System.Drawing.Size(112, 143);
     this.reflectionImage1.TabIndex = 3;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Location = new System.Drawing.Point(12, 12);
     this.reflectionLabel1.Name     = "reflectionLabel1";
     this.reflectionLabel1.Size     = new System.Drawing.Size(116, 70);
     this.reflectionLabel1.TabIndex = 2;
     this.reflectionLabel1.Text     = "<b><font size=\"+10\"><i>Med</i><font color=\"#B02B2C\">LAB</font></font></b>";
     //
     // SuportTehnic
     //
     this.ClientSize = new System.Drawing.Size(399, 403);
     this.Controls.Add(this.reflectionImage1);
     this.Controls.Add(this.reflectionLabel1);
     this.Name = "SuportTehnic";
     this.Text = "Suport Tehnic";
     this.ResumeLayout(false);
 }
Ejemplo n.º 3
0
        private void AddControls()
        {
            ArrayList al = new ArrayList();

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

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

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


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

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



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

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


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

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

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


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


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

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


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

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


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

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

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

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

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


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

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

            itemPanel_top.Items.AddRange(bi);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevComponents.DotNetBar.Controls.ReflectionImage reflectionImage1;
     this.txtUserName        = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblUserName        = new DevComponents.DotNetBar.LabelX();
     this.txtPass            = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblPassword        = new DevComponents.DotNetBar.LabelX();
     this.btnLogin           = new DevComponents.DotNetBar.ButtonX();
     this.btnCLose           = new DevComponents.DotNetBar.ButtonX();
     this.lbErrorPass        = new DevComponents.DotNetBar.LabelX();
     this.lbErrorUserName    = new DevComponents.DotNetBar.LabelX();
     this.labelX1            = new DevComponents.DotNetBar.LabelX();
     this.ribbonClientPanel1 = new DevComponents.DotNetBar.Ribbon.RibbonClientPanel();
     this.ribbonClientPanel2 = new DevComponents.DotNetBar.Ribbon.RibbonClientPanel();
     this.ribbonClientPanel3 = new DevComponents.DotNetBar.Ribbon.RibbonClientPanel();
     reflectionImage1        = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     reflectionImage1.Image       = global::QuanLyTienGuiTietKiem.Properties.Resources.frmLogin;
     reflectionImage1.Location    = new System.Drawing.Point(18, 47);
     reflectionImage1.Name        = "reflectionImage1";
     reflectionImage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     reflectionImage1.Size        = new System.Drawing.Size(76, 133);
     reflectionImage1.TabIndex    = 0;
     //
     // txtUserName
     //
     //
     //
     //
     this.txtUserName.Border.Class = "TextBoxBorder";
     this.txtUserName.Location     = new System.Drawing.Point(182, 63);
     this.txtUserName.Name         = "txtUserName";
     this.txtUserName.Size         = new System.Drawing.Size(184, 20);
     this.txtUserName.TabIndex     = 1;
     //
     // lblUserName
     //
     this.lblUserName.Location = new System.Drawing.Point(100, 63);
     this.lblUserName.Name     = "lblUserName";
     this.lblUserName.Size     = new System.Drawing.Size(78, 22);
     this.lblUserName.TabIndex = 1;
     this.lblUserName.Text     = "Tên đăng nhập:";
     //
     // txtPass
     //
     //
     //
     //
     this.txtPass.Border.Class = "TextBoxBorder";
     this.txtPass.Location     = new System.Drawing.Point(182, 103);
     this.txtPass.Name         = "txtPass";
     this.txtPass.PasswordChar = '●';
     this.txtPass.Size         = new System.Drawing.Size(184, 20);
     this.txtPass.TabIndex     = 2;
     //
     // lblPassword
     //
     this.lblPassword.Location = new System.Drawing.Point(121, 100);
     this.lblPassword.Name     = "lblPassword";
     this.lblPassword.Size     = new System.Drawing.Size(55, 25);
     this.lblPassword.TabIndex = 1;
     this.lblPassword.Text     = "Mật khẩu:";
     //
     // btnLogin
     //
     this.btnLogin.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnLogin.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnLogin.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLogin.Location       = new System.Drawing.Point(116, 144);
     this.btnLogin.Name           = "btnLogin";
     this.btnLogin.Size           = new System.Drawing.Size(92, 26);
     this.btnLogin.TabIndex       = 3;
     this.btnLogin.Text           = "Đăng nhập";
     this.btnLogin.Click         += new System.EventHandler(this.btnLogin_Click);
     //
     // btnCLose
     //
     this.btnCLose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCLose.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCLose.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCLose.Location       = new System.Drawing.Point(223, 144);
     this.btnCLose.Name           = "btnCLose";
     this.btnCLose.Size           = new System.Drawing.Size(88, 26);
     this.btnCLose.TabIndex       = 4;
     this.btnCLose.Text           = "Hủy bỏ";
     this.btnCLose.Click         += new System.EventHandler(this.btnCLose_Click);
     //
     // lbErrorPass
     //
     this.lbErrorPass.ForeColor = System.Drawing.Color.Red;
     this.lbErrorPass.Location  = new System.Drawing.Point(182, 85);
     this.lbErrorPass.Name      = "lbErrorPass";
     this.lbErrorPass.Size      = new System.Drawing.Size(184, 19);
     this.lbErrorPass.TabIndex  = 4;
     //
     // lbErrorUserName
     //
     this.lbErrorUserName.ForeColor = System.Drawing.Color.Red;
     this.lbErrorUserName.Location  = new System.Drawing.Point(182, 47);
     this.lbErrorUserName.Name      = "lbErrorUserName";
     this.lbErrorUserName.Size      = new System.Drawing.Size(184, 15);
     this.lbErrorUserName.TabIndex  = 4;
     //
     // labelX1
     //
     this.labelX1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(-6, -1);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(391, 37);
     this.labelX1.TabIndex = 4;
     this.labelX1.Text     = "<div align=\"center\">ĐĂNG NHẬP</div>";
     //
     // ribbonClientPanel1
     //
     this.ribbonClientPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.ribbonClientPanel1.Location    = new System.Drawing.Point(45, 33);
     this.ribbonClientPanel1.Name        = "ribbonClientPanel1";
     this.ribbonClientPanel1.Size        = new System.Drawing.Size(304, 2);
     //
     //
     //
     this.ribbonClientPanel1.Style.Class = "RibbonClientPanel";
     this.ribbonClientPanel1.TabIndex    = 5;
     this.ribbonClientPanel1.Text        = "ribbonClientPanel1";
     //
     // ribbonClientPanel2
     //
     this.ribbonClientPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.ribbonClientPanel2.Location    = new System.Drawing.Point(75, 38);
     this.ribbonClientPanel2.Name        = "ribbonClientPanel2";
     this.ribbonClientPanel2.Size        = new System.Drawing.Size(250, 2);
     //
     //
     //
     this.ribbonClientPanel2.Style.Class = "RibbonClientPanel";
     this.ribbonClientPanel2.TabIndex    = 5;
     this.ribbonClientPanel2.Text        = "ribbonClientPanel1";
     //
     // ribbonClientPanel3
     //
     this.ribbonClientPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.ribbonClientPanel3.Location    = new System.Drawing.Point(116, 42);
     this.ribbonClientPanel3.Name        = "ribbonClientPanel3";
     this.ribbonClientPanel3.Size        = new System.Drawing.Size(150, 2);
     //
     //
     //
     this.ribbonClientPanel3.Style.Class = "RibbonClientPanel";
     this.ribbonClientPanel3.TabIndex    = 5;
     this.ribbonClientPanel3.Text        = "ribbonClientPanel1";
     //
     // frmDangNhap
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(378, 182);
     this.Controls.Add(reflectionImage1);
     this.Controls.Add(this.ribbonClientPanel3);
     this.Controls.Add(this.ribbonClientPanel2);
     this.Controls.Add(this.ribbonClientPanel1);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.lbErrorUserName);
     this.Controls.Add(this.lbErrorPass);
     this.Controls.Add(this.btnCLose);
     this.Controls.Add(this.btnLogin);
     this.Controls.Add(this.lblPassword);
     this.Controls.Add(this.lblUserName);
     this.Controls.Add(this.txtPass);
     this.Controls.Add(this.txtUserName);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmDangNhap";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "ĐĂNG NHẬP";
     this.ResumeLayout(false);
 }
Ejemplo 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(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem32 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem33 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem34 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem35 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem36 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.buttonItem46 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem50 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem51 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem52 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem54 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem55 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.galleryContainer1 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem37 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem38 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem39 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem40 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem41 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem42 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem43 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem44 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem45 = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.sideBar1 = new DevComponents.DotNetBar.SideBar();
     this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem2 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.sideBarPanelItem5 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem30 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem31 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem1 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.tabControl2 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.groupPanel5 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rez_danlz = new System.Windows.Forms.Label();
     this.rez_medic = new System.Windows.Forms.Label();
     this.rez_dn = new System.Windows.Forms.Label();
     this.rez_cnp = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.checkedListBox4 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox3 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox2 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.label11 = new System.Windows.Forms.Label();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label15 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.balloonTip1 = new DevComponents.DotNetBar.BalloonTip();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).BeginInit();
     this.tabControl2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.groupPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.groupPanel5.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AutoScroll = true;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Office2007ColorTable = DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.VistaGlass;
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem46,
     this.buttonItem48,
     this.buttonItem55,
     this.buttonItem58});
     this.ribbonControl1.Size = new System.Drawing.Size(1284, 137);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(1284, 80);
     this.ribbonPanel1.TabIndex = 1;
     this.ribbonPanel1.Click += new System.EventHandler(this.ribbonPanel1_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ribbonBar3.AutoOverflowEnabled = true;
     this.ribbonBar3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.labelItem3});
     this.ribbonBar3.Location = new System.Drawing.Point(990, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(290, 77);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar3.TabIndex = 2;
     this.ribbonBar3.Text = "Data  operarii";
     this.ribbonBar3.ItemClick += new System.EventHandler(this.ribbonBar3_ItemClick);
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.Text = "                                                 ";
     //
     // labelItem3
     //
     this.labelItem3.Image = global::MedLab2.Properties.Resources.icon_time_to_market;
     this.labelItem3.Name = "labelItem3";
     //
     // ribbonBar2
     //
     this.ribbonBar2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ribbonBar2.AutoOverflowEnabled = true;
     this.ribbonBar2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem16});
     this.ribbonBar2.Location = new System.Drawing.Point(236, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(286, 77);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar2.TabIndex = 1;
     this.ribbonBar2.Text = "Utilizator curent";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "                                                         ";
     //
     // buttonItem16
     //
     this.buttonItem16.ImagePaddingHorizontal = 8;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "Sign out";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem32,
     this.buttonItem33,
     this.buttonItem34,
     this.buttonItem35,
     this.buttonItem36});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(282, 77);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 0;
     //
     // buttonItem32
     //
     this.buttonItem32.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem32.ImagePaddingHorizontal = 8;
     this.buttonItem32.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem32.Name = "buttonItem32";
     this.buttonItem32.SubItemsExpandWidth = 14;
     this.buttonItem32.Text = "Word";
     this.buttonItem32.Click += new System.EventHandler(this.buttonItem32_Click);
     //
     // buttonItem33
     //
     this.buttonItem33.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem33.ImagePaddingHorizontal = 8;
     this.buttonItem33.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem33.Name = "buttonItem33";
     this.buttonItem33.SubItemsExpandWidth = 14;
     this.buttonItem33.Text = "Excel";
     this.buttonItem33.Click += new System.EventHandler(this.buttonItem33_Click);
     //
     // buttonItem34
     //
     this.buttonItem34.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem34.ImagePaddingHorizontal = 8;
     this.buttonItem34.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem34.Name = "buttonItem34";
     this.buttonItem34.SubItemsExpandWidth = 14;
     this.buttonItem34.Text = "Outlook";
     this.buttonItem34.Click += new System.EventHandler(this.buttonItem34_Click);
     //
     // buttonItem35
     //
     this.buttonItem35.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem35.ImagePaddingHorizontal = 8;
     this.buttonItem35.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem35.Name = "buttonItem35";
     this.buttonItem35.SubItemsExpandWidth = 14;
     this.buttonItem35.Text = "PowerPoint";
     this.buttonItem35.Click += new System.EventHandler(this.buttonItem35_Click);
     //
     // buttonItem36
     //
     this.buttonItem36.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem36.ImagePaddingHorizontal = 8;
     this.buttonItem36.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem36.Name = "buttonItem36";
     this.buttonItem36.SubItemsExpandWidth = 14;
     this.buttonItem36.Text = "Calculator";
     this.buttonItem36.Click += new System.EventHandler(this.buttonItem36_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.ImagePaddingHorizontal = 8;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "Instrumente";
     //
     // buttonItem46
     //
     this.buttonItem46.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem46.ImagePaddingHorizontal = 8;
     this.buttonItem46.Name = "buttonItem46";
     this.buttonItem46.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem46.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem46.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem47,
     this.buttonItem49,
     this.buttonItem50,
     this.buttonItem51});
     this.buttonItem46.Text = "Pacineti";
     this.buttonItem46.Click += new System.EventHandler(this.buttonItem46_Click);
     //
     // buttonItem47
     //
     this.buttonItem47.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem47.ImagePaddingHorizontal = 8;
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem47.Text = "Cautare dupa &nume";
     this.buttonItem47.Click += new System.EventHandler(this.buttonItem47_Click);
     //
     // buttonItem49
     //
     this.buttonItem49.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem49.ImagePaddingHorizontal = 8;
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem49.Text = "Cautare dupa &cnp";
     this.buttonItem49.Click += new System.EventHandler(this.buttonItem49_Click);
     //
     // buttonItem50
     //
     this.buttonItem50.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem50.ImagePaddingHorizontal = 8;
     this.buttonItem50.Name = "buttonItem50";
     this.buttonItem50.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem50.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem50.Click += new System.EventHandler(this.buttonItem50_Click);
     //
     // buttonItem51
     //
     this.buttonItem51.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem51.ImagePaddingHorizontal = 8;
     this.buttonItem51.Name = "buttonItem51";
     this.buttonItem51.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem51.Text = "&Stergere din baza de date";
     this.buttonItem51.Click += new System.EventHandler(this.buttonItem51_Click);
     //
     // buttonItem48
     //
     this.buttonItem48.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem48.ImagePaddingHorizontal = 8;
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem48.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem48.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem52,
     this.buttonItem53,
     this.buttonItem54});
     this.buttonItem48.Text = "Utilizatori";
     //
     // buttonItem52
     //
     this.buttonItem52.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem52.ImagePaddingHorizontal = 8;
     this.buttonItem52.Name = "buttonItem52";
     this.buttonItem52.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem52.Text = "&Adaugare utilizator";
     this.buttonItem52.Click += new System.EventHandler(this.buttonItem52_Click);
     //
     // buttonItem53
     //
     this.buttonItem53.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem53.ImagePaddingHorizontal = 8;
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDel);
     this.buttonItem53.Text = "Stergere utilizator";
     this.buttonItem53.Click += new System.EventHandler(this.buttonItem53_Click);
     //
     // buttonItem54
     //
     this.buttonItem54.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem54.ImagePaddingHorizontal = 8;
     this.buttonItem54.Name = "buttonItem54";
     this.buttonItem54.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem54.Text = "Schimbare parola utilizator";
     this.buttonItem54.Click += new System.EventHandler(this.buttonItem54_Click);
     //
     // buttonItem55
     //
     this.buttonItem55.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem55.ImagePaddingHorizontal = 8;
     this.buttonItem55.Name = "buttonItem55";
     this.buttonItem55.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem55.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem55.Text = "Setari";
     //
     // buttonItem58
     //
     this.buttonItem58.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem58.ImagePaddingHorizontal = 8;
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem58.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem58.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem57,
     this.buttonItem59});
     this.buttonItem58.Text = "Ajutor";
     //
     // buttonItem57
     //
     this.buttonItem57.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem57.ImagePaddingHorizontal = 8;
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem57.Text = "Suport tehnic";
     this.buttonItem57.Click += new System.EventHandler(this.buttonItem57_Click);
     //
     // buttonItem59
     //
     this.buttonItem59.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem59.ImagePaddingHorizontal = 8;
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "Despre MedLAB...";
     this.buttonItem59.Click += new System.EventHandler(this.buttonItem59_Click);
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2,
     this.itemContainer4});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3,
     this.galleryContainer1});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5,
     this.buttonItem6,
     this.buttonItem7});
     //
     // buttonItem2
     //
     this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 24;
     this.buttonItem2.Text = "&New";
     //
     // buttonItem3
     //
     this.buttonItem3.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.ImagePaddingHorizontal = 8;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 24;
     this.buttonItem3.Text = "&Open...";
     //
     // buttonItem4
     //
     this.buttonItem4.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.ImagePaddingHorizontal = 8;
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 24;
     this.buttonItem4.Text = "&Save...";
     //
     // buttonItem5
     //
     this.buttonItem5.BeginGroup = true;
     this.buttonItem5.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.ImagePaddingHorizontal = 8;
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 24;
     this.buttonItem5.Text = "S&hare...";
     //
     // buttonItem6
     //
     this.buttonItem6.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.ImagePaddingHorizontal = 8;
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.SubItemsExpandWidth = 24;
     this.buttonItem6.Text = "&Print...";
     //
     // buttonItem7
     //
     this.buttonItem7.BeginGroup = true;
     this.buttonItem7.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.ImagePaddingHorizontal = 8;
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.SubItemsExpandWidth = 24;
     this.buttonItem7.Text = "&Close";
     //
     // galleryContainer1
     //
     //
     //
     //
     this.galleryContainer1.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer1.EnableGalleryPopup = false;
     this.galleryContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer1.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer1.MultiLine = false;
     this.galleryContainer1.Name = "galleryContainer1";
     this.galleryContainer1.PopupUsesStandardScrollbars = false;
     this.galleryContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem8,
     this.buttonItem9,
     this.buttonItem10,
     this.buttonItem11});
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.CanCustomize = false;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem8
     //
     this.buttonItem8.ImagePaddingHorizontal = 8;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem9
     //
     this.buttonItem9.ImagePaddingHorizontal = 8;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem10
     //
     this.buttonItem10.ImagePaddingHorizontal = 8;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "&3. Customer Email.rtf";
     //
     // buttonItem11
     //
     this.buttonItem11.ImagePaddingHorizontal = 8;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "&4. example.rtf";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     // buttonItem12
     //
     this.buttonItem12.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem12.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.ImagePaddingHorizontal = 8;
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 24;
     this.buttonItem12.Text = "Opt&ions";
     //
     // buttonItem13
     //
     this.buttonItem13.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem13.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.ImagePaddingHorizontal = 8;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 24;
     this.buttonItem13.Text = "E&xit";
     //
     // buttonItem1
     //
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem37,
     this.buttonItem38,
     this.buttonItem39,
     this.buttonItem40});
     this.buttonItem1.Text = "Pacienti";
     //
     // buttonItem37
     //
     this.buttonItem37.ImagePaddingHorizontal = 8;
     this.buttonItem37.Name = "buttonItem37";
     this.buttonItem37.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem37.Text = "Cautare dupa &nume";
     this.buttonItem37.Click += new System.EventHandler(this.buttonItem37_Click);
     //
     // buttonItem38
     //
     this.buttonItem38.ImagePaddingHorizontal = 8;
     this.buttonItem38.Name = "buttonItem38";
     this.buttonItem38.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 7, 2, 5);
     this.buttonItem38.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem38.Text = "Cautare dupa &cnp";
     this.buttonItem38.Click += new System.EventHandler(this.buttonItem38_Click);
     //
     // buttonItem39
     //
     this.buttonItem39.ImagePaddingHorizontal = 8;
     this.buttonItem39.Name = "buttonItem39";
     this.buttonItem39.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem39.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem39.Click += new System.EventHandler(this.buttonItem39_Click);
     //
     // buttonItem40
     //
     this.buttonItem40.ImagePaddingHorizontal = 8;
     this.buttonItem40.Name = "buttonItem40";
     this.buttonItem40.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem40.Text = "&Stergere din baza de date";
     this.buttonItem40.Click += new System.EventHandler(this.buttonItem40_Click);
     //
     // buttonItem14
     //
     this.buttonItem14.ImagePaddingHorizontal = 8;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem41,
     this.buttonItem42,
     this.buttonItem43});
     this.buttonItem14.Text = "Utilizatori";
     //
     // buttonItem41
     //
     this.buttonItem41.ImagePaddingHorizontal = 8;
     this.buttonItem41.Name = "buttonItem41";
     this.buttonItem41.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem41.Text = "&Adaugare utilizator nou";
     //
     // buttonItem42
     //
     this.buttonItem42.ImagePaddingHorizontal = 8;
     this.buttonItem42.Name = "buttonItem42";
     this.buttonItem42.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonItem42.Text = "Ste&rgere utilizator";
     //
     // buttonItem43
     //
     this.buttonItem43.ImagePaddingHorizontal = 8;
     this.buttonItem43.Name = "buttonItem43";
     this.buttonItem43.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem43.Text = "Schimbare &parola administrator";
     //
     // buttonItem15
     //
     this.buttonItem15.ImagePaddingHorizontal = 8;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "Setari";
     //
     // buttonItem17
     //
     this.buttonItem17.ImagePaddingHorizontal = 8;
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem44,
     this.buttonItem45});
     this.buttonItem17.Text = "Ajutor";
     //
     // buttonItem44
     //
     this.buttonItem44.ImagePaddingHorizontal = 8;
     this.buttonItem44.Name = "buttonItem44";
     this.buttonItem44.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 3, 2, 3);
     this.buttonItem44.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem44.Text = "Suport tehnic";
     this.buttonItem44.Click += new System.EventHandler(this.buttonItem44_Click);
     //
     // buttonItem45
     //
     this.buttonItem45.ImagePaddingHorizontal = 8;
     this.buttonItem45.Name = "buttonItem45";
     this.buttonItem45.Text = "Despre MedLab...";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // sideBar1
     //
     this.sideBar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.sideBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.sideBar1.Appearance = DevComponents.DotNetBar.eSideBarAppearance.Flat;
     this.sideBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.sideBar1.BorderStyle = DevComponents.DotNetBar.eBorderType.Etched;
     this.sideBar1.ExpandedPanel = this.sideBarPanelItem3;
     this.sideBar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.sideBar1.Location = new System.Drawing.Point(32, 139);
     this.sideBar1.Name = "sideBar1";
     this.sideBar1.Panels.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.sideBarPanelItem2,
     this.sideBarPanelItem3,
     this.sideBarPanelItem4,
     this.sideBarPanelItem5,
     this.sideBarPanelItem1});
     this.sideBar1.Size = new System.Drawing.Size(242, 523);
     this.sideBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.sideBar1.TabIndex = 2;
     this.sideBar1.Text = "sideBar1";
     //
     // sideBarPanelItem3
     //
     this.sideBarPanelItem3.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem3.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem3.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem3.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem3.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem3.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem3.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem3.Name = "sideBarPanelItem3";
     this.sideBarPanelItem3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     this.sideBarPanelItem3.Text = "Utilizator";
     //
     // buttonItem27
     //
     this.buttonItem27.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem27.FontBold = true;
     this.buttonItem27.ForeColor = System.Drawing.Color.Black;
     this.buttonItem27.Image = global::MedLab2.Properties.Resources.add_user___Copy;
     this.buttonItem27.ImagePaddingHorizontal = 8;
     this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "Adaugare utilizator nou";
     this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
     //
     // buttonItem28
     //
     this.buttonItem28.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem28.FontBold = true;
     this.buttonItem28.ForeColor = System.Drawing.Color.Black;
     this.buttonItem28.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem28.ImagePaddingHorizontal = 8;
     this.buttonItem28.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "Stergere utilizator din baza de date";
     this.buttonItem28.Click += new System.EventHandler(this.buttonItem28_Click);
     //
     // buttonItem29
     //
     this.buttonItem29.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem29.FontBold = true;
     this.buttonItem29.ForeColor = System.Drawing.Color.Black;
     this.buttonItem29.Image = global::MedLab2.Properties.Resources.edit_user_2;
     this.buttonItem29.ImagePaddingHorizontal = 8;
     this.buttonItem29.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "Schimbare parola utilizator";
     this.buttonItem29.Click += new System.EventHandler(this.buttonItem29_Click);
     //
     // sideBarPanelItem2
     //
     this.sideBarPanelItem2.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem2.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem2.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem2.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem2.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem2.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem2.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem2.Name = "sideBarPanelItem2";
     this.sideBarPanelItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25,
     this.buttonItem26});
     this.sideBarPanelItem2.Text = "Pacienti";
     this.sideBarPanelItem2.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     //
     // buttonItem23
     //
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.FontBold = true;
     this.buttonItem23.ForeColor = System.Drawing.Color.Black;
     this.buttonItem23.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem23.ImagePaddingHorizontal = 8;
     this.buttonItem23.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "Cautare dupa nume";
     this.buttonItem23.Click += new System.EventHandler(this.buttonItem23_Click);
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem24.FontBold = true;
     this.buttonItem24.ForeColor = System.Drawing.Color.Black;
     this.buttonItem24.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem24.ImagePaddingHorizontal = 8;
     this.buttonItem24.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem24.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem24.ImageSmall")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "Cautare dupa cnp";
     this.buttonItem24.Click += new System.EventHandler(this.buttonItem24_Click);
     //
     // buttonItem25
     //
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem25.FontBold = true;
     this.buttonItem25.ForeColor = System.Drawing.Color.Black;
     this.buttonItem25.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem25.ImagePaddingHorizontal = 8;
     this.buttonItem25.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "Cautare dupa cod inregistrare";
     this.buttonItem25.Click += new System.EventHandler(this.buttonItem25_Click);
     //
     // buttonItem26
     //
     this.buttonItem26.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem26.FontBold = true;
     this.buttonItem26.ForeColor = System.Drawing.Color.Black;
     this.buttonItem26.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem26.ImagePaddingHorizontal = 8;
     this.buttonItem26.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "Stergere din baza de date";
     this.buttonItem26.Click += new System.EventHandler(this.buttonItem26_Click);
     //
     // sideBarPanelItem4
     //
     this.sideBarPanelItem4.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem4.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem4.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem4.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem4.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem4.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem4.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem4.Name = "sideBarPanelItem4";
     this.sideBarPanelItem4.Text = "Setari";
     //
     // sideBarPanelItem5
     //
     this.sideBarPanelItem5.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem5.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem5.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem5.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem5.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem5.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem5.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem5.Name = "sideBarPanelItem5";
     this.sideBarPanelItem5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem30,
     this.buttonItem31});
     this.sideBarPanelItem5.Text = "Ajutor";
     //
     // buttonItem30
     //
     this.buttonItem30.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem30.FontBold = true;
     this.buttonItem30.ForeColor = System.Drawing.Color.Black;
     this.buttonItem30.Image = global::MedLab2.Properties.Resources.HelpIcon_2;
     this.buttonItem30.ImagePaddingHorizontal = 8;
     this.buttonItem30.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem30.Name = "buttonItem30";
     this.buttonItem30.Text = "Suport tehnic";
     this.buttonItem30.Click += new System.EventHandler(this.buttonItem30_Click);
     //
     // buttonItem31
     //
     this.buttonItem31.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem31.FontBold = true;
     this.buttonItem31.ForeColor = System.Drawing.Color.Black;
     this.buttonItem31.Image = global::MedLab2.Properties.Resources.ReflectionImage2;
     this.buttonItem31.ImagePaddingHorizontal = 8;
     this.buttonItem31.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem31.Name = "buttonItem31";
     this.buttonItem31.Text = "Despre MedLAB...";
     this.buttonItem31.Click += new System.EventHandler(this.buttonItem31_Click);
     //
     // sideBarPanelItem1
     //
     this.sideBarPanelItem1.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem1.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem1.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem1.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem1.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem1.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem1.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem1.Name = "sideBarPanelItem1";
     this.sideBarPanelItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem18,
     this.buttonItem19,
     this.buttonItem20,
     this.buttonItem21,
     this.buttonItem22});
     this.sideBarPanelItem1.Text = "Instrumente";
     //
     // buttonItem18
     //
     this.buttonItem18.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem18.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem18.FontBold = true;
     this.buttonItem18.ForeColor = System.Drawing.Color.Black;
     this.buttonItem18.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem18.ImagePaddingHorizontal = 8;
     this.buttonItem18.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "Word";
     this.buttonItem18.Click += new System.EventHandler(this.buttonItem18_Click);
     //
     // buttonItem19
     //
     this.buttonItem19.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem19.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem19.FontBold = true;
     this.buttonItem19.ForeColor = System.Drawing.Color.Black;
     this.buttonItem19.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem19.ImagePaddingHorizontal = 8;
     this.buttonItem19.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "Excel";
     this.buttonItem19.Click += new System.EventHandler(this.buttonItem19_Click);
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem20.FontBold = true;
     this.buttonItem20.ForeColor = System.Drawing.Color.Black;
     this.buttonItem20.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem20.ImagePaddingHorizontal = 8;
     this.buttonItem20.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "Outlook";
     this.buttonItem20.Click += new System.EventHandler(this.buttonItem20_Click);
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem21.FontBold = true;
     this.buttonItem21.ForeColor = System.Drawing.Color.Black;
     this.buttonItem21.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem21.ImagePaddingHorizontal = 8;
     this.buttonItem21.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "PowerPoint";
     this.buttonItem21.Click += new System.EventHandler(this.buttonItem21_Click);
     //
     // buttonItem22
     //
     this.buttonItem22.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem22.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem22.FontBold = true;
     this.buttonItem22.ForeColor = System.Drawing.Color.Black;
     this.buttonItem22.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem22.ImagePaddingHorizontal = 8;
     this.buttonItem22.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "Calculator";
     this.buttonItem22.Click += new System.EventHandler(this.buttonItem22_Click);
     //
     // tabControl2
     //
     this.tabControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl2.BackColor = System.Drawing.Color.Transparent;
     this.tabControl2.CanReorderTabs = true;
     this.tabControl2.Controls.Add(this.tabControlPanel1);
     this.tabControl2.Controls.Add(this.tabControlPanel2);
     this.tabControl2.Controls.Add(this.tabControlPanel3);
     this.tabControl2.Location = new System.Drawing.Point(303, 139);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControl2.SelectedTabIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(592, 601);
     this.tabControl2.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl2.TabIndex = 4;
     this.tabControl2.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineWithNavigationBox;
     this.tabControl2.Tabs.Add(this.tabItem2);
     this.tabControl2.Tabs.Add(this.tabItem1);
     this.tabControl2.Tabs.Add(this.tabItem3);
     this.tabControl2.TabScrollAutoRepeat = true;
     this.tabControl2.TabStripTabStop = true;
     this.tabControl2.Text = "tabControl2";
     this.tabControl2.Click += new System.EventHandler(this.tabControl2_Click);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.groupPanel6);
     this.tabControlPanel1.Controls.Add(this.groupPanel5);
     this.tabControlPanel1.Controls.Add(this.groupPanel4);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 2;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // groupPanel6
     //
     this.groupPanel6.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.buttonX5);
     this.groupPanel6.Controls.Add(this.buttonX3);
     this.groupPanel6.Controls.Add(this.buttonX2);
     this.groupPanel6.Controls.Add(this.dataGridViewX1);
     this.groupPanel6.DrawTitleBox = false;
     this.groupPanel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel6.Location = new System.Drawing.Point(21, 212);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(645, 469);
     //
     //
     //
     this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel6.Style.BackColorGradientAngle = 90;
     this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderBottomWidth = 1;
     this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderLeftWidth = 1;
     this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderRightWidth = 1;
     this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderTopWidth = 1;
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel6.TabIndex = 12;
     this.groupPanel6.Text = "Introducere rezultate analize";
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX5.Location = new System.Drawing.Point(26, 289);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(137, 56);
     this.buttonX5.TabIndex = 6;
     this.buttonX5.Text = "Adauga in baza de date";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX3.Location = new System.Drawing.Point(343, 289);
     this.buttonX3.Name = "buttonX3";
     this.buttonX3.Size = new System.Drawing.Size(137, 56);
     this.buttonX3.TabIndex = 5;
     this.buttonX3.Text = "E-mail";
     this.buttonX3.Click += new System.EventHandler(this.buttonX3_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX2.Location = new System.Drawing.Point(182, 290);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(137, 56);
     this.buttonX2.TabIndex = 4;
     this.buttonX2.Text = "Printare";
     this.buttonX2.Click += new System.EventHandler(this.buttonX2_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AllowUserToOrderColumns = true;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(3, 12);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.Size = new System.Drawing.Size(562, 260);
     this.dataGridViewX1.TabIndex = 2;
     //
     // groupPanel5
     //
     this.groupPanel5.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel5.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel5.Controls.Add(this.rez_danlz);
     this.groupPanel5.Controls.Add(this.rez_medic);
     this.groupPanel5.Controls.Add(this.rez_dn);
     this.groupPanel5.Controls.Add(this.rez_cnp);
     this.groupPanel5.Controls.Add(this.label21);
     this.groupPanel5.Controls.Add(this.label20);
     this.groupPanel5.Controls.Add(this.label19);
     this.groupPanel5.Controls.Add(this.label18);
     this.groupPanel5.Controls.Add(this.label17);
     this.groupPanel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel5.Location = new System.Drawing.Point(21, 83);
     this.groupPanel5.Name = "groupPanel5";
     this.groupPanel5.Size = new System.Drawing.Size(624, 125);
     //
     //
     //
     this.groupPanel5.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel5.Style.BackColorGradientAngle = 90;
     this.groupPanel5.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel5.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderBottomWidth = 1;
     this.groupPanel5.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel5.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderLeftWidth = 1;
     this.groupPanel5.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderRightWidth = 1;
     this.groupPanel5.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderTopWidth = 1;
     this.groupPanel5.Style.CornerDiameter = 4;
     this.groupPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel5.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel5.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel5.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel5.TabIndex = 1;
     this.groupPanel5.Text = "Rezultatele cautarii";
     this.groupPanel5.Click += new System.EventHandler(this.groupPanel5_Click);
     //
     // rez_danlz
     //
     this.rez_danlz.AutoSize = true;
     this.rez_danlz.BackColor = System.Drawing.Color.Transparent;
     this.rez_danlz.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_danlz.Location = new System.Drawing.Point(270, 78);
     this.rez_danlz.Name = "rez_danlz";
     this.rez_danlz.Size = new System.Drawing.Size(0, 16);
     this.rez_danlz.TabIndex = 26;
     //
     // rez_medic
     //
     this.rez_medic.AutoSize = true;
     this.rez_medic.BackColor = System.Drawing.Color.Transparent;
     this.rez_medic.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_medic.Location = new System.Drawing.Point(270, 53);
     this.rez_medic.Name = "rez_medic";
     this.rez_medic.Size = new System.Drawing.Size(0, 16);
     this.rez_medic.TabIndex = 25;
     //
     // rez_dn
     //
     this.rez_dn.AutoSize = true;
     this.rez_dn.BackColor = System.Drawing.Color.Transparent;
     this.rez_dn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_dn.Location = new System.Drawing.Point(270, 27);
     this.rez_dn.Name = "rez_dn";
     this.rez_dn.Size = new System.Drawing.Size(0, 16);
     this.rez_dn.TabIndex = 24;
     //
     // rez_cnp
     //
     this.rez_cnp.AutoSize = true;
     this.rez_cnp.BackColor = System.Drawing.Color.Transparent;
     this.rez_cnp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_cnp.Location = new System.Drawing.Point(270, 0);
     this.rez_cnp.Name = "rez_cnp";
     this.rez_cnp.Size = new System.Drawing.Size(0, 16);
     this.rez_cnp.TabIndex = 23;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(23, 78);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(181, 16);
     this.label21.TabIndex = 22;
     this.label21.Text = "Data efectuarii analizelor";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(23, 53);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(94, 16);
     this.label20.TabIndex = 21;
     this.label20.Text = "Nume medic";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(23, 27);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(96, 16);
     this.label19.TabIndex = 20;
     this.label19.Text = "Data nasterii";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(23, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(39, 16);
     this.label18.TabIndex = 19;
     this.label18.Text = "CNP";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(178, -21);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(48, 16);
     this.label17.TabIndex = 18;
     this.label17.Text = "Nume";
     //
     // groupPanel4
     //
     this.groupPanel4.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.buttonX4);
     this.groupPanel4.Controls.Add(this.label1);
     this.groupPanel4.Controls.Add(this.textBox6);
     this.groupPanel4.Location = new System.Drawing.Point(21, 15);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(624, 62);
     //
     //
     //
     this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 1;
     this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 1;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 1;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 1;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 0;
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX4.Location = new System.Drawing.Point(443, 3);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(112, 37);
     this.buttonX4.TabIndex = 6;
     this.buttonX4.Text = "Ok";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(23, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(117, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "Cautare pacient";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(197, 17);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(206, 20);
     this.textBox6.TabIndex = 2;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "Introducere rezultate analize";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.AutoScroll = true;
     this.tabControlPanel2.Controls.Add(this.groupPanel3);
     this.tabControlPanel2.Controls.Add(this.groupPanel2);
     this.tabControlPanel2.Controls.Add(this.groupPanel1);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItem2;
     this.tabControlPanel2.Click += new System.EventHandler(this.tabControlPanel2_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.buttonX6);
     this.groupPanel3.Controls.Add(this.textBox12);
     this.groupPanel3.Controls.Add(this.label28);
     this.groupPanel3.Controls.Add(this.label16);
     this.groupPanel3.Controls.Add(this.textBox11);
     this.groupPanel3.Controls.Add(this.label14);
     this.groupPanel3.Controls.Add(this.label13);
     this.groupPanel3.Controls.Add(this.label12);
     this.groupPanel3.Controls.Add(this.checkedListBox4);
     this.groupPanel3.Controls.Add(this.checkedListBox3);
     this.groupPanel3.Controls.Add(this.checkedListBox2);
     this.groupPanel3.Controls.Add(this.checkedListBox1);
     this.groupPanel3.Controls.Add(this.label11);
     this.groupPanel3.DrawTitleBox = false;
     this.groupPanel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel3.IsShadowEnabled = true;
     this.groupPanel3.Location = new System.Drawing.Point(15, 346);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(616, 336);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 24;
     this.groupPanel3.Text = "Analize Solicitate";
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.BackColor = System.Drawing.Color.Maroon;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX6.Location = new System.Drawing.Point(325, 248);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(137, 56);
     this.buttonX6.TabIndex = 25;
     this.buttonX6.Text = "Adauga in baza de date";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // textBox12
     //
     this.textBox12.BackColor = System.Drawing.Color.White;
     this.textBox12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox12.Location = new System.Drawing.Point(150, 248);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(137, 22);
     this.textBox12.TabIndex = 23;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(18, 251);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(85, 16);
     this.label28.TabIndex = 15;
     this.label28.Text = "Cod cerere";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(19, 282);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(73, 16);
     this.label16.TabIndex = 22;
     this.label16.Text = "Cost total";
     //
     // textBox11
     //
     this.textBox11.BackColor = System.Drawing.Color.White;
     this.textBox11.Enabled = false;
     this.textBox11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox11.Location = new System.Drawing.Point(150, 276);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(137, 22);
     this.textBox11.TabIndex = 21;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(322, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(203, 16);
     this.label14.TabIndex = 20;
     this.label14.Text = "Markeri endocrini si tumorali";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(19, 124);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(170, 16);
     this.label13.TabIndex = 19;
     this.label13.Text = "Imunologie si serologie";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(322, 7);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(76, 16);
     this.label12.TabIndex = 18;
     this.label12.Text = "Biochimie";
     //
     // checkedListBox4
     //
     this.checkedListBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox4.FormattingEnabled = true;
     this.checkedListBox4.Location = new System.Drawing.Point(325, 143);
     this.checkedListBox4.Name = "checkedListBox4";
     this.checkedListBox4.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox4.TabIndex = 17;
     //
     // checkedListBox3
     //
     this.checkedListBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox3.FormattingEnabled = true;
     this.checkedListBox3.Location = new System.Drawing.Point(20, 143);
     this.checkedListBox3.Name = "checkedListBox3";
     this.checkedListBox3.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox3.TabIndex = 16;
     //
     // checkedListBox2
     //
     this.checkedListBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox2.FormattingEnabled = true;
     this.checkedListBox2.Location = new System.Drawing.Point(325, 21);
     this.checkedListBox2.Name = "checkedListBox2";
     this.checkedListBox2.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox2.TabIndex = 14;
     //
     // checkedListBox1
     //
     this.checkedListBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(20, 21);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox1.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(19, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(97, 16);
     this.label11.TabIndex = 12;
     this.label11.Text = "Hematologie";
     //
     // groupPanel2
     //
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.textBox9);
     this.groupPanel2.Controls.Add(this.textBox10);
     this.groupPanel2.Controls.Add(this.textBox8);
     this.groupPanel2.Controls.Add(this.label10);
     this.groupPanel2.Controls.Add(this.label9);
     this.groupPanel2.Controls.Add(this.label7);
     this.groupPanel2.DrawTitleBox = false;
     this.groupPanel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel2.IsShadowEnabled = true;
     this.groupPanel2.Location = new System.Drawing.Point(15, 228);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(616, 116);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 23;
     this.groupPanel2.Text = "Date medic";
     //
     // textBox9
     //
     this.textBox9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox9.Location = new System.Drawing.Point(244, 32);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(303, 20);
     this.textBox9.TabIndex = 26;
     //
     // textBox10
     //
     this.textBox10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox10.Location = new System.Drawing.Point(244, 58);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(303, 20);
     this.textBox10.TabIndex = 24;
     //
     // textBox8
     //
     this.textBox8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(244, 6);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(303, 20);
     this.textBox8.TabIndex = 25;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(38, 58);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(61, 16);
     this.label10.TabIndex = 23;
     this.label10.Text = "Telefon";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(39, 32);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(48, 16);
     this.label9.TabIndex = 22;
     this.label9.Text = "Spital";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(39, 6);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(48, 16);
     this.label7.TabIndex = 21;
     this.label7.Text = "Nume";
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.textBox1);
     this.groupPanel1.Controls.Add(this.dateTimePicker1);
     this.groupPanel1.Controls.Add(this.label15);
     this.groupPanel1.Controls.Add(this.textBox7);
     this.groupPanel1.Controls.Add(this.label8);
     this.groupPanel1.Controls.Add(this.textBox4);
     this.groupPanel1.Controls.Add(this.textBox5);
     this.groupPanel1.Controls.Add(this.label2);
     this.groupPanel1.Controls.Add(this.label3);
     this.groupPanel1.Controls.Add(this.textBox3);
     this.groupPanel1.Controls.Add(this.label4);
     this.groupPanel1.Controls.Add(this.textBox2);
     this.groupPanel1.Controls.Add(this.label6);
     this.groupPanel1.Controls.Add(this.label5);
     this.groupPanel1.DrawTitleBox = false;
     this.groupPanel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel1.IsShadowEnabled = true;
     this.groupPanel1.Location = new System.Drawing.Point(15, -2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(616, 220);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.superTooltip1.SetSuperTooltip(this.groupPanel1, new DevComponents.DotNetBar.SuperTooltipInfo("MedLAB Help", "", "", global::MedLab2.Properties.Resources.ReflectionImage, global::MedLab2.Properties.Resources.ReflectionImage2, DevComponents.DotNetBar.eTooltipColor.System));
     this.groupPanel1.TabIndex = 22;
     this.groupPanel1.Text = "Date pacient";
     //
     // textBox1
     //
     this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(244, 2);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(303, 20);
     this.textBox1.TabIndex = 21;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Location = new System.Drawing.Point(244, 33);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(303, 20);
     this.dateTimePicker1.TabIndex = 34;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(45, 137);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(52, 16);
     this.label15.TabIndex = 33;
     this.label15.Text = "E-mail";
     //
     // textBox7
     //
     this.textBox7.BackColor = System.Drawing.Color.White;
     this.textBox7.Enabled = false;
     this.textBox7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox7.Location = new System.Drawing.Point(244, 163);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(303, 20);
     this.textBox7.TabIndex = 32;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(39, 111);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 16);
     this.label8.TabIndex = 30;
     this.label8.Text = "Telefon";
     //
     // textBox4
     //
     this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox4.Location = new System.Drawing.Point(244, 111);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(303, 20);
     this.textBox4.TabIndex = 29;
     //
     // textBox5
     //
     this.textBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox5.Location = new System.Drawing.Point(244, 137);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(303, 20);
     this.textBox5.TabIndex = 31;
     this.textBox5.Text = "*****@*****.**";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(39, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 22;
     this.label2.Text = "Nume";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(37, 33);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 16);
     this.label3.TabIndex = 23;
     this.label3.Text = "Data nasterii";
     //
     // textBox3
     //
     this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location = new System.Drawing.Point(244, 85);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(303, 20);
     this.textBox3.TabIndex = 28;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(39, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(39, 16);
     this.label4.TabIndex = 24;
     this.label4.Text = "CNP";
     //
     // textBox2
     //
     this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(244, 59);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(303, 20);
     this.textBox2.TabIndex = 25;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(37, 163);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(181, 16);
     this.label6.TabIndex = 27;
     this.label6.Text = "Data efectuarii analizelor";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(39, 85);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 16);
     this.label5.TabIndex = 26;
     this.label5.Text = "Adresa";
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "Introducere date pacient";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     this.tabControlPanel3.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel3;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "Statistica";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX1.Location = new System.Drawing.Point(3, 372);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(137, 56);
     this.buttonX1.TabIndex = 3;
     this.buttonX1.Text = "Adauga in baza de date";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // reflectionImage2
     //
     this.reflectionImage2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     //
     //
     //
     this.reflectionImage2.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image = global::MedLab2.Properties.Resources.ReflectionImage;
     this.reflectionImage2.Location = new System.Drawing.Point(32, 668);
     this.reflectionImage2.Name = "reflectionImage2";
     this.reflectionImage2.Size = new System.Drawing.Size(77, 75);
     this.reflectionImage2.TabIndex = 6;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.reflectionLabel1.Location = new System.Drawing.Point(115, 662);
     this.reflectionLabel1.Name = "reflectionLabel1";
     this.reflectionLabel1.Size = new System.Drawing.Size(147, 81);
     this.reflectionLabel1.TabIndex = 7;
     this.reflectionLabel1.Text = "<b><font size=\"+14\"><i>Med</i><font color=\"#B02B2C\">LAB</font></font></b>";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMargin = new System.Drawing.Size(5, 5);
     this.AutoScrollMinSize = new System.Drawing.Size(5, 5);
     this.ClientSize = new System.Drawing.Size(1284, 750);
     this.Controls.Add(this.reflectionImage2);
     this.Controls.Add(this.reflectionLabel1);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.sideBar1);
     this.Controls.Add(this.ribbonControl1);
     this.DoubleBuffered = true;
     this.HelpButton = true;
     this.Name = "MainForm";
     this.Text = "MedLAB";
     this.Activated += new System.EventHandler(this.MainForm_Activated);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.Click += new System.EventHandler(this.MainForm_Click);
     this.Enter += new System.EventHandler(this.MainForm_Enter);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).EndInit();
     this.tabControl2.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.groupPanel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.groupPanel5.ResumeLayout(false);
     this.groupPanel5.PerformLayout();
     this.groupPanel4.ResumeLayout(false);
     this.groupPanel4.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlertCustom));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.bar1             = new DevComponents.DotNetBar.Bar();
     this.buttonItem1      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2      = new DevComponents.DotNetBar.ButtonItem();
     this.lblTittle        = new DevComponents.DotNetBar.LabelX();
     this.lblMsg           = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     this.reflectionImage1.Image     = ((System.Drawing.Image)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location  = new System.Drawing.Point(10, 9);
     this.reflectionImage1.Name      = "reflectionImage1";
     this.reflectionImage1.Size      = new System.Drawing.Size(76, 107);
     this.reflectionImage1.TabIndex  = 0;
     //
     // bar1
     //
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2
     });
     this.bar1.Location = new System.Drawing.Point(0, 111);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(345, 25);
     this.bar1.Stretch  = true;
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 1;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // lblTittle
     //
     this.lblTittle.BackColor = System.Drawing.Color.Transparent;
     this.lblTittle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblTittle.Location  = new System.Drawing.Point(106, 12);
     this.lblTittle.Name      = "lblTittle";
     this.lblTittle.Size      = new System.Drawing.Size(108, 18);
     this.lblTittle.TabIndex  = 2;
     this.lblTittle.Text      = "<b>信息提示</b>";
     //
     // lblMsg
     //
     this.lblMsg.BackColor = System.Drawing.Color.Transparent;
     this.lblMsg.Location  = new System.Drawing.Point(106, 36);
     this.lblMsg.Name      = "lblMsg";
     this.lblMsg.Size      = new System.Drawing.Size(220, 88);
     this.lblMsg.TabIndex  = 3;
     this.lblMsg.Text      = "Using Balloon and other controls included with DotNetBar you can create great loo" +
                             "king custom alerts.";
     this.lblMsg.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblMsg.WordWrap          = true;
     this.lblMsg.Click            += new System.EventHandler(this.lblMsg_Click);
     this.lblMsg.MouseClick       += new System.Windows.Forms.MouseEventHandler(this.lblMsg_MouseClick);
     this.lblMsg.MouseEnter       += new System.EventHandler(this.lblMsg_MouseEnter);
     this.lblMsg.MouseLeave       += new System.EventHandler(this.lblMsg_MouseLeave);
     //
     // AlertCustom
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.BackColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.CaptionFont       = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.ClientSize        = new System.Drawing.Size(345, 136);
     this.Controls.Add(this.lblMsg);
     this.Controls.Add(this.lblTittle);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.reflectionImage1);
     this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(55)))), ((int)(((byte)(114)))));
     this.Location  = new System.Drawing.Point(0, 0);
     this.Name      = "AlertCustom";
     this.Style     = DevComponents.DotNetBar.eBallonStyle.Office2007Alert;
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlertCustom));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.labelX1          = new DevComponents.DotNetBar.LabelX();
     this.txtAlert         = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.reflectionImage1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.reflectionImage1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.reflectionImage1.Image    = global::MediboxAssistant.Properties.Resources.Info_32x32;
     this.reflectionImage1.Location = new System.Drawing.Point(0, 0);
     this.reflectionImage1.Name     = "reflectionImage1";
     this.reflectionImage1.Size     = new System.Drawing.Size(34, 125);
     this.reflectionImage1.TabIndex = 0;
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.labelX1.Location = new System.Drawing.Point(34, 0);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(297, 30);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text     = "<b>NOTIFICATION</b>";
     //
     // txtAlert
     //
     this.txtAlert.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.txtAlert.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtAlert.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.txtAlert.Location          = new System.Drawing.Point(34, 30);
     this.txtAlert.Name              = "txtAlert";
     this.txtAlert.Size              = new System.Drawing.Size(297, 95);
     this.txtAlert.TabIndex          = 3;
     this.txtAlert.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.txtAlert.WordWrap          = true;
     //
     // AlertCustom
     //
     this.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.BackColor2  = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(240)))));
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(161)))), ((int)(((byte)(171)))));
     this.CaptionFont = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.ClientSize  = new System.Drawing.Size(331, 125);
     this.Controls.Add(this.txtAlert);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.reflectionImage1);
     this.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(76)))), ((int)(((byte)(76)))), ((int)(((byte)(76)))));
     this.Icon      = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location  = new System.Drawing.Point(0, 0);
     this.Name      = "AlertCustom";
     this.Style     = DevComponents.DotNetBar.eBallonStyle.Office2007Alert;
     this.ResumeLayout(false);
 }
Ejemplo 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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AlertCustom));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.bar1             = new DevComponents.DotNetBar.Bar();
     this.buttonItem1      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3      = new DevComponents.DotNetBar.ButtonItem();
     this.labelX1          = new DevComponents.DotNetBar.LabelX();
     this.labelX2          = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     this.reflectionImage1.Image     = ((System.Drawing.Bitmap)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location  = new System.Drawing.Point(8, 8);
     this.reflectionImage1.Name      = "reflectionImage1";
     this.reflectionImage1.Size      = new System.Drawing.Size(64, 100);
     this.reflectionImage1.TabIndex  = 0;
     //
     // bar1
     //
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2,
         this.buttonItem3
     });
     this.bar1.Location = new System.Drawing.Point(0, 111);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(280, 25);
     this.bar1.Stretch  = true;
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 1;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.ImagePaddingHorizontal = 8;
     this.buttonItem3.ItemAlignment          = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "Options...";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location  = new System.Drawing.Point(88, 32);
     this.labelX1.Name      = "labelX1";
     this.labelX1.Size      = new System.Drawing.Size(184, 16);
     this.labelX1.TabIndex  = 2;
     this.labelX1.Text      = "<b>Create great looking custom alerts</b>";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location  = new System.Drawing.Point(88, 56);
     this.labelX2.Name      = "labelX2";
     this.labelX2.Size      = new System.Drawing.Size(184, 40);
     this.labelX2.TabIndex  = 3;
     this.labelX2.Text      = "Using Balloon and other controls included with DotNetBar you can create great loo" +
                              "king custom alerts.";
     this.labelX2.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.labelX2.WordWrap          = true;
     //
     // AlertCustom
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(227)), ((System.Byte)(239)), ((System.Byte)(255)));
     this.BackColor2        = System.Drawing.Color.FromArgb(((System.Byte)(175)), ((System.Byte)(210)), ((System.Byte)(255)));
     this.BorderColor       = System.Drawing.Color.FromArgb(((System.Byte)(101)), ((System.Byte)(147)), ((System.Byte)(207)));
     this.CaptionFont       = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.ClientSize        = new System.Drawing.Size(280, 136);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.labelX2,
         this.labelX1,
         this.bar1,
         this.reflectionImage1
     });
     this.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(8)), ((System.Byte)(55)), ((System.Byte)(114)));
     this.Location  = new System.Drawing.Point(0, 0);
     this.Name      = "AlertCustom";
     this.Style     = DevComponents.DotNetBar.eBallonStyle.Office2007Alert;
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 9
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
     this.tabControl1      = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel3      = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX3          = new DevComponents.DotNetBar.LabelX();
     this.reflectionLabel2 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.groupPanel2      = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.groupPanel1      = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX3         = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5         = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4         = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2         = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1         = new DevComponents.DotNetBar.ButtonX();
     this.NoImage          = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.tabItem2         = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.labelX2          = new DevComponents.DotNetBar.LabelX();
     this.labelX1          = new DevComponents.DotNetBar.LabelX();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.tabItem1         = new DevComponents.DotNetBar.TabItem(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.BackColor      = System.Drawing.Color.Black;
     this.tabControl1.CanReorderTabs = true;
     this.tabControl1.Controls.Add(this.tabControlPanel2);
     this.tabControl1.Controls.Add(this.tabControlPanel1);
     this.tabControl1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location         = new System.Drawing.Point(0, 0);
     this.tabControl1.Name             = "tabControl1";
     this.tabControl1.SelectedTabFont  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControl1.SelectedTabIndex = 0;
     this.tabControl1.Size             = new System.Drawing.Size(499, 330);
     this.tabControl1.TabIndex         = 3;
     this.tabControl1.TabLayoutType    = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl1.Tabs.Add(this.tabItem1);
     this.tabControl1.Tabs.Add(this.tabItem2);
     this.tabControl1.Text = "tabControl1";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.groupPanel3);
     this.tabControlPanel2.Controls.Add(this.groupPanel2);
     this.tabControlPanel2.Controls.Add(this.groupPanel1);
     this.tabControlPanel2.Controls.Add(this.NoImage);
     this.tabControlPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel2.Name     = "tabControlPanel2";
     this.tabControlPanel2.Padding  = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size     = new System.Drawing.Size(499, 304);
     this.tabControlPanel2.Style.BackColor1.Color  = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color  = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border            = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide        = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                                                                                             | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex            = 2;
     this.tabControlPanel2.TabItem             = this.tabItem2;
     //
     // groupPanel3
     //
     this.groupPanel3.BackColor        = System.Drawing.Color.Transparent;
     this.groupPanel3.CanvasColor      = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.labelX3);
     this.groupPanel3.Controls.Add(this.reflectionLabel2);
     this.groupPanel3.Location = new System.Drawing.Point(210, 95);
     this.groupPanel3.Name     = "groupPanel3";
     this.groupPanel3.Size     = new System.Drawing.Size(277, 197);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth      = 1;
     this.groupPanel3.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth        = 1;
     this.groupPanel3.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth       = 1;
     this.groupPanel3.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth      = 1;
     this.groupPanel3.Style.CornerDiameter      = 4;
     this.groupPanel3.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 1;
     this.groupPanel3.Text     = "About this source";
     //
     // labelX3
     //
     this.labelX3.Location          = new System.Drawing.Point(18, 58);
     this.labelX3.Name              = "labelX3";
     this.labelX3.Size              = new System.Drawing.Size(250, 104);
     this.labelX3.TabIndex          = 1;
     this.labelX3.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.labelX3.WordWrap          = true;
     //
     // reflectionLabel2
     //
     this.reflectionLabel2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.reflectionLabel2.Location = new System.Drawing.Point(3, 3);
     this.reflectionLabel2.Name     = "reflectionLabel2";
     this.reflectionLabel2.Size     = new System.Drawing.Size(265, 49);
     this.reflectionLabel2.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.BackColor        = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor      = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.reflectionImage2);
     this.groupPanel2.Location = new System.Drawing.Point(12, 95);
     this.groupPanel2.Name     = "groupPanel2";
     this.groupPanel2.Size     = new System.Drawing.Size(192, 197);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth      = 1;
     this.groupPanel2.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth        = 1;
     this.groupPanel2.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth       = 1;
     this.groupPanel2.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth      = 1;
     this.groupPanel2.Style.CornerDiameter      = 4;
     this.groupPanel2.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text     = "Credibility Picure";
     //
     // reflectionImage2
     //
     this.reflectionImage2.Location = new System.Drawing.Point(8, 3);
     this.reflectionImage2.Name     = "reflectionImage2";
     this.reflectionImage2.Size     = new System.Drawing.Size(170, 170);
     this.reflectionImage2.TabIndex = 0;
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor        = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.buttonX3);
     this.groupPanel1.Controls.Add(this.buttonX5);
     this.groupPanel1.Controls.Add(this.buttonX4);
     this.groupPanel1.Controls.Add(this.buttonX2);
     this.groupPanel1.Controls.Add(this.buttonX1);
     this.groupPanel1.Location = new System.Drawing.Point(12, 4);
     this.groupPanel1.Name     = "groupPanel1";
     this.groupPanel1.Size     = new System.Drawing.Size(475, 85);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth      = 1;
     this.groupPanel1.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth        = 1;
     this.groupPanel1.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth       = 1;
     this.groupPanel1.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth      = 1;
     this.groupPanel1.Style.CornerDiameter      = 4;
     this.groupPanel1.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text     = "Select a Source to view Credibility";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX3.Location       = new System.Drawing.Point(103, 33);
     this.buttonX3.Name           = "buttonX3";
     this.buttonX3.Size           = new System.Drawing.Size(86, 23);
     this.buttonX3.TabIndex       = 0;
     this.buttonX3.Tag            = "3";
     this.buttonX3.Text           = "ToP Team";
     this.buttonX3.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX5.Location       = new System.Drawing.Point(195, 4);
     this.buttonX5.Name           = "buttonX5";
     this.buttonX5.Size           = new System.Drawing.Size(86, 23);
     this.buttonX5.TabIndex       = 0;
     this.buttonX5.Tag            = "4";
     this.buttonX5.Text           = "Microsoft";
     this.buttonX5.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX4.Location       = new System.Drawing.Point(103, 4);
     this.buttonX4.Name           = "buttonX4";
     this.buttonX4.Size           = new System.Drawing.Size(86, 23);
     this.buttonX4.TabIndex       = 0;
     this.buttonX4.Tag            = "2";
     this.buttonX4.Text           = "DevComponents";
     this.buttonX4.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Location       = new System.Drawing.Point(22, 33);
     this.buttonX2.Name           = "buttonX2";
     this.buttonX2.Size           = new System.Drawing.Size(75, 23);
     this.buttonX2.TabIndex       = 0;
     this.buttonX2.Tag            = "1";
     this.buttonX2.Text           = "CSharpCorner";
     this.buttonX2.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location       = new System.Drawing.Point(22, 4);
     this.buttonX1.Name           = "buttonX1";
     this.buttonX1.Size           = new System.Drawing.Size(75, 23);
     this.buttonX1.TabIndex       = 0;
     this.buttonX1.Tag            = "0";
     this.buttonX1.Text           = "RageZone";
     this.buttonX1.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // NoImage
     //
     this.NoImage.BackColor = System.Drawing.Color.Transparent;
     this.NoImage.Location  = new System.Drawing.Point(144, 29);
     this.NoImage.Name      = "NoImage";
     this.NoImage.Size      = new System.Drawing.Size(128, 128);
     this.NoImage.TabIndex  = 0;
     this.NoImage.Visible   = false;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name            = "tabItem2";
     this.tabItem2.Text            = "Secondary Credibility";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.reflectionImage1);
     this.tabControlPanel1.Controls.Add(this.labelX2);
     this.tabControlPanel1.Controls.Add(this.labelX1);
     this.tabControlPanel1.Controls.Add(this.reflectionLabel1);
     this.tabControlPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel1.Name     = "tabControlPanel1";
     this.tabControlPanel1.Padding  = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size     = new System.Drawing.Size(499, 304);
     this.tabControlPanel1.Style.BackColor1.Color  = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel1.Style.BackColor2.Color  = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.Border            = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel1.Style.BorderSide        = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                                                                                             | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex            = 1;
     this.tabControlPanel1.TabItem             = this.tabItem1;
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     //this.reflectionImage1.Image = global::ToP_Tools.Properties.Resources.pictureBox1_Image;
     this.reflectionImage1.Location = new System.Drawing.Point(27, 130);
     this.reflectionImage1.Name     = "reflectionImage1";
     this.reflectionImage1.Size     = new System.Drawing.Size(437, 167);
     this.reflectionImage1.TabIndex = 3;
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location  = new System.Drawing.Point(27, 94);
     this.labelX2.Name      = "labelX2";
     this.labelX2.Size      = new System.Drawing.Size(177, 30);
     this.labelX2.TabIndex  = 2;
     this.labelX2.Text      = "<font size=\"+1\"><b>Email</b>:</font><br/>\r\n    <font color=\"red\">brclancy111@hotm" +
                              "ail.com</font>\r\n";
     this.labelX2.TextLineAlignment = System.Drawing.StringAlignment.Near;
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location  = new System.Drawing.Point(31, 54);
     this.labelX1.Name      = "labelX1";
     this.labelX1.Size      = new System.Drawing.Size(105, 23);
     this.labelX1.TabIndex  = 1;
     this.labelX1.Text      = "Brent Clancy";
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.BackColor = System.Drawing.Color.Transparent;
     this.reflectionLabel1.Location  = new System.Drawing.Point(12, 4);
     this.reflectionLabel1.Name      = "reflectionLabel1";
     this.reflectionLabel1.Size      = new System.Drawing.Size(360, 54);
     this.reflectionLabel1.TabIndex  = 0;
     this.reflectionLabel1.Text      = "<b><font size=\"+6\">Primary Credits goto:</font></b>";
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name            = "tabItem1";
     this.tabItem1.Text            = "Main Credibility";
     //
     // About
     //
     this.BackColor  = System.Drawing.Color.Black;
     this.ClientSize = new System.Drawing.Size(499, 330);
     this.Controls.Add(this.tabControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "About";
     this.Text = "About";
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAbout));
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.logoPictureBox = new System.Windows.Forms.PictureBox();
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.lblVersion = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.btnOk = new DevComponents.DotNetBar.ButtonX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
     this.tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     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, 3);
     this.ribbonControl1.Size = new System.Drawing.Size(470, 46);
     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";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // logoPictureBox
     //
     this.logoPictureBox.Cursor = System.Windows.Forms.Cursors.Default;
     this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
     this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
     this.logoPictureBox.Name = "logoPictureBox";
     this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 5);
     this.logoPictureBox.Size = new System.Drawing.Size(145, 230);
     this.logoPictureBox.TabIndex = 12;
     this.logoPictureBox.TabStop = false;
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.BackColor = System.Drawing.Color.Transparent;
     this.tableLayoutPanel.ColumnCount = 2;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
     this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.lblVersion, 1, 1);
     this.tableLayoutPanel.Controls.Add(this.labelX5, 1, 2);
     this.tableLayoutPanel.Controls.Add(this.labelX7, 1, 0);
     this.tableLayoutPanel.Controls.Add(this.labelX6, 1, 3);
     this.tableLayoutPanel.Controls.Add(this.btnOk, 1, 4);
     this.tableLayoutPanel.Location = new System.Drawing.Point(5, 47);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 5;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 48.72881F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 18.22034F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel.Size = new System.Drawing.Size(458, 236);
     this.tableLayoutPanel.TabIndex = 11;
     //
     // lblVersion
     //
     //
     //
     //
     this.lblVersion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblVersion.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblVersion.Location = new System.Drawing.Point(154, 29);
     this.lblVersion.Name = "lblVersion";
     this.lblVersion.Size = new System.Drawing.Size(301, 20);
     this.lblVersion.TabIndex = 26;
     this.lblVersion.Text = "版本 V1.0.0";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelX5.Location = new System.Drawing.Point(154, 55);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(301, 20);
     this.labelX5.TabIndex = 27;
     this.labelX5.Text = "版权所有(C)2015 CASCO.COM.CN";
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelX7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX7.Location = new System.Drawing.Point(154, 3);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(301, 20);
     this.labelX7.TabIndex = 29;
     this.labelX7.Text = "CASCO VPI3功能测试系统";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelX6.Location = new System.Drawing.Point(154, 81);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(301, 108);
     this.labelX6.TabIndex = 28;
     this.labelX6.Text = "警告:本计算机程序受著作权法和国际公约保护,未经授权擅自复制或传播本程序的部分或全部,可能受到严厉的民事及刑事制裁,并将在法律许可的范围内受到最大可能的起诉。";
     this.labelX6.WordWrap = true;
     //
     // btnOk
     //
     this.btnOk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnOk.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnOk.Dock = System.Windows.Forms.DockStyle.Right;
     this.btnOk.Location = new System.Drawing.Point(380, 195);
     this.btnOk.Name = "btnOk";
     this.btnOk.Size = new System.Drawing.Size(75, 38);
     this.btnOk.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnOk.TabIndex = 12;
     this.btnOk.Text = "确定";
     this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX3.Location = new System.Drawing.Point(129, 43);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(295, 37);
     this.labelX3.TabIndex = 10;
     this.labelX3.Text = "CASCO 型式试验平台";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(129, 121);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(295, 37);
     this.labelX1.TabIndex = 8;
     this.labelX1.Text = "版本 V1.0.0\r\n\r\n版权所有(C) 2015 Casco.com.cn";
     //
     // reflectionImage2
     //
     //
     //
     //
     this.reflectionImage2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.reflectionImage2.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image = ((System.Drawing.Image)(resources.GetObject("reflectionImage2.Image")));
     this.reflectionImage2.Location = new System.Drawing.Point(33, 123);
     this.reflectionImage2.Name = "reflectionImage2";
     this.reflectionImage2.Size = new System.Drawing.Size(35, 10);
     this.reflectionImage2.TabIndex = 7;
     //
     // FormAbout
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(480, 337);
     this.Controls.Add(this.tableLayoutPanel);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.reflectionImage2);
     this.Controls.Add(this.ribbonControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormAbout";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "关于VPI3功能测试系统";
     this.Load += new System.EventHandler(this.formAbout_Load);
     ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
     this.tableLayoutPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.reflectionLabel2 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.labelX1          = new DevComponents.DotNetBar.LabelX();
     this.labelX2          = new DevComponents.DotNetBar.LabelX();
     this.buttonX1         = new DevComponents.DotNetBar.ButtonX();
     this.reflectionLabel3 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.reflectionImage3 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.labelX3          = new DevComponents.DotNetBar.LabelX();
     this.labelX4          = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     //
     // reflectionImage1.BackgroundStyle
     //
     this.reflectionImage1.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage1.Image    = ((System.Drawing.Bitmap)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location = new System.Drawing.Point(16, 32);
     this.reflectionImage1.Name     = "reflectionImage1";
     this.reflectionImage1.Size     = new System.Drawing.Size(88, 104);
     this.reflectionImage1.TabIndex = 0;
     //
     // reflectionImage2
     //
     //
     // reflectionImage2.BackgroundStyle
     //
     this.reflectionImage2.BackgroundStyle.BackColor         = System.Drawing.Color.White;
     this.reflectionImage2.BackgroundStyle.BorderBottom      = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionImage2.BackgroundStyle.BorderBottomWidth = 3;
     this.reflectionImage2.BackgroundStyle.BorderColor       = System.Drawing.Color.Chocolate;
     this.reflectionImage2.BackgroundStyle.BorderLeft        = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionImage2.BackgroundStyle.BorderLeftWidth   = 3;
     this.reflectionImage2.BackgroundStyle.BorderRight       = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionImage2.BackgroundStyle.BorderRightWidth  = 3;
     this.reflectionImage2.BackgroundStyle.BorderTop         = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionImage2.BackgroundStyle.BorderTopWidth    = 3;
     this.reflectionImage2.BackgroundStyle.CornerType        = DevComponents.DotNetBar.eCornerType.Rounded;
     this.reflectionImage2.BackgroundStyle.TextAlignment     = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image    = ((System.Drawing.Bitmap)(resources.GetObject("reflectionImage2.Image")));
     this.reflectionImage2.Location = new System.Drawing.Point(112, 32);
     this.reflectionImage2.Name     = "reflectionImage2";
     this.reflectionImage2.Size     = new System.Drawing.Size(88, 104);
     this.reflectionImage2.TabIndex = 2;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Font     = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.reflectionLabel1.Location = new System.Drawing.Point(240, 32);
     this.reflectionLabel1.Name     = "reflectionLabel1";
     this.reflectionLabel1.Size     = new System.Drawing.Size(232, 56);
     this.reflectionLabel1.TabIndex = 3;
     this.reflectionLabel1.Text     = "<b><font size=\"+6\"><i>Dev</i><font color=\"#B02B2C\">Components</font></font></b>";
     //
     // reflectionLabel2
     //
     //
     // reflectionLabel2.BackgroundStyle
     //
     this.reflectionLabel2.BackgroundStyle.BackColor              = System.Drawing.Color.White;
     this.reflectionLabel2.BackgroundStyle.BackColor2             = System.Drawing.Color.WhiteSmoke;
     this.reflectionLabel2.BackgroundStyle.BackColorGradientAngle = 90;
     this.reflectionLabel2.BackgroundStyle.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionLabel2.BackgroundStyle.BorderBottomWidth      = 3;
     this.reflectionLabel2.BackgroundStyle.BorderColor            = System.Drawing.Color.Maroon;
     this.reflectionLabel2.BackgroundStyle.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionLabel2.BackgroundStyle.BorderLeftWidth        = 3;
     this.reflectionLabel2.BackgroundStyle.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionLabel2.BackgroundStyle.BorderRightWidth       = 3;
     this.reflectionLabel2.BackgroundStyle.BorderTop              = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.reflectionLabel2.BackgroundStyle.BorderTopWidth         = 3;
     this.reflectionLabel2.BackgroundStyle.CornerType             = DevComponents.DotNetBar.eCornerType.Rounded;
     this.reflectionLabel2.BackgroundStyle.TextAlignment          = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionLabel2.Font     = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.reflectionLabel2.Location = new System.Drawing.Point(232, 96);
     this.reflectionLabel2.Name     = "reflectionLabel2";
     this.reflectionLabel2.Size     = new System.Drawing.Size(296, 64);
     this.reflectionLabel2.TabIndex = 5;
     this.reflectionLabel2.Text     = "<i>Dev</i><font color=\"#B02B2C\">Components</font>";
     //
     // labelX1
     //
     this.labelX1.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.labelX1.Location         = new System.Drawing.Point(240, 8);
     this.labelX1.Name             = "labelX1";
     this.labelX1.Size             = new System.Drawing.Size(264, 16);
     this.labelX1.TabIndex         = 6;
     this.labelX1.Text             = "Reflection Label Control with <a href=\"tm\">text-markup</a> support:";
     this.labelX1.MarkupLinkClick += new DevComponents.DotNetBar.MarkupLinkClickEventHandler(this.labelX1_MarkupLinkClick);
     //
     // labelX2
     //
     this.labelX2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelX2.Location  = new System.Drawing.Point(16, 8);
     this.labelX2.Name      = "labelX2";
     this.labelX2.Size      = new System.Drawing.Size(192, 16);
     this.labelX2.TabIndex  = 7;
     this.labelX2.Text      = "Reflection Image Control:";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location       = new System.Drawing.Point(440, 256);
     this.buttonX1.Name           = "buttonX1";
     this.buttonX1.Size           = new System.Drawing.Size(88, 24);
     this.buttonX1.TabIndex       = 8;
     this.buttonX1.Text           = "&Close";
     this.buttonX1.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // reflectionLabel3
     //
     this.reflectionLabel3.Enabled  = false;
     this.reflectionLabel3.Font     = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.reflectionLabel3.Location = new System.Drawing.Point(240, 192);
     this.reflectionLabel3.Name     = "reflectionLabel3";
     this.reflectionLabel3.Size     = new System.Drawing.Size(232, 56);
     this.reflectionLabel3.TabIndex = 9;
     this.reflectionLabel3.Text     = "<b><font size=\"+6\"><i>Dev</i><font color=\"#B02B2C\">Components</font></font></b>";
     //
     // reflectionImage3
     //
     //
     // reflectionImage3.BackgroundStyle
     //
     this.reflectionImage3.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage3.Enabled  = false;
     this.reflectionImage3.Image    = ((System.Drawing.Bitmap)(resources.GetObject("reflectionImage3.Image")));
     this.reflectionImage3.Location = new System.Drawing.Point(16, 176);
     this.reflectionImage3.Name     = "reflectionImage3";
     this.reflectionImage3.Size     = new System.Drawing.Size(88, 104);
     this.reflectionImage3.TabIndex = 10;
     //
     // labelX3
     //
     this.labelX3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelX3.Location  = new System.Drawing.Point(16, 152);
     this.labelX3.Name      = "labelX3";
     this.labelX3.Size      = new System.Drawing.Size(192, 16);
     this.labelX3.TabIndex  = 11;
     this.labelX3.Text      = "Disabled state:";
     //
     // labelX4
     //
     this.labelX4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelX4.Location  = new System.Drawing.Point(240, 168);
     this.labelX4.Name      = "labelX4";
     this.labelX4.Size      = new System.Drawing.Size(192, 16);
     this.labelX4.TabIndex  = 12;
     this.labelX4.Text      = "Disabled state:";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(194)), ((System.Byte)(217)), ((System.Byte)(247)));
     this.ClientSize        = new System.Drawing.Size(538, 288);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.labelX4,
         this.labelX3,
         this.reflectionImage3,
         this.reflectionLabel3,
         this.buttonX1,
         this.labelX2,
         this.labelX1,
         this.reflectionLabel2,
         this.reflectionLabel1,
         this.reflectionImage2,
         this.reflectionImage1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "Form1";
     this.Text            = "DotNetBar Reflection Controls Demonstration";
     this.ResumeLayout(false);
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAbout));
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.logoPictureBox = new System.Windows.Forms.PictureBox();
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.btnOk = new System.Windows.Forms.Button();
     this.lblVersion = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
     this.tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.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(458, 46);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // logoPictureBox
     //
     this.logoPictureBox.Cursor = System.Windows.Forms.Cursors.Default;
     this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
     this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
     this.logoPictureBox.Name = "logoPictureBox";
     this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 5);
     this.logoPictureBox.Size = new System.Drawing.Size(145, 386);
     this.logoPictureBox.TabIndex = 12;
     this.logoPictureBox.TabStop = false;
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.BackColor = System.Drawing.Color.Transparent;
     this.tableLayoutPanel.ColumnCount = 2;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
     this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.btnOk, 1, 4);
     this.tableLayoutPanel.Controls.Add(this.lblVersion, 1, 1);
     this.tableLayoutPanel.Controls.Add(this.labelX5, 1, 2);
     this.tableLayoutPanel.Controls.Add(this.labelX6, 1, 3);
     this.tableLayoutPanel.Controls.Add(this.labelX7, 1, 0);
     this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(5, 47);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 5;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 55.55556F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel.Size = new System.Drawing.Size(458, 392);
     this.tableLayoutPanel.TabIndex = 11;
     //
     // btnOk
     //
     this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnOk.Location = new System.Drawing.Point(380, 368);
     this.btnOk.Name = "btnOk";
     this.btnOk.Size = new System.Drawing.Size(75, 21);
     this.btnOk.TabIndex = 24;
     this.btnOk.Text = "确定";
     //
     // lblVersion
     //
     //
     //
     //
     this.lblVersion.BackgroundStyle.Class = "";
     this.lblVersion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblVersion.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblVersion.Location = new System.Drawing.Point(154, 46);
     this.lblVersion.Name = "lblVersion";
     this.lblVersion.Size = new System.Drawing.Size(301, 37);
     this.lblVersion.TabIndex = 26;
     this.lblVersion.Text = "版本 V1.0.0";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelX5.Location = new System.Drawing.Point(154, 89);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(301, 37);
     this.labelX5.TabIndex = 27;
     this.labelX5.Text = "版权所有(C)2015 CASCO.COM.CN";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelX6.Location = new System.Drawing.Point(154, 132);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(301, 211);
     this.labelX6.TabIndex = 28;
     this.labelX6.Text = "警告:本计算机程序受著作权法和国际公约保护,未经授权擅自复制或传播本程序的部分或全部,可能受到严厉的民事及刑事制裁,并将在法律许可的范围内受到最大可能的起诉。";
     this.labelX6.WordWrap = true;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelX7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX7.Location = new System.Drawing.Point(154, 3);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(301, 37);
     this.labelX7.TabIndex = 29;
     this.labelX7.Text = "Casco TSP硬件测试平台";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX3.Location = new System.Drawing.Point(129, 43);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(295, 37);
     this.labelX3.TabIndex = 10;
     this.labelX3.Text = "CASCO 型式试验平台";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(129, 199);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(295, 92);
     this.labelX2.TabIndex = 9;
     this.labelX2.Text = "警告:本计算机程序受著作权法和国际公约保护,未经授权擅自复制或传播本程序的部分或全部,可能受到严厉的民事及刑事制裁,并将在法律许可的范围内受到最大可能的起诉。";
     this.labelX2.WordWrap = true;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(129, 121);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(295, 37);
     this.labelX1.TabIndex = 8;
     this.labelX1.Text = "版本 V1.0.0\r\n\r\n版权所有(C) 2015 Casco.com.cn";
     //
     // reflectionImage2
     //
     //
     //
     //
     this.reflectionImage2.BackgroundStyle.Class = "";
     this.reflectionImage2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.reflectionImage2.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image = ((System.Drawing.Image)(resources.GetObject("reflectionImage2.Image")));
     this.reflectionImage2.Location = new System.Drawing.Point(33, 123);
     this.reflectionImage2.Name = "reflectionImage2";
     this.reflectionImage2.Size = new System.Drawing.Size(35, 10);
     this.reflectionImage2.TabIndex = 7;
     //
     // FormAbout
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(468, 441);
     this.Controls.Add(this.tableLayoutPanel);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.reflectionImage2);
     this.Controls.Add(this.ribbonControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormAbout";
     this.ShowIcon = false;
     this.Text = "关于型式试验平台";
     this.Load += new System.EventHandler(this.formAbout_Load);
     ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
     this.tableLayoutPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevComponents.DotNetBar.Controls.ReflectionImage reflectionImage1;
     this.ribbonClientPanel3 = new DevComponents.DotNetBar.Ribbon.RibbonClientPanel();
     this.ribbonClientPanel2 = new DevComponents.DotNetBar.Ribbon.RibbonClientPanel();
     this.ribbonClientPanel1 = new DevComponents.DotNetBar.Ribbon.RibbonClientPanel();
     this.labelX1            = new DevComponents.DotNetBar.LabelX();
     this.lbErrorUserName    = new DevComponents.DotNetBar.LabelX();
     this.lbErrorPass        = new DevComponents.DotNetBar.LabelX();
     this.btnCLose           = new DevComponents.DotNetBar.ButtonX();
     this.btnLogin           = new DevComponents.DotNetBar.ButtonX();
     this.lblPassword        = new DevComponents.DotNetBar.LabelX();
     this.lblUserName        = new DevComponents.DotNetBar.LabelX();
     this.txtPass            = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtUserName        = new DevComponents.DotNetBar.Controls.TextBoxX();
     reflectionImage1        = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     //
     //
     //
     reflectionImage1.BackgroundStyle.Class      = "";
     reflectionImage1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     reflectionImage1.Image       = global::QuanLyBanHang.Properties.Resources.frmLogin;
     reflectionImage1.Location    = new System.Drawing.Point(29, 68);
     reflectionImage1.Name        = "reflectionImage1";
     reflectionImage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     reflectionImage1.Size        = new System.Drawing.Size(76, 135);
     reflectionImage1.TabIndex    = 6;
     //
     // ribbonClientPanel3
     //
     this.ribbonClientPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.ribbonClientPanel3.Location    = new System.Drawing.Point(128, 63);
     this.ribbonClientPanel3.Name        = "ribbonClientPanel3";
     this.ribbonClientPanel3.Size        = new System.Drawing.Size(150, 2);
     //
     //
     //
     this.ribbonClientPanel3.Style.Class      = "RibbonClientPanel";
     this.ribbonClientPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonClientPanel3.StyleMouseDown.Class      = "";
     this.ribbonClientPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonClientPanel3.StyleMouseOver.Class      = "";
     this.ribbonClientPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonClientPanel3.TabIndex = 16;
     this.ribbonClientPanel3.Text     = "ribbonClientPanel1";
     //
     // ribbonClientPanel2
     //
     this.ribbonClientPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.ribbonClientPanel2.Location    = new System.Drawing.Point(87, 59);
     this.ribbonClientPanel2.Name        = "ribbonClientPanel2";
     this.ribbonClientPanel2.Size        = new System.Drawing.Size(250, 2);
     //
     //
     //
     this.ribbonClientPanel2.Style.Class      = "RibbonClientPanel";
     this.ribbonClientPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonClientPanel2.StyleMouseDown.Class      = "";
     this.ribbonClientPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonClientPanel2.StyleMouseOver.Class      = "";
     this.ribbonClientPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonClientPanel2.TabIndex = 18;
     this.ribbonClientPanel2.Text     = "ribbonClientPanel1";
     //
     // ribbonClientPanel1
     //
     this.ribbonClientPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.ribbonClientPanel1.Location    = new System.Drawing.Point(57, 54);
     this.ribbonClientPanel1.Name        = "ribbonClientPanel1";
     this.ribbonClientPanel1.Size        = new System.Drawing.Size(304, 2);
     //
     //
     //
     this.ribbonClientPanel1.Style.Class      = "RibbonClientPanel";
     this.ribbonClientPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonClientPanel1.StyleMouseDown.Class      = "";
     this.ribbonClientPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonClientPanel1.StyleMouseOver.Class      = "";
     this.ribbonClientPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonClientPanel1.TabIndex = 17;
     this.ribbonClientPanel1.Text     = "ribbonClientPanel1";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class      = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(6, 11);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(391, 37);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text     = "<div align=\"center\">ĐĂNG NHẬP</div>";
     //
     // lbErrorUserName
     //
     //
     //
     //
     this.lbErrorUserName.BackgroundStyle.Class      = "";
     this.lbErrorUserName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbErrorUserName.ForeColor = System.Drawing.Color.Red;
     this.lbErrorUserName.Location  = new System.Drawing.Point(193, 68);
     this.lbErrorUserName.Name      = "lbErrorUserName";
     this.lbErrorUserName.Size      = new System.Drawing.Size(184, 15);
     this.lbErrorUserName.TabIndex  = 14;
     //
     // lbErrorPass
     //
     //
     //
     //
     this.lbErrorPass.BackgroundStyle.Class      = "";
     this.lbErrorPass.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbErrorPass.ForeColor = System.Drawing.Color.Red;
     this.lbErrorPass.Location  = new System.Drawing.Point(193, 106);
     this.lbErrorPass.Name      = "lbErrorPass";
     this.lbErrorPass.Size      = new System.Drawing.Size(184, 19);
     this.lbErrorPass.TabIndex  = 13;
     //
     // btnCLose
     //
     this.btnCLose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCLose.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCLose.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCLose.Location       = new System.Drawing.Point(234, 165);
     this.btnCLose.Name           = "btnCLose";
     this.btnCLose.Size           = new System.Drawing.Size(88, 26);
     this.btnCLose.TabIndex       = 15;
     this.btnCLose.Text           = "Hủy bỏ";
     this.btnCLose.Click         += new System.EventHandler(this.btnCLose_Click);
     //
     // btnLogin
     //
     this.btnLogin.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnLogin.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnLogin.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLogin.Location       = new System.Drawing.Point(127, 165);
     this.btnLogin.Name           = "btnLogin";
     this.btnLogin.Size           = new System.Drawing.Size(92, 26);
     this.btnLogin.TabIndex       = 11;
     this.btnLogin.Text           = "Đăng nhập";
     this.btnLogin.Click         += new System.EventHandler(this.btnLogin_Click);
     //
     // lblPassword
     //
     //
     //
     //
     this.lblPassword.BackgroundStyle.Class      = "";
     this.lblPassword.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblPassword.Location = new System.Drawing.Point(132, 121);
     this.lblPassword.Name     = "lblPassword";
     this.lblPassword.Size     = new System.Drawing.Size(55, 25);
     this.lblPassword.TabIndex = 8;
     this.lblPassword.Text     = "Mật khẩu:";
     //
     // lblUserName
     //
     //
     //
     //
     this.lblUserName.BackgroundStyle.Class      = "";
     this.lblUserName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblUserName.Location = new System.Drawing.Point(111, 84);
     this.lblUserName.Name     = "lblUserName";
     this.lblUserName.Size     = new System.Drawing.Size(78, 22);
     this.lblUserName.TabIndex = 9;
     this.lblUserName.Text     = "Tên đăng nhập:";
     //
     // txtPass
     //
     //
     //
     //
     this.txtPass.Border.Class      = "TextBoxBorder";
     this.txtPass.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPass.Location          = new System.Drawing.Point(193, 124);
     this.txtPass.Name          = "txtPass";
     this.txtPass.PasswordChar  = '●';
     this.txtPass.Size          = new System.Drawing.Size(184, 20);
     this.txtPass.TabIndex      = 10;
     this.txtPass.WatermarkText = "Mật Khẩu";
     //
     // txtUserName
     //
     //
     //
     //
     this.txtUserName.Border.Class      = "TextBoxBorder";
     this.txtUserName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtUserName.Location          = new System.Drawing.Point(193, 84);
     this.txtUserName.Name          = "txtUserName";
     this.txtUserName.Size          = new System.Drawing.Size(184, 20);
     this.txtUserName.TabIndex      = 1;
     this.txtUserName.WatermarkText = "Tên đăng nhập";
     //
     // frmDangNhap
     //
     this.ClientSize = new System.Drawing.Size(416, 205);
     this.Controls.Add(reflectionImage1);
     this.Controls.Add(this.ribbonClientPanel3);
     this.Controls.Add(this.ribbonClientPanel2);
     this.Controls.Add(this.ribbonClientPanel1);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.lbErrorUserName);
     this.Controls.Add(this.lbErrorPass);
     this.Controls.Add(this.btnCLose);
     this.Controls.Add(this.btnLogin);
     this.Controls.Add(this.lblPassword);
     this.Controls.Add(this.lblUserName);
     this.Controls.Add(this.txtPass);
     this.Controls.Add(this.txtUserName);
     this.DoubleBuffered = true;
     this.Name           = "frmDangNhap";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "ĐĂNG NHẬP";
     this.ResumeLayout(false);
 }