Ejemplo n.º 1
0
        private void CountTextBox_KeyPress(object sender, KeyPressEventArgs e)
        {
            ComponentFactory.Krypton.Toolkit.KryptonTextBox TxtBox = (ComponentFactory.Krypton.Toolkit.KryptonTextBox)sender;

            if (!Char.IsDigit(e.KeyChar))
            {
                if (e.KeyChar != (char)Keys.Back)
                {
                    e.Handled = true;
                }
            }
        }
Ejemplo n.º 2
0
 private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
 {
     e.Control.KeyPress -= new KeyPressEventHandler(editingControl_KeyPress);
     e.Control.KeyUp    -= new KeyEventHandler(editingControl_KeyUp);
     if (dataGridView1.CurrentCell.ColumnIndex == 3) //Desired Column
     {
         ComponentFactory.Krypton.Toolkit.KryptonTextBox tb = e.Control as ComponentFactory.Krypton.Toolkit.KryptonTextBox;
         if (tb != null)
         {
             tb.KeyPress += new KeyPressEventHandler(editingControl_KeyPress);
             tb.KeyUp    += new KeyEventHandler(editingControl_KeyUp);
         }
     }
 }
 private void InitializeComponent()
 {
     this.ktxtTypeface   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.lbTypefaceList = new System.Windows.Forms.ListBox();
     this.SuspendLayout();
     //
     // ktxtTypeface
     //
     this.ktxtTypeface.Dock     = System.Windows.Forms.DockStyle.Top;
     this.ktxtTypeface.Hint     = "Search...";
     this.ktxtTypeface.Location = new System.Drawing.Point(0, 0);
     this.ktxtTypeface.Name     = "ktxtTypeface";
     this.ktxtTypeface.Size     = new System.Drawing.Size(339, 29);
     this.ktxtTypeface.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtTypeface.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtTypeface.TabIndex     = 0;
     this.ktxtTypeface.TextChanged += new System.EventHandler(this.ktxtTypeface_TextChanged);
     this.ktxtTypeface.MouseClick  += new System.Windows.Forms.MouseEventHandler(this.ktxtTypeface_MouseClick);
     //
     // lbTypefaceList
     //
     this.lbTypefaceList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lbTypefaceList.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTypefaceList.FormattingEnabled = true;
     this.lbTypefaceList.ItemHeight        = 21;
     this.lbTypefaceList.Location          = new System.Drawing.Point(0, 29);
     this.lbTypefaceList.Name                  = "lbTypefaceList";
     this.lbTypefaceList.Size                  = new System.Drawing.Size(339, 458);
     this.lbTypefaceList.TabIndex              = 1;
     this.lbTypefaceList.DrawItem             += new System.Windows.Forms.DrawItemEventHandler(this.lbTypefaceList_DrawItem);
     this.lbTypefaceList.SelectedIndexChanged += new System.EventHandler(this.lbTypefaceList_SelectedIndexChanged);
     this.lbTypefaceList.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.lbTypefaceList_KeyDown);
     //
     // KryptonTypefaceList
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.lbTypefaceList);
     this.Controls.Add(this.ktxtTypeface);
     this.Name  = "KryptonTypefaceList";
     this.Size  = new System.Drawing.Size(339, 487);
     this.Load += new System.EventHandler(this.KryptonTypefaceList_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.textName      = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.SuspendLayout();
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(180, 22);
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "Введите наименование урока";
     //
     // textName
     //
     this.textName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textName.Location = new System.Drawing.Point(198, 14);
     this.textName.Name     = "textName";
     this.textName.Size     = new System.Drawing.Size(270, 20);
     this.textName.TabIndex = 2;
     //
     // LessonDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(480, 95);
     this.Controls.Add(this.textName);
     this.Controls.Add(this.kryptonLabel1);
     this.Name = "LessonDialog";
     this.Text = "Урок";
     this.Controls.SetChildIndex(this.kryptonLabel1, 0);
     this.Controls.SetChildIndex(this.textName, 0);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 5
0
        //WATEVER MAY HAPEN PLIZ DO NAT TACH DIZ AREA OF CODE IF YOU DONT WANA DAY



        private void InitializeComponent()
        {
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            this.rdoAdmin            = new MaterialSkin.Controls.MaterialRadioButton();
            this.groupBox1           = new System.Windows.Forms.GroupBox();
            this.rdoStudent          = new MaterialSkin.Controls.MaterialRadioButton();
            this.rdoTeacher          = new MaterialSkin.Controls.MaterialRadioButton();
            this.txtID               = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.materialLabel1      = new MaterialSkin.Controls.MaterialLabel();
            this.txtFirstName        = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtMiddleName       = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtLastName         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtAddress          = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtEmail            = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.groupBox2           = new System.Windows.Forms.GroupBox();
            this.dtpBirthdate        = new System.Windows.Forms.DateTimePicker();
            this.bunifuCustomLabel3  = new Bunifu.Framework.UI.BunifuCustomLabel();
            this.materialLabel5      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel6      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel7      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel8      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel9      = new MaterialSkin.Controls.MaterialLabel();
            this.groupBox3           = new System.Windows.Forms.GroupBox();
            this.materialLabel3      = new MaterialSkin.Controls.MaterialLabel();
            this.txtUsername         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.materialLabel10     = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel11     = new MaterialSkin.Controls.MaterialLabel();
            this.txtConfirmPassword  = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtPassword         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.groupBox4           = new System.Windows.Forms.GroupBox();
            this.drpSecurityQuestion = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
            this.materialLabel12     = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel13     = new MaterialSkin.Controls.MaterialLabel();
            this.txtSecurityAnswer   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.bunifuCustomLabel1  = new Bunifu.Framework.UI.BunifuCustomLabel();
            this.bunifuCustomLabel2  = new Bunifu.Framework.UI.BunifuCustomLabel();
            this.dgvView             = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.btnEdit             = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.txtSearch           = new MaterialSkin.Controls.MaterialSingleLineTextField();
            this.btnInsert           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.btnDelete           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.btnClear            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.drpSecurityQuestion)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvView)).BeginInit();
            this.SuspendLayout();
            //
            // rdoAdmin
            //
            this.rdoAdmin.AutoSize                = true;
            this.rdoAdmin.Depth                   = 0;
            this.rdoAdmin.Font                    = new System.Drawing.Font("Roboto", 10F);
            this.rdoAdmin.Location                = new System.Drawing.Point(2, 13);
            this.rdoAdmin.Margin                  = new System.Windows.Forms.Padding(0);
            this.rdoAdmin.MouseLocation           = new System.Drawing.Point(-1, -1);
            this.rdoAdmin.MouseState              = MaterialSkin.MouseState.HOVER;
            this.rdoAdmin.Name                    = "rdoAdmin";
            this.rdoAdmin.Ripple                  = true;
            this.rdoAdmin.Size                    = new System.Drawing.Size(114, 30);
            this.rdoAdmin.TabIndex                = 2;
            this.rdoAdmin.Text                    = "Administrator";
            this.rdoAdmin.UseVisualStyleBackColor = true;
            this.rdoAdmin.CheckedChanged         += new System.EventHandler(this.rdoAdmin_CheckedChanged);
            //
            // groupBox1
            //
            this.groupBox1.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox1.Controls.Add(this.rdoStudent);
            this.groupBox1.Controls.Add(this.rdoTeacher);
            this.groupBox1.Controls.Add(this.rdoAdmin);
            this.groupBox1.Font     = new System.Drawing.Font("Roboto", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(16, 98);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(280, 51);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "User Type";
            //
            // rdoStudent
            //
            this.rdoStudent.AutoSize                = true;
            this.rdoStudent.Depth                   = 0;
            this.rdoStudent.Font                    = new System.Drawing.Font("Roboto", 10F);
            this.rdoStudent.Location                = new System.Drawing.Point(195, 13);
            this.rdoStudent.Margin                  = new System.Windows.Forms.Padding(0);
            this.rdoStudent.MouseLocation           = new System.Drawing.Point(-1, -1);
            this.rdoStudent.MouseState              = MaterialSkin.MouseState.HOVER;
            this.rdoStudent.Name                    = "rdoStudent";
            this.rdoStudent.Ripple                  = true;
            this.rdoStudent.Size                    = new System.Drawing.Size(77, 30);
            this.rdoStudent.TabIndex                = 4;
            this.rdoStudent.Text                    = "Student";
            this.rdoStudent.UseVisualStyleBackColor = true;
            this.rdoStudent.CheckedChanged         += new System.EventHandler(this.rdoStudent_CheckedChanged);
            //
            // rdoTeacher
            //
            this.rdoTeacher.AutoSize                = true;
            this.rdoTeacher.Depth                   = 0;
            this.rdoTeacher.Font                    = new System.Drawing.Font("Roboto", 10F);
            this.rdoTeacher.Location                = new System.Drawing.Point(116, 13);
            this.rdoTeacher.Margin                  = new System.Windows.Forms.Padding(0);
            this.rdoTeacher.MouseLocation           = new System.Drawing.Point(-1, -1);
            this.rdoTeacher.MouseState              = MaterialSkin.MouseState.HOVER;
            this.rdoTeacher.Name                    = "rdoTeacher";
            this.rdoTeacher.Ripple                  = true;
            this.rdoTeacher.Size                    = new System.Drawing.Size(79, 30);
            this.rdoTeacher.TabIndex                = 3;
            this.rdoTeacher.Text                    = "Teacher";
            this.rdoTeacher.UseVisualStyleBackColor = true;
            this.rdoTeacher.CheckedChanged         += new System.EventHandler(this.rdoTeacher_CheckedChanged);
            //
            // txtID
            //
            this.txtID.Enabled  = false;
            this.txtID.Location = new System.Drawing.Point(86, 163);
            this.txtID.Name     = "txtID";
            this.txtID.Size     = new System.Drawing.Size(210, 23);
            this.txtID.TabIndex = 4;
            //
            // materialLabel1
            //
            this.materialLabel1.AutoSize   = true;
            this.materialLabel1.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel1.Depth      = 0;
            this.materialLabel1.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel1.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel1.Location   = new System.Drawing.Point(14, 74);
            this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel1.Name       = "materialLabel1";
            this.materialLabel1.Size       = new System.Drawing.Size(111, 19);
            this.materialLabel1.TabIndex   = 0;
            this.materialLabel1.Text       = "Register a User";
            //
            // txtFirstName
            //
            this.txtFirstName.Location = new System.Drawing.Point(145, 24);
            this.txtFirstName.Name     = "txtFirstName";
            this.txtFirstName.Size     = new System.Drawing.Size(233, 23);
            this.txtFirstName.TabIndex = 2;
            //
            // txtMiddleName
            //
            this.txtMiddleName.Location = new System.Drawing.Point(145, 53);
            this.txtMiddleName.Name     = "txtMiddleName";
            this.txtMiddleName.Size     = new System.Drawing.Size(233, 23);
            this.txtMiddleName.TabIndex = 3;
            //
            // txtLastName
            //
            this.txtLastName.Location = new System.Drawing.Point(145, 82);
            this.txtLastName.Name     = "txtLastName";
            this.txtLastName.Size     = new System.Drawing.Size(233, 23);
            this.txtLastName.TabIndex = 4;
            //
            // txtAddress
            //
            this.txtAddress.Location = new System.Drawing.Point(145, 111);
            this.txtAddress.Name     = "txtAddress";
            this.txtAddress.Size     = new System.Drawing.Size(233, 23);
            this.txtAddress.TabIndex = 5;
            //
            // txtEmail
            //
            this.txtEmail.Location = new System.Drawing.Point(145, 167);
            this.txtEmail.Name     = "txtEmail";
            this.txtEmail.Size     = new System.Drawing.Size(233, 23);
            this.txtEmail.TabIndex = 7;
            //
            // groupBox2
            //
            this.groupBox2.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox2.Controls.Add(this.dtpBirthdate);
            this.groupBox2.Controls.Add(this.bunifuCustomLabel3);
            this.groupBox2.Controls.Add(this.txtEmail);
            this.groupBox2.Controls.Add(this.txtFirstName);
            this.groupBox2.Controls.Add(this.materialLabel5);
            this.groupBox2.Controls.Add(this.txtAddress);
            this.groupBox2.Controls.Add(this.materialLabel6);
            this.groupBox2.Controls.Add(this.txtLastName);
            this.groupBox2.Controls.Add(this.materialLabel7);
            this.groupBox2.Controls.Add(this.txtMiddleName);
            this.groupBox2.Controls.Add(this.materialLabel8);
            this.groupBox2.Controls.Add(this.materialLabel9);
            this.groupBox2.Location = new System.Drawing.Point(12, 192);
            this.groupBox2.Name     = "groupBox2";
            this.groupBox2.Size     = new System.Drawing.Size(384, 199);
            this.groupBox2.TabIndex = 18;
            this.groupBox2.TabStop  = false;
            this.groupBox2.Text     = "User Details";
            this.groupBox2.Enter   += new System.EventHandler(this.groupBox2_Enter);
            //
            // dtpBirthdate
            //
            this.dtpBirthdate.CalendarTitleBackColor    = System.Drawing.SystemColors.ControlLightLight;
            this.dtpBirthdate.CalendarTrailingForeColor = System.Drawing.SystemColors.WindowFrame;
            this.dtpBirthdate.Location = new System.Drawing.Point(145, 136);
            this.dtpBirthdate.Name     = "dtpBirthdate";
            this.dtpBirthdate.Size     = new System.Drawing.Size(233, 25);
            this.dtpBirthdate.TabIndex = 6;
            this.dtpBirthdate.Value    = new System.DateTime(2018, 7, 6, 7, 41, 9, 0);
            //
            // bunifuCustomLabel3
            //
            this.bunifuCustomLabel3.AutoSize  = true;
            this.bunifuCustomLabel3.BackColor = System.Drawing.SystemColors.Window;
            this.bunifuCustomLabel3.Font      = new System.Drawing.Font("Roboto", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bunifuCustomLabel3.Location  = new System.Drawing.Point(48, 24);
            this.bunifuCustomLabel3.Name      = "bunifuCustomLabel3";
            this.bunifuCustomLabel3.Size      = new System.Drawing.Size(91, 19);
            this.bunifuCustomLabel3.TabIndex  = 24;
            this.bunifuCustomLabel3.Text      = "First Name :";
            //
            // materialLabel5
            //
            this.materialLabel5.AutoSize   = true;
            this.materialLabel5.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel5.Depth      = 0;
            this.materialLabel5.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel5.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel5.Location   = new System.Drawing.Point(34, 53);
            this.materialLabel5.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel5.Name       = "materialLabel5";
            this.materialLabel5.Size       = new System.Drawing.Size(106, 19);
            this.materialLabel5.TabIndex   = 8;
            this.materialLabel5.Text       = "Middle Name :";
            //
            // materialLabel6
            //
            this.materialLabel6.AutoSize   = true;
            this.materialLabel6.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel6.Depth      = 0;
            this.materialLabel6.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel6.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel6.Location   = new System.Drawing.Point(51, 82);
            this.materialLabel6.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel6.Name       = "materialLabel6";
            this.materialLabel6.Size       = new System.Drawing.Size(90, 19);
            this.materialLabel6.TabIndex   = 9;
            this.materialLabel6.Text       = "Last Name :";
            //
            // materialLabel7
            //
            this.materialLabel7.AutoSize   = true;
            this.materialLabel7.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel7.Depth      = 0;
            this.materialLabel7.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel7.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel7.Location   = new System.Drawing.Point(67, 111);
            this.materialLabel7.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel7.Name       = "materialLabel7";
            this.materialLabel7.Size       = new System.Drawing.Size(72, 19);
            this.materialLabel7.TabIndex   = 10;
            this.materialLabel7.Text       = "Address :";
            //
            // materialLabel8
            //
            this.materialLabel8.AutoSize   = true;
            this.materialLabel8.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel8.Depth      = 0;
            this.materialLabel8.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel8.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel8.Location   = new System.Drawing.Point(64, 140);
            this.materialLabel8.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel8.Name       = "materialLabel8";
            this.materialLabel8.Size       = new System.Drawing.Size(77, 19);
            this.materialLabel8.TabIndex   = 11;
            this.materialLabel8.Text       = "Birthdate :";
            //
            // materialLabel9
            //
            this.materialLabel9.AutoSize   = true;
            this.materialLabel9.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel9.Depth      = 0;
            this.materialLabel9.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel9.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel9.Location   = new System.Drawing.Point(25, 167);
            this.materialLabel9.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel9.Name       = "materialLabel9";
            this.materialLabel9.Size       = new System.Drawing.Size(114, 19);
            this.materialLabel9.TabIndex   = 12;
            this.materialLabel9.Text       = "Email Address :";
            //
            // groupBox3
            //
            this.groupBox3.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox3.Controls.Add(this.materialLabel3);
            this.groupBox3.Controls.Add(this.txtUsername);
            this.groupBox3.Controls.Add(this.materialLabel10);
            this.groupBox3.Controls.Add(this.materialLabel11);
            this.groupBox3.Controls.Add(this.txtConfirmPassword);
            this.groupBox3.Controls.Add(this.txtPassword);
            this.groupBox3.Location = new System.Drawing.Point(16, 397);
            this.groupBox3.Name     = "groupBox3";
            this.groupBox3.Size     = new System.Drawing.Size(380, 117);
            this.groupBox3.TabIndex = 19;
            this.groupBox3.TabStop  = false;
            this.groupBox3.Text     = "Account Details";
            //
            // materialLabel3
            //
            this.materialLabel3.AutoSize   = true;
            this.materialLabel3.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel3.Depth      = 0;
            this.materialLabel3.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel3.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel3.Location   = new System.Drawing.Point(57, 21);
            this.materialLabel3.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel3.Name       = "materialLabel3";
            this.materialLabel3.Size       = new System.Drawing.Size(85, 19);
            this.materialLabel3.TabIndex   = 7;
            this.materialLabel3.Text       = "Username :"******"txtUsername";
            this.txtUsername.Size     = new System.Drawing.Size(226, 23);
            this.txtUsername.TabIndex = 8;
            //
            // materialLabel10
            //
            this.materialLabel10.AutoSize   = true;
            this.materialLabel10.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel10.Depth      = 0;
            this.materialLabel10.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel10.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel10.Location   = new System.Drawing.Point(59, 51);
            this.materialLabel10.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel10.Name       = "materialLabel10";
            this.materialLabel10.Size       = new System.Drawing.Size(83, 19);
            this.materialLabel10.TabIndex   = 8;
            this.materialLabel10.Text       = "Password :"******"Roboto", 11F);
            this.materialLabel11.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel11.Location   = new System.Drawing.Point(1, 80);
            this.materialLabel11.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel11.Name       = "materialLabel11";
            this.materialLabel11.Size       = new System.Drawing.Size(141, 19);
            this.materialLabel11.TabIndex   = 9;
            this.materialLabel11.Text       = "Confirm Password :"******"txtConfirmPassword";
            this.txtConfirmPassword.PasswordChar          = '●';
            this.txtConfirmPassword.Size                  = new System.Drawing.Size(226, 23);
            this.txtConfirmPassword.TabIndex              = 10;
            this.txtConfirmPassword.UseSystemPasswordChar = true;
            //
            // txtPassword
            //
            this.txtPassword.Location              = new System.Drawing.Point(148, 51);
            this.txtPassword.Name                  = "txtPassword";
            this.txtPassword.PasswordChar          = '●';
            this.txtPassword.Size                  = new System.Drawing.Size(226, 23);
            this.txtPassword.TabIndex              = 8;
            this.txtPassword.UseSystemPasswordChar = true;
            //
            // groupBox4
            //
            this.groupBox4.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox4.Controls.Add(this.drpSecurityQuestion);
            this.groupBox4.Controls.Add(this.materialLabel12);
            this.groupBox4.Controls.Add(this.materialLabel13);
            this.groupBox4.Controls.Add(this.txtSecurityAnswer);
            this.groupBox4.Location = new System.Drawing.Point(18, 520);
            this.groupBox4.Name     = "groupBox4";
            this.groupBox4.Size     = new System.Drawing.Size(378, 90);
            this.groupBox4.TabIndex = 20;
            this.groupBox4.TabStop  = false;
            this.groupBox4.Text     = "Account Recovery";
            //
            // drpSecurityQuestion
            //
            this.drpSecurityQuestion.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.drpSecurityQuestion.DropDownWidth     = 224;
            this.drpSecurityQuestion.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Ribbon;
            this.drpSecurityQuestion.Items.AddRange(new object[] {
                "In what city were you born?",
                "What high school did you attend?",
                "What is the first and last name of your first boyfriend or girlfriend?",
                "What is the name of your favorite pet?",
                "What is the name of your first grade teacher?",
                "What is the name of your first school?",
                "What is your father\'s middle name?",
                "What is your favorite color?",
                "what is your favorite forum",
                "What is your favorite movie?",
                "what is your favorite online platform",
                "what is your favorite social media website",
                "what is your favorite website",
                "What is your mother\'s maiden name?",
                "What street did you grow up on?",
                "What was the make of your first car?",
                "What was your favorite place to visit as a child?",
                "What was your high school mascot?",
                "When is your anniversary?",
                "Which is your favorite web browser?",
                "Which phone number do you remember most from your childhood?",
                "Who is your favorite actor, musician, or artist?"
            });
            this.drpSecurityQuestion.Location    = new System.Drawing.Point(148, 21);
            this.drpSecurityQuestion.Name        = "drpSecurityQuestion";
            this.drpSecurityQuestion.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2010Black;
            this.drpSecurityQuestion.Size        = new System.Drawing.Size(224, 21);
            this.drpSecurityQuestion.TabIndex    = 11;
            //
            // materialLabel12
            //
            this.materialLabel12.AutoSize   = true;
            this.materialLabel12.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel12.Depth      = 0;
            this.materialLabel12.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel12.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel12.Location   = new System.Drawing.Point(7, 21);
            this.materialLabel12.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel12.Name       = "materialLabel12";
            this.materialLabel12.Size       = new System.Drawing.Size(135, 19);
            this.materialLabel12.TabIndex   = 7;
            this.materialLabel12.Text       = "Security Question :";
            //
            // materialLabel13
            //
            this.materialLabel13.AutoSize   = true;
            this.materialLabel13.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel13.Depth      = 0;
            this.materialLabel13.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel13.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel13.Location   = new System.Drawing.Point(17, 51);
            this.materialLabel13.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel13.Name       = "materialLabel13";
            this.materialLabel13.Size       = new System.Drawing.Size(125, 19);
            this.materialLabel13.TabIndex   = 8;
            this.materialLabel13.Text       = "Security Answer :";
            //
            // txtSecurityAnswer
            //
            this.txtSecurityAnswer.Location = new System.Drawing.Point(148, 51);
            this.txtSecurityAnswer.Name     = "txtSecurityAnswer";
            this.txtSecurityAnswer.Size     = new System.Drawing.Size(224, 23);
            this.txtSecurityAnswer.TabIndex = 12;
            //
            // bunifuCustomLabel1
            //
            this.bunifuCustomLabel1.AutoSize  = true;
            this.bunifuCustomLabel1.BackColor = System.Drawing.SystemColors.Window;
            this.bunifuCustomLabel1.Font      = new System.Drawing.Font("Roboto Medium", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bunifuCustomLabel1.Location  = new System.Drawing.Point(17, 163);
            this.bunifuCustomLabel1.Name      = "bunifuCustomLabel1";
            this.bunifuCustomLabel1.Size      = new System.Drawing.Size(66, 20);
            this.bunifuCustomLabel1.TabIndex  = 23;
            this.bunifuCustomLabel1.Text      = "User ID :";
            //
            // bunifuCustomLabel2
            //
            this.bunifuCustomLabel2.AutoSize  = true;
            this.bunifuCustomLabel2.BackColor = System.Drawing.SystemColors.Window;
            this.bunifuCustomLabel2.Font      = new System.Drawing.Font("Roboto", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bunifuCustomLabel2.Location  = new System.Drawing.Point(931, 75);
            this.bunifuCustomLabel2.Name      = "bunifuCustomLabel2";
            this.bunifuCustomLabel2.Size      = new System.Drawing.Size(63, 19);
            this.bunifuCustomLabel2.TabIndex  = 24;
            this.bunifuCustomLabel2.Text      = "Search :";
            //
            // dgvView
            //
            this.dgvView.AllowUserToAddRows          = false;
            this.dgvView.AllowUserToDeleteRows       = false;
            this.dgvView.AllowUserToOrderColumns     = true;
            this.dgvView.AllowUserToResizeColumns    = false;
            this.dgvView.AllowUserToResizeRows       = false;
            this.dgvView.BackgroundColor             = System.Drawing.SystemColors.InactiveCaption;
            this.dgvView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle3.Alignment         = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle3.BackColor         = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle3.Font               = new System.Drawing.Font("Roboto Light", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle3.ForeColor          = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle3.WrapMode           = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvView.DefaultCellStyle             = dataGridViewCellStyle3;
            this.dgvView.EditMode  = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
            this.dgvView.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.dgvView.Location  = new System.Drawing.Point(402, 103);
            this.dgvView.Name      = "dgvView";
            this.dgvView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
            this.dgvView.SelectionMode           = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvView.Size     = new System.Drawing.Size(790, 536);
            this.dgvView.TabIndex = 25;
            this.dgvView.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvView_CellContentDoubleClick);
            //
            // btnEdit
            //
            this.btnEdit.Location    = new System.Drawing.Point(210, 614);
            this.btnEdit.Name        = "btnEdit";
            this.btnEdit.Size        = new System.Drawing.Size(90, 25);
            this.btnEdit.TabIndex    = 26;
            this.btnEdit.Values.Text = "Edit User";
            //
            // txtSearch
            //
            this.txtSearch.Depth                 = 0;
            this.txtSearch.Hint                  = "";
            this.txtSearch.Location              = new System.Drawing.Point(991, 75);
            this.txtSearch.MouseState            = MaterialSkin.MouseState.HOVER;
            this.txtSearch.Name                  = "txtSearch";
            this.txtSearch.PasswordChar          = '\0';
            this.txtSearch.SelectedText          = "";
            this.txtSearch.SelectionLength       = 0;
            this.txtSearch.SelectionStart        = 0;
            this.txtSearch.Size                  = new System.Drawing.Size(201, 23);
            this.txtSearch.TabIndex              = 28;
            this.txtSearch.UseSystemPasswordChar = false;
            this.txtSearch.Click                += new System.EventHandler(this.txtSearch_Click);
            this.txtSearch.TextChanged          += new System.EventHandler(this.txtSearch_TextChanged);
            //
            // btnInsert
            //
            this.btnInsert.Location    = new System.Drawing.Point(306, 614);
            this.btnInsert.Name        = "btnInsert";
            this.btnInsert.Size        = new System.Drawing.Size(90, 25);
            this.btnInsert.TabIndex    = 29;
            this.btnInsert.Values.Text = "Add User";
            this.btnInsert.Click      += new System.EventHandler(this.btnInsert_Click);
            //
            // btnDelete
            //
            this.btnDelete.Location    = new System.Drawing.Point(114, 614);
            this.btnDelete.Name        = "btnDelete";
            this.btnDelete.Size        = new System.Drawing.Size(90, 25);
            this.btnDelete.TabIndex    = 30;
            this.btnDelete.Values.Text = "Delete User";
            //
            // btnClear
            //
            this.btnClear.Location    = new System.Drawing.Point(18, 614);
            this.btnClear.Name        = "btnClear";
            this.btnClear.Size        = new System.Drawing.Size(90, 25);
            this.btnClear.TabIndex    = 31;
            this.btnClear.Values.Text = "Clear";
            this.btnClear.Click      += new System.EventHandler(this.btnClear_Click);
            //
            // UserRegistration
            //
            this.ClientSize = new System.Drawing.Size(1204, 670);
            this.Controls.Add(this.btnClear);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnInsert);
            this.Controls.Add(this.txtSearch);
            this.Controls.Add(this.btnEdit);
            this.Controls.Add(this.dgvView);
            this.Controls.Add(this.bunifuCustomLabel2);
            this.Controls.Add(this.bunifuCustomLabel1);
            this.Controls.Add(this.groupBox4);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.txtID);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.materialLabel1);
            this.Font          = new System.Drawing.Font("Roboto Light", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name          = "UserRegistration";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "User Registration";
            this.Load         += new System.EventHandler(this.UserRegistration_Load_2);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.drpSecurityQuestion)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvView)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KryptonFileSystemView));
     this.kryptonTreeView1 = new ComponentFactory.Krypton.Toolkit.KryptonTreeView();
     this.kryptonListBox1  = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.ilSystemIcons    = new System.Windows.Forms.ImageList(this.components);
     this.cmsShortcuts     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.removeShortcutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.kryptonTextBox1 = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonButton1  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.cmsShortcuts.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonTreeView1
     //
     this.kryptonTreeView1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonTreeView1.Location = new System.Drawing.Point(0, 82);
     this.kryptonTreeView1.Name     = "kryptonTreeView1";
     this.kryptonTreeView1.Size     = new System.Drawing.Size(481, 470);
     this.kryptonTreeView1.TabIndex = 0;
     //
     // kryptonListBox1
     //
     this.kryptonListBox1.Location = new System.Drawing.Point(67, 326);
     this.kryptonListBox1.Name     = "kryptonListBox1";
     this.kryptonListBox1.Size     = new System.Drawing.Size(120, 96);
     this.kryptonListBox1.TabIndex = 1;
     //
     // ilSystemIcons
     //
     this.ilSystemIcons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilSystemIcons.ImageStream")));
     this.ilSystemIcons.TransparentColor = System.Drawing.Color.Transparent;
     this.ilSystemIcons.Images.SetKeyName(0, "");
     this.ilSystemIcons.Images.SetKeyName(1, "");
     this.ilSystemIcons.Images.SetKeyName(2, "");
     this.ilSystemIcons.Images.SetKeyName(3, "");
     this.ilSystemIcons.Images.SetKeyName(4, "");
     this.ilSystemIcons.Images.SetKeyName(5, "");
     this.ilSystemIcons.Images.SetKeyName(6, "");
     this.ilSystemIcons.Images.SetKeyName(7, "");
     this.ilSystemIcons.Images.SetKeyName(8, "");
     this.ilSystemIcons.Images.SetKeyName(9, "");
     this.ilSystemIcons.Images.SetKeyName(10, "");
     this.ilSystemIcons.Images.SetKeyName(11, "");
     this.ilSystemIcons.Images.SetKeyName(12, "");
     this.ilSystemIcons.Images.SetKeyName(13, "");
     this.ilSystemIcons.Images.SetKeyName(14, "");
     this.ilSystemIcons.Images.SetKeyName(15, "");
     this.ilSystemIcons.Images.SetKeyName(16, "");
     this.ilSystemIcons.Images.SetKeyName(17, "");
     this.ilSystemIcons.Images.SetKeyName(18, "");
     this.ilSystemIcons.Images.SetKeyName(19, "");
     this.ilSystemIcons.Images.SetKeyName(20, "");
     this.ilSystemIcons.Images.SetKeyName(21, "");
     this.ilSystemIcons.Images.SetKeyName(22, "");
     this.ilSystemIcons.Images.SetKeyName(23, "");
     this.ilSystemIcons.Images.SetKeyName(24, "");
     this.ilSystemIcons.Images.SetKeyName(25, "");
     this.ilSystemIcons.Images.SetKeyName(26, "");
     this.ilSystemIcons.Images.SetKeyName(27, "");
     this.ilSystemIcons.Images.SetKeyName(28, "");
     //
     // cmsShortcuts
     //
     this.cmsShortcuts.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.cmsShortcuts.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.removeShortcutToolStripMenuItem
     });
     this.cmsShortcuts.Name = "cmsShortcuts";
     this.cmsShortcuts.Size = new System.Drawing.Size(166, 26);
     //
     // removeShortcutToolStripMenuItem
     //
     this.removeShortcutToolStripMenuItem.Name = "removeShortcutToolStripMenuItem";
     this.removeShortcutToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.removeShortcutToolStripMenuItem.Text = "&Remove Shortcut";
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(3, 49);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(416, 27);
     this.kryptonTextBox1.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonTextBox1.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonTextBox1.TabIndex = 2;
     this.kryptonTextBox1.Text     = "kryptonTextBox1";
     //
     // kryptonButton1
     //
     this.kryptonButton1.AutoSize = true;
     this.kryptonButton1.Location = new System.Drawing.Point(12, 3);
     this.kryptonButton1.Name     = "kryptonButton1";
     this.kryptonButton1.Size     = new System.Drawing.Size(32, 32);
     this.kryptonButton1.StateCommon.Content.LongText.Image  = global::ExtendedControls.Properties.Resources.Class_16x;
     this.kryptonButton1.StateCommon.Content.ShortText.Image = global::ExtendedControls.Properties.Resources.arrowControl_Image;
     this.kryptonButton1.TabIndex     = 3;
     this.kryptonButton1.Values.Image = global::ExtendedControls.Properties.Resources.Class_16x;
     this.kryptonButton1.Values.Text  = "";
     //
     // KryptonFileSystemView
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.kryptonButton1);
     this.Controls.Add(this.kryptonTextBox1);
     this.Controls.Add(this.kryptonListBox1);
     this.Controls.Add(this.kryptonTreeView1);
     this.Name = "KryptonFileSystemView";
     this.Size = new System.Drawing.Size(481, 552);
     this.cmsShortcuts.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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(KaraoqPlayBackTool));
     this.kryptonButton1 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonHeaderGroup18 = new ComponentFactory.Krypton.Toolkit.KryptonHeaderGroup();
     this.pnlMain = new System.Windows.Forms.Panel();
     this.pnlSaxDotty = new System.Windows.Forms.Panel();
     this.ktxtDatabasePath = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblPathValidate = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnBrowse = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ddlPlaybackTools = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnKaraoqPlayBackTool = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18.Panel)).BeginInit();
     this.kryptonHeaderGroup18.Panel.SuspendLayout();
     this.kryptonHeaderGroup18.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.pnlSaxDotty.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlPlaybackTools)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonButton1
     //
     this.kryptonButton1.Location = new System.Drawing.Point(0, 0);
     this.kryptonButton1.Name = "kryptonButton1";
     this.kryptonButton1.Size = new System.Drawing.Size(90, 25);
     this.kryptonButton1.TabIndex = 0;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonHeaderGroup18);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Margin = new System.Windows.Forms.Padding(0);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.kryptonPanel1.Size = new System.Drawing.Size(674, 313);
     this.kryptonPanel1.TabIndex = 7;
     //
     // kryptonHeaderGroup18
     //
     this.kryptonHeaderGroup18.AutoSize = true;
     this.kryptonHeaderGroup18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonHeaderGroup18.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.TabStandardProfile;
     this.kryptonHeaderGroup18.HeaderVisibleSecondary = false;
     this.kryptonHeaderGroup18.Location = new System.Drawing.Point(1, 1);
     this.kryptonHeaderGroup18.Margin = new System.Windows.Forms.Padding(0);
     this.kryptonHeaderGroup18.Name = "kryptonHeaderGroup18";
     //
     // kryptonHeaderGroup18.Panel
     //
     this.kryptonHeaderGroup18.Panel.Controls.Add(this.pnlMain);
     this.kryptonHeaderGroup18.Size = new System.Drawing.Size(672, 311);
     this.kryptonHeaderGroup18.StateCommon.HeaderPrimary.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonHeaderGroup18.StateCommon.HeaderPrimary.Content.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.kryptonHeaderGroup18.TabIndex = 2;
     this.kryptonHeaderGroup18.ValuesPrimary.Heading = "Select Playback Tool";
     this.kryptonHeaderGroup18.ValuesPrimary.Image = null;
     //
     // pnlMain
     //
     this.pnlMain.BackColor = System.Drawing.Color.Transparent;
     this.pnlMain.Controls.Add(this.pnlSaxDotty);
     this.pnlMain.Controls.Add(this.kbtnCancel);
     this.pnlMain.Controls.Add(this.ddlPlaybackTools);
     this.pnlMain.Controls.Add(this.kryptonLabel1);
     this.pnlMain.Controls.Add(this.kbtnKaraoqPlayBackTool);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location = new System.Drawing.Point(0, 0);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(670, 284);
     this.pnlMain.TabIndex = 0;
     //
     // pnlSaxDotty
     //
     this.pnlSaxDotty.Controls.Add(this.ktxtDatabasePath);
     this.pnlSaxDotty.Controls.Add(this.kryptonLabel2);
     this.pnlSaxDotty.Controls.Add(this.klblPathValidate);
     this.pnlSaxDotty.Controls.Add(this.kbtnBrowse);
     this.pnlSaxDotty.Location = new System.Drawing.Point(11, 48);
     this.pnlSaxDotty.Name = "pnlSaxDotty";
     this.pnlSaxDotty.Size = new System.Drawing.Size(649, 68);
     this.pnlSaxDotty.TabIndex = 157;
     //
     // ktxtDatabasePath
     //
     this.ktxtDatabasePath.BackColor = System.Drawing.Color.LemonChiffon;
     this.ktxtDatabasePath.Location = new System.Drawing.Point(123, 12);
     this.ktxtDatabasePath.MaxLength = 25;
     this.ktxtDatabasePath.Name = "ktxtDatabasePath";
     this.ktxtDatabasePath.ReadOnly = true;
     this.ktxtDatabasePath.Size = new System.Drawing.Size(469, 20);
     this.ktxtDatabasePath.TabIndex = 152;
     this.ktxtDatabasePath.Tag = "Please select Database File Path";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(2, 12);
     this.kryptonLabel2.Name = "kryptonLabel2";
     this.kryptonLabel2.Size = new System.Drawing.Size(95, 20);
     this.kryptonLabel2.TabIndex = 153;
     this.kryptonLabel2.Values.Text = "Database Path : ";
     //
     // klblPathValidate
     //
     this.klblPathValidate.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.klblPathValidate.Location = new System.Drawing.Point(606, 12);
     this.klblPathValidate.Name = "klblPathValidate";
     this.klblPathValidate.Size = new System.Drawing.Size(40, 20);
     this.klblPathValidate.TabIndex = 155;
     this.klblPathValidate.Values.Text = "Valid";
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnBrowse.Location = new System.Drawing.Point(123, 38);
     this.kbtnBrowse.Name = "kbtnBrowse";
     this.kbtnBrowse.Size = new System.Drawing.Size(143, 25);
     this.kbtnBrowse.TabIndex = 154;
     this.kbtnBrowse.Values.Text = "&Browse Database Path";
     this.kbtnBrowse.Click += new System.EventHandler(this.kbtnBrowse_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnCancel.Location = new System.Drawing.Point(300, 119);
     this.kbtnCancel.Name = "kbtnCancel";
     this.kbtnCancel.Size = new System.Drawing.Size(143, 25);
     this.kbtnCancel.TabIndex = 156;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Visible = false;
     this.kbtnCancel.Click += new System.EventHandler(this.kbtnCancel_Click);
     //
     // ddlPlaybackTools
     //
     this.ddlPlaybackTools.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append;
     this.ddlPlaybackTools.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ddlPlaybackTools.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlPlaybackTools.DropDownWidth = 148;
     this.ddlPlaybackTools.Location = new System.Drawing.Point(134, 24);
     this.ddlPlaybackTools.Name = "ddlPlaybackTools";
     this.ddlPlaybackTools.Size = new System.Drawing.Size(228, 21);
     this.ddlPlaybackTools.TabIndex = 151;
     this.ddlPlaybackTools.Tag = "Please select Playback Tool";
     this.ddlPlaybackTools.SelectedIndexChanged += new System.EventHandler(this.ddlPlaybackTools_SelectedIndexChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(11, 25);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.Size = new System.Drawing.Size(127, 20);
     this.kryptonLabel1.TabIndex = 150;
     this.kryptonLabel1.Values.Text = "Select Playback Tool : ";
     //
     // kbtnKaraoqPlayBackTool
     //
     this.kbtnKaraoqPlayBackTool.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnKaraoqPlayBackTool.Location = new System.Drawing.Point(134, 119);
     this.kbtnKaraoqPlayBackTool.Name = "kbtnKaraoqPlayBackTool";
     this.kbtnKaraoqPlayBackTool.Size = new System.Drawing.Size(143, 25);
     this.kbtnKaraoqPlayBackTool.TabIndex = 4;
     this.kbtnKaraoqPlayBackTool.Values.Text = "&Next";
     this.kbtnKaraoqPlayBackTool.Click += new System.EventHandler(this.kbtnKaraoqPlayBackTool_Click);
     //
     // KaraoqPlayBackTool
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(674, 313);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "KaraoqPlayBackTool";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "synQ | Automated karaoQ Syncing Service";
     this.Load += new System.EventHandler(this.KaraoqPlayBackTool_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18.Panel)).EndInit();
     this.kryptonHeaderGroup18.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18)).EndInit();
     this.kryptonHeaderGroup18.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlMain.PerformLayout();
     this.pnlSaxDotty.ResumeLayout(false);
     this.pnlSaxDotty.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlPlaybackTools)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 8
0
        private void printDocument_PrintPage(object sender, PrintPageEventArgs e)
        {
            Graphics g = e.Graphics;
            Margins margins = printDocument.DefaultPageSettings.Margins;
            PaperSize size = printDocument.DefaultPageSettings.PaperSize;

            this.brush = new SolidBrush(Color.Black);
            this.labelFormat = new StringFormat();
            this.textFormat = new StringFormat();
            this.labelFormat.Trimming = StringTrimming.Word;
            this.labelFormat.FormatFlags = StringFormatFlags.NoWrap | StringFormatFlags.LineLimit | StringFormatFlags.NoClip;
            this.textFormat.Trimming = StringTrimming.Word;
            this.textFormat.FormatFlags = StringFormatFlags.LineLimit | StringFormatFlags.NoClip;

            float pageWidth = (float)size.Width - (float)margins.Right - (float)margins.Left;
            float pageHeight = (float)size.Height - (float)margins.Top - (float)margins.Bottom;

            // X/Y cooficients
            this.x = pageWidth / Width;
            this.y = pageHeight / Height;

            // whNumber
            String text = tbWhNumber.Text + "/" + tbBookingNumber.Text;
            Font font = new Font(tbWhNumber.StateCommon.Content.Font.FontFamily, tbWhNumber.StateCommon.Content.Font.Size * x, tbWhNumber.StateCommon.Content.Font.Style);
            RectangleF label = new RectangleF(tbWhNumber.Location.X * x + margins.Left - 6, tbWhNumber.Location.Y * y + margins.Top, g.MeasureString(text, font).Width * x, g.MeasureString(text, font).Height * y);
            g.DrawString(text, font, brush, label, labelFormat);

            // measurer
            text = tbPkgs.Text + "cll/" + tbKg.Text + "kg/" + tbM3.Text + "m3"; ;
            font = new Font(tbPkgs.StateCommon.Content.Font.FontFamily, tbPkgs.StateCommon.Content.Font.Size * x, tbPkgs.StateCommon.Content.Font.Style);
            label = new RectangleF(tbPkgs.Location.X * x + margins.Left - 5, tbPkgs.Location.Y * y + margins.Top - 20, g.MeasureString(text, font).Width * x, g.MeasureString(text, font).Height * y);
            g.DrawString(text, font, brush, label, labelFormat);

            // CCS
            drawString(g, lbCcs, tbCcs);

            // Status
            ComponentFactory.Krypton.Toolkit.KryptonTextBox textbox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            textbox.Text = cbStatus.Text;
            textbox.StateCommon.Content.Font = cbStatus.StateCommon.ComboBox.Content.Font;
            textbox.Location = cbStatus.Location;
            drawString(g, lbStatus, textbox);

            // Consignor
            drawString(g, lbConsignor, tbConsignor);

            // Consignee
            drawString(g, lbConsignee, tbConsignee);

            // Comments
            font = new Font(lbComments.Font.FontFamily, lbComments.Font.Size * x, lbComments.Font.Style);
            int pointY = (int)((lbComments.Location.Y + g.MeasureString(lbComments.Text, font).Height) * y);
            g.DrawLine(new Pen(brush), new Point((int)(lbComments.Location.X * x) + margins.Left, pointY), new Point((int)pageWidth, pointY));
            drawString(g, lbComments, tbComments);

            // Arrival
            textbox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            textbox.Text = dtpArrival.Text;
            textbox.StateCommon.Content.Font = dtpArrival.StateCommon.Content.Font;
            textbox.StateCommon.Content.Padding = dtpArrival.StateCommon.Content.Padding;
            textbox.Location = dtpArrival.Location;
            drawString(g, lbArrival, textbox);

            // Manager
            drawString(g, lbManager, tbManager);

            // Situation
            drawString(g, lbSituation, tbSituation);

            // Documents
            drawString(g, lbDocuments, tbDocuments);

            // Description
            drawString(g, lbDescription, tbDescription);

            // Damage
            drawString(g, lbDamage, tbDamage);

            // Codes
            drawString(g, lbCodes, tbCodes);

            // Country consignor
            //drawString(g, lbCountryConsignor, lbCountryConsignorValue, x, y, brush, labelFormat, textFormat);

            // Country consignee
            //drawString(g, lbCountryConsignee, lbCountryConsigneeValue, x, y, brush, labelFormat, textFormat);

            // whPlace
            drawString(g, lbWhPlace, tbWhPlace);

            // Container
            drawString(g, lbContainer, tbContainer);
        }
Ejemplo n.º 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.txtCleanStep = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.btnAdd = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.txtPortCode = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.q = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCleanStep)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.txtCleanStep);
     this.kryptonPanel1.Controls.Add(this.btnAdd);
     this.kryptonPanel1.Controls.Add(this.txtPortCode);
     this.kryptonPanel1.Controls.Add(this.q);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.Size = new System.Drawing.Size(327, 151);
     this.kryptonPanel1.TabIndex = 0;
     //
     // txtCleanStep
     //
     this.txtCleanStep.DropDownWidth = 121;
     this.txtCleanStep.Location = new System.Drawing.Point(116, 67);
     this.txtCleanStep.Name = "txtCleanStep";
     this.txtCleanStep.Size = new System.Drawing.Size(121, 21);
     this.txtCleanStep.TabIndex = 3;
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(225, 111);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(90, 27);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Values.Text = "添加";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // txtPortCode
     //
     this.txtPortCode.Location = new System.Drawing.Point(116, 28);
     this.txtPortCode.Name = "txtPortCode";
     this.txtPortCode.Size = new System.Drawing.Size(121, 20);
     this.txtPortCode.TabIndex = 1;
     //
     // q
     //
     this.q.Location = new System.Drawing.Point(25, 67);
     this.q.Name = "q";
     this.q.Size = new System.Drawing.Size(73, 20);
     this.q.TabIndex = 0;
     this.q.Values.Text = "清洗槽名:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(25, 27);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.Size = new System.Drawing.Size(73, 20);
     this.kryptonLabel1.TabIndex = 0;
     this.kryptonLabel1.Values.Text = "端口编号:";
     //
     // AddNewItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(327, 151);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "AddNewItem";
     this.Text = "AddNewItem";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCleanStep)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConnexionForm));
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kBtnTrashRefFileOB = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kBtnCreerFichierCompteOB = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kBtnOuvrirFichierCompteOB = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kLbFile = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.kLblHeader = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.btnAddCompte = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.Fermer = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.OK = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.txtMdp = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.txtLogin = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel3 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.kryptonManager1 = new ComponentFactory.Krypton.Toolkit.KryptonManager(this.components);
     this.OFDOrionBanque = new System.Windows.Forms.OpenFileDialog();
     this.FBDOrionBanque = new System.Windows.Forms.FolderBrowserDialog();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kBtnTrashRefFileOB);
     this.kryptonPanel1.Controls.Add(this.kBtnCreerFichierCompteOB);
     this.kryptonPanel1.Controls.Add(this.kBtnOuvrirFichierCompteOB);
     this.kryptonPanel1.Controls.Add(this.kLbFile);
     this.kryptonPanel1.Controls.Add(this.kLblHeader);
     this.kryptonPanel1.Controls.Add(this.btnAddCompte);
     this.kryptonPanel1.Controls.Add(this.Fermer);
     this.kryptonPanel1.Controls.Add(this.OK);
     this.kryptonPanel1.Controls.Add(this.txtMdp);
     this.kryptonPanel1.Controls.Add(this.txtLogin);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.Size = new System.Drawing.Size(405, 320);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kBtnTrashRefFileOB
     //
     this.kBtnTrashRefFileOB.Enabled = false;
     this.kBtnTrashRefFileOB.Location = new System.Drawing.Point(190, 196);
     this.kBtnTrashRefFileOB.Name = "kBtnTrashRefFileOB";
     this.kBtnTrashRefFileOB.Size = new System.Drawing.Size(23, 23);
     this.kBtnTrashRefFileOB.TabIndex = 34;
     this.toolTip1.SetToolTip(this.kBtnTrashRefFileOB, "Supprime la référence à ce fichier OrionBanque");
     this.kBtnTrashRefFileOB.Values.Image = global::OrionBanque.Properties.Resources.bin_closed;
     this.kBtnTrashRefFileOB.Values.Text = "";
     this.kBtnTrashRefFileOB.Click += new System.EventHandler(this.KBtnTrashRefFileOB_Click);
     //
     // kBtnCreerFichierCompteOB
     //
     this.kBtnCreerFichierCompteOB.Location = new System.Drawing.Point(12, 196);
     this.kBtnCreerFichierCompteOB.Name = "kBtnCreerFichierCompteOB";
     this.kBtnCreerFichierCompteOB.Size = new System.Drawing.Size(23, 23);
     this.kBtnCreerFichierCompteOB.TabIndex = 33;
     this.toolTip1.SetToolTip(this.kBtnCreerFichierCompteOB, "Créer un nouveau fichier de Compte OrionBanque");
     this.kBtnCreerFichierCompteOB.Values.Image = global::OrionBanque.Properties.Resources.page_add;
     this.kBtnCreerFichierCompteOB.Values.Text = "";
     this.kBtnCreerFichierCompteOB.Click += new System.EventHandler(this.KBtnCreerFichierCompteOB_Click);
     //
     // kBtnOuvrirFichierCompteOB
     //
     this.kBtnOuvrirFichierCompteOB.Location = new System.Drawing.Point(370, 196);
     this.kBtnOuvrirFichierCompteOB.Name = "kBtnOuvrirFichierCompteOB";
     this.kBtnOuvrirFichierCompteOB.Size = new System.Drawing.Size(23, 23);
     this.kBtnOuvrirFichierCompteOB.TabIndex = 32;
     this.toolTip1.SetToolTip(this.kBtnOuvrirFichierCompteOB, "Ouvrir un fichier de compte OrionBanque");
     this.kBtnOuvrirFichierCompteOB.Values.Image = global::OrionBanque.Properties.Resources.folder_page;
     this.kBtnOuvrirFichierCompteOB.Values.Text = "";
     this.kBtnOuvrirFichierCompteOB.Click += new System.EventHandler(this.KBtnOuvrirFichierCompteOB_Click);
     //
     // kLbFile
     //
     this.kLbFile.Location = new System.Drawing.Point(12, 47);
     this.kLbFile.Name = "kLbFile";
     this.kLbFile.Size = new System.Drawing.Size(381, 143);
     this.kLbFile.TabIndex = 31;
     this.kLbFile.SelectedIndexChanged += new System.EventHandler(this.KLbFile_SelectedIndexChanged);
     //
     // kLblHeader
     //
     this.kLblHeader.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitlePanel;
     this.kLblHeader.Location = new System.Drawing.Point(137, 12);
     this.kLblHeader.Name = "kLblHeader";
     this.kLblHeader.Size = new System.Drawing.Size(106, 29);
     this.kLblHeader.TabIndex = 29;
     this.kLblHeader.Values.Text = "Connexion";
     //
     // btnAddCompte
     //
     this.btnAddCompte.Enabled = false;
     this.btnAddCompte.Location = new System.Drawing.Point(190, 283);
     this.btnAddCompte.Name = "btnAddCompte";
     this.btnAddCompte.Size = new System.Drawing.Size(23, 23);
     this.btnAddCompte.TabIndex = 28;
     this.toolTip1.SetToolTip(this.btnAddCompte, "Ajouter un utilisateur");
     this.btnAddCompte.Values.Image = global::OrionBanque.Properties.Resources.user_add;
     this.btnAddCompte.Values.Text = "";
     this.btnAddCompte.Click += new System.EventHandler(this.BtnAddCompte_Click);
     //
     // Fermer
     //
     this.Fermer.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Fermer.Location = new System.Drawing.Point(12, 283);
     this.Fermer.Name = "Fermer";
     this.Fermer.Size = new System.Drawing.Size(23, 23);
     this.Fermer.TabIndex = 24;
     this.toolTip1.SetToolTip(this.Fermer, "Fermer OrionBanque sans se connecter");
     this.Fermer.Values.Image = global::OrionBanque.Properties.Resources.cross1;
     this.Fermer.Values.Text = "";
     //
     // OK
     //
     this.OK.Enabled = false;
     this.OK.Location = new System.Drawing.Point(370, 283);
     this.OK.Name = "OK";
     this.OK.Size = new System.Drawing.Size(23, 23);
     this.OK.TabIndex = 25;
     this.toolTip1.SetToolTip(this.OK, "Se connecter avec les identifiants précisés");
     this.OK.Values.Image = global::OrionBanque.Properties.Resources.accept1;
     this.OK.Values.Text = "";
     this.OK.Click += new System.EventHandler(this.OK_Click);
     //
     // txtMdp
     //
     this.txtMdp.Enabled = false;
     this.txtMdp.Location = new System.Drawing.Point(108, 254);
     this.txtMdp.Name = "txtMdp";
     this.txtMdp.PasswordChar = '●';
     this.txtMdp.Size = new System.Drawing.Size(285, 23);
     this.txtMdp.TabIndex = 23;
     this.txtMdp.UseSystemPasswordChar = true;
     //
     // txtLogin
     //
     this.txtLogin.Enabled = false;
     this.txtLogin.Location = new System.Drawing.Point(108, 225);
     this.txtLogin.Name = "txtLogin";
     this.txtLogin.Size = new System.Drawing.Size(285, 23);
     this.txtLogin.TabIndex = 22;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 257);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.Size = new System.Drawing.Size(90, 20);
     this.kryptonLabel1.TabIndex = 21;
     this.kryptonLabel1.Values.Text = "Mot de passe :";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(30, 228);
     this.kryptonLabel3.Name = "kryptonLabel3";
     this.kryptonLabel3.Size = new System.Drawing.Size(72, 20);
     this.kryptonLabel3.TabIndex = 20;
     this.kryptonLabel3.Values.Text = "Utilisateur :";
     //
     // kryptonManager1
     //
     this.kryptonManager1.GlobalPaletteMode = ComponentFactory.Krypton.Toolkit.PaletteModeManager.Office2010Silver;
     //
     // OFDOrionBanque
     //
     this.OFDOrionBanque.Filter = "Fichier OrionBanque|*.obq";
     //
     // FBDOrionBanque
     //
     this.FBDOrionBanque.RootFolder = System.Environment.SpecialFolder.MyComputer;
     //
     // ConnexionForm
     //
     this.AcceptButton = this.OK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.Fermer;
     this.ClientSize = new System.Drawing.Size(405, 320);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ConnexionForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Connexion";
     this.TextExtra = "OrionBanque";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 11
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.year = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.paperName = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.startTime = new ComponentFactory.Krypton.Toolkit.KryptonDateTimePicker();
     this.endTime = new ComponentFactory.Krypton.Toolkit.KryptonDateTimePicker();
     this.btnFind = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.PaperListDGV = new ComponentFactory.Krypton.Toolkit.KryptonDataGridView();
     this.cbtnFindByYear = new ComponentFactory.Krypton.Toolkit.KryptonCheckButton();
     this.cbtnFindByTime = new ComponentFactory.Krypton.Toolkit.KryptonCheckButton();
     this.cbtnFindByName = new ComponentFactory.Krypton.Toolkit.KryptonCheckButton();
     this.btnSelect = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.csFind = new ComponentFactory.Krypton.Toolkit.KryptonCheckSet(this.components);
     this.tableLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PaperListDGV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.csFind)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 8;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.groupBox1, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.cbtnFindByYear, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.cbtnFindByTime, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.cbtnFindByName, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.btnSelect, 6, 1);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(742, 666);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // flowLayoutPanel1
     //
     this.tableLayoutPanel1.SetColumnSpan(this.flowLayoutPanel1, 6);
     this.flowLayoutPanel1.Controls.Add(this.year);
     this.flowLayoutPanel1.Controls.Add(this.paperName);
     this.flowLayoutPanel1.Controls.Add(this.startTime);
     this.flowLayoutPanel1.Controls.Add(this.endTime);
     this.flowLayoutPanel1.Controls.Add(this.btnFind);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(10, 40);
     this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(722, 35);
     this.flowLayoutPanel1.TabIndex = 10;
     //
     // year
     //
     this.year.Dock = System.Windows.Forms.DockStyle.Left;
     this.year.Location = new System.Drawing.Point(3, 3);
     this.year.Maximum = new decimal(new int[] {
     6000,
     0,
     0,
     0});
     this.year.Minimum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.year.Name = "year";
     this.year.Size = new System.Drawing.Size(80, 28);
     this.year.StateCommon.Content.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.year.TabIndex = 4;
     this.year.Value = new decimal(new int[] {
     2011,
     0,
     0,
     0});
     //
     // paperName
     //
     this.paperName.Dock = System.Windows.Forms.DockStyle.Left;
     this.paperName.Location = new System.Drawing.Point(86, 0);
     this.paperName.Margin = new System.Windows.Forms.Padding(0);
     this.paperName.Name = "paperName";
     this.paperName.Size = new System.Drawing.Size(250, 26);
     this.paperName.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.paperName.StateCommon.Border.Rounding = 12;
     this.paperName.StateCommon.Content.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.paperName.TabIndex = 5;
     //
     // startTime
     //
     this.startTime.CalendarTodayDate = new System.DateTime(2011, 3, 19, 0, 0, 0, 0);
     this.startTime.CustomFormat = "yyyy/MM/dd";
     this.startTime.Dock = System.Windows.Forms.DockStyle.Left;
     this.startTime.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.startTime.Location = new System.Drawing.Point(339, 3);
     this.startTime.Name = "startTime";
     this.startTime.ShowUpDown = true;
     this.startTime.Size = new System.Drawing.Size(134, 28);
     this.startTime.StateCommon.Content.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.startTime.TabIndex = 6;
     this.startTime.UseWaitCursor = true;
     this.startTime.ValueNullable = new System.DateTime(2011, 3, 27, 0, 0, 0, 0);
     //
     // endTime
     //
     this.endTime.CalendarTodayDate = new System.DateTime(2011, 3, 19, 0, 0, 0, 0);
     this.endTime.CustomFormat = "yyyy/MM/dd";
     this.endTime.Dock = System.Windows.Forms.DockStyle.Left;
     this.endTime.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.endTime.Location = new System.Drawing.Point(479, 3);
     this.endTime.Name = "endTime";
     this.endTime.ShowUpDown = true;
     this.endTime.Size = new System.Drawing.Size(134, 28);
     this.endTime.StateCommon.Content.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.endTime.TabIndex = 7;
     this.endTime.ValueNullable = new System.DateTime(2011, 3, 27, 0, 0, 0, 0);
     //
     // btnFind
     //
     this.btnFind.Location = new System.Drawing.Point(618, 2);
     this.btnFind.Margin = new System.Windows.Forms.Padding(2);
     this.btnFind.Name = "btnFind";
     this.btnFind.Size = new System.Drawing.Size(99, 30);
     this.btnFind.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.btnFind.StateCommon.Border.Rounding = 14;
     this.btnFind.StateCommon.Border.Width = 1;
     this.btnFind.TabIndex = 8;
     this.btnFind.Values.Text = "查询";
     //
     // groupBox1
     //
     this.tableLayoutPanel1.SetColumnSpan(this.groupBox1, 6);
     this.groupBox1.Controls.Add(this.PaperListDGV);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.groupBox1.Location = new System.Drawing.Point(13, 78);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(716, 575);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "试卷列表";
     //
     // PaperListDGV
     //
     this.PaperListDGV.AllowUserToAddRows = false;
     this.PaperListDGV.AllowUserToResizeRows = false;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(236)))), ((int)(((byte)(242)))));
     this.PaperListDGV.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle3;
     this.PaperListDGV.Dock = System.Windows.Forms.DockStyle.Fill;
     this.PaperListDGV.GridStyles.Style = ComponentFactory.Krypton.Toolkit.DataGridViewStyle.Mixed;
     this.PaperListDGV.GridStyles.StyleBackground = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ButtonNavigatorMini;
     this.PaperListDGV.GridStyles.StyleColumn = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.PaperListDGV.GridStyles.StyleRow = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.PaperListDGV.Location = new System.Drawing.Point(3, 22);
     this.PaperListDGV.Name = "PaperListDGV";
     this.PaperListDGV.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2010Silver;
     this.PaperListDGV.ReadOnly = true;
     this.PaperListDGV.RowHeadersVisible = false;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.PaperListDGV.RowsDefaultCellStyle = dataGridViewCellStyle4;
     this.PaperListDGV.RowTemplate.Height = 23;
     this.PaperListDGV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.PaperListDGV.Size = new System.Drawing.Size(710, 550);
     this.PaperListDGV.TabIndex = 0;
     this.PaperListDGV.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.PaperListDGV_CellClick);
     //
     // cbtnFindByYear
     //
     this.cbtnFindByYear.Checked = true;
     this.cbtnFindByYear.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cbtnFindByYear.Location = new System.Drawing.Point(13, 13);
     this.cbtnFindByYear.Name = "cbtnFindByYear";
     this.cbtnFindByYear.Size = new System.Drawing.Size(69, 24);
     this.cbtnFindByYear.TabIndex = 6;
     this.cbtnFindByYear.Values.Text = "按年";
     this.cbtnFindByYear.Click += new System.EventHandler(this.cbtnFindByYear_Click);
     //
     // cbtnFindByTime
     //
     this.cbtnFindByTime.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cbtnFindByTime.Location = new System.Drawing.Point(88, 13);
     this.cbtnFindByTime.Name = "cbtnFindByTime";
     this.cbtnFindByTime.Size = new System.Drawing.Size(69, 24);
     this.cbtnFindByTime.TabIndex = 7;
     this.cbtnFindByTime.Values.Text = "按时间段";
     this.cbtnFindByTime.Click += new System.EventHandler(this.cbtnFindByTime_Click);
     //
     // cbtnFindByName
     //
     this.cbtnFindByName.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cbtnFindByName.Location = new System.Drawing.Point(163, 13);
     this.cbtnFindByName.Name = "cbtnFindByName";
     this.cbtnFindByName.Size = new System.Drawing.Size(69, 24);
     this.cbtnFindByName.TabIndex = 8;
     this.cbtnFindByName.Values.Text = "按试卷名";
     this.cbtnFindByName.Click += new System.EventHandler(this.cbtnFindByName_Click);
     //
     // btnSelect
     //
     this.btnSelect.Dock = System.Windows.Forms.DockStyle.Fill;
     this.btnSelect.Location = new System.Drawing.Point(633, 11);
     this.btnSelect.Margin = new System.Windows.Forms.Padding(1);
     this.btnSelect.Name = "btnSelect";
     this.btnSelect.Size = new System.Drawing.Size(98, 28);
     this.btnSelect.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.btnSelect.StateCommon.Border.Rounding = 12;
     this.btnSelect.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSelect.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.btnSelect.StateNormal.Border.Rounding = 12;
     this.btnSelect.TabIndex = 11;
     this.btnSelect.Values.Text = "选择试卷";
     //
     // csFind
     //
     this.csFind.CheckButtons.Add(this.cbtnFindByTime);
     this.csFind.CheckButtons.Add(this.cbtnFindByName);
     this.csFind.CheckButtons.Add(this.cbtnFindByYear);
     this.csFind.CheckedButton = this.cbtnFindByYear;
     //
     // PaperListPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "PaperListPanel";
     this.Size = new System.Drawing.Size(742, 666);
     this.Load += new System.EventHandler(this.PaperListPanel_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.PaperListDGV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.csFind)).EndInit();
     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();
     this.kryptonManager = new ComponentFactory.Krypton.Toolkit.KryptonManager(this.components);
     this.kryptonPanel = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.label4 = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.loginBtn = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.passwordTextBox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.usuarioTextBox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.errValidator = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).BeginInit();
     this.kryptonPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel
     //
     this.kryptonPanel.Controls.Add(this.label4);
     this.kryptonPanel.Controls.Add(this.pictureBox1);
     this.kryptonPanel.Controls.Add(this.loginBtn);
     this.kryptonPanel.Controls.Add(this.passwordTextBox);
     this.kryptonPanel.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel.Controls.Add(this.usuarioTextBox);
     this.kryptonPanel.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel.Name = "kryptonPanel";
     this.kryptonPanel.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonPanel.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelClient;
     this.kryptonPanel.Size = new System.Drawing.Size(354, 153);
     this.kryptonPanel.TabIndex = 0;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Franklin Gothic Medium", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label4.Location = new System.Drawing.Point(59, 18);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(267, 20);
     this.label4.TabIndex = 6;
     this.label4.Text = "SOFTWARE PARA BANCO FALABELLA ®";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image = global::ExactTarget.Windows.Properties.Resources.Profile_48;
     this.pictureBox1.Location = new System.Drawing.Point(27, 61);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(52, 55);
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop = false;
     //
     // loginBtn
     //
     this.loginBtn.ButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.Standalone;
     this.loginBtn.Location = new System.Drawing.Point(252, 116);
     this.loginBtn.Name = "loginBtn";
     this.loginBtn.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.loginBtn.Size = new System.Drawing.Size(90, 25);
     this.loginBtn.TabIndex = 4;
     this.loginBtn.Text = "Login";
     this.loginBtn.Values.ExtraText = "";
     this.loginBtn.Values.Image = null;
     this.loginBtn.Values.ImageStates.ImageCheckedNormal = null;
     this.loginBtn.Values.ImageStates.ImageCheckedPressed = null;
     this.loginBtn.Values.ImageStates.ImageCheckedTracking = null;
     this.loginBtn.Values.Text = "Login";
     this.loginBtn.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // passwordTextBox
     //
     this.passwordTextBox.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.passwordTextBox.Location = new System.Drawing.Point(185, 87);
     this.passwordTextBox.Name = "passwordTextBox";
     this.passwordTextBox.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.passwordTextBox.PasswordChar = '●';
     this.passwordTextBox.Size = new System.Drawing.Size(157, 20);
     this.passwordTextBox.TabIndex = 3;
     this.passwordTextBox.Text = "1234";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel2.Location = new System.Drawing.Point(94, 87);
     this.kryptonLabel2.Name = "kryptonLabel2";
     this.kryptonLabel2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel2.Size = new System.Drawing.Size(65, 20);
     this.kryptonLabel2.TabIndex = 2;
     this.kryptonLabel2.Text = "Password:"******"";
     this.kryptonLabel2.Values.Image = null;
     this.kryptonLabel2.Values.Text = "Password:"******"usuarioTextBox";
     this.usuarioTextBox.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.usuarioTextBox.Size = new System.Drawing.Size(157, 20);
     this.usuarioTextBox.TabIndex = 1;
     this.usuarioTextBox.Text = "mijailstell";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel1.Location = new System.Drawing.Point(94, 61);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel1.Size = new System.Drawing.Size(55, 20);
     this.kryptonLabel1.TabIndex = 0;
     this.kryptonLabel1.Text = "Usuario:";
     this.kryptonLabel1.Values.ExtraText = "";
     this.kryptonLabel1.Values.Image = null;
     this.kryptonLabel1.Values.Text = "Usuario:";
     //
     // errValidator
     //
     this.errValidator.ContainerControl = this;
     //
     // FrmLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(354, 153);
     this.Controls.Add(this.kryptonPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "FrmLogin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "INGRESAR AL SISTEMA";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).EndInit();
     this.kryptonPanel.ResumeLayout(false);
     this.kryptonPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).EndInit();
     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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Login));
     this.kryptonButton1 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonHeaderGroup18 = new ComponentFactory.Krypton.Toolkit.KryptonHeaderGroup();
     this.pnlMain = new System.Windows.Forms.Panel();
     this.kbtnLogin = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktxtPassword = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.ktxtUserName = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klblPassword = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblUserName = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18.Panel)).BeginInit();
     this.kryptonHeaderGroup18.Panel.SuspendLayout();
     this.kryptonHeaderGroup18.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonButton1
     //
     this.kryptonButton1.Location = new System.Drawing.Point(0, 0);
     this.kryptonButton1.Name = "kryptonButton1";
     this.kryptonButton1.Size = new System.Drawing.Size(90, 25);
     this.kryptonButton1.TabIndex = 0;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonHeaderGroup18);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Margin = new System.Windows.Forms.Padding(0);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.kryptonPanel1.Size = new System.Drawing.Size(447, 203);
     this.kryptonPanel1.TabIndex = 7;
     //
     // kryptonHeaderGroup18
     //
     this.kryptonHeaderGroup18.AutoSize = true;
     this.kryptonHeaderGroup18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonHeaderGroup18.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.TabStandardProfile;
     this.kryptonHeaderGroup18.HeaderVisibleSecondary = false;
     this.kryptonHeaderGroup18.Location = new System.Drawing.Point(1, 1);
     this.kryptonHeaderGroup18.Margin = new System.Windows.Forms.Padding(0);
     this.kryptonHeaderGroup18.Name = "kryptonHeaderGroup18";
     //
     // kryptonHeaderGroup18.Panel
     //
     this.kryptonHeaderGroup18.Panel.Controls.Add(this.pnlMain);
     this.kryptonHeaderGroup18.Size = new System.Drawing.Size(445, 201);
     this.kryptonHeaderGroup18.StateCommon.HeaderPrimary.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonHeaderGroup18.StateCommon.HeaderPrimary.Content.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.kryptonHeaderGroup18.TabIndex = 2;
     this.kryptonHeaderGroup18.ValuesPrimary.Heading = "DJ Login";
     this.kryptonHeaderGroup18.ValuesPrimary.Image = null;
     //
     // pnlMain
     //
     this.pnlMain.BackColor = System.Drawing.Color.Transparent;
     this.pnlMain.Controls.Add(this.kbtnLogin);
     this.pnlMain.Controls.Add(this.ktxtPassword);
     this.pnlMain.Controls.Add(this.ktxtUserName);
     this.pnlMain.Controls.Add(this.klblPassword);
     this.pnlMain.Controls.Add(this.klblUserName);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location = new System.Drawing.Point(0, 0);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(443, 174);
     this.pnlMain.TabIndex = 0;
     //
     // kbtnLogin
     //
     this.kbtnLogin.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnLogin.Location = new System.Drawing.Point(123, 76);
     this.kbtnLogin.Name = "kbtnLogin";
     this.kbtnLogin.Size = new System.Drawing.Size(90, 25);
     this.kbtnLogin.TabIndex = 4;
     this.kbtnLogin.Values.Text = "&Login";
     this.kbtnLogin.Click += new System.EventHandler(this.kbtnLogin_Click);
     //
     // ktxtPassword
     //
     this.ktxtPassword.BackColor = System.Drawing.Color.LemonChiffon;
     this.ktxtPassword.Location = new System.Drawing.Point(123, 50);
     this.ktxtPassword.MaxLength = 25;
     this.ktxtPassword.Name = "ktxtPassword";
     this.ktxtPassword.PasswordChar = '●';
     this.ktxtPassword.Size = new System.Drawing.Size(169, 20);
     this.ktxtPassword.TabIndex = 1;
     this.ktxtPassword.Tag = "Please enter Password";
     this.ktxtPassword.UseSystemPasswordChar = true;
     //
     // ktxtUserName
     //
     this.ktxtUserName.BackColor = System.Drawing.Color.LemonChiffon;
     this.ktxtUserName.Location = new System.Drawing.Point(123, 22);
     this.ktxtUserName.MaxLength = 25;
     this.ktxtUserName.Name = "ktxtUserName";
     this.ktxtUserName.Size = new System.Drawing.Size(169, 20);
     this.ktxtUserName.TabIndex = 0;
     this.ktxtUserName.Tag = "Please enter User Name";
     //
     // klblPassword
     //
     this.klblPassword.Location = new System.Drawing.Point(29, 50);
     this.klblPassword.Name = "klblPassword";
     this.klblPassword.Size = new System.Drawing.Size(62, 20);
     this.klblPassword.TabIndex = 3;
     this.klblPassword.Values.Text = "Password";
     //
     // klblUserName
     //
     this.klblUserName.Location = new System.Drawing.Point(29, 22);
     this.klblUserName.Name = "klblUserName";
     this.klblUserName.Size = new System.Drawing.Size(71, 20);
     this.klblUserName.TabIndex = 2;
     this.klblUserName.Values.Text = "User Name";
     //
     // Login
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(447, 203);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Login";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "synQ | Automated karaoQ Syncing Service";
     this.Load += new System.EventHandler(this.Login_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18.Panel)).EndInit();
     this.kryptonHeaderGroup18.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18)).EndInit();
     this.kryptonHeaderGroup18.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlMain.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KaraokiVenue));
     this.kryptonButton1 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.bwVenueSync = new System.ComponentModel.BackgroundWorker();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonHeaderGroup18 = new ComponentFactory.Krypton.Toolkit.KryptonHeaderGroup();
     this.pnlMain = new System.Windows.Forms.Panel();
     this.kbtnLogout = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klblTimeUnit = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ktxtSyncTime = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kbtnStopSync = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ddlVenue = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnStartSync = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.tmSync = new System.Windows.Forms.Timer(this.components);
     this.pbSync = new System.Windows.Forms.ProgressBar();
     this.klblCurrentImport = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18.Panel)).BeginInit();
     this.kryptonHeaderGroup18.Panel.SuspendLayout();
     this.kryptonHeaderGroup18.SuspendLayout();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlVenue)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonButton1
     //
     this.kryptonButton1.Location = new System.Drawing.Point(0, 0);
     this.kryptonButton1.Name = "kryptonButton1";
     this.kryptonButton1.Size = new System.Drawing.Size(90, 25);
     this.kryptonButton1.TabIndex = 0;
     //
     // bwVenueSync
     //
     this.bwVenueSync.WorkerSupportsCancellation = true;
     this.bwVenueSync.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bwVenueSync_DoWork);
     this.bwVenueSync.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bwVenueSync_ProgressChanged);
     this.bwVenueSync.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bwVenueSync_RunWorkerCompleted);
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonHeaderGroup18);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Margin = new System.Windows.Forms.Padding(0);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.kryptonPanel1.Size = new System.Drawing.Size(531, 275);
     this.kryptonPanel1.TabIndex = 7;
     //
     // kryptonHeaderGroup18
     //
     this.kryptonHeaderGroup18.AutoSize = true;
     this.kryptonHeaderGroup18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonHeaderGroup18.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.TabStandardProfile;
     this.kryptonHeaderGroup18.HeaderVisibleSecondary = false;
     this.kryptonHeaderGroup18.Location = new System.Drawing.Point(1, 1);
     this.kryptonHeaderGroup18.Margin = new System.Windows.Forms.Padding(0);
     this.kryptonHeaderGroup18.Name = "kryptonHeaderGroup18";
     //
     // kryptonHeaderGroup18.Panel
     //
     this.kryptonHeaderGroup18.Panel.Controls.Add(this.pnlMain);
     this.kryptonHeaderGroup18.Size = new System.Drawing.Size(529, 273);
     this.kryptonHeaderGroup18.StateCommon.HeaderPrimary.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonHeaderGroup18.StateCommon.HeaderPrimary.Content.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.kryptonHeaderGroup18.TabIndex = 2;
     this.kryptonHeaderGroup18.ValuesPrimary.Heading = "Select Venue To Sync";
     this.kryptonHeaderGroup18.ValuesPrimary.Image = null;
     //
     // pnlMain
     //
     this.pnlMain.BackColor = System.Drawing.Color.Transparent;
     this.pnlMain.Controls.Add(this.klblCurrentImport);
     this.pnlMain.Controls.Add(this.pbSync);
     this.pnlMain.Controls.Add(this.kbtnLogout);
     this.pnlMain.Controls.Add(this.klblTimeUnit);
     this.pnlMain.Controls.Add(this.kryptonLabel2);
     this.pnlMain.Controls.Add(this.ktxtSyncTime);
     this.pnlMain.Controls.Add(this.kbtnStopSync);
     this.pnlMain.Controls.Add(this.ddlVenue);
     this.pnlMain.Controls.Add(this.kryptonLabel1);
     this.pnlMain.Controls.Add(this.kbtnStartSync);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location = new System.Drawing.Point(0, 0);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(527, 246);
     this.pnlMain.TabIndex = 0;
     //
     // kbtnLogout
     //
     this.kbtnLogout.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.kbtnLogout.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnLogout.Location = new System.Drawing.Point(434, 3);
     this.kbtnLogout.Name = "kbtnLogout";
     this.kbtnLogout.Size = new System.Drawing.Size(90, 25);
     this.kbtnLogout.TabIndex = 157;
     this.kbtnLogout.Values.Text = "&Logout";
     this.kbtnLogout.Click += new System.EventHandler(this.kbtnLogout_Click);
     //
     // klblTimeUnit
     //
     this.klblTimeUnit.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.klblTimeUnit.Location = new System.Drawing.Point(341, 68);
     this.klblTimeUnit.Name = "klblTimeUnit";
     this.klblTimeUnit.Size = new System.Drawing.Size(82, 20);
     this.klblTimeUnit.TabIndex = 156;
     this.klblTimeUnit.Values.Text = "(In Seconds)";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(57, 68);
     this.kryptonLabel2.Name = "kryptonLabel2";
     this.kryptonLabel2.Size = new System.Drawing.Size(72, 20);
     this.kryptonLabel2.TabIndex = 154;
     this.kryptonLabel2.Values.Text = "Sync Time : ";
     //
     // ktxtSyncTime
     //
     this.ktxtSyncTime.BackColor = System.Drawing.Color.LemonChiffon;
     this.ktxtSyncTime.Location = new System.Drawing.Point(150, 68);
     this.ktxtSyncTime.MaxLength = 25;
     this.ktxtSyncTime.Name = "ktxtSyncTime";
     this.ktxtSyncTime.Size = new System.Drawing.Size(180, 20);
     this.ktxtSyncTime.TabIndex = 153;
     this.ktxtSyncTime.Tag = "Please enter Sync Time";
     this.ktxtSyncTime.Text = "30";
     this.ktxtSyncTime.Leave += new System.EventHandler(this.ktxtSyncTime_Leave);
     //
     // kbtnStopSync
     //
     this.kbtnStopSync.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnStopSync.Enabled = false;
     this.kbtnStopSync.Location = new System.Drawing.Point(246, 106);
     this.kbtnStopSync.Name = "kbtnStopSync";
     this.kbtnStopSync.Size = new System.Drawing.Size(90, 25);
     this.kbtnStopSync.TabIndex = 152;
     this.kbtnStopSync.Values.Text = "S&top Sync";
     this.kbtnStopSync.Click += new System.EventHandler(this.kbtnStopSync_Click);
     //
     // ddlVenue
     //
     this.ddlVenue.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append;
     this.ddlVenue.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ddlVenue.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlVenue.DropDownWidth = 148;
     this.ddlVenue.Location = new System.Drawing.Point(150, 41);
     this.ddlVenue.Name = "ddlVenue";
     this.ddlVenue.Size = new System.Drawing.Size(180, 21);
     this.ddlVenue.TabIndex = 151;
     this.ddlVenue.Tag = "Please select Venue";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(57, 42);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.Size = new System.Drawing.Size(87, 20);
     this.kryptonLabel1.TabIndex = 150;
     this.kryptonLabel1.Values.Text = "Select Venue : ";
     //
     // kbtnStartSync
     //
     this.kbtnStartSync.Cursor = System.Windows.Forms.Cursors.Hand;
     this.kbtnStartSync.Location = new System.Drawing.Point(150, 106);
     this.kbtnStartSync.Name = "kbtnStartSync";
     this.kbtnStartSync.Size = new System.Drawing.Size(90, 25);
     this.kbtnStartSync.TabIndex = 4;
     this.kbtnStartSync.Values.Text = "&Start Sync";
     this.kbtnStartSync.Click += new System.EventHandler(this.kbtnStartSync_Click);
     //
     // tmSync
     //
     this.tmSync.Interval = 30000;
     this.tmSync.Tick += new System.EventHandler(this.tmSync_Tick);
     //
     // pbSync
     //
     this.pbSync.Location = new System.Drawing.Point(10, 195);
     this.pbSync.Name = "pbSync";
     this.pbSync.Size = new System.Drawing.Size(507, 23);
     this.pbSync.TabIndex = 158;
     this.pbSync.Visible = false;
     //
     // klblCurrentImport
     //
     this.klblCurrentImport.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.klblCurrentImport.Location = new System.Drawing.Point(10, 169);
     this.klblCurrentImport.Name = "klblCurrentImport";
     this.klblCurrentImport.Size = new System.Drawing.Size(56, 20);
     this.klblCurrentImport.TabIndex = 159;
     this.klblCurrentImport.Values.Text = "Step1/3";
     this.klblCurrentImport.Visible = false;
     //
     // KaraokiVenue
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(531, 275);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "KaraokiVenue";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "synQ | Automated karaoQ Syncing Service";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.KaraokiVenue_FormClosing);
     this.Load += new System.EventHandler(this.KaraokiVenue_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18.Panel)).EndInit();
     this.kryptonHeaderGroup18.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonHeaderGroup18)).EndInit();
     this.kryptonHeaderGroup18.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlMain.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlVenue)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.kryptonManager = new ComponentFactory.Krypton.Toolkit.KryptonManager(this.components);
     this.kryptonPanel = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.updateLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.updateOnStartupCheckBox = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.proxyPasswordLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.proxyPasswordTextbox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.proxyUsernameLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.proxyAddressLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.proxySettingsLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.proxyAddressTextbox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.proxyUsernameTextBox = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.applySettingsButton = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.chooseLanguageLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.languageSettingsLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.useSystemLanguageCheckBox = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.languagesComboBox = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.layoutSettingsLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.okButton = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.office2010BlueRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.professionalOffice2003RadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.sparkleBlueRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.sparklePurpleRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.sparkleOrangeRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.office2007BlueRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.office2010SilverRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     this.office2007SilverRadioButton = new ComponentFactory.Krypton.Toolkit.KryptonRadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).BeginInit();
     this.kryptonPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.languagesComboBox)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel
     //
     this.kryptonPanel.Controls.Add(this.updateLabel);
     this.kryptonPanel.Controls.Add(this.updateOnStartupCheckBox);
     this.kryptonPanel.Controls.Add(this.proxyPasswordLabel);
     this.kryptonPanel.Controls.Add(this.proxyPasswordTextbox);
     this.kryptonPanel.Controls.Add(this.proxyUsernameLabel);
     this.kryptonPanel.Controls.Add(this.proxyAddressLabel);
     this.kryptonPanel.Controls.Add(this.proxySettingsLabel);
     this.kryptonPanel.Controls.Add(this.proxyAddressTextbox);
     this.kryptonPanel.Controls.Add(this.proxyUsernameTextBox);
     this.kryptonPanel.Controls.Add(this.applySettingsButton);
     this.kryptonPanel.Controls.Add(this.chooseLanguageLabel);
     this.kryptonPanel.Controls.Add(this.languageSettingsLabel);
     this.kryptonPanel.Controls.Add(this.useSystemLanguageCheckBox);
     this.kryptonPanel.Controls.Add(this.languagesComboBox);
     this.kryptonPanel.Controls.Add(this.layoutSettingsLabel);
     this.kryptonPanel.Controls.Add(this.okButton);
     this.kryptonPanel.Controls.Add(this.office2010BlueRadioButton);
     this.kryptonPanel.Controls.Add(this.professionalOffice2003RadioButton);
     this.kryptonPanel.Controls.Add(this.sparkleBlueRadioButton);
     this.kryptonPanel.Controls.Add(this.sparklePurpleRadioButton);
     this.kryptonPanel.Controls.Add(this.sparkleOrangeRadioButton);
     this.kryptonPanel.Controls.Add(this.office2007BlueRadioButton);
     this.kryptonPanel.Controls.Add(this.office2010SilverRadioButton);
     this.kryptonPanel.Controls.Add(this.office2007SilverRadioButton);
     this.kryptonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel.Name = "kryptonPanel";
     this.kryptonPanel.Size = new System.Drawing.Size(551, 433);
     this.kryptonPanel.TabIndex = 0;
     //
     // updateLabel
     //
     this.updateLabel.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.updateLabel.Location = new System.Drawing.Point(9, 283);
     this.updateLabel.Name = "updateLabel";
     this.updateLabel.Size = new System.Drawing.Size(70, 20);
     this.updateLabel.TabIndex = 17;
     this.updateLabel.Values.Image = global::VSPRBase.Properties.Resources.update;
     this.updateLabel.Values.Text = "Update";
     //
     // updateOnStartupCheckBox
     //
     this.updateOnStartupCheckBox.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.updateOnStartupCheckBox.Location = new System.Drawing.Point(29, 309);
     this.updateOnStartupCheckBox.Name = "updateOnStartupCheckBox";
     this.updateOnStartupCheckBox.Size = new System.Drawing.Size(177, 20);
     this.updateOnStartupCheckBox.TabIndex = 16;
     this.updateOnStartupCheckBox.Text = "Check for update on startup";
     this.updateOnStartupCheckBox.Values.Text = "Check for update on startup";
     this.updateOnStartupCheckBox.CheckedChanged += new System.EventHandler(this.updateOnStartupCheckBox_CheckedChanged);
     //
     // proxyPasswordLabel
     //
     this.proxyPasswordLabel.Location = new System.Drawing.Point(231, 335);
     this.proxyPasswordLabel.Name = "proxyPasswordLabel";
     this.proxyPasswordLabel.Size = new System.Drawing.Size(62, 20);
     this.proxyPasswordLabel.TabIndex = 0;
     this.proxyPasswordLabel.TabStop = false;
     this.proxyPasswordLabel.Values.Text = "Password";
     //
     // proxyPasswordTextbox
     //
     this.proxyPasswordTextbox.Location = new System.Drawing.Point(231, 361);
     this.proxyPasswordTextbox.Name = "proxyPasswordTextbox";
     this.proxyPasswordTextbox.Size = new System.Drawing.Size(302, 20);
     this.proxyPasswordTextbox.TabIndex = 14;
     //
     // proxyUsernameLabel
     //
     this.proxyUsernameLabel.Location = new System.Drawing.Point(231, 283);
     this.proxyUsernameLabel.Name = "proxyUsernameLabel";
     this.proxyUsernameLabel.Size = new System.Drawing.Size(35, 20);
     this.proxyUsernameLabel.TabIndex = 0;
     this.proxyUsernameLabel.TabStop = false;
     this.proxyUsernameLabel.Values.Text = "User";
     //
     // proxyAddressLabel
     //
     this.proxyAddressLabel.Location = new System.Drawing.Point(231, 234);
     this.proxyAddressLabel.Name = "proxyAddressLabel";
     this.proxyAddressLabel.Size = new System.Drawing.Size(54, 20);
     this.proxyAddressLabel.TabIndex = 0;
     this.proxyAddressLabel.TabStop = false;
     this.proxyAddressLabel.Values.Text = "Address";
     //
     // proxySettingsLabel
     //
     this.proxySettingsLabel.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.proxySettingsLabel.Location = new System.Drawing.Point(208, 208);
     this.proxySettingsLabel.Name = "proxySettingsLabel";
     this.proxySettingsLabel.Size = new System.Drawing.Size(110, 20);
     this.proxySettingsLabel.TabIndex = 0;
     this.proxySettingsLabel.TabStop = false;
     this.proxySettingsLabel.Values.Image = global::VSPRBase.Properties.Resources.server_small;
     this.proxySettingsLabel.Values.Text = "Proxy settings";
     //
     // proxyAddressTextbox
     //
     this.proxyAddressTextbox.Location = new System.Drawing.Point(231, 257);
     this.proxyAddressTextbox.Name = "proxyAddressTextbox";
     this.proxyAddressTextbox.Size = new System.Drawing.Size(302, 20);
     this.proxyAddressTextbox.TabIndex = 12;
     //
     // proxyUsernameTextBox
     //
     this.proxyUsernameTextBox.Location = new System.Drawing.Point(231, 309);
     this.proxyUsernameTextBox.Name = "proxyUsernameTextBox";
     this.proxyUsernameTextBox.Size = new System.Drawing.Size(302, 20);
     this.proxyUsernameTextBox.TabIndex = 13;
     //
     // applySettingsButton
     //
     this.applySettingsButton.Location = new System.Drawing.Point(443, 153);
     this.applySettingsButton.Name = "applySettingsButton";
     this.applySettingsButton.Size = new System.Drawing.Size(90, 25);
     this.applySettingsButton.TabIndex = 11;
     this.applySettingsButton.Values.Text = "Apply";
     this.applySettingsButton.Click += new System.EventHandler(this.ApplySettingsButtonClick);
     //
     // chooseLanguageLabel
     //
     this.chooseLanguageLabel.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.chooseLanguageLabel.Location = new System.Drawing.Point(231, 100);
     this.chooseLanguageLabel.Name = "chooseLanguageLabel";
     this.chooseLanguageLabel.Size = new System.Drawing.Size(110, 20);
     this.chooseLanguageLabel.TabIndex = 0;
     this.chooseLanguageLabel.TabStop = false;
     this.chooseLanguageLabel.Values.Text = "Choose language";
     //
     // languageSettingsLabel
     //
     this.languageSettingsLabel.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.languageSettingsLabel.Location = new System.Drawing.Point(208, 32);
     this.languageSettingsLabel.Name = "languageSettingsLabel";
     this.languageSettingsLabel.Size = new System.Drawing.Size(133, 20);
     this.languageSettingsLabel.TabIndex = 0;
     this.languageSettingsLabel.TabStop = false;
     this.languageSettingsLabel.Values.Image = global::VSPRBase.Properties.Resources.languageSettings;
     this.languageSettingsLabel.Values.Text = "Language settings";
     //
     // useSystemLanguageCheckBox
     //
     this.useSystemLanguageCheckBox.Checked = true;
     this.useSystemLanguageCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.useSystemLanguageCheckBox.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.useSystemLanguageCheckBox.Location = new System.Drawing.Point(231, 58);
     this.useSystemLanguageCheckBox.Name = "useSystemLanguageCheckBox";
     this.useSystemLanguageCheckBox.Size = new System.Drawing.Size(140, 20);
     this.useSystemLanguageCheckBox.TabIndex = 9;
     this.useSystemLanguageCheckBox.Text = "Use System language";
     this.useSystemLanguageCheckBox.Values.Text = "Use System language";
     this.useSystemLanguageCheckBox.CheckedChanged += new System.EventHandler(this.UseSystemLanguageCheckBoxCheckedChanged);
     //
     // languagesComboBox
     //
     this.languagesComboBox.DropDownWidth = 302;
     this.languagesComboBox.Location = new System.Drawing.Point(231, 126);
     this.languagesComboBox.Name = "languagesComboBox";
     this.languagesComboBox.Size = new System.Drawing.Size(302, 21);
     this.languagesComboBox.TabIndex = 10;
     //
     // layoutSettingsLabel
     //
     this.layoutSettingsLabel.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldPanel;
     this.layoutSettingsLabel.Location = new System.Drawing.Point(9, 32);
     this.layoutSettingsLabel.Name = "layoutSettingsLabel";
     this.layoutSettingsLabel.Size = new System.Drawing.Size(116, 20);
     this.layoutSettingsLabel.TabIndex = 0;
     this.layoutSettingsLabel.TabStop = false;
     this.layoutSettingsLabel.Values.Image = global::VSPRBase.Properties.Resources.layoutSettings;
     this.layoutSettingsLabel.Values.Text = "Layout settings";
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(443, 396);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(90, 25);
     this.okButton.TabIndex = 15;
     this.okButton.Values.Text = "OK";
     this.okButton.Click += new System.EventHandler(this.OkButtonClick);
     //
     // office2010BlueRadioButton
     //
     this.office2010BlueRadioButton.Location = new System.Drawing.Point(29, 160);
     this.office2010BlueRadioButton.Name = "office2010BlueRadioButton";
     this.office2010BlueRadioButton.Size = new System.Drawing.Size(112, 20);
     this.office2010BlueRadioButton.TabIndex = 5;
     this.office2010BlueRadioButton.Values.Text = "Office 2010 Blue";
     this.office2010BlueRadioButton.CheckedChanged += new System.EventHandler(this.Office2010BlueRadioButtonCheckedChanged);
     //
     // professionalOffice2003RadioButton
     //
     this.professionalOffice2003RadioButton.Location = new System.Drawing.Point(29, 58);
     this.professionalOffice2003RadioButton.Name = "professionalOffice2003RadioButton";
     this.professionalOffice2003RadioButton.Size = new System.Drawing.Size(154, 20);
     this.professionalOffice2003RadioButton.TabIndex = 1;
     this.professionalOffice2003RadioButton.Values.Text = "Professional Office 2003";
     this.professionalOffice2003RadioButton.CheckedChanged += new System.EventHandler(this.ProfessionalOffice2003RadioButtonCheckedChanged);
     //
     // sparkleBlueRadioButton
     //
     this.sparkleBlueRadioButton.Location = new System.Drawing.Point(29, 234);
     this.sparkleBlueRadioButton.Name = "sparkleBlueRadioButton";
     this.sparkleBlueRadioButton.Size = new System.Drawing.Size(89, 20);
     this.sparkleBlueRadioButton.TabIndex = 8;
     this.sparkleBlueRadioButton.Values.Text = "Sparkle Blue";
     this.sparkleBlueRadioButton.CheckedChanged += new System.EventHandler(this.SparkleBlueRadioButtonCheckedChanged);
     //
     // sparklePurpleRadioButton
     //
     this.sparklePurpleRadioButton.Location = new System.Drawing.Point(29, 208);
     this.sparklePurpleRadioButton.Name = "sparklePurpleRadioButton";
     this.sparklePurpleRadioButton.Size = new System.Drawing.Size(101, 20);
     this.sparklePurpleRadioButton.TabIndex = 7;
     this.sparklePurpleRadioButton.Values.Text = "Sparkle Purple";
     this.sparklePurpleRadioButton.CheckedChanged += new System.EventHandler(this.SparklePurpleRadioButtonCheckedChanged);
     //
     // sparkleOrangeRadioButton
     //
     this.sparkleOrangeRadioButton.Location = new System.Drawing.Point(29, 182);
     this.sparkleOrangeRadioButton.Name = "sparkleOrangeRadioButton";
     this.sparkleOrangeRadioButton.Size = new System.Drawing.Size(107, 20);
     this.sparkleOrangeRadioButton.TabIndex = 6;
     this.sparkleOrangeRadioButton.Values.Text = "Sparkle Orange";
     this.sparkleOrangeRadioButton.CheckedChanged += new System.EventHandler(this.SparkleOrangeRadioButtonCheckedChanged);
     //
     // office2007BlueRadioButton
     //
     this.office2007BlueRadioButton.Location = new System.Drawing.Point(29, 134);
     this.office2007BlueRadioButton.Name = "office2007BlueRadioButton";
     this.office2007BlueRadioButton.Size = new System.Drawing.Size(112, 20);
     this.office2007BlueRadioButton.TabIndex = 4;
     this.office2007BlueRadioButton.Values.Text = "Office 2007 Blue";
     this.office2007BlueRadioButton.CheckedChanged += new System.EventHandler(this.Office2007BlueRadioButtonCheckedChanged);
     //
     // office2010SilverRadioButton
     //
     this.office2010SilverRadioButton.Location = new System.Drawing.Point(29, 108);
     this.office2010SilverRadioButton.Name = "office2010SilverRadioButton";
     this.office2010SilverRadioButton.Size = new System.Drawing.Size(117, 20);
     this.office2010SilverRadioButton.TabIndex = 3;
     this.office2010SilverRadioButton.Values.Text = "Office 2010 Silver";
     this.office2010SilverRadioButton.CheckedChanged += new System.EventHandler(this.Office2010SilverRadioButtonCheckedChanged);
     //
     // office2007SilverRadioButton
     //
     this.office2007SilverRadioButton.Location = new System.Drawing.Point(29, 82);
     this.office2007SilverRadioButton.Name = "office2007SilverRadioButton";
     this.office2007SilverRadioButton.Size = new System.Drawing.Size(117, 20);
     this.office2007SilverRadioButton.TabIndex = 2;
     this.office2007SilverRadioButton.Values.Text = "Office 2007 Silver";
     this.office2007SilverRadioButton.CheckedChanged += new System.EventHandler(this.Office2007SilverRadioButtonCheckedChanged);
     //
     // SettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(551, 433);
     this.Controls.Add(this.kryptonPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "SettingsForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).EndInit();
     this.kryptonPanel.ResumeLayout(false);
     this.kryptonPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.languagesComboBox)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.proxyContentPanel = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.proxyGroupPanel = new ComponentFactory.Krypton.Toolkit.KryptonHeaderGroup();
     this.headerContent = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.MainContent = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.secGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox5 = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.dipInSecEnd = new System.Windows.Forms.Label();
     this.dipInSecBegin = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.dipInSecTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.dipInSecIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonGroupBox6 = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.lastWashSecEnd = new System.Windows.Forms.Label();
     this.lastWashSecBegin = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.lastWashSecTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lastWashSecIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.cleanGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.dipInGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.dipInEnd = new System.Windows.Forms.Label();
     this.dipInBegin = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.dipInTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.dipInBeginIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lastWashGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.lastWashEnd = new System.Windows.Forms.Label();
     this.lastWashBegin = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.lastWashTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lastWashIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.cleanOutWashGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.cleanOutWashEnd = new System.Windows.Forms.Label();
     this.cleanOutWashBegin = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.cleanOutWashTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.cleanOutWashIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.enzymeWashGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.enzymeWashEnd = new System.Windows.Forms.Label();
     this.enzymeWashBegin = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.enzymeWashTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.enzymeWashIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.firstWashGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.firstWashEnd = new System.Windows.Forms.Label();
     this.firstWashBegin = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.firstWashTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.firstWashIsPss = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.manualWashGroBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.manualWashEnd = new System.Windows.Forms.Label();
     this.manualWashBegin = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.manualWashTime = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.labIsPass = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.basicMesGrouBox = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.txtWasherName = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.txtWasherNo = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.txtEndoscopeSIM = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.txtEndoscopeNo = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.isVoice = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.label23 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.kryptonLabel9 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel11 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonGroupBox1 = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox2 = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.kryptonLabel7 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel8 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.kryptonGroupBox4 = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.label25 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.proxyContentPanel)).BeginInit();
     this.proxyContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.proxyGroupPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.proxyGroupPanel.Panel)).BeginInit();
     this.proxyGroupPanel.Panel.SuspendLayout();
     this.proxyGroupPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.headerContent)).BeginInit();
     this.headerContent.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MainContent)).BeginInit();
     this.MainContent.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.secGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.secGroBox.Panel)).BeginInit();
     this.secGroBox.Panel.SuspendLayout();
     this.secGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5.Panel)).BeginInit();
     this.kryptonGroupBox5.Panel.SuspendLayout();
     this.kryptonGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6.Panel)).BeginInit();
     this.kryptonGroupBox6.Panel.SuspendLayout();
     this.kryptonGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cleanGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cleanGroBox.Panel)).BeginInit();
     this.cleanGroBox.Panel.SuspendLayout();
     this.cleanGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dipInGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dipInGroBox.Panel)).BeginInit();
     this.dipInGroBox.Panel.SuspendLayout();
     this.dipInGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lastWashGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lastWashGroBox.Panel)).BeginInit();
     this.lastWashGroBox.Panel.SuspendLayout();
     this.lastWashGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cleanOutWashGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cleanOutWashGroBox.Panel)).BeginInit();
     this.cleanOutWashGroBox.Panel.SuspendLayout();
     this.cleanOutWashGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.enzymeWashGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.enzymeWashGroBox.Panel)).BeginInit();
     this.enzymeWashGroBox.Panel.SuspendLayout();
     this.enzymeWashGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.firstWashGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.firstWashGroBox.Panel)).BeginInit();
     this.firstWashGroBox.Panel.SuspendLayout();
     this.firstWashGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.manualWashGroBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.manualWashGroBox.Panel)).BeginInit();
     this.manualWashGroBox.Panel.SuspendLayout();
     this.manualWashGroBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.basicMesGrouBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.basicMesGrouBox.Panel)).BeginInit();
     this.basicMesGrouBox.Panel.SuspendLayout();
     this.basicMesGrouBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).BeginInit();
     this.kryptonGroupBox1.Panel.SuspendLayout();
     this.kryptonGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2.Panel)).BeginInit();
     this.kryptonGroupBox2.Panel.SuspendLayout();
     this.kryptonGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4.Panel)).BeginInit();
     this.kryptonGroupBox4.Panel.SuspendLayout();
     this.kryptonGroupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // proxyContentPanel
     //
     this.proxyContentPanel.Controls.Add(this.proxyGroupPanel);
     this.proxyContentPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.proxyContentPanel.Location = new System.Drawing.Point(0, 0);
     this.proxyContentPanel.Name = "proxyContentPanel";
     this.proxyContentPanel.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2010Blue;
     this.proxyContentPanel.Size = new System.Drawing.Size(1000, 788);
     this.proxyContentPanel.TabIndex = 0;
     //
     // proxyGroupPanel
     //
     this.proxyGroupPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.proxyGroupPanel.HeaderPositionSecondary = ComponentFactory.Krypton.Toolkit.VisualOrientation.Top;
     this.proxyGroupPanel.HeaderStyleSecondary = ComponentFactory.Krypton.Toolkit.HeaderStyle.Calendar;
     this.proxyGroupPanel.HeaderVisiblePrimary = false;
     this.proxyGroupPanel.HeaderVisibleSecondary = false;
     this.proxyGroupPanel.Location = new System.Drawing.Point(0, 0);
     this.proxyGroupPanel.Name = "proxyGroupPanel";
     //
     // proxyGroupPanel.Panel
     //
     this.proxyGroupPanel.Panel.Controls.Add(this.headerContent);
     this.proxyGroupPanel.Size = new System.Drawing.Size(1000, 788);
     this.proxyGroupPanel.TabIndex = 0;
     this.proxyGroupPanel.ValuesPrimary.Description = "内镜清洗详细信息";
     this.proxyGroupPanel.ValuesPrimary.Heading = "";
     this.proxyGroupPanel.ValuesPrimary.Image = global::ProxyClient.Properties.Resources.Mall;
     this.proxyGroupPanel.ValuesSecondary.Heading = "";
     //
     // headerContent
     //
     this.headerContent.Controls.Add(this.MainContent);
     this.headerContent.Controls.Add(this.basicMesGrouBox);
     this.headerContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.headerContent.Location = new System.Drawing.Point(0, 0);
     this.headerContent.Name = "headerContent";
     this.headerContent.Size = new System.Drawing.Size(998, 786);
     this.headerContent.TabIndex = 0;
     //
     // MainContent
     //
     this.MainContent.Controls.Add(this.secGroBox);
     this.MainContent.Controls.Add(this.cleanGroBox);
     this.MainContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.MainContent.Location = new System.Drawing.Point(0, 54);
     this.MainContent.Name = "MainContent";
     this.MainContent.Size = new System.Drawing.Size(998, 732);
     this.MainContent.TabIndex = 4;
     //
     // secGroBox
     //
     this.secGroBox.CaptionOverlap = 1D;
     this.secGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.secGroBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.secGroBox.GroupBorderStyle = ComponentFactory.Krypton.Toolkit.PaletteBorderStyle.TabHighProfile;
     this.secGroBox.Location = new System.Drawing.Point(0, 372);
     this.secGroBox.Name = "secGroBox";
     //
     // secGroBox.Panel
     //
     this.secGroBox.Panel.AutoScroll = true;
     this.secGroBox.Panel.Controls.Add(this.kryptonGroupBox5);
     this.secGroBox.Panel.Controls.Add(this.kryptonGroupBox6);
     this.secGroBox.Size = new System.Drawing.Size(998, 360);
     this.secGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.Info;
     this.secGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.secGroBox.StateNormal.Border.Rounding = 4;
     this.secGroBox.StateNormal.Border.Width = 1;
     this.secGroBox.TabIndex = 3;
     this.secGroBox.Text = "二次清洗";
     this.secGroBox.Values.Heading = "二次清洗";
     this.secGroBox.Values.Image = global::ProxyClient.Properties.Resources.washer2;
     //
     // kryptonGroupBox5
     //
     this.kryptonGroupBox5.CaptionOverlap = 1D;
     this.kryptonGroupBox5.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.kryptonGroupBox5.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.kryptonGroupBox5.Location = new System.Drawing.Point(16, -1);
     this.kryptonGroupBox5.Name = "kryptonGroupBox5";
     //
     // kryptonGroupBox5.Panel
     //
     this.kryptonGroupBox5.Panel.Controls.Add(this.dipInSecEnd);
     this.kryptonGroupBox5.Panel.Controls.Add(this.dipInSecBegin);
     this.kryptonGroupBox5.Panel.Controls.Add(this.label21);
     this.kryptonGroupBox5.Panel.Controls.Add(this.label22);
     this.kryptonGroupBox5.Panel.Controls.Add(this.dipInSecTime);
     this.kryptonGroupBox5.Panel.Controls.Add(this.dipInSecIsPass);
     this.kryptonGroupBox5.Size = new System.Drawing.Size(435, 99);
     this.kryptonGroupBox5.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.kryptonGroupBox5.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.kryptonGroupBox5.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.kryptonGroupBox5.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.kryptonGroupBox5.StateNormal.Border.Rounding = 4;
     this.kryptonGroupBox5.StateNormal.Border.Width = 5;
     this.kryptonGroupBox5.TabIndex = 2;
     this.kryptonGroupBox5.Text = "(二次)消毒";
     this.kryptonGroupBox5.Values.Heading = "(二次)消毒";
     //
     // dipInSecEnd
     //
     this.dipInSecEnd.AutoSize = true;
     this.dipInSecEnd.BackColor = System.Drawing.Color.Transparent;
     this.dipInSecEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dipInSecEnd.Location = new System.Drawing.Point(175, 43);
     this.dipInSecEnd.Name = "dipInSecEnd";
     this.dipInSecEnd.Size = new System.Drawing.Size(72, 21);
     this.dipInSecEnd.TabIndex = 3;
     this.dipInSecEnd.Text = "00:00:00";
     //
     // dipInSecBegin
     //
     this.dipInSecBegin.AutoSize = true;
     this.dipInSecBegin.BackColor = System.Drawing.Color.Transparent;
     this.dipInSecBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dipInSecBegin.Location = new System.Drawing.Point(175, 12);
     this.dipInSecBegin.Name = "dipInSecBegin";
     this.dipInSecBegin.Size = new System.Drawing.Size(72, 21);
     this.dipInSecBegin.TabIndex = 2;
     this.dipInSecBegin.Text = "00:00:00";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label21.Location = new System.Drawing.Point(97, 43);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(90, 21);
     this.label21.TabIndex = 1;
     this.label21.Text = "消毒结束:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.BackColor = System.Drawing.Color.Transparent;
     this.label22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label22.Location = new System.Drawing.Point(97, 11);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(90, 21);
     this.label22.TabIndex = 1;
     this.label22.Text = "消毒开始:";
     //
     // dipInSecTime
     //
     this.dipInSecTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.dipInSecTime.Location = new System.Drawing.Point(340, 21);
     this.dipInSecTime.Name = "dipInSecTime";
     this.dipInSecTime.Size = new System.Drawing.Size(87, 29);
     this.dipInSecTime.TabIndex = 0;
     this.dipInSecTime.Values.Text = "00:00:00";
     //
     // dipInSecIsPass
     //
     this.dipInSecIsPass.Location = new System.Drawing.Point(24, 11);
     this.dipInSecIsPass.Name = "dipInSecIsPass";
     this.dipInSecIsPass.Size = new System.Drawing.Size(54, 50);
     this.dipInSecIsPass.TabIndex = 0;
     this.dipInSecIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.dipInSecIsPass.Values.Text = "";
     //
     // kryptonGroupBox6
     //
     this.kryptonGroupBox6.CaptionOverlap = 1D;
     this.kryptonGroupBox6.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.kryptonGroupBox6.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.kryptonGroupBox6.Location = new System.Drawing.Point(518, -1);
     this.kryptonGroupBox6.Name = "kryptonGroupBox6";
     //
     // kryptonGroupBox6.Panel
     //
     this.kryptonGroupBox6.Panel.Controls.Add(this.lastWashSecEnd);
     this.kryptonGroupBox6.Panel.Controls.Add(this.lastWashSecBegin);
     this.kryptonGroupBox6.Panel.Controls.Add(this.label27);
     this.kryptonGroupBox6.Panel.Controls.Add(this.label28);
     this.kryptonGroupBox6.Panel.Controls.Add(this.lastWashSecTime);
     this.kryptonGroupBox6.Panel.Controls.Add(this.lastWashSecIsPass);
     this.kryptonGroupBox6.Size = new System.Drawing.Size(435, 99);
     this.kryptonGroupBox6.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.kryptonGroupBox6.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.kryptonGroupBox6.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.kryptonGroupBox6.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.kryptonGroupBox6.StateNormal.Border.Rounding = 4;
     this.kryptonGroupBox6.StateNormal.Border.Width = 5;
     this.kryptonGroupBox6.TabIndex = 1;
     this.kryptonGroupBox6.Text = "(二次)末洗";
     this.kryptonGroupBox6.Values.Heading = "(二次)末洗";
     //
     // lastWashSecEnd
     //
     this.lastWashSecEnd.AutoSize = true;
     this.lastWashSecEnd.BackColor = System.Drawing.Color.Transparent;
     this.lastWashSecEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lastWashSecEnd.Location = new System.Drawing.Point(178, 41);
     this.lastWashSecEnd.Name = "lastWashSecEnd";
     this.lastWashSecEnd.Size = new System.Drawing.Size(72, 21);
     this.lastWashSecEnd.TabIndex = 3;
     this.lastWashSecEnd.Text = "00:00:00";
     //
     // lastWashSecBegin
     //
     this.lastWashSecBegin.AutoSize = true;
     this.lastWashSecBegin.BackColor = System.Drawing.Color.Transparent;
     this.lastWashSecBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lastWashSecBegin.Location = new System.Drawing.Point(178, 10);
     this.lastWashSecBegin.Name = "lastWashSecBegin";
     this.lastWashSecBegin.Size = new System.Drawing.Size(72, 21);
     this.lastWashSecBegin.TabIndex = 2;
     this.lastWashSecBegin.Text = "00:00:00";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.BackColor = System.Drawing.Color.Transparent;
     this.label27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label27.Location = new System.Drawing.Point(97, 39);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(90, 21);
     this.label27.TabIndex = 1;
     this.label27.Text = "末洗结束:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.BackColor = System.Drawing.Color.Transparent;
     this.label28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label28.Location = new System.Drawing.Point(97, 8);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(90, 21);
     this.label28.TabIndex = 1;
     this.label28.Text = "末洗开始:";
     //
     // lastWashSecTime
     //
     this.lastWashSecTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.lastWashSecTime.Location = new System.Drawing.Point(341, 17);
     this.lastWashSecTime.Name = "lastWashSecTime";
     this.lastWashSecTime.Size = new System.Drawing.Size(87, 29);
     this.lastWashSecTime.TabIndex = 0;
     this.lastWashSecTime.Values.Text = "00:00:00";
     //
     // lastWashSecIsPass
     //
     this.lastWashSecIsPass.Location = new System.Drawing.Point(24, 10);
     this.lastWashSecIsPass.Name = "lastWashSecIsPass";
     this.lastWashSecIsPass.Size = new System.Drawing.Size(54, 50);
     this.lastWashSecIsPass.TabIndex = 0;
     this.lastWashSecIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.lastWashSecIsPass.Values.Text = "";
     //
     // cleanGroBox
     //
     this.cleanGroBox.CaptionOverlap = 1D;
     this.cleanGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.cleanGroBox.Dock = System.Windows.Forms.DockStyle.Top;
     this.cleanGroBox.GroupBorderStyle = ComponentFactory.Krypton.Toolkit.PaletteBorderStyle.ControlClient;
     this.cleanGroBox.Location = new System.Drawing.Point(0, 0);
     this.cleanGroBox.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.cleanGroBox.Name = "cleanGroBox";
     //
     // cleanGroBox.Panel
     //
     this.cleanGroBox.Panel.AutoScroll = true;
     this.cleanGroBox.Panel.Controls.Add(this.dipInGroBox);
     this.cleanGroBox.Panel.Controls.Add(this.lastWashGroBox);
     this.cleanGroBox.Panel.Controls.Add(this.cleanOutWashGroBox);
     this.cleanGroBox.Panel.Controls.Add(this.enzymeWashGroBox);
     this.cleanGroBox.Panel.Controls.Add(this.firstWashGroBox);
     this.cleanGroBox.Panel.Controls.Add(this.manualWashGroBox);
     this.cleanGroBox.Size = new System.Drawing.Size(998, 372);
     this.cleanGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.HighlightText;
     this.cleanGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.cleanGroBox.StateNormal.Border.Rounding = 1;
     this.cleanGroBox.TabIndex = 2;
     this.cleanGroBox.Text = "一次清洗";
     this.cleanGroBox.Values.Heading = "一次清洗";
     this.cleanGroBox.Values.Image = global::ProxyClient.Properties.Resources.washer;
     //
     // dipInGroBox
     //
     this.dipInGroBox.CaptionOverlap = 0.8D;
     this.dipInGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.dipInGroBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.dipInGroBox.Location = new System.Drawing.Point(16, 219);
     this.dipInGroBox.Name = "dipInGroBox";
     //
     // dipInGroBox.Panel
     //
     this.dipInGroBox.Panel.Controls.Add(this.dipInEnd);
     this.dipInGroBox.Panel.Controls.Add(this.dipInBegin);
     this.dipInGroBox.Panel.Controls.Add(this.label6);
     this.dipInGroBox.Panel.Controls.Add(this.label5);
     this.dipInGroBox.Panel.Controls.Add(this.dipInTime);
     this.dipInGroBox.Panel.Controls.Add(this.dipInBeginIsPass);
     this.dipInGroBox.Size = new System.Drawing.Size(435, 96);
     this.dipInGroBox.StateCommon.Border.Color1 = System.Drawing.Color.MediumSeaGreen;
     this.dipInGroBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.dipInGroBox.StateCommon.Border.Rounding = 4;
     this.dipInGroBox.StateCommon.Border.Width = 5;
     this.dipInGroBox.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dipInGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.dipInGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.dipInGroBox.TabIndex = 0;
     this.dipInGroBox.Text = "消毒";
     this.dipInGroBox.Values.Heading = "消毒";
     //
     // dipInEnd
     //
     this.dipInEnd.AutoSize = true;
     this.dipInEnd.BackColor = System.Drawing.Color.Transparent;
     this.dipInEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dipInEnd.Location = new System.Drawing.Point(176, 42);
     this.dipInEnd.Name = "dipInEnd";
     this.dipInEnd.Size = new System.Drawing.Size(72, 21);
     this.dipInEnd.TabIndex = 3;
     this.dipInEnd.Text = "00:00:00";
     //
     // dipInBegin
     //
     this.dipInBegin.AutoSize = true;
     this.dipInBegin.BackColor = System.Drawing.Color.Transparent;
     this.dipInBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dipInBegin.Location = new System.Drawing.Point(176, 10);
     this.dipInBegin.Name = "dipInBegin";
     this.dipInBegin.Size = new System.Drawing.Size(72, 21);
     this.dipInBegin.TabIndex = 2;
     this.dipInBegin.Text = "00:00:00";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(97, 43);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(90, 21);
     this.label6.TabIndex = 1;
     this.label6.Text = "消毒结束:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(97, 11);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(90, 21);
     this.label5.TabIndex = 1;
     this.label5.Text = "消毒开始:";
     //
     // dipInTime
     //
     this.dipInTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.dipInTime.Location = new System.Drawing.Point(341, 21);
     this.dipInTime.Name = "dipInTime";
     this.dipInTime.Size = new System.Drawing.Size(87, 29);
     this.dipInTime.TabIndex = 0;
     this.dipInTime.Values.Text = "00:00:00";
     //
     // dipInBeginIsPass
     //
     this.dipInBeginIsPass.Location = new System.Drawing.Point(22, 12);
     this.dipInBeginIsPass.Name = "dipInBeginIsPass";
     this.dipInBeginIsPass.Size = new System.Drawing.Size(54, 50);
     this.dipInBeginIsPass.TabIndex = 0;
     this.dipInBeginIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.dipInBeginIsPass.Values.Text = "";
     //
     // lastWashGroBox
     //
     this.lastWashGroBox.CaptionOverlap = 0.8D;
     this.lastWashGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.lastWashGroBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.lastWashGroBox.Location = new System.Drawing.Point(518, 219);
     this.lastWashGroBox.Name = "lastWashGroBox";
     //
     // lastWashGroBox.Panel
     //
     this.lastWashGroBox.Panel.Controls.Add(this.lastWashEnd);
     this.lastWashGroBox.Panel.Controls.Add(this.lastWashBegin);
     this.lastWashGroBox.Panel.Controls.Add(this.label12);
     this.lastWashGroBox.Panel.Controls.Add(this.label11);
     this.lastWashGroBox.Panel.Controls.Add(this.lastWashTime);
     this.lastWashGroBox.Panel.Controls.Add(this.lastWashIsPass);
     this.lastWashGroBox.Size = new System.Drawing.Size(435, 96);
     this.lastWashGroBox.StateCommon.Border.Color1 = System.Drawing.Color.MediumSeaGreen;
     this.lastWashGroBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.lastWashGroBox.StateCommon.Border.Rounding = 4;
     this.lastWashGroBox.StateCommon.Border.Width = 5;
     this.lastWashGroBox.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lastWashGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.lastWashGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.lastWashGroBox.TabIndex = 0;
     this.lastWashGroBox.Text = "末洗";
     this.lastWashGroBox.Values.Heading = "末洗";
     //
     // lastWashEnd
     //
     this.lastWashEnd.AutoSize = true;
     this.lastWashEnd.BackColor = System.Drawing.Color.Transparent;
     this.lastWashEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lastWashEnd.Location = new System.Drawing.Point(178, 41);
     this.lastWashEnd.Name = "lastWashEnd";
     this.lastWashEnd.Size = new System.Drawing.Size(72, 21);
     this.lastWashEnd.TabIndex = 3;
     this.lastWashEnd.Text = "00:00:00";
     //
     // lastWashBegin
     //
     this.lastWashBegin.AutoSize = true;
     this.lastWashBegin.BackColor = System.Drawing.Color.Transparent;
     this.lastWashBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lastWashBegin.Location = new System.Drawing.Point(178, 12);
     this.lastWashBegin.Name = "lastWashBegin";
     this.lastWashBegin.Size = new System.Drawing.Size(72, 21);
     this.lastWashBegin.TabIndex = 2;
     this.lastWashBegin.Text = "00:00:00";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(97, 39);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(90, 21);
     this.label12.TabIndex = 1;
     this.label12.Text = "末洗结束:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(97, 8);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(90, 21);
     this.label11.TabIndex = 1;
     this.label11.Text = "末洗开始:";
     //
     // lastWashTime
     //
     this.lastWashTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.lastWashTime.Location = new System.Drawing.Point(339, 21);
     this.lastWashTime.Name = "lastWashTime";
     this.lastWashTime.Size = new System.Drawing.Size(87, 29);
     this.lastWashTime.TabIndex = 0;
     this.lastWashTime.Values.Text = "00:00:00";
     //
     // lastWashIsPass
     //
     this.lastWashIsPass.Location = new System.Drawing.Point(24, 10);
     this.lastWashIsPass.Name = "lastWashIsPass";
     this.lastWashIsPass.Size = new System.Drawing.Size(54, 50);
     this.lastWashIsPass.TabIndex = 0;
     this.lastWashIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.lastWashIsPass.Values.Text = "";
     //
     // cleanOutWashGroBox
     //
     this.cleanOutWashGroBox.CaptionOverlap = 0.8D;
     this.cleanOutWashGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.cleanOutWashGroBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.cleanOutWashGroBox.Location = new System.Drawing.Point(518, 117);
     this.cleanOutWashGroBox.Name = "cleanOutWashGroBox";
     //
     // cleanOutWashGroBox.Panel
     //
     this.cleanOutWashGroBox.Panel.Controls.Add(this.cleanOutWashEnd);
     this.cleanOutWashGroBox.Panel.Controls.Add(this.cleanOutWashBegin);
     this.cleanOutWashGroBox.Panel.Controls.Add(this.label10);
     this.cleanOutWashGroBox.Panel.Controls.Add(this.label9);
     this.cleanOutWashGroBox.Panel.Controls.Add(this.cleanOutWashTime);
     this.cleanOutWashGroBox.Panel.Controls.Add(this.cleanOutWashIsPass);
     this.cleanOutWashGroBox.Size = new System.Drawing.Size(435, 95);
     this.cleanOutWashGroBox.StateCommon.Border.Color1 = System.Drawing.Color.MediumSeaGreen;
     this.cleanOutWashGroBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.cleanOutWashGroBox.StateCommon.Border.Rounding = 4;
     this.cleanOutWashGroBox.StateCommon.Border.Width = 5;
     this.cleanOutWashGroBox.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cleanOutWashGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.cleanOutWashGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.cleanOutWashGroBox.TabIndex = 0;
     this.cleanOutWashGroBox.Text = "清洗";
     this.cleanOutWashGroBox.Values.Heading = "清洗";
     //
     // cleanOutWashEnd
     //
     this.cleanOutWashEnd.AutoSize = true;
     this.cleanOutWashEnd.BackColor = System.Drawing.Color.Transparent;
     this.cleanOutWashEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cleanOutWashEnd.Location = new System.Drawing.Point(178, 40);
     this.cleanOutWashEnd.Name = "cleanOutWashEnd";
     this.cleanOutWashEnd.Size = new System.Drawing.Size(72, 21);
     this.cleanOutWashEnd.TabIndex = 4;
     this.cleanOutWashEnd.Text = "00:00:00";
     //
     // cleanOutWashBegin
     //
     this.cleanOutWashBegin.AutoSize = true;
     this.cleanOutWashBegin.BackColor = System.Drawing.Color.Transparent;
     this.cleanOutWashBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cleanOutWashBegin.Location = new System.Drawing.Point(178, 7);
     this.cleanOutWashBegin.Name = "cleanOutWashBegin";
     this.cleanOutWashBegin.Size = new System.Drawing.Size(72, 21);
     this.cleanOutWashBegin.TabIndex = 3;
     this.cleanOutWashBegin.Text = "00:00:00";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(95, 39);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 21);
     this.label10.TabIndex = 2;
     this.label10.Text = "次洗结束:";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(95, 7);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(90, 21);
     this.label9.TabIndex = 1;
     this.label9.Text = "次洗开始:";
     //
     // cleanOutWashTime
     //
     this.cleanOutWashTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.cleanOutWashTime.Location = new System.Drawing.Point(341, 22);
     this.cleanOutWashTime.Name = "cleanOutWashTime";
     this.cleanOutWashTime.Size = new System.Drawing.Size(87, 29);
     this.cleanOutWashTime.TabIndex = 0;
     this.cleanOutWashTime.Values.Text = "00:00:00";
     //
     // cleanOutWashIsPass
     //
     this.cleanOutWashIsPass.Location = new System.Drawing.Point(24, 8);
     this.cleanOutWashIsPass.Name = "cleanOutWashIsPass";
     this.cleanOutWashIsPass.Size = new System.Drawing.Size(54, 50);
     this.cleanOutWashIsPass.TabIndex = 0;
     this.cleanOutWashIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.cleanOutWashIsPass.Values.Text = "";
     //
     // enzymeWashGroBox
     //
     this.enzymeWashGroBox.CaptionOverlap = 0.8D;
     this.enzymeWashGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.enzymeWashGroBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.enzymeWashGroBox.Location = new System.Drawing.Point(16, 117);
     this.enzymeWashGroBox.Name = "enzymeWashGroBox";
     //
     // enzymeWashGroBox.Panel
     //
     this.enzymeWashGroBox.Panel.Controls.Add(this.enzymeWashEnd);
     this.enzymeWashGroBox.Panel.Controls.Add(this.enzymeWashBegin);
     this.enzymeWashGroBox.Panel.Controls.Add(this.label4);
     this.enzymeWashGroBox.Panel.Controls.Add(this.label3);
     this.enzymeWashGroBox.Panel.Controls.Add(this.enzymeWashTime);
     this.enzymeWashGroBox.Panel.Controls.Add(this.enzymeWashIsPass);
     this.enzymeWashGroBox.Size = new System.Drawing.Size(435, 95);
     this.enzymeWashGroBox.StateCommon.Border.Color1 = System.Drawing.Color.MediumSeaGreen;
     this.enzymeWashGroBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.enzymeWashGroBox.StateCommon.Border.Rounding = 4;
     this.enzymeWashGroBox.StateCommon.Border.Width = 5;
     this.enzymeWashGroBox.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.enzymeWashGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.enzymeWashGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.enzymeWashGroBox.TabIndex = 0;
     this.enzymeWashGroBox.Text = "酶洗";
     this.enzymeWashGroBox.Values.Heading = "酶洗";
     //
     // enzymeWashEnd
     //
     this.enzymeWashEnd.AutoSize = true;
     this.enzymeWashEnd.BackColor = System.Drawing.Color.Transparent;
     this.enzymeWashEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.enzymeWashEnd.Location = new System.Drawing.Point(176, 40);
     this.enzymeWashEnd.Name = "enzymeWashEnd";
     this.enzymeWashEnd.Size = new System.Drawing.Size(72, 21);
     this.enzymeWashEnd.TabIndex = 3;
     this.enzymeWashEnd.Text = "00:00:00";
     //
     // enzymeWashBegin
     //
     this.enzymeWashBegin.AutoSize = true;
     this.enzymeWashBegin.BackColor = System.Drawing.Color.Transparent;
     this.enzymeWashBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.enzymeWashBegin.Location = new System.Drawing.Point(176, 8);
     this.enzymeWashBegin.Name = "enzymeWashBegin";
     this.enzymeWashBegin.Size = new System.Drawing.Size(72, 21);
     this.enzymeWashBegin.TabIndex = 2;
     this.enzymeWashBegin.Text = "00:00:00";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(95, 40);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(90, 21);
     this.label4.TabIndex = 1;
     this.label4.Text = "酶洗结束:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(95, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(90, 21);
     this.label3.TabIndex = 1;
     this.label3.Text = "酶洗开始:";
     //
     // enzymeWashTime
     //
     this.enzymeWashTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.enzymeWashTime.Location = new System.Drawing.Point(341, 22);
     this.enzymeWashTime.Name = "enzymeWashTime";
     this.enzymeWashTime.Size = new System.Drawing.Size(87, 29);
     this.enzymeWashTime.TabIndex = 0;
     this.enzymeWashTime.Values.Text = "00:00:00";
     //
     // enzymeWashIsPass
     //
     this.enzymeWashIsPass.Location = new System.Drawing.Point(22, 7);
     this.enzymeWashIsPass.Name = "enzymeWashIsPass";
     this.enzymeWashIsPass.Size = new System.Drawing.Size(54, 50);
     this.enzymeWashIsPass.TabIndex = 0;
     this.enzymeWashIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.enzymeWashIsPass.Values.Text = "";
     //
     // firstWashGroBox
     //
     this.firstWashGroBox.CaptionOverlap = 0.8D;
     this.firstWashGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.firstWashGroBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.firstWashGroBox.Location = new System.Drawing.Point(518, 3);
     this.firstWashGroBox.Name = "firstWashGroBox";
     //
     // firstWashGroBox.Panel
     //
     this.firstWashGroBox.Panel.Controls.Add(this.firstWashEnd);
     this.firstWashGroBox.Panel.Controls.Add(this.firstWashBegin);
     this.firstWashGroBox.Panel.Controls.Add(this.label8);
     this.firstWashGroBox.Panel.Controls.Add(this.label7);
     this.firstWashGroBox.Panel.Controls.Add(this.firstWashTime);
     this.firstWashGroBox.Panel.Controls.Add(this.firstWashIsPss);
     this.firstWashGroBox.Size = new System.Drawing.Size(435, 100);
     this.firstWashGroBox.StateCommon.Border.Color1 = System.Drawing.Color.MediumSeaGreen;
     this.firstWashGroBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.firstWashGroBox.StateCommon.Border.Rounding = 4;
     this.firstWashGroBox.StateCommon.Border.Width = 5;
     this.firstWashGroBox.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.firstWashGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.firstWashGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.firstWashGroBox.TabIndex = 0;
     this.firstWashGroBox.Text = "初洗";
     this.firstWashGroBox.Values.Heading = "初洗";
     //
     // firstWashEnd
     //
     this.firstWashEnd.AutoSize = true;
     this.firstWashEnd.BackColor = System.Drawing.Color.Transparent;
     this.firstWashEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.firstWashEnd.Location = new System.Drawing.Point(180, 43);
     this.firstWashEnd.Name = "firstWashEnd";
     this.firstWashEnd.Size = new System.Drawing.Size(72, 21);
     this.firstWashEnd.TabIndex = 3;
     this.firstWashEnd.Text = "00:00:00";
     //
     // firstWashBegin
     //
     this.firstWashBegin.AutoSize = true;
     this.firstWashBegin.BackColor = System.Drawing.Color.Transparent;
     this.firstWashBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.firstWashBegin.Location = new System.Drawing.Point(180, 11);
     this.firstWashBegin.Name = "firstWashBegin";
     this.firstWashBegin.Size = new System.Drawing.Size(72, 21);
     this.firstWashBegin.TabIndex = 2;
     this.firstWashBegin.Text = "00:00:00";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(97, 43);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(90, 21);
     this.label8.TabIndex = 1;
     this.label8.Text = "初洗结束:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(97, 11);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(90, 21);
     this.label7.TabIndex = 1;
     this.label7.Text = "初洗开始:";
     //
     // firstWashTime
     //
     this.firstWashTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.firstWashTime.Location = new System.Drawing.Point(341, 21);
     this.firstWashTime.Name = "firstWashTime";
     this.firstWashTime.Size = new System.Drawing.Size(87, 29);
     this.firstWashTime.TabIndex = 0;
     this.firstWashTime.Values.Text = "00:00:00";
     //
     // firstWashIsPss
     //
     this.firstWashIsPss.Location = new System.Drawing.Point(24, 11);
     this.firstWashIsPss.Name = "firstWashIsPss";
     this.firstWashIsPss.Size = new System.Drawing.Size(54, 50);
     this.firstWashIsPss.TabIndex = 0;
     this.firstWashIsPss.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.firstWashIsPss.Values.Text = "";
     //
     // manualWashGroBox
     //
     this.manualWashGroBox.CaptionOverlap = 0.8D;
     this.manualWashGroBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.manualWashGroBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.manualWashGroBox.Location = new System.Drawing.Point(16, 3);
     this.manualWashGroBox.Name = "manualWashGroBox";
     //
     // manualWashGroBox.Panel
     //
     this.manualWashGroBox.Panel.Controls.Add(this.manualWashEnd);
     this.manualWashGroBox.Panel.Controls.Add(this.manualWashBegin);
     this.manualWashGroBox.Panel.Controls.Add(this.label2);
     this.manualWashGroBox.Panel.Controls.Add(this.label1);
     this.manualWashGroBox.Panel.Controls.Add(this.manualWashTime);
     this.manualWashGroBox.Panel.Controls.Add(this.labIsPass);
     this.manualWashGroBox.Size = new System.Drawing.Size(435, 100);
     this.manualWashGroBox.StateCommon.Border.Color1 = System.Drawing.Color.MediumSeaGreen;
     this.manualWashGroBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.manualWashGroBox.StateCommon.Border.Rounding = 4;
     this.manualWashGroBox.StateCommon.Border.Width = 5;
     this.manualWashGroBox.StateCommon.Content.ShortText.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.manualWashGroBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.manualWashGroBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.manualWashGroBox.TabIndex = 0;
     this.manualWashGroBox.Text = "刷洗";
     this.manualWashGroBox.Values.Heading = "刷洗";
     //
     // manualWashEnd
     //
     this.manualWashEnd.AutoSize = true;
     this.manualWashEnd.BackColor = System.Drawing.Color.Transparent;
     this.manualWashEnd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.manualWashEnd.Location = new System.Drawing.Point(176, 42);
     this.manualWashEnd.Name = "manualWashEnd";
     this.manualWashEnd.Size = new System.Drawing.Size(72, 21);
     this.manualWashEnd.TabIndex = 3;
     this.manualWashEnd.Text = "00:00:00";
     //
     // manualWashBegin
     //
     this.manualWashBegin.AutoSize = true;
     this.manualWashBegin.BackColor = System.Drawing.Color.Transparent;
     this.manualWashBegin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.manualWashBegin.Location = new System.Drawing.Point(176, 11);
     this.manualWashBegin.Name = "manualWashBegin";
     this.manualWashBegin.Size = new System.Drawing.Size(72, 21);
     this.manualWashBegin.TabIndex = 2;
     this.manualWashBegin.Text = "00:00:00";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(95, 43);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(90, 21);
     this.label2.TabIndex = 1;
     this.label2.Text = "刷洗结束:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(95, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(90, 21);
     this.label1.TabIndex = 1;
     this.label1.Text = "刷洗开始:";
     //
     // manualWashTime
     //
     this.manualWashTime.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitlePanel;
     this.manualWashTime.Location = new System.Drawing.Point(345, 21);
     this.manualWashTime.Name = "manualWashTime";
     this.manualWashTime.Size = new System.Drawing.Size(87, 29);
     this.manualWashTime.TabIndex = 0;
     this.manualWashTime.Values.Text = "00:00:00";
     //
     // labIsPass
     //
     this.labIsPass.Location = new System.Drawing.Point(22, 11);
     this.labIsPass.Name = "labIsPass";
     this.labIsPass.Size = new System.Drawing.Size(54, 50);
     this.labIsPass.TabIndex = 0;
     this.labIsPass.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.labIsPass.Values.Text = "";
     //
     // basicMesGrouBox
     //
     this.basicMesGrouBox.CaptionOverlap = 0D;
     this.basicMesGrouBox.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.basicMesGrouBox.Dock = System.Windows.Forms.DockStyle.Top;
     this.basicMesGrouBox.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ButtonInputControl;
     this.basicMesGrouBox.GroupBorderStyle = ComponentFactory.Krypton.Toolkit.PaletteBorderStyle.HeaderPrimary;
     this.basicMesGrouBox.Location = new System.Drawing.Point(0, 0);
     this.basicMesGrouBox.Name = "basicMesGrouBox";
     //
     // basicMesGrouBox.Panel
     //
     this.basicMesGrouBox.Panel.Controls.Add(this.txtWasherName);
     this.basicMesGrouBox.Panel.Controls.Add(this.txtWasherNo);
     this.basicMesGrouBox.Panel.Controls.Add(this.txtEndoscopeSIM);
     this.basicMesGrouBox.Panel.Controls.Add(this.txtEndoscopeNo);
     this.basicMesGrouBox.Panel.Controls.Add(this.label24);
     this.basicMesGrouBox.Panel.Controls.Add(this.label13);
     this.basicMesGrouBox.Panel.Controls.Add(this.isVoice);
     this.basicMesGrouBox.Panel.Controls.Add(this.label23);
     this.basicMesGrouBox.Panel.Controls.Add(this.label14);
     this.basicMesGrouBox.Size = new System.Drawing.Size(998, 54);
     this.basicMesGrouBox.StateCommon.Border.Color1 = System.Drawing.SystemColors.AppWorkspace;
     this.basicMesGrouBox.StateCommon.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.basicMesGrouBox.StateCommon.Border.Rounding = 4;
     this.basicMesGrouBox.StateCommon.Border.Width = 4;
     this.basicMesGrouBox.StateNormal.Border.Color1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.basicMesGrouBox.StateNormal.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.basicMesGrouBox.TabIndex = 0;
     this.basicMesGrouBox.Values.Heading = "";
     //
     // txtWasherName
     //
     this.txtWasherName.Location = new System.Drawing.Point(768, 11);
     this.txtWasherName.Name = "txtWasherName";
     this.txtWasherName.Size = new System.Drawing.Size(115, 26);
     this.txtWasherName.StateActive.Border.Color1 = System.Drawing.Color.Silver;
     this.txtWasherName.StateActive.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.txtWasherName.StateActive.Border.Rounding = 2;
     this.txtWasherName.StateActive.Border.Width = 2;
     this.txtWasherName.StateCommon.Content.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtWasherName.TabIndex = 8;
     this.txtWasherName.Enter += new System.EventHandler(this.txtEndoscopeNo_Enter);
     this.txtWasherName.Leave += new System.EventHandler(this.txtEndoscopeNo_Leave);
     //
     // txtWasherNo
     //
     this.txtWasherNo.Location = new System.Drawing.Point(545, 11);
     this.txtWasherNo.Name = "txtWasherNo";
     this.txtWasherNo.Size = new System.Drawing.Size(115, 26);
     this.txtWasherNo.StateActive.Border.Color1 = System.Drawing.Color.Silver;
     this.txtWasherNo.StateActive.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.txtWasherNo.StateActive.Border.Rounding = 2;
     this.txtWasherNo.StateActive.Border.Width = 2;
     this.txtWasherNo.StateCommon.Content.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtWasherNo.TabIndex = 8;
     this.txtWasherNo.Enter += new System.EventHandler(this.txtEndoscopeNo_Enter);
     this.txtWasherNo.Leave += new System.EventHandler(this.txtEndoscopeNo_Leave);
     //
     // txtEndoscopeSIM
     //
     this.txtEndoscopeSIM.Location = new System.Drawing.Point(310, 10);
     this.txtEndoscopeSIM.Name = "txtEndoscopeSIM";
     this.txtEndoscopeSIM.Size = new System.Drawing.Size(115, 26);
     this.txtEndoscopeSIM.StateActive.Border.Color1 = System.Drawing.Color.Silver;
     this.txtEndoscopeSIM.StateActive.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.txtEndoscopeSIM.StateActive.Border.Rounding = 2;
     this.txtEndoscopeSIM.StateActive.Border.Width = 2;
     this.txtEndoscopeSIM.StateCommon.Content.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEndoscopeSIM.TabIndex = 8;
     this.txtEndoscopeSIM.Enter += new System.EventHandler(this.txtEndoscopeNo_Enter);
     this.txtEndoscopeSIM.Leave += new System.EventHandler(this.txtEndoscopeNo_Leave);
     //
     // txtEndoscopeNo
     //
     this.txtEndoscopeNo.Location = new System.Drawing.Point(91, 10);
     this.txtEndoscopeNo.Name = "txtEndoscopeNo";
     this.txtEndoscopeNo.Size = new System.Drawing.Size(115, 26);
     this.txtEndoscopeNo.StateActive.Border.Color1 = System.Drawing.Color.Silver;
     this.txtEndoscopeNo.StateActive.Border.DrawBorders = ((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders)((((ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Top | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Bottom)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Left)
                 | ComponentFactory.Krypton.Toolkit.PaletteDrawBorders.Right)));
     this.txtEndoscopeNo.StateActive.Border.Rounding = 2;
     this.txtEndoscopeNo.StateActive.Border.Width = 2;
     this.txtEndoscopeNo.StateCommon.Content.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEndoscopeNo.TabIndex = 8;
     this.txtEndoscopeNo.Enter += new System.EventHandler(this.txtEndoscopeNo_Enter);
     this.txtEndoscopeNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtEndoscopeNo_KeyDown);
     this.txtEndoscopeNo.Leave += new System.EventHandler(this.txtEndoscopeNo_Leave);
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.BackColor = System.Drawing.Color.Transparent;
     this.label24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label24.ForeColor = System.Drawing.Color.Green;
     this.label24.Location = new System.Drawing.Point(684, 11);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(90, 21);
     this.label24.TabIndex = 7;
     this.label24.Text = "清洗员名:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.ForeColor = System.Drawing.Color.Green;
     this.label13.Location = new System.Drawing.Point(6, 10);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(90, 21);
     this.label13.TabIndex = 4;
     this.label13.Text = "内镜编号:";
     //
     // isVoice
     //
     this.isVoice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.isVoice.Checked = true;
     this.isVoice.CheckState = System.Windows.Forms.CheckState.Checked;
     this.isVoice.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.isVoice.Location = new System.Drawing.Point(905, 12);
     this.isVoice.Name = "isVoice";
     this.isVoice.Size = new System.Drawing.Size(77, 20);
     this.isVoice.TabIndex = 2;
     this.isVoice.Text = "开启声音";
     this.isVoice.Values.Text = "开启声音";
     this.isVoice.CheckedChanged += new System.EventHandler(this.IsVoice_CheckedChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.BackColor = System.Drawing.Color.Transparent;
     this.label23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label23.ForeColor = System.Drawing.Color.Green;
     this.label23.Location = new System.Drawing.Point(444, 11);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(106, 21);
     this.label23.TabIndex = 6;
     this.label23.Text = "清洗员编号:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.ForeColor = System.Drawing.Color.Green;
     this.label14.Location = new System.Drawing.Point(225, 10);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(90, 21);
     this.label14.TabIndex = 5;
     this.label14.Text = "内镜卡号:";
     //
     // kryptonLabel9
     //
     this.kryptonLabel9.Location = new System.Drawing.Point(0, 0);
     this.kryptonLabel9.Name = "kryptonLabel9";
     this.kryptonLabel9.Size = new System.Drawing.Size(90, 25);
     this.kryptonLabel9.TabIndex = 0;
     //
     // kryptonLabel11
     //
     this.kryptonLabel11.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
     this.kryptonLabel11.Location = new System.Drawing.Point(103, 34);
     this.kryptonLabel11.Name = "kryptonLabel11";
     this.kryptonLabel11.Size = new System.Drawing.Size(73, 20);
     this.kryptonLabel11.TabIndex = 0;
     this.kryptonLabel11.Values.Text = "消毒结束:";
     //
     // kryptonGroupBox1
     //
     this.kryptonGroupBox1.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.kryptonGroupBox1.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.kryptonGroupBox1.Location = new System.Drawing.Point(16, 14);
     this.kryptonGroupBox1.Name = "kryptonGroupBox1";
     //
     // kryptonGroupBox1.Panel
     //
     this.kryptonGroupBox1.Panel.Controls.Add(this.kryptonGroupBox2);
     this.kryptonGroupBox1.Panel.Controls.Add(this.label15);
     this.kryptonGroupBox1.Panel.Controls.Add(this.label16);
     this.kryptonGroupBox1.Size = new System.Drawing.Size(475, 100);
     this.kryptonGroupBox1.TabIndex = 2;
     this.kryptonGroupBox1.Text = "消毒";
     this.kryptonGroupBox1.Values.Heading = "消毒";
     //
     // kryptonGroupBox2
     //
     this.kryptonGroupBox2.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.kryptonGroupBox2.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.kryptonGroupBox2.Location = new System.Drawing.Point(511, 14);
     this.kryptonGroupBox2.Name = "kryptonGroupBox2";
     //
     // kryptonGroupBox2.Panel
     //
     this.kryptonGroupBox2.Panel.Controls.Add(this.label17);
     this.kryptonGroupBox2.Panel.Controls.Add(this.label18);
     this.kryptonGroupBox2.Panel.Controls.Add(this.label19);
     this.kryptonGroupBox2.Panel.Controls.Add(this.label20);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kryptonLabel7);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kryptonLabel8);
     this.kryptonGroupBox2.Size = new System.Drawing.Size(475, 100);
     this.kryptonGroupBox2.TabIndex = 1;
     this.kryptonGroupBox2.Text = "末洗";
     this.kryptonGroupBox2.Values.Heading = "末洗";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label17.Location = new System.Drawing.Point(199, 40);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(163, 21);
     this.label17.TabIndex = 3;
     this.label17.Text = "2012/01/01 00:10:00";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label18.Location = new System.Drawing.Point(199, 11);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(163, 21);
     this.label18.TabIndex = 2;
     this.label18.Text = "2012/01/01 00:10:00";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label19.Location = new System.Drawing.Point(97, 36);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(90, 21);
     this.label19.TabIndex = 1;
     this.label19.Text = "末洗结束:";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label20.Location = new System.Drawing.Point(97, 7);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 21);
     this.label20.TabIndex = 1;
     this.label20.Text = "末洗开始:";
     //
     // kryptonLabel7
     //
     this.kryptonLabel7.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.kryptonLabel7.Location = new System.Drawing.Point(381, 19);
     this.kryptonLabel7.Name = "kryptonLabel7";
     this.kryptonLabel7.Size = new System.Drawing.Size(87, 29);
     this.kryptonLabel7.TabIndex = 0;
     this.kryptonLabel7.Values.Text = "00:00:00";
     //
     // kryptonLabel8
     //
     this.kryptonLabel8.Location = new System.Drawing.Point(22, 9);
     this.kryptonLabel8.Name = "kryptonLabel8";
     this.kryptonLabel8.Size = new System.Drawing.Size(54, 50);
     this.kryptonLabel8.TabIndex = 0;
     this.kryptonLabel8.Values.Image = global::ProxyClient.Properties.Resources.right;
     this.kryptonLabel8.Values.Text = "";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label15.Location = new System.Drawing.Point(97, 40);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(90, 21);
     this.label15.TabIndex = 1;
     this.label15.Text = "消毒结束:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label16.Location = new System.Drawing.Point(97, 10);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(90, 21);
     this.label16.TabIndex = 1;
     this.label16.Text = "消毒开始:";
     //
     // kryptonGroupBox4
     //
     this.kryptonGroupBox4.CaptionStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.kryptonGroupBox4.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlRibbon;
     this.kryptonGroupBox4.Location = new System.Drawing.Point(511, 3);
     this.kryptonGroupBox4.Name = "kryptonGroupBox4";
     //
     // kryptonGroupBox4.Panel
     //
     this.kryptonGroupBox4.Panel.Controls.Add(this.label25);
     this.kryptonGroupBox4.Panel.Controls.Add(this.label26);
     this.kryptonGroupBox4.Size = new System.Drawing.Size(475, 100);
     this.kryptonGroupBox4.TabIndex = 1;
     this.kryptonGroupBox4.Text = "末洗";
     this.kryptonGroupBox4.Values.Heading = "末洗";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.BackColor = System.Drawing.Color.Transparent;
     this.label25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label25.Location = new System.Drawing.Point(97, 36);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(90, 21);
     this.label25.TabIndex = 1;
     this.label25.Text = "末洗结束:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.BackColor = System.Drawing.Color.Transparent;
     this.label26.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label26.Location = new System.Drawing.Point(97, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(90, 21);
     this.label26.TabIndex = 1;
     this.label26.Text = "末洗开始:";
     //
     // CleanTempMsg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1000, 788);
     this.Controls.Add(this.proxyContentPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "CleanTempMsg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "内镜清洗信息";
     ((System.ComponentModel.ISupportInitialize)(this.proxyContentPanel)).EndInit();
     this.proxyContentPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.proxyGroupPanel.Panel)).EndInit();
     this.proxyGroupPanel.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.proxyGroupPanel)).EndInit();
     this.proxyGroupPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.headerContent)).EndInit();
     this.headerContent.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MainContent)).EndInit();
     this.MainContent.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.secGroBox.Panel)).EndInit();
     this.secGroBox.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.secGroBox)).EndInit();
     this.secGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5.Panel)).EndInit();
     this.kryptonGroupBox5.Panel.ResumeLayout(false);
     this.kryptonGroupBox5.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5)).EndInit();
     this.kryptonGroupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6.Panel)).EndInit();
     this.kryptonGroupBox6.Panel.ResumeLayout(false);
     this.kryptonGroupBox6.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6)).EndInit();
     this.kryptonGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cleanGroBox.Panel)).EndInit();
     this.cleanGroBox.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cleanGroBox)).EndInit();
     this.cleanGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dipInGroBox.Panel)).EndInit();
     this.dipInGroBox.Panel.ResumeLayout(false);
     this.dipInGroBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dipInGroBox)).EndInit();
     this.dipInGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lastWashGroBox.Panel)).EndInit();
     this.lastWashGroBox.Panel.ResumeLayout(false);
     this.lastWashGroBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lastWashGroBox)).EndInit();
     this.lastWashGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cleanOutWashGroBox.Panel)).EndInit();
     this.cleanOutWashGroBox.Panel.ResumeLayout(false);
     this.cleanOutWashGroBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cleanOutWashGroBox)).EndInit();
     this.cleanOutWashGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.enzymeWashGroBox.Panel)).EndInit();
     this.enzymeWashGroBox.Panel.ResumeLayout(false);
     this.enzymeWashGroBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.enzymeWashGroBox)).EndInit();
     this.enzymeWashGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.firstWashGroBox.Panel)).EndInit();
     this.firstWashGroBox.Panel.ResumeLayout(false);
     this.firstWashGroBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.firstWashGroBox)).EndInit();
     this.firstWashGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.manualWashGroBox.Panel)).EndInit();
     this.manualWashGroBox.Panel.ResumeLayout(false);
     this.manualWashGroBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.manualWashGroBox)).EndInit();
     this.manualWashGroBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.basicMesGrouBox.Panel)).EndInit();
     this.basicMesGrouBox.Panel.ResumeLayout(false);
     this.basicMesGrouBox.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.basicMesGrouBox)).EndInit();
     this.basicMesGrouBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).EndInit();
     this.kryptonGroupBox1.Panel.ResumeLayout(false);
     this.kryptonGroupBox1.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).EndInit();
     this.kryptonGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2.Panel)).EndInit();
     this.kryptonGroupBox2.Panel.ResumeLayout(false);
     this.kryptonGroupBox2.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2)).EndInit();
     this.kryptonGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4.Panel)).EndInit();
     this.kryptonGroupBox4.Panel.ResumeLayout(false);
     this.kryptonGroupBox4.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4)).EndInit();
     this.kryptonGroupBox4.ResumeLayout(false);
     this.ResumeLayout(false);
 }