// gets timeframe controls protected object[] GetTimeFrameOptions() { var cBoxTimeframe = new MetroComboBox { FormattingEnabled = true, ItemHeight = 23, Location = new System.Drawing.Point(85, 39), Name = "cBoxTimeframe", Size = new System.Drawing.Size(124, 29), TabIndex = 22, UseSelectable = true }; cBoxTimeframe.Items.AddRange(AbstractAPI.GetTimeframes()); var lblTimeframe = new MetroFramework.Controls.MetroLabel { AutoSize = true, Location = new System.Drawing.Point(0, 49), Name = "lblTimeframe", Size = new System.Drawing.Size(76, 19), TabIndex = 21, Text = "Timeframe:" }; return(new object[] { cBoxTimeframe, lblTimeframe }); }
void LoadMessages() { for ( int i = 0; i <= 10; i++ ) { Panel pn = new Panel(); MetroLink mlk = new MetroLink(); MetroLabel mlblDate = new MetroLabel(); MetroLabel mlblDesc = new MetroLabel(); // // panel Interno // pn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; pn.Controls.Add( mlblDesc ); pn.Controls.Add( mlblDate ); pn.Controls.Add( mlk ); this.flpanel_Mensajes.SetFlowBreak( pn, true ); pn.Location = new System.Drawing.Point( 3, 3 ); pn.Name = "panel_" + ( ( i < 10 ) ? "0" : "" ) + i; pn.Size = new System.Drawing.Size( 223, 95 ); pn.TabIndex = i + 1; // // Descripción // mlblDesc.FontSize = MetroFramework.MetroLabelSize.Small; mlblDesc.Location = new System.Drawing.Point( 3, 40 ); mlblDesc.Name = "metroLabel_" + ( ( i < 10 ) ? "0" : "" ) + i; mlblDesc.Size = new System.Drawing.Size( 215, 45 ); mlblDesc.TabIndex = 1; mlblDesc.Text = "Lorem Ipsum dolor sit amet siempre y cuando estemos todos unidos"; mlblDesc.WrapToLine = true; // // Nombre de la Persona // mlk.Location = new System.Drawing.Point( 3, 6 ); mlk.Name = "metroLink_" + ( ( i < 10 ) ? "0" : "" ) + i; mlk.Size = new System.Drawing.Size( 215, 14 ); mlk.TabIndex = 0; mlk.Text = "José Alejandro Vilchez M._" + i; mlk.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; mlk.UseSelectable = true; mlk.Click += LinkDinamic_Click; // // Fecha de enviado // mlblDate.FontSize = MetroFramework.MetroLabelSize.Small; mlblDate.FontWeight = MetroFramework.MetroLabelWeight.Regular; mlblDate.Location = new System.Drawing.Point( 3, 23 ); mlblDate.Name = "metroLabel_" + ( ( i < 10 ) ? "0" : "" ) + i; mlblDate.Size = new System.Drawing.Size( 215, 15 ); mlblDate.TabIndex = i; mlblDate.Text = DateTime.Now.ToString(); this.flpanel_Mensajes.Controls.Add( pn ); } }
//private MainForm mainForm; public SingleTextboxForm() { //this.mainForm = mainForm; InitializeComponent(); textBox = metroTextBox1; label = metroLabel1; btn = metroButton1; metroButton1.Click += MetroButton1_Click; }
public void ViewRecruiterInfoToSeeker(Recruiter rec, MetroFramework.Controls.MetroLabel name, MetroFramework.Controls.MetroLabel number) { var v = from r in db.TabRecruiters where r.uname == rec.Username select r; foreach (var re in v) { name.Text = re.fname + re.lname; number.Text = re.mobile; } }
public MetroPromptBox() { MetroSkinManager.ApplyMetroStyle(this); Size = DEFAULT_SIZE; Padding = new Padding(DEFAULT_SEPARATOR, 0, DEFAULT_SEPARATOR, DEFAULT_SEPARATOR); ControlBox = false; ShowInTaskbar = false; Resizable = false; DialogResult = DialogResult.None; m_buttonsPanel = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(m_buttonsPanel); m_buttonsPanel.Height = DEFAULT_BUTTON_HEIGHT + DEFAULT_SEPARATOR; m_buttonsPanel.Padding = new Padding(0, DEFAULT_SEPARATOR, 0, 0); m_buttonsPanel.Dock = DockStyle.Top; Controls.Add(m_buttonsPanel); MetroButton button = new MetroButton(); MetroSkinManager.ApplyMetroStyle(button); button.Text = "&OK"; button.Tag = DialogResult.OK; button.Dock = DockStyle.Left; button.Click += new EventHandler(button_Click); m_buttonsPanel.Controls.Add(button); button = new MetroButton(); MetroSkinManager.ApplyMetroStyle(button); button.Text = "&Cancel"; button.Tag = DialogResult.Cancel; button.Dock = DockStyle.Right; button.Click += new EventHandler(button_Click); m_buttonsPanel.Controls.Add(button); m_valueTextBox = new MetroTextBox(); MetroSkinManager.ApplyMetroStyle(m_valueTextBox); m_valueTextBox.Text = ""; m_valueTextBox.Dock = DockStyle.Top; Controls.Add(m_valueTextBox); m_messageLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(m_messageLabel); m_messageLabel.Text = ""; m_messageLabel.Dock = DockStyle.Top; Controls.Add(m_messageLabel); UpdateLayout(); }
private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MetroTextBox)); this.lnkClear = new MetroFramework.Controls.MetroLink(); this.lblSidelabel = new MetroFramework.Controls.MetroLabel(); this.SuspendLayout(); // // lnkClear // this.lnkClear.FontSize = MetroFramework.MetroLinkSize.Medium; this.lnkClear.FontWeight = MetroFramework.MetroLinkWeight.Regular; this.lnkClear.Image = ((System.Drawing.Image)(resources.GetObject("lnkClear.Image"))); this.lnkClear.ImageSize = 10; this.lnkClear.Location = new System.Drawing.Point(654, 96); this.lnkClear.Name = "lnkClear"; this.lnkClear.NoFocusImage = ((System.Drawing.Image)(resources.GetObject("lnkClear.NoFocusImage"))); this.lnkClear.Size = new System.Drawing.Size(12, 12); this.lnkClear.TabIndex = 2; this.lnkClear.UseSelectable = true; this.lnkClear.Click += new System.EventHandler(this.lnkClear_Click); // // lblSidelabel // this.lblSidelabel.BackColor = System.Drawing.Color.DarkSlateGray; this.lblSidelabel.FontSize = MetroFramework.MetroLabelSize.Small; this.lblSidelabel.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.lblSidelabel.ForeColor = System.Drawing.Color.White; this.lblSidelabel.Location = new System.Drawing.Point(0, 0); this.lblSidelabel.Name = "lblSidelabel"; this.lblSidelabel.Size = new System.Drawing.Size(35, 24); this.lblSidelabel.TabIndex = 0; this.lblSidelabel.Text = "USD"; this.lblSidelabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblSidelabel.UseCustomBackColor = true; this.lblSidelabel.UseCustomForeColor = true; // // MetroTextBox // this.Controls.Add(this.lblSidelabel); this.Controls.Add(this.lnkClear); this.ResumeLayout(false); }
private void AddLabels() { MetroFramework.Controls.MetroLabel column1Label = new MetroFramework.Controls.MetroLabel(); TableLayoutPanel.Controls.Add(column1Label); column1Label.TabIndex = 1; column1Label.Text = "Column 1"; // // column2Label // MetroFramework.Controls.MetroLabel column2Label = new MetroFramework.Controls.MetroLabel(); TableLayoutPanel.Controls.Add(column2Label); column2Label.TabIndex = 2; column2Label.Text = "Column 2"; // // column3Label // MetroFramework.Controls.MetroLabel column3Label = new MetroFramework.Controls.MetroLabel(); TableLayoutPanel.Controls.Add(column3Label); column3Label.TabIndex = 4; column3Label.Text = "?"; }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelSubType; this.comboBoxAircrafts = new System.Windows.Forms.ComboBox(); this.buttonOk = new System.Windows.Forms.Button(); this.buttonDelete = new System.Windows.Forms.Button(); labelSubType = new MetroFramework.Controls.MetroLabel(); this.SuspendLayout(); // // labelSubType // labelSubType.AutoSize = true; labelSubType.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelSubType.Location = new System.Drawing.Point(14, 63); labelSubType.Name = "labelSubType"; labelSubType.Size = new System.Drawing.Size(55, 19); labelSubType.TabIndex = 13; labelSubType.Text = "Aircraft:"; labelSubType.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // comboBoxAircrafts // this.comboBoxAircrafts.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxAircrafts.ForeColor = System.Drawing.Color.DimGray; this.comboBoxAircrafts.FormattingEnabled = true; this.comboBoxAircrafts.Location = new System.Drawing.Point(120, 63); this.comboBoxAircrafts.Name = "comboBoxAircrafts"; this.comboBoxAircrafts.Size = new System.Drawing.Size(236, 22); this.comboBoxAircrafts.TabIndex = 12; this.comboBoxAircrafts.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(190, 105); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 247; this.buttonOk.Text = "OK"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // buttonDelete // this.buttonDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonDelete.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonDelete.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonDelete.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonDelete.Location = new System.Drawing.Point(271, 105); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(85, 33); this.buttonDelete.TabIndex = 246; this.buttonDelete.Text = "Cancel"; this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click); // // AddAircraftPlanOpsForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(363, 150); this.Controls.Add(this.buttonOk); this.Controls.Add(this.buttonDelete); this.Controls.Add(labelSubType); this.Controls.Add(this.comboBoxAircrafts); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "AddAircraftPlanOpsForm"; this.Resizable = false; this.ShowIcon = false; this.Text = "Add Aircraft Plan Ops Form"; this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelDocumentType; MetroFramework.Controls.MetroLabel labelNumber; MetroFramework.Controls.MetroLabel labelTitle; MetroFramework.Controls.MetroLabel labelRemark; MetroFramework.Controls.MetroLabel labelNotifyRevision; MetroFramework.Controls.MetroLabel labelValidToRevision; MetroFramework.Controls.MetroLabel label2; MetroFramework.Controls.MetroLabel label1; MetroFramework.Controls.MetroLabel labelDescription; MetroFramework.Controls.MetroLabel labelLocation; this.comboBoxDocumentType = new System.Windows.Forms.ComboBox(); this.textBoxNumber = new MetroFramework.Controls.MetroTextBox(); this.labelFrom = new MetroFramework.Controls.MetroLabel(); this.comboBoxSupplier = new System.Windows.Forms.ComboBox(); this.textBoxReferenceNumber = new MetroFramework.Controls.MetroTextBox(); this.dateTimePickerReceiveMailDate = new System.Windows.Forms.DateTimePicker(); this.dateTimePickerCreateMailDate = new System.Windows.Forms.DateTimePicker(); this.textBoxTitle = new MetroFramework.Controls.MetroTextBox(); this.textBoxRemarks = new MetroFramework.Controls.MetroTextBox(); this.checkBoxRevisionPerformeUpTo = new System.Windows.Forms.CheckBox(); this.dateTimePickerRevisionPerformeUpTo = new System.Windows.Forms.DateTimePicker(); this.numericUpDownRevisionNotify = new System.Windows.Forms.NumericUpDown(); this.labelDepartment = new MetroFramework.Controls.MetroLabel(); this.comboBoxDepartment = new System.Windows.Forms.ComboBox(); this.labelResponsible = new MetroFramework.Controls.MetroLabel(); this.comboBoxOccupation = new System.Windows.Forms.ComboBox(); this.labelExecutor = new MetroFramework.Controls.MetroLabel(); this.comboBoxSpecialist = new System.Windows.Forms.ComboBox(); this.buttonClose = new System.Windows.Forms.Button(); this.buttonOk = new System.Windows.Forms.Button(); this.comboBoxDocumentClass = new System.Windows.Forms.ComboBox(); this.textBoxDescription = new MetroFramework.Controls.MetroTextBox(); this.label4 = new MetroFramework.Controls.MetroLabel(); this.comboBoxNomenclature = new System.Windows.Forms.ComboBox(); this.dictionaryComboBoxLocation = new CAS.UI.UIControls.Auxiliary.DictionaryComboBox(); this.fileControl = new CAS.UI.UIControls.Auxiliary.AttachedFileControl(); labelDocumentType = new MetroFramework.Controls.MetroLabel(); labelNumber = new MetroFramework.Controls.MetroLabel(); labelTitle = new MetroFramework.Controls.MetroLabel(); labelRemark = new MetroFramework.Controls.MetroLabel(); labelNotifyRevision = new MetroFramework.Controls.MetroLabel(); labelValidToRevision = new MetroFramework.Controls.MetroLabel(); label2 = new MetroFramework.Controls.MetroLabel(); label1 = new MetroFramework.Controls.MetroLabel(); labelDescription = new MetroFramework.Controls.MetroLabel(); labelLocation = new MetroFramework.Controls.MetroLabel(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownRevisionNotify)).BeginInit(); this.SuspendLayout(); // // labelDocumentType // labelDocumentType.AutoSize = true; labelDocumentType.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelDocumentType.Location = new System.Drawing.Point(18, 102); labelDocumentType.Name = "labelDocumentType"; labelDocumentType.Size = new System.Drawing.Size(69, 19); labelDocumentType.TabIndex = 19; labelDocumentType.Text = "Doc. Type:"; labelDocumentType.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelNumber // labelNumber.AutoSize = true; labelNumber.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelNumber.Location = new System.Drawing.Point(18, 154); labelNumber.Name = "labelNumber"; labelNumber.Size = new System.Drawing.Size(28, 19); labelNumber.TabIndex = 26; labelNumber.Text = "№:"; labelNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelTitle // labelTitle.AutoSize = true; labelTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelTitle.Location = new System.Drawing.Point(18, 208); labelTitle.Name = "labelTitle"; labelTitle.Size = new System.Drawing.Size(36, 19); labelTitle.TabIndex = 209; labelTitle.Text = "Title:"; labelTitle.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelRemark // labelRemark.AutoSize = true; labelRemark.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelRemark.Location = new System.Drawing.Point(18, 383); labelRemark.Name = "labelRemark"; labelRemark.Size = new System.Drawing.Size(57, 19); labelRemark.TabIndex = 212; labelRemark.Text = "Remark:"; labelRemark.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelNotifyRevision // labelNotifyRevision.AutoSize = true; labelNotifyRevision.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelNotifyRevision.Location = new System.Drawing.Point(369, 258); labelNotifyRevision.Name = "labelNotifyRevision"; labelNotifyRevision.Size = new System.Drawing.Size(85, 19); labelNotifyRevision.TabIndex = 218; labelNotifyRevision.Text = "Notify (days):"; labelNotifyRevision.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelValidToRevision // labelValidToRevision.AutoSize = true; labelValidToRevision.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelValidToRevision.Location = new System.Drawing.Point(369, 231); labelValidToRevision.Name = "labelValidToRevision"; labelValidToRevision.Size = new System.Drawing.Size(98, 19); labelValidToRevision.TabIndex = 217; labelValidToRevision.Text = "Perform Up To:"; labelValidToRevision.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label2 // label2.AutoSize = true; label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label2.Location = new System.Drawing.Point(369, 152); label2.Name = "label2"; label2.Size = new System.Drawing.Size(90, 19); label2.TabIndex = 230; label2.Text = "Reference №:"; label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label1 // label1.AutoSize = true; label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label1.Location = new System.Drawing.Point(18, 74); label1.Name = "label1"; label1.Size = new System.Drawing.Size(71, 19); label1.TabIndex = 232; label1.Text = "Doc. Class:"; label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelDescription // labelDescription.AutoSize = true; labelDescription.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelDescription.Location = new System.Drawing.Point(17, 294); labelDescription.Name = "labelDescription"; labelDescription.Size = new System.Drawing.Size(77, 19); labelDescription.TabIndex = 233; labelDescription.Text = "Description:"; labelDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelLocation // labelLocation.AutoSize = true; labelLocation.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelLocation.Location = new System.Drawing.Point(369, 393); labelLocation.Name = "labelLocation"; labelLocation.Size = new System.Drawing.Size(61, 19); labelLocation.TabIndex = 238; labelLocation.Text = "Location:"; labelLocation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // comboBoxDocumentType // this.comboBoxDocumentType.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxDocumentType.ForeColor = System.Drawing.Color.DimGray; this.comboBoxDocumentType.FormattingEnabled = true; this.comboBoxDocumentType.Location = new System.Drawing.Point(113, 99); this.comboBoxDocumentType.Name = "comboBoxDocumentType"; this.comboBoxDocumentType.Size = new System.Drawing.Size(250, 22); this.comboBoxDocumentType.TabIndex = 18; this.comboBoxDocumentType.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // textBoxNumber // // // // this.textBoxNumber.CustomButton.Image = null; this.textBoxNumber.CustomButton.Location = new System.Drawing.Point(232, 2); this.textBoxNumber.CustomButton.Name = ""; this.textBoxNumber.CustomButton.Size = new System.Drawing.Size(15, 15); this.textBoxNumber.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxNumber.CustomButton.TabIndex = 1; this.textBoxNumber.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxNumber.CustomButton.UseSelectable = true; this.textBoxNumber.CustomButton.Visible = false; this.textBoxNumber.ForeColor = System.Drawing.Color.DimGray; this.textBoxNumber.Lines = new string[0]; this.textBoxNumber.Location = new System.Drawing.Point(113, 152); this.textBoxNumber.MaxLength = 32767; this.textBoxNumber.Name = "textBoxNumber"; this.textBoxNumber.PasswordChar = '\0'; this.textBoxNumber.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxNumber.SelectedText = ""; this.textBoxNumber.SelectionLength = 0; this.textBoxNumber.SelectionStart = 0; this.textBoxNumber.ShortcutsEnabled = true; this.textBoxNumber.Size = new System.Drawing.Size(250, 20); this.textBoxNumber.TabIndex = 27; this.textBoxNumber.UseSelectable = true; this.textBoxNumber.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxNumber.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // labelFrom // this.labelFrom.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.labelFrom.Location = new System.Drawing.Point(18, 125); this.labelFrom.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelFrom.Name = "labelFrom"; this.labelFrom.Size = new System.Drawing.Size(72, 25); this.labelFrom.TabIndex = 203; this.labelFrom.Text = "From:"; this.labelFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxSupplier // this.comboBoxSupplier.BackColor = System.Drawing.Color.White; this.comboBoxSupplier.Enabled = false; this.comboBoxSupplier.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxSupplier.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxSupplier.Location = new System.Drawing.Point(113, 125); this.comboBoxSupplier.Name = "comboBoxSupplier"; this.comboBoxSupplier.Size = new System.Drawing.Size(250, 22); this.comboBoxSupplier.TabIndex = 202; this.comboBoxSupplier.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // textBoxReferenceNumber // // // // this.textBoxReferenceNumber.CustomButton.Image = null; this.textBoxReferenceNumber.CustomButton.Location = new System.Drawing.Point(221, 2); this.textBoxReferenceNumber.CustomButton.Name = ""; this.textBoxReferenceNumber.CustomButton.Size = new System.Drawing.Size(15, 15); this.textBoxReferenceNumber.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxReferenceNumber.CustomButton.TabIndex = 1; this.textBoxReferenceNumber.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxReferenceNumber.CustomButton.UseSelectable = true; this.textBoxReferenceNumber.CustomButton.Visible = false; this.textBoxReferenceNumber.ForeColor = System.Drawing.Color.DimGray; this.textBoxReferenceNumber.Lines = new string[0]; this.textBoxReferenceNumber.Location = new System.Drawing.Point(467, 152); this.textBoxReferenceNumber.MaxLength = 32767; this.textBoxReferenceNumber.Name = "textBoxReferenceNumber"; this.textBoxReferenceNumber.PasswordChar = '\0'; this.textBoxReferenceNumber.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxReferenceNumber.SelectedText = ""; this.textBoxReferenceNumber.SelectionLength = 0; this.textBoxReferenceNumber.SelectionStart = 0; this.textBoxReferenceNumber.ShortcutsEnabled = true; this.textBoxReferenceNumber.Size = new System.Drawing.Size(239, 20); this.textBoxReferenceNumber.TabIndex = 205; this.textBoxReferenceNumber.UseSelectable = true; this.textBoxReferenceNumber.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxReferenceNumber.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // dateTimePickerReceiveMailDate // this.dateTimePickerReceiveMailDate.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerReceiveMailDate.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerReceiveMailDate.Location = new System.Drawing.Point(113, 178); this.dateTimePickerReceiveMailDate.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerReceiveMailDate.Name = "dateTimePickerReceiveMailDate"; this.dateTimePickerReceiveMailDate.Size = new System.Drawing.Size(250, 22); this.dateTimePickerReceiveMailDate.TabIndex = 206; // // dateTimePickerCreateMailDate // this.dateTimePickerCreateMailDate.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerCreateMailDate.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerCreateMailDate.Location = new System.Drawing.Point(467, 178); this.dateTimePickerCreateMailDate.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerCreateMailDate.Name = "dateTimePickerCreateMailDate"; this.dateTimePickerCreateMailDate.Size = new System.Drawing.Size(239, 22); this.dateTimePickerCreateMailDate.TabIndex = 207; // // textBoxTitle // // // // this.textBoxTitle.CustomButton.Image = null; this.textBoxTitle.CustomButton.Location = new System.Drawing.Point(172, 2); this.textBoxTitle.CustomButton.Name = ""; this.textBoxTitle.CustomButton.Size = new System.Drawing.Size(75, 75); this.textBoxTitle.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxTitle.CustomButton.TabIndex = 1; this.textBoxTitle.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxTitle.CustomButton.UseSelectable = true; this.textBoxTitle.CustomButton.Visible = false; this.textBoxTitle.ForeColor = System.Drawing.Color.DimGray; this.textBoxTitle.Lines = new string[0]; this.textBoxTitle.Location = new System.Drawing.Point(113, 206); this.textBoxTitle.MaxLength = 32767; this.textBoxTitle.Multiline = true; this.textBoxTitle.Name = "textBoxTitle"; this.textBoxTitle.PasswordChar = '\0'; this.textBoxTitle.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxTitle.SelectedText = ""; this.textBoxTitle.SelectionLength = 0; this.textBoxTitle.SelectionStart = 0; this.textBoxTitle.ShortcutsEnabled = true; this.textBoxTitle.Size = new System.Drawing.Size(250, 80); this.textBoxTitle.TabIndex = 210; this.textBoxTitle.UseSelectable = true; this.textBoxTitle.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxTitle.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // textBoxRemarks // // // // this.textBoxRemarks.CustomButton.Image = null; this.textBoxRemarks.CustomButton.Location = new System.Drawing.Point(172, 2); this.textBoxRemarks.CustomButton.Name = ""; this.textBoxRemarks.CustomButton.Size = new System.Drawing.Size(75, 75); this.textBoxRemarks.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxRemarks.CustomButton.TabIndex = 1; this.textBoxRemarks.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxRemarks.CustomButton.UseSelectable = true; this.textBoxRemarks.CustomButton.Visible = false; this.textBoxRemarks.ForeColor = System.Drawing.Color.DimGray; this.textBoxRemarks.Lines = new string[0]; this.textBoxRemarks.Location = new System.Drawing.Point(113, 381); this.textBoxRemarks.MaxLength = 32767; this.textBoxRemarks.Multiline = true; this.textBoxRemarks.Name = "textBoxRemarks"; this.textBoxRemarks.PasswordChar = '\0'; this.textBoxRemarks.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxRemarks.SelectedText = ""; this.textBoxRemarks.SelectionLength = 0; this.textBoxRemarks.SelectionStart = 0; this.textBoxRemarks.ShortcutsEnabled = true; this.textBoxRemarks.Size = new System.Drawing.Size(250, 80); this.textBoxRemarks.TabIndex = 213; this.textBoxRemarks.UseSelectable = true; this.textBoxRemarks.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxRemarks.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // checkBoxRevisionPerformeUpTo // this.checkBoxRevisionPerformeUpTo.Cursor = System.Windows.Forms.Cursors.Hand; this.checkBoxRevisionPerformeUpTo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.checkBoxRevisionPerformeUpTo.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.checkBoxRevisionPerformeUpTo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.checkBoxRevisionPerformeUpTo.Location = new System.Drawing.Point(467, 202); this.checkBoxRevisionPerformeUpTo.Name = "checkBoxRevisionPerformeUpTo"; this.checkBoxRevisionPerformeUpTo.Size = new System.Drawing.Size(127, 25); this.checkBoxRevisionPerformeUpTo.TabIndex = 216; this.checkBoxRevisionPerformeUpTo.Text = "Perform Up To"; this.checkBoxRevisionPerformeUpTo.CheckedChanged += new System.EventHandler(this.checkBoxRevisionPerformeUpTo_CheckedChanged); // // dateTimePickerRevisionPerformeUpTo // this.dateTimePickerRevisionPerformeUpTo.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerRevisionPerformeUpTo.Enabled = false; this.dateTimePickerRevisionPerformeUpTo.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerRevisionPerformeUpTo.Location = new System.Drawing.Point(467, 231); this.dateTimePickerRevisionPerformeUpTo.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerRevisionPerformeUpTo.Name = "dateTimePickerRevisionPerformeUpTo"; this.dateTimePickerRevisionPerformeUpTo.Size = new System.Drawing.Size(239, 22); this.dateTimePickerRevisionPerformeUpTo.TabIndex = 215; // // numericUpDownRevisionNotify // this.numericUpDownRevisionNotify.Enabled = false; this.numericUpDownRevisionNotify.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.numericUpDownRevisionNotify.ForeColor = System.Drawing.Color.DimGray; this.numericUpDownRevisionNotify.Location = new System.Drawing.Point(467, 258); this.numericUpDownRevisionNotify.Maximum = new decimal(new int[] { 10000, 0, 0, 0 }); this.numericUpDownRevisionNotify.Name = "numericUpDownRevisionNotify"; this.numericUpDownRevisionNotify.Size = new System.Drawing.Size(239, 22); this.numericUpDownRevisionNotify.TabIndex = 219; this.numericUpDownRevisionNotify.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // labelDepartment // this.labelDepartment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.labelDepartment.Location = new System.Drawing.Point(369, 286); this.labelDepartment.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelDepartment.Name = "labelDepartment"; this.labelDepartment.Size = new System.Drawing.Size(92, 25); this.labelDepartment.TabIndex = 221; this.labelDepartment.Text = "Department:"; this.labelDepartment.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxDepartment // this.comboBoxDepartment.BackColor = System.Drawing.Color.White; this.comboBoxDepartment.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxDepartment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxDepartment.Location = new System.Drawing.Point(467, 286); this.comboBoxDepartment.Name = "comboBoxDepartment"; this.comboBoxDepartment.Size = new System.Drawing.Size(239, 22); this.comboBoxDepartment.TabIndex = 220; this.comboBoxDepartment.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // labelResponsible // this.labelResponsible.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.labelResponsible.Location = new System.Drawing.Point(369, 314); this.labelResponsible.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelResponsible.Name = "labelResponsible"; this.labelResponsible.Size = new System.Drawing.Size(92, 25); this.labelResponsible.TabIndex = 223; this.labelResponsible.Text = "Responsible:"; this.labelResponsible.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxOccupation // this.comboBoxOccupation.BackColor = System.Drawing.Color.White; this.comboBoxOccupation.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxOccupation.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxOccupation.Location = new System.Drawing.Point(467, 314); this.comboBoxOccupation.Name = "comboBoxOccupation"; this.comboBoxOccupation.Size = new System.Drawing.Size(239, 22); this.comboBoxOccupation.TabIndex = 222; this.comboBoxOccupation.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // labelExecutor // this.labelExecutor.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.labelExecutor.Location = new System.Drawing.Point(369, 341); this.labelExecutor.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelExecutor.Name = "labelExecutor"; this.labelExecutor.Size = new System.Drawing.Size(92, 25); this.labelExecutor.TabIndex = 225; this.labelExecutor.Text = "Executor:"; this.labelExecutor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxSpecialist // this.comboBoxSpecialist.BackColor = System.Drawing.Color.White; this.comboBoxSpecialist.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxSpecialist.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxSpecialist.Location = new System.Drawing.Point(467, 341); this.comboBoxSpecialist.Name = "comboBoxSpecialist"; this.comboBoxSpecialist.Size = new System.Drawing.Size(239, 22); this.comboBoxSpecialist.TabIndex = 224; this.comboBoxSpecialist.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // buttonClose // this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonClose.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonClose.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonClose.Location = new System.Drawing.Point(624, 511); this.buttonClose.Name = "buttonClose"; this.buttonClose.Size = new System.Drawing.Size(75, 33); this.buttonClose.TabIndex = 228; this.buttonClose.Text = "Cancel"; this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click); // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(543, 511); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 229; this.buttonOk.Text = "OK"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // comboBoxDocumentClass // this.comboBoxDocumentClass.Enabled = false; this.comboBoxDocumentClass.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxDocumentClass.ForeColor = System.Drawing.Color.DimGray; this.comboBoxDocumentClass.FormattingEnabled = true; this.comboBoxDocumentClass.Location = new System.Drawing.Point(113, 71); this.comboBoxDocumentClass.Name = "comboBoxDocumentClass"; this.comboBoxDocumentClass.Size = new System.Drawing.Size(250, 22); this.comboBoxDocumentClass.TabIndex = 231; this.comboBoxDocumentClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxDocumentClass_SelectedIndexChanged); this.comboBoxDocumentClass.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // textBoxDescription // // // // this.textBoxDescription.CustomButton.Image = null; this.textBoxDescription.CustomButton.Location = new System.Drawing.Point(172, 2); this.textBoxDescription.CustomButton.Name = ""; this.textBoxDescription.CustomButton.Size = new System.Drawing.Size(75, 75); this.textBoxDescription.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxDescription.CustomButton.TabIndex = 1; this.textBoxDescription.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxDescription.CustomButton.UseSelectable = true; this.textBoxDescription.CustomButton.Visible = false; this.textBoxDescription.ForeColor = System.Drawing.Color.DimGray; this.textBoxDescription.Lines = new string[0]; this.textBoxDescription.Location = new System.Drawing.Point(113, 292); this.textBoxDescription.MaxLength = 32767; this.textBoxDescription.Multiline = true; this.textBoxDescription.Name = "textBoxDescription"; this.textBoxDescription.PasswordChar = '\0'; this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxDescription.SelectedText = ""; this.textBoxDescription.SelectionLength = 0; this.textBoxDescription.SelectionStart = 0; this.textBoxDescription.ShortcutsEnabled = true; this.textBoxDescription.Size = new System.Drawing.Size(250, 80); this.textBoxDescription.TabIndex = 234; this.textBoxDescription.UseSelectable = true; this.textBoxDescription.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxDescription.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // label4 // this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.label4.Location = new System.Drawing.Point(369, 367); this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(99, 25); this.label4.TabIndex = 235; this.label4.Text = "Nomenclature:"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxNomenclature // this.comboBoxNomenclature.BackColor = System.Drawing.Color.White; this.comboBoxNomenclature.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxNomenclature.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxNomenclature.Location = new System.Drawing.Point(467, 367); this.comboBoxNomenclature.Name = "comboBoxNomenclature"; this.comboBoxNomenclature.Size = new System.Drawing.Size(239, 22); this.comboBoxNomenclature.TabIndex = 237; this.comboBoxNomenclature.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // dictionaryComboBoxLocation // this.dictionaryComboBoxLocation.Displayer = null; this.dictionaryComboBoxLocation.DisplayerText = null; this.dictionaryComboBoxLocation.Entity = null; this.dictionaryComboBoxLocation.Location = new System.Drawing.Point(467, 393); this.dictionaryComboBoxLocation.Name = "dictionaryComboBoxLocation"; this.dictionaryComboBoxLocation.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this.dictionaryComboBoxLocation.Size = new System.Drawing.Size(239, 21); this.dictionaryComboBoxLocation.TabIndex = 239; this.dictionaryComboBoxLocation.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // fileControl // this.fileControl.AutoSize = true; this.fileControl.Description1 = ""; this.fileControl.Description2 = ""; this.fileControl.Filter = null; this.fileControl.Icon = global::CAS.UI.Properties.Resources.PDFIconSmall; this.fileControl.IconNotEnabled = global::CAS.UI.Properties.Resources.PDFIconSmall_gray; this.fileControl.Location = new System.Drawing.Point(21, 467); this.fileControl.MaximumSize = new System.Drawing.Size(350, 100); this.fileControl.Name = "fileControl"; this.fileControl.ShowLinkLabelBrowse = true; this.fileControl.ShowLinkLabelRemove = false; this.fileControl.Size = new System.Drawing.Size(350, 37); this.fileControl.TabIndex = 214; // // MailForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(722, 550); this.Controls.Add(this.dictionaryComboBoxLocation); this.Controls.Add(labelLocation); this.Controls.Add(this.comboBoxNomenclature); this.Controls.Add(this.label4); this.Controls.Add(this.textBoxDescription); this.Controls.Add(labelDescription); this.Controls.Add(label1); this.Controls.Add(this.comboBoxDocumentClass); this.Controls.Add(label2); this.Controls.Add(this.buttonOk); this.Controls.Add(this.buttonClose); this.Controls.Add(this.labelExecutor); this.Controls.Add(this.comboBoxSpecialist); this.Controls.Add(this.labelResponsible); this.Controls.Add(this.comboBoxOccupation); this.Controls.Add(this.labelDepartment); this.Controls.Add(this.comboBoxDepartment); this.Controls.Add(this.numericUpDownRevisionNotify); this.Controls.Add(labelNotifyRevision); this.Controls.Add(labelValidToRevision); this.Controls.Add(this.checkBoxRevisionPerformeUpTo); this.Controls.Add(this.dateTimePickerRevisionPerformeUpTo); this.Controls.Add(this.fileControl); this.Controls.Add(this.textBoxRemarks); this.Controls.Add(labelRemark); this.Controls.Add(this.textBoxTitle); this.Controls.Add(labelTitle); this.Controls.Add(this.dateTimePickerCreateMailDate); this.Controls.Add(this.dateTimePickerReceiveMailDate); this.Controls.Add(this.textBoxReferenceNumber); this.Controls.Add(this.labelFrom); this.Controls.Add(this.comboBoxSupplier); this.Controls.Add(this.textBoxNumber); this.Controls.Add(labelNumber); this.Controls.Add(labelDocumentType); this.Controls.Add(this.comboBoxDocumentType); this.MaximizeBox = false; this.MaximumSize = new System.Drawing.Size(722, 550); this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(722, 550); this.Name = "MailForm"; this.ShowIcon = false; this.Text = "Receive Mail Form"; this.Load += new System.EventHandler(this.ReceiveMailForm_Load); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownRevisionNotify)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeContents() { MetroLabel versionLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(versionLabel); versionLabel.Size = new Size(); versionLabel.AutoSize = true; versionLabel.Text = "Editor version: " + Assembly.GetExecutingAssembly().GetName().Version.ToString() + "\nAuthor: Patryk 'PsichiX' Budzyński"; versionLabel.FontWeight = MetroLabelWeight.Bold; versionLabel.Location = new Point(DEFAULT_SEPARATOR, DEFAULT_SEPARATOR); Controls.Add(versionLabel); MetroLabel sceneViewerPortLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(sceneViewerPortLabel); sceneViewerPortLabel.Size = new Size(); sceneViewerPortLabel.AutoSize = true; sceneViewerPortLabel.Text = "Scene viewer HTTP server port:"; sceneViewerPortLabel.Location = new Point(DEFAULT_SEPARATOR, versionLabel.Bottom + DEFAULT_SEPARATOR); Controls.Add(sceneViewerPortLabel); MetroTextBox sceneViewerPortTextBox = new MetroTextBox(); MetroSkinManager.ApplyMetroStyle(sceneViewerPortTextBox); sceneViewerPortTextBox.Location = new Point(DEFAULT_SEPARATOR, sceneViewerPortLabel.Bottom); sceneViewerPortTextBox.Width = 64; sceneViewerPortTextBox.Anchor = AnchorStyles.Top | AnchorStyles.Left; sceneViewerPortTextBox.Text = m_settingsModel.SceneViewerHttpServerPort.ToString(); sceneViewerPortTextBox.TextChanged += new EventHandler(textBox_TextChanged_sceneViewerPort); Controls.Add(sceneViewerPortTextBox); MetroLabel runnerPortLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(runnerPortLabel); runnerPortLabel.Size = new Size(); runnerPortLabel.AutoSize = true; runnerPortLabel.Text = "Runner HTTP server port:"; runnerPortLabel.Location = new Point(DEFAULT_SEPARATOR, sceneViewerPortTextBox.Bottom + DEFAULT_SEPARATOR); Controls.Add(runnerPortLabel); MetroTextBox runnerPortTextBox = new MetroTextBox(); MetroSkinManager.ApplyMetroStyle(runnerPortTextBox); runnerPortTextBox.Location = new Point(DEFAULT_SEPARATOR, runnerPortLabel.Bottom); runnerPortTextBox.Width = 64; runnerPortTextBox.Anchor = AnchorStyles.Top | AnchorStyles.Left; runnerPortTextBox.Text = m_settingsModel.RunnerHttpServerPort.ToString(); runnerPortTextBox.TextChanged += new EventHandler(textBox_TextChanged_runnerPort); Controls.Add(runnerPortTextBox); MetroLabel styleLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(styleLabel); styleLabel.Size = new Size(); styleLabel.AutoSize = true; styleLabel.Text = "Application Style:"; styleLabel.Location = new Point(DEFAULT_SEPARATOR, runnerPortTextBox.Bottom + DEFAULT_SEPARATOR); Controls.Add(styleLabel); m_styleComboBox = new MetroComboBox(); MetroSkinManager.ApplyMetroStyle(m_styleComboBox); m_styleComboBox.Location = new Point(DEFAULT_SEPARATOR, styleLabel.Bottom); Controls.Add(m_styleComboBox); MetroLabel themeLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(themeLabel); themeLabel.Size = new Size(); themeLabel.AutoSize = true; themeLabel.Text = "Application Theme:"; themeLabel.Location = new Point(DEFAULT_SEPARATOR, m_styleComboBox.Bottom + DEFAULT_SEPARATOR); Controls.Add(themeLabel); m_themeComboBox = new MetroComboBox(); MetroSkinManager.ApplyMetroStyle(m_themeComboBox); m_themeComboBox.Location = new Point(DEFAULT_SEPARATOR, themeLabel.Bottom); Controls.Add(m_themeComboBox); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelSubType; MetroFramework.Controls.MetroLabel label1; MetroFramework.Controls.MetroLabel label11; this.dateTimePickerFrom = new System.Windows.Forms.DateTimePicker(); this.dateTimePickerTo = new System.Windows.Forms.DateTimePicker(); this.textBoxRemarks = new MetroFramework.Controls.MetroTextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOk = new System.Windows.Forms.Button(); labelSubType = new MetroFramework.Controls.MetroLabel(); label1 = new MetroFramework.Controls.MetroLabel(); label11 = new MetroFramework.Controls.MetroLabel(); this.SuspendLayout(); // // labelSubType // labelSubType.AutoSize = true; labelSubType.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelSubType.Location = new System.Drawing.Point(18, 63); labelSubType.Name = "labelSubType"; labelSubType.Size = new System.Drawing.Size(44, 19); labelSubType.TabIndex = 12; labelSubType.Text = "From:"; labelSubType.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label1 // label1.AutoSize = true; label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label1.Location = new System.Drawing.Point(18, 89); label1.Name = "label1"; label1.Size = new System.Drawing.Size(25, 19); label1.TabIndex = 15; label1.Text = "To:"; label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label11 // label11.AutoSize = true; label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label11.Location = new System.Drawing.Point(18, 115); label11.Name = "label11"; label11.Size = new System.Drawing.Size(62, 19); label11.TabIndex = 276; label11.Text = "Remarks:"; label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // dateTimePickerFrom // this.dateTimePickerFrom.Location = new System.Drawing.Point(90, 63); this.dateTimePickerFrom.Name = "dateTimePickerFrom"; this.dateTimePickerFrom.Size = new System.Drawing.Size(231, 20); this.dateTimePickerFrom.TabIndex = 14; this.dateTimePickerFrom.ValueChanged += new System.EventHandler(this.dateTimePickerFrom_ValueChanged); this.dateTimePickerFrom.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.dateTimePickerFrom_KeyPress); // // dateTimePickerTo // this.dateTimePickerTo.Enabled = false; this.dateTimePickerTo.Location = new System.Drawing.Point(90, 89); this.dateTimePickerTo.Name = "dateTimePickerTo"; this.dateTimePickerTo.Size = new System.Drawing.Size(231, 20); this.dateTimePickerTo.TabIndex = 16; // // textBoxRemarks // // // // this.textBoxRemarks.CustomButton.Image = null; this.textBoxRemarks.CustomButton.Location = new System.Drawing.Point(168, 2); this.textBoxRemarks.CustomButton.Name = ""; this.textBoxRemarks.CustomButton.Size = new System.Drawing.Size(61, 61); this.textBoxRemarks.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxRemarks.CustomButton.TabIndex = 1; this.textBoxRemarks.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxRemarks.CustomButton.UseSelectable = true; this.textBoxRemarks.CustomButton.Visible = false; this.textBoxRemarks.Lines = new string[0]; this.textBoxRemarks.Location = new System.Drawing.Point(90, 115); this.textBoxRemarks.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0); this.textBoxRemarks.MaxLength = 1024; this.textBoxRemarks.Multiline = true; this.textBoxRemarks.Name = "textBoxRemarks"; this.textBoxRemarks.PasswordChar = '\0'; this.textBoxRemarks.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxRemarks.SelectedText = ""; this.textBoxRemarks.SelectionLength = 0; this.textBoxRemarks.SelectionStart = 0; this.textBoxRemarks.ShortcutsEnabled = true; this.textBoxRemarks.Size = new System.Drawing.Size(232, 66); this.textBoxRemarks.TabIndex = 275; this.textBoxRemarks.UseSelectable = true; this.textBoxRemarks.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxRemarks.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // buttonCancel // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonCancel.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonCancel.Location = new System.Drawing.Point(155, 192); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 33); this.buttonCancel.TabIndex = 278; this.buttonCancel.Text = "OK"; this.buttonCancel.Click += new System.EventHandler(this.buttonOk_Click); // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(236, 192); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(85, 33); this.buttonOk.TabIndex = 277; this.buttonOk.Text = "Cancel"; this.buttonOk.Click += new System.EventHandler(this.buttonCancel_Click); // // PlanOpsForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(335, 237); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOk); this.Controls.Add(label11); this.Controls.Add(this.textBoxRemarks); this.Controls.Add(this.dateTimePickerTo); this.Controls.Add(label1); this.Controls.Add(this.dateTimePickerFrom); this.Controls.Add(labelSubType); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "PlanOpsForm"; this.Resizable = false; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Plan Ops Form"; this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelNumber; MetroFramework.Controls.MetroLabel label1; this.comboBox1 = new System.Windows.Forms.ComboBox(); this.dataGridViewFlights = new System.Windows.Forms.DataGridView(); this.ColumnCheck = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.ColumnFlightNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnFrom = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnTo = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnFlightDate = new CAS.UI.UIControls.Auxiliary.DataGridViewElements.DataGridViewCalendarColumn(); this.ColumnTakeOff = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnLDG = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.buttonOk = new System.Windows.Forms.Button(); this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker(); labelNumber = new MetroFramework.Controls.MetroLabel(); label1 = new MetroFramework.Controls.MetroLabel(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewFlights)).BeginInit(); this.SuspendLayout(); // // labelNumber // labelNumber.AutoSize = true; labelNumber.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelNumber.Location = new System.Drawing.Point(10, 63); labelNumber.Name = "labelNumber"; labelNumber.Size = new System.Drawing.Size(49, 19); labelNumber.TabIndex = 29; labelNumber.Text = "Flights:"; labelNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label1 // label1.AutoSize = true; label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label1.Location = new System.Drawing.Point(10, 90); label1.Name = "label1"; label1.Size = new System.Drawing.Size(39, 19); label1.TabIndex = 245; label1.Text = "Date:"; label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(69, 63); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(656, 21); this.comboBox1.TabIndex = 30; this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged); this.comboBox1.TextUpdate += new System.EventHandler(this.comboBox1_TextUpdate); this.comboBox1.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // dataGridViewFlights // this.dataGridViewFlights.AllowUserToAddRows = false; this.dataGridViewFlights.AllowUserToDeleteRows = false; this.dataGridViewFlights.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dataGridViewFlights.BackgroundColor = System.Drawing.SystemColors.Window; this.dataGridViewFlights.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridViewFlights.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColumnCheck, this.ColumnFlightNo, this.ColumnFrom, this.ColumnTo, this.ColumnFlightDate, this.ColumnTakeOff, this.ColumnLDG }); this.dataGridViewFlights.Location = new System.Drawing.Point(10, 115); this.dataGridViewFlights.Margin = new System.Windows.Forms.Padding(2); this.dataGridViewFlights.Name = "dataGridViewFlights"; this.dataGridViewFlights.RowHeadersVisible = false; this.dataGridViewFlights.RowHeadersWidth = 4; this.dataGridViewFlights.RowTemplate.Height = 24; this.dataGridViewFlights.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.dataGridViewFlights.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect; this.dataGridViewFlights.Size = new System.Drawing.Size(715, 50); this.dataGridViewFlights.TabIndex = 31; this.dataGridViewFlights.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewFlights_CellClick); this.dataGridViewFlights.ColumnWidthChanged += new System.Windows.Forms.DataGridViewColumnEventHandler(this.dataGridViewFlights_ColumnWidthChanged); this.dataGridViewFlights.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dataGridViewFlights_Scroll); // // ColumnCheck // this.ColumnCheck.HeaderText = ""; this.ColumnCheck.Name = "ColumnCheck"; this.ColumnCheck.Width = 30; // // ColumnFlightNo // this.ColumnFlightNo.HeaderText = "FlightNo"; this.ColumnFlightNo.Name = "ColumnFlightNo"; this.ColumnFlightNo.ReadOnly = true; this.ColumnFlightNo.Width = 80; // // ColumnFrom // this.ColumnFrom.HeaderText = "From"; this.ColumnFrom.Name = "ColumnFrom"; this.ColumnFrom.ReadOnly = true; this.ColumnFrom.Width = 150; // // ColumnTo // this.ColumnTo.HeaderText = "To"; this.ColumnTo.Name = "ColumnTo"; this.ColumnTo.ReadOnly = true; this.ColumnTo.Width = 150; // // ColumnFlightDate // this.ColumnFlightDate.HeaderText = "Flight Date"; this.ColumnFlightDate.Name = "ColumnFlightDate"; // // ColumnTakeOff // this.ColumnTakeOff.HeaderText = "Take-off"; this.ColumnTakeOff.Name = "ColumnTakeOff"; // // ColumnLDG // this.ColumnLDG.HeaderText = "LDG"; this.ColumnLDG.Name = "ColumnLDG"; // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(650, 179); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 244; this.buttonOk.Text = "OK"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // dateTimePicker1 // this.dateTimePicker1.Location = new System.Drawing.Point(69, 90); this.dateTimePicker1.Name = "dateTimePicker1"; this.dateTimePicker1.Size = new System.Drawing.Size(136, 20); this.dateTimePicker1.TabIndex = 246; this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged); // // FlightForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(739, 220); this.Controls.Add(this.dateTimePicker1); this.Controls.Add(label1); this.Controls.Add(this.buttonOk); this.Controls.Add(this.dataGridViewFlights); this.Controls.Add(this.comboBox1); this.Controls.Add(labelNumber); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FlightForm"; this.ShowIcon = false; this.Text = "Flight Form"; ((System.ComponentModel.ISupportInitialize)(this.dataGridViewFlights)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void ClearPanelIfItemsAreMany() { //IF THE NUMBER OF CONTROLS ON MAIN PANEL EXCEEDS THOSE THAT CAN BE DRAWN WITHOUT SCROLLBARS if (panel_live_stream.Controls.Count > MAX_NUM_OF_CONTROLS_ALLOWED) { //CREATE TITLE LABEL MetroLabel title_label = new MetroLabel(); title_label.Theme = MetroThemeStyle.Dark; title_label.ForeColor = Color.White; title_label.AutoSize = true; title_label.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); title_label.Location = new System.Drawing.Point(74, 11); title_label.Size = new System.Drawing.Size(205, 19); title_label.TabIndex = 3; title_label.Text = "FACE COMPARISON ONGOING"; //CREATE LINE SEPARATOR MetroLabel separator_label = new MetroLabel(); separator_label.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; separator_label.Location = new System.Drawing.Point(19, 39); separator_label.Size = new System.Drawing.Size(335, 2); separator_label.TabIndex = 2; //COZ THIS IS NOT ON THE UI THREAD if (panel_live_stream.InvokeRequired) { //CLEAR THE PANEL Action action = () => panel_live_stream.Controls.Clear(); panel_live_stream.Invoke(action); //ADD TITLE AND SEPARATOR LINE TO PANEL action = () => panel_live_stream.Controls.AddRange(new Control[] { title_label, separator_label }); panel_live_stream.Invoke(action); } //IF ON UI THREAD::HIGHLY UNLIKELY else { //CLEAR THE PANEL panel_live_stream.Controls.Clear(); //ADD TITLE AND SEPARATOR LINE TO PANEL panel_live_stream.Controls.AddRange(new Control[] { title_label, separator_label }); } //RESET THE X AND Y CODRDINATES FOR LOCATION OF CONTROLS ResetXAndY(); } }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel label1; MetroFramework.Controls.MetroLabel label4; System.Windows.Forms.GroupBox groupBox2; this._lifelengthViewerNotify = new CAS.UI.UIControls.Auxiliary.LifelengthViewer(); this._lifelengthViewerTresh = new CAS.UI.UIControls.Auxiliary.LifelengthViewer(); this._lifelengthViewerRepeat = new CAS.UI.UIControls.Auxiliary.LifelengthViewer(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.checkBox1 = new MetroFramework.Controls.MetroCheckBox(); this._comboBoxCheckType = new CAS.UI.UIControls.Auxiliary.DictionaryComboBox(); this._textBoxName = new MetroFramework.Controls.MetroTextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOk = new System.Windows.Forms.Button(); label1 = new MetroFramework.Controls.MetroLabel(); label4 = new MetroFramework.Controls.MetroLabel(); groupBox2 = new System.Windows.Forms.GroupBox(); groupBox2.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // label1 // label1.AutoSize = true; label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label1.Location = new System.Drawing.Point(6, 41); label1.Name = "label1"; label1.Size = new System.Drawing.Size(78, 19); label1.TabIndex = 12; label1.Text = "Check Type:"; // // label4 // label4.AutoSize = true; label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label4.Location = new System.Drawing.Point(6, 15); label4.Name = "label4"; label4.Size = new System.Drawing.Size(48, 19); label4.TabIndex = 11; label4.Text = "Name:"; // // groupBox2 // groupBox2.Controls.Add(this._lifelengthViewerNotify); groupBox2.Controls.Add(this._lifelengthViewerTresh); groupBox2.Controls.Add(this._lifelengthViewerRepeat); groupBox2.Location = new System.Drawing.Point(12, 169); groupBox2.Name = "groupBox2"; groupBox2.Size = new System.Drawing.Size(474, 143); groupBox2.TabIndex = 6; groupBox2.TabStop = false; // // _lifelengthViewerNotify // this._lifelengthViewerNotify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this._lifelengthViewerNotify.AutoSize = true; this._lifelengthViewerNotify.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this._lifelengthViewerNotify.CalendarApplicable = false; this._lifelengthViewerNotify.CyclesApplicable = false; this._lifelengthViewerNotify.EnabledCalendar = true; this._lifelengthViewerNotify.EnabledCycle = true; this._lifelengthViewerNotify.EnabledHours = true; this._lifelengthViewerNotify.FieldsBackColor = System.Drawing.SystemColors.Window; this._lifelengthViewerNotify.ForeColor = System.Drawing.Color.DimGray; this._lifelengthViewerNotify.HeaderCalendar = "Calendar"; this._lifelengthViewerNotify.HeaderCycles = "Cycles"; this._lifelengthViewerNotify.HeaderFormattedCalendar = "Calendar"; this._lifelengthViewerNotify.HeaderHours = "Hours"; this._lifelengthViewerNotify.HoursApplicable = false; this._lifelengthViewerNotify.LeftHeader = "Notify"; this._lifelengthViewerNotify.Location = new System.Drawing.Point(26, 99); this._lifelengthViewerNotify.Margin = new System.Windows.Forms.Padding(2); this._lifelengthViewerNotify.Modified = false; this._lifelengthViewerNotify.Name = "_lifelengthViewerNotify"; this._lifelengthViewerNotify.ReadOnly = false; this._lifelengthViewerNotify.ShowCalendar = true; this._lifelengthViewerNotify.ShowFormattedCalendar = false; this._lifelengthViewerNotify.ShowHeaders = false; this._lifelengthViewerNotify.ShowMinutes = true; this._lifelengthViewerNotify.Size = new System.Drawing.Size(407, 35); this._lifelengthViewerNotify.SystemCalculated = true; this._lifelengthViewerNotify.TabIndex = 7; // // _lifelengthViewerTresh // this._lifelengthViewerTresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this._lifelengthViewerTresh.AutoSize = true; this._lifelengthViewerTresh.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this._lifelengthViewerTresh.CalendarApplicable = false; this._lifelengthViewerTresh.CyclesApplicable = false; this._lifelengthViewerTresh.EnabledCalendar = true; this._lifelengthViewerTresh.EnabledCycle = true; this._lifelengthViewerTresh.EnabledHours = true; this._lifelengthViewerTresh.FieldsBackColor = System.Drawing.SystemColors.Window; this._lifelengthViewerTresh.ForeColor = System.Drawing.Color.DimGray; this._lifelengthViewerTresh.HeaderCalendar = "Calendar"; this._lifelengthViewerTresh.HeaderCycles = "Cycles"; this._lifelengthViewerTresh.HeaderFormattedCalendar = "Calendar"; this._lifelengthViewerTresh.HeaderHours = "Hours"; this._lifelengthViewerTresh.HoursApplicable = false; this._lifelengthViewerTresh.LeftHeader = "Thresh"; this._lifelengthViewerTresh.Location = new System.Drawing.Point(17, 9); this._lifelengthViewerTresh.Margin = new System.Windows.Forms.Padding(2); this._lifelengthViewerTresh.Modified = false; this._lifelengthViewerTresh.Name = "_lifelengthViewerTresh"; this._lifelengthViewerTresh.ReadOnly = false; this._lifelengthViewerTresh.ShowCalendar = true; this._lifelengthViewerTresh.ShowFormattedCalendar = false; this._lifelengthViewerTresh.ShowMinutes = true; this._lifelengthViewerTresh.Size = new System.Drawing.Size(415, 52); this._lifelengthViewerTresh.SystemCalculated = true; this._lifelengthViewerTresh.TabIndex = 5; // // _lifelengthViewerRepeat // this._lifelengthViewerRepeat.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this._lifelengthViewerRepeat.AutoSize = true; this._lifelengthViewerRepeat.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this._lifelengthViewerRepeat.CalendarApplicable = false; this._lifelengthViewerRepeat.CyclesApplicable = false; this._lifelengthViewerRepeat.EnabledCalendar = true; this._lifelengthViewerRepeat.EnabledCycle = true; this._lifelengthViewerRepeat.EnabledHours = true; this._lifelengthViewerRepeat.FieldsBackColor = System.Drawing.SystemColors.Window; this._lifelengthViewerRepeat.ForeColor = System.Drawing.Color.DimGray; this._lifelengthViewerRepeat.HeaderCalendar = "Calendar"; this._lifelengthViewerRepeat.HeaderCycles = "Cycles"; this._lifelengthViewerRepeat.HeaderFormattedCalendar = "Calendar"; this._lifelengthViewerRepeat.HeaderHours = "Hours"; this._lifelengthViewerRepeat.HoursApplicable = false; this._lifelengthViewerRepeat.LeftHeader = "Repeat"; this._lifelengthViewerRepeat.Location = new System.Drawing.Point(18, 60); this._lifelengthViewerRepeat.Margin = new System.Windows.Forms.Padding(2); this._lifelengthViewerRepeat.Modified = false; this._lifelengthViewerRepeat.Name = "_lifelengthViewerRepeat"; this._lifelengthViewerRepeat.ReadOnly = false; this._lifelengthViewerRepeat.ShowCalendar = true; this._lifelengthViewerRepeat.ShowFormattedCalendar = false; this._lifelengthViewerRepeat.ShowHeaders = false; this._lifelengthViewerRepeat.ShowMinutes = true; this._lifelengthViewerRepeat.Size = new System.Drawing.Size(415, 35); this._lifelengthViewerRepeat.SystemCalculated = true; this._lifelengthViewerRepeat.TabIndex = 6; // // groupBox1 // this.groupBox1.Controls.Add(this.checkBox1); this.groupBox1.Controls.Add(this._comboBoxCheckType); this.groupBox1.Controls.Add(label1); this.groupBox1.Controls.Add(label4); this.groupBox1.Controls.Add(this._textBoxName); this.groupBox1.Location = new System.Drawing.Point(12, 63); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(474, 100); this.groupBox1.TabIndex = 5; this.groupBox1.TabStop = false; // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.checkBox1.Location = new System.Drawing.Point(339, 68); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(92, 15); this.checkBox1.TabIndex = 13; this.checkBox1.Text = "Is Zero Phase"; this.checkBox1.UseSelectable = true; // // _comboBoxCheckType // this._comboBoxCheckType.Displayer = null; this._comboBoxCheckType.DisplayerText = null; this._comboBoxCheckType.Entity = null; this._comboBoxCheckType.Location = new System.Drawing.Point(142, 41); this._comboBoxCheckType.Name = "_comboBoxCheckType"; this._comboBoxCheckType.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this._comboBoxCheckType.Size = new System.Drawing.Size(326, 21); this._comboBoxCheckType.TabIndex = 11; // // _textBoxName // // // // this._textBoxName.CustomButton.Image = null; this._textBoxName.CustomButton.Location = new System.Drawing.Point(308, 2); this._textBoxName.CustomButton.Name = ""; this._textBoxName.CustomButton.Size = new System.Drawing.Size(15, 15); this._textBoxName.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this._textBoxName.CustomButton.TabIndex = 1; this._textBoxName.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this._textBoxName.CustomButton.UseSelectable = true; this._textBoxName.CustomButton.Visible = false; this._textBoxName.Lines = new string[0]; this._textBoxName.Location = new System.Drawing.Point(142, 15); this._textBoxName.MaxLength = 32767; this._textBoxName.Name = "_textBoxName"; this._textBoxName.PasswordChar = '\0'; this._textBoxName.ScrollBars = System.Windows.Forms.ScrollBars.None; this._textBoxName.SelectedText = ""; this._textBoxName.SelectionLength = 0; this._textBoxName.SelectionStart = 0; this._textBoxName.ShortcutsEnabled = true; this._textBoxName.Size = new System.Drawing.Size(326, 20); this._textBoxName.TabIndex = 0; this._textBoxName.UseSelectable = true; this._textBoxName.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this._textBoxName.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // buttonCancel // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonCancel.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonCancel.Location = new System.Drawing.Point(411, 319); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 33); this.buttonCancel.TabIndex = 280; this.buttonCancel.Text = "Cancel"; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(320, 319); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(85, 33); this.buttonOk.TabIndex = 279; this.buttonOk.Text = "Ok"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // MTOPEditForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(495, 358); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOk); this.Controls.Add(groupBox2); this.Controls.Add(this.groupBox1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "MTOPEditForm"; this.Resizable = false; this.ShowIcon = false; this.Text = "MTOP Edit Form"; groupBox2.ResumeLayout(false); groupBox2.PerformLayout(); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel label11; System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.dateTimePickerClosingDate = new System.Windows.Forms.DateTimePicker(); this.buttonOk = new System.Windows.Forms.Button(); this.buttonClose = new System.Windows.Forms.Button(); this.dataGridViewItems = new System.Windows.Forms.DataGridView(); this.ColumnTaskCard = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnHours = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnCycles = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnDays = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnDate = new CAS.UI.UIControls.Auxiliary.DataGridViewElements.DataGridViewCalendarColumn(); this.ColumnType = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnTask = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnClosed = new System.Windows.Forms.DataGridViewCheckBoxColumn(); label11 = new MetroFramework.Controls.MetroLabel(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewItems)).BeginInit(); this.SuspendLayout(); // // label11 // label11.AutoSize = true; label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label11.Location = new System.Drawing.Point(23, 360); label11.Name = "label11"; label11.Size = new System.Drawing.Size(86, 19); label11.TabIndex = 53; label11.Text = "Closing Date:"; label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // dateTimePickerClosingDate // this.dateTimePickerClosingDate.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerClosingDate.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerClosingDate.Location = new System.Drawing.Point(180, 360); this.dateTimePickerClosingDate.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerClosingDate.Name = "dateTimePickerClosingDate"; this.dateTimePickerClosingDate.Size = new System.Drawing.Size(250, 22); this.dateTimePickerClosingDate.TabIndex = 52; // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(638, 372); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 242; this.buttonOk.Text = "OK"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // buttonClose // this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonClose.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonClose.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonClose.Location = new System.Drawing.Point(719, 372); this.buttonClose.Name = "buttonClose"; this.buttonClose.Size = new System.Drawing.Size(75, 33); this.buttonClose.TabIndex = 241; this.buttonClose.Text = "Cancel"; this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click); // // dataGridViewItems // this.dataGridViewItems.AllowUserToAddRows = false; this.dataGridViewItems.AllowUserToDeleteRows = false; this.dataGridViewItems.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dataGridViewItems.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders; this.dataGridViewItems.BackgroundColor = System.Drawing.SystemColors.Window; this.dataGridViewItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridViewItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColumnType, this.ColumnTask, this.ColumnClosed }); this.dataGridViewItems.Location = new System.Drawing.Point(22, 62); this.dataGridViewItems.Margin = new System.Windows.Forms.Padding(2); this.dataGridViewItems.Name = "dataGridViewItems"; this.dataGridViewItems.RowHeadersVisible = false; this.dataGridViewItems.RowTemplate.Height = 24; this.dataGridViewItems.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridViewItems.Size = new System.Drawing.Size(772, 293); this.dataGridViewItems.TabIndex = 243; // // ColumnTaskCard // dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.ColumnTaskCard.DefaultCellStyle = dataGridViewCellStyle2; this.ColumnTaskCard.HeaderText = "Task Card"; this.ColumnTaskCard.Name = "ColumnTaskCard"; this.ColumnTaskCard.ReadOnly = true; // // ColumnHours // this.ColumnHours.HeaderText = "Hours"; this.ColumnHours.MaxInputLength = 16; this.ColumnHours.Name = "ColumnHours"; this.ColumnHours.Width = 75; // // ColumnCycles // this.ColumnCycles.HeaderText = "Cycles"; this.ColumnCycles.MaxInputLength = 16; this.ColumnCycles.Name = "ColumnCycles"; this.ColumnCycles.Width = 75; // // ColumnDays // this.ColumnDays.HeaderText = "Days"; this.ColumnDays.MaxInputLength = 16; this.ColumnDays.Name = "ColumnDays"; this.ColumnDays.ReadOnly = true; this.ColumnDays.Width = 75; // // ColumnDate // this.ColumnDate.HeaderText = "Date"; this.ColumnDate.Name = "ColumnDate"; this.ColumnDate.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.ColumnDate.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; this.ColumnDate.Width = 75; // // ColumnType // this.ColumnType.HeaderText = "First Name"; this.ColumnType.Name = "ColumnType"; this.ColumnType.ReadOnly = true; this.ColumnType.Width = 320; // // ColumnTask // dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.ColumnTask.DefaultCellStyle = dataGridViewCellStyle1; this.ColumnTask.HeaderText = "Last Name"; this.ColumnTask.MaxInputLength = 3072; this.ColumnTask.Name = "ColumnTask"; this.ColumnTask.ReadOnly = true; this.ColumnTask.Width = 320; // // ColumnClosed // this.ColumnClosed.HeaderText = "Document"; this.ColumnClosed.Name = "ColumnClosed"; this.ColumnClosed.Width = 200; // // CAACourseCloseForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.ClientSize = new System.Drawing.Size(800, 414); this.Controls.Add(this.dataGridViewItems); this.Controls.Add(this.buttonOk); this.Controls.Add(this.buttonClose); this.Controls.Add(label11); this.Controls.Add(this.dateTimePickerClosingDate); this.Location = new System.Drawing.Point(15, 15); this.MaximumSize = new System.Drawing.Size(937, 750); this.MinimumSize = new System.Drawing.Size(800, 382); this.Name = "CAACourseCloseForm"; this.Resizable = false; this.ShowIcon = false; this.Text = "Work Package Editor Form"; ((System.ComponentModel.ISupportInitialize)(this.dataGridViewItems)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelDepartment; MetroFramework.Controls.MetroLabel label1; MetroFramework.Controls.MetroLabel labelValidFrom; MetroFramework.Controls.MetroLabel label2; MetroFramework.Controls.MetroLabel label3; MetroFramework.Controls.MetroLabel label4; this.buttonOk = new System.Windows.Forms.Button(); this.buttonClose = new System.Windows.Forms.Button(); this.dateTimePickerSummerFrom = new System.Windows.Forms.DateTimePicker(); this.dateTimePickerSummerTo = new System.Windows.Forms.DateTimePicker(); this.dateTimePickerWinterTo = new System.Windows.Forms.DateTimePicker(); this.dateTimePickerWinterFrom = new System.Windows.Forms.DateTimePicker(); labelDepartment = new MetroFramework.Controls.MetroLabel(); label1 = new MetroFramework.Controls.MetroLabel(); labelValidFrom = new MetroFramework.Controls.MetroLabel(); label2 = new MetroFramework.Controls.MetroLabel(); label3 = new MetroFramework.Controls.MetroLabel(); label4 = new MetroFramework.Controls.MetroLabel(); this.SuspendLayout(); // // labelDepartment // labelDepartment.AutoSize = true; labelDepartment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelDepartment.Location = new System.Drawing.Point(15, 63); labelDepartment.Name = "labelDepartment"; labelDepartment.Size = new System.Drawing.Size(59, 19); labelDepartment.TabIndex = 50; labelDepartment.Text = "Summer"; labelDepartment.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label1 // label1.AutoSize = true; label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label1.Location = new System.Drawing.Point(15, 91); label1.Name = "label1"; label1.Size = new System.Drawing.Size(48, 19); label1.TabIndex = 51; label1.Text = "Winter"; label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelValidFrom // labelValidFrom.AutoSize = true; labelValidFrom.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelValidFrom.Location = new System.Drawing.Point(79, 63); labelValidFrom.Name = "labelValidFrom"; labelValidFrom.Size = new System.Drawing.Size(41, 19); labelValidFrom.TabIndex = 53; labelValidFrom.Text = "From"; labelValidFrom.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label2 // label2.AutoSize = true; label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label2.Location = new System.Drawing.Point(251, 63); label2.Name = "label2"; label2.Size = new System.Drawing.Size(22, 19); label2.TabIndex = 55; label2.Text = "To"; label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label3 // label3.AutoSize = true; label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label3.Location = new System.Drawing.Point(251, 91); label3.Name = "label3"; label3.Size = new System.Drawing.Size(22, 19); label3.TabIndex = 59; label3.Text = "To"; label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label4 // label4.AutoSize = true; label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label4.Location = new System.Drawing.Point(79, 91); label4.Name = "label4"; label4.Size = new System.Drawing.Size(41, 19); label4.TabIndex = 57; label4.Text = "From"; label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(234, 128); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(85, 33); this.buttonOk.TabIndex = 19; this.buttonOk.Text = "Ok"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // buttonClose // this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonClose.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonClose.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonClose.Location = new System.Drawing.Point(325, 128); this.buttonClose.Name = "buttonClose"; this.buttonClose.Size = new System.Drawing.Size(75, 33); this.buttonClose.TabIndex = 18; this.buttonClose.Text = "Close"; this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click); // // dateTimePickerSummerFrom // this.dateTimePickerSummerFrom.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerSummerFrom.CustomFormat = "dd MMMM"; this.dateTimePickerSummerFrom.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerSummerFrom.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.dateTimePickerSummerFrom.Location = new System.Drawing.Point(123, 63); this.dateTimePickerSummerFrom.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerSummerFrom.Name = "dateTimePickerSummerFrom"; this.dateTimePickerSummerFrom.Size = new System.Drawing.Size(122, 22); this.dateTimePickerSummerFrom.TabIndex = 52; // // dateTimePickerSummerTo // this.dateTimePickerSummerTo.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerSummerTo.CustomFormat = "dd MMMM"; this.dateTimePickerSummerTo.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerSummerTo.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.dateTimePickerSummerTo.Location = new System.Drawing.Point(278, 63); this.dateTimePickerSummerTo.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerSummerTo.Name = "dateTimePickerSummerTo"; this.dateTimePickerSummerTo.Size = new System.Drawing.Size(122, 22); this.dateTimePickerSummerTo.TabIndex = 54; // // dateTimePickerWinterTo // this.dateTimePickerWinterTo.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerWinterTo.CustomFormat = "dd MMMM"; this.dateTimePickerWinterTo.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerWinterTo.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.dateTimePickerWinterTo.Location = new System.Drawing.Point(278, 91); this.dateTimePickerWinterTo.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerWinterTo.Name = "dateTimePickerWinterTo"; this.dateTimePickerWinterTo.Size = new System.Drawing.Size(122, 22); this.dateTimePickerWinterTo.TabIndex = 58; // // dateTimePickerWinterFrom // this.dateTimePickerWinterFrom.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerWinterFrom.CustomFormat = "dd MMMM"; this.dateTimePickerWinterFrom.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerWinterFrom.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.dateTimePickerWinterFrom.Location = new System.Drawing.Point(123, 91); this.dateTimePickerWinterFrom.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerWinterFrom.Name = "dateTimePickerWinterFrom"; this.dateTimePickerWinterFrom.Size = new System.Drawing.Size(122, 22); this.dateTimePickerWinterFrom.TabIndex = 56; // // SchedulePeriodForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(418, 176); this.Controls.Add(label3); this.Controls.Add(this.dateTimePickerWinterTo); this.Controls.Add(label4); this.Controls.Add(this.dateTimePickerWinterFrom); this.Controls.Add(label2); this.Controls.Add(this.dateTimePickerSummerTo); this.Controls.Add(labelValidFrom); this.Controls.Add(this.dateTimePickerSummerFrom); this.Controls.Add(label1); this.Controls.Add(labelDepartment); this.Controls.Add(this.buttonOk); this.Controls.Add(this.buttonClose); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SchedulePeriodForm"; this.Resizable = false; this.ShowIcon = false; this.Text = "Schedule Period"; this.Load += new System.EventHandler(this.SchedulePeriodForm_Load); this.ResumeLayout(false); this.PerformLayout(); }
public CurveEditDialog(PlayCanvas_Curve_PropertyEditor propertyEditor) { if (propertyEditor == null) throw new ArgumentNullException("`propertyEditor` argument cannot be null!"); m_activeCurve = -1; m_activeKey = -1.0f; m_zoomOut = 1.0f; m_propertyEditor = propertyEditor; m_info = m_propertyEditor.Info == null ? new PlayCanvas_Curve_PropertyEditor.CurveInfo() : m_propertyEditor.Info; if (m_info.Curves != null && m_info.Curves.Length > 0) { m_curveSet = m_propertyEditor.PropertyModel.Data<PlayCanvas.CurveSet>(); if (m_curveSet == null) m_curveSet = new PlayCanvas.CurveSet(); if (m_curveSet.CurvesList.Count < m_info.Curves.Length) for (int i = m_curveSet.CurvesList.Count; i < m_info.Curves.Length; ++i) m_curveSet.CurvesList.Add(new PlayCanvas.Curve(new float[] { 0.0f, 0.0f })); } else { m_curve = m_propertyEditor.PropertyModel.Data<PlayCanvas.Curve>(); if (m_curve == null) m_curve = new PlayCanvas.Curve(); if (m_curve.KeyFrames.Count == 0) m_curve.KeyFrames.Add(0.0f, 0.0f); float diff = Math.Max(Math.Abs(m_info.Max), Math.Abs(m_info.Min)); while (m_zoomOut < diff) m_zoomOut *= 2.0f; } ValidateCurve(); MetroSkinManager.ApplyMetroStyle(this); Size = new Size(640, 480); MinimumSize = new Size(480, 320); Text = (m_curve == null ? "Edit curve set: " : "Edit curve: ") + propertyEditor.PropertyModel.Name; FormClosed += CurveEditDialog_FormClosed; m_editPictureBox = new PictureBox(); m_editPictureBox.Dock = DockStyle.Fill; m_editPictureBox.BackColor = Color.FromArgb(255, 64, 64, 64); m_editPictureBox.Resize += m_editPictureBox_Resize; m_editPictureBox.Paint += m_editPictureBox_Paint; m_editPictureBox.MouseEnter += m_editPictureBox_MouseEnter; m_editPictureBox.MouseDown += m_editPictureBox_MouseDown; m_editPictureBox.MouseUp += m_editPictureBox_MouseUp; m_editPictureBox.MouseMove += m_editPictureBox_MouseMove; m_editPictureBox.MouseWheel += m_editPictureBox_MouseWheel; Controls.Add(m_editPictureBox); m_editPictureBox.Refresh(); MetroPanel topToolbar = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(topToolbar); topToolbar.Width = 0; topToolbar.Height = 30; topToolbar.Dock = DockStyle.Top; Controls.Add(topToolbar); MetroLabel typeLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(typeLabel); typeLabel.Width = 0; typeLabel.Height = 0; typeLabel.AutoSize = true; typeLabel.Dock = DockStyle.Left; typeLabel.Text = "Type:"; if (m_curveSet != null) { m_curvesCheckBoxes = new List<MetroCheckBox>(); foreach (var name in m_info.Curves) { MetroCheckBox checkBox = new MetroCheckBox(); MetroSkinManager.ApplyMetroStyle(checkBox); checkBox.Width = 0; checkBox.AutoSize = true; checkBox.Checked = true; checkBox.Text = name; checkBox.Dock = DockStyle.Right; checkBox.CheckedChanged += checkBox_CheckedChanged; topToolbar.Controls.Add(checkBox); m_curvesCheckBoxes.Add(checkBox); } } m_typeComboBox = new MetroComboBox(); MetroSkinManager.ApplyMetroStyle(m_typeComboBox); m_typeComboBox.Dock = DockStyle.Left; m_typeComboBox.BindingContext = new BindingContext(); m_typeComboBox.DataSource = Enum.GetNames(typeof(PlayCanvas.Curve.CurveType)); if (m_curve != null) m_typeComboBox.SelectedItem = Enum.GetName(typeof(PlayCanvas.Curve.CurveType), m_curve.Type); else if (m_curveSet != null) m_typeComboBox.SelectedItem = Enum.GetName(typeof(PlayCanvas.Curve.CurveType), m_curveSet.Type); m_typeComboBox.SelectedValueChanged += m_typeComboBox_SelectedValueChanged; topToolbar.Controls.Add(m_typeComboBox); topToolbar.Controls.Add(typeLabel); MetroPanel bottomToolbar = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(bottomToolbar); bottomToolbar.Width = 0; bottomToolbar.Height = 24; bottomToolbar.Dock = DockStyle.Bottom; Controls.Add(bottomToolbar); MetroLabel keyLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(keyLabel); keyLabel.Width = 0; keyLabel.Height = 0; keyLabel.AutoSize = true; keyLabel.Dock = DockStyle.Left; keyLabel.Text = "Key frame:"; m_keyTextBox = new MetroTextBox(); MetroSkinManager.ApplyMetroStyle(m_keyTextBox); m_keyTextBox.Width = 100; m_keyTextBox.Dock = DockStyle.Left; m_keyTextBox.TextChanged += m_keyTextBox_TextChanged; m_keyTextBox.CustomPaintForeground += m_keyTextBox_CustomPaintForeground; m_keyTextBox.Leave += m_keyTextBox_Leave; MetroLabel valueLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(valueLabel); valueLabel.Width = 0; valueLabel.Height = 0; valueLabel.AutoSize = true; valueLabel.Dock = DockStyle.Left; valueLabel.Text = "Value:"; m_valueTextBox = new MetroTextBox(); MetroSkinManager.ApplyMetroStyle(m_valueTextBox); m_valueTextBox.Width = 100; m_valueTextBox.Dock = DockStyle.Left; m_valueTextBox.TextChanged += m_valueTextBox_TextChanged; m_valueTextBox.CustomPaintForeground += m_valueTextBox_CustomPaintForeground; m_valueTextBox.Leave += m_valueTextBox_Leave; MetroButton resetButton = new MetroButton(); MetroSkinManager.ApplyMetroStyle(resetButton); resetButton.Width = 0; resetButton.AutoSize = true; resetButton.Dock = DockStyle.Right; resetButton.Text = m_curve == null ? "Reset visible curves" : "Reset curve"; resetButton.Click += resetButton_Click; bottomToolbar.Controls.Add(resetButton); bottomToolbar.Controls.Add(m_valueTextBox); bottomToolbar.Controls.Add(valueLabel); bottomToolbar.Controls.Add(m_keyTextBox); bottomToolbar.Controls.Add(keyLabel); }
public SceneViewAssetsControl(SceneViewPageControl owner) { MetroSkinManager.ApplyMetroStyle(this); m_owner = owner; m_backImage = Bitmap.FromFile("resources/icons/appbar.arrow.left.png"); m_dirImage = Bitmap.FromFile("resources/icons/appbar.folder.png"); m_fileImage = Bitmap.FromFile("resources/icons/appbar.page.png"); m_fileCodeImage = Bitmap.FromFile("resources/icons/appbar.page.code.png"); m_fileImageImage = Bitmap.FromFile("resources/icons/appbar.page.image.png"); m_fileMusicImage = Bitmap.FromFile("resources/icons/appbar.page.music.png"); m_fileTextImage = Bitmap.FromFile("resources/icons/appbar.page.text.png"); m_fileDataImage = Bitmap.FromFile("resources/icons/appbar.page.xml.png"); Resize += SceneViewAssetsControl_Resize; m_toolbarPanel = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(m_toolbarPanel); m_toolbarPanel.Dock = DockStyle.Top; m_toolbarPanel.Height = DEFAULT_SIZE; m_menuAddTile = new MetroTileIcon(); MetroSkinManager.ApplyMetroStyle(m_menuAddTile); m_menuAddTile.Top = 2; m_menuAddTile.Width = DEFAULT_SIZE - 4; m_menuAddTile.Height = DEFAULT_SIZE - 4; m_menuAddTile.Image = Bitmap.FromFile("resources/icons/appbar.add.png"); m_menuAddTile.IsImageScaled = true; m_menuAddTile.ImageScale = new PointF(0.5f, 0.5f); m_menuAddTile.MouseUp += m_menuAddTile_MouseUp; m_toolbarPanel.Controls.Add(m_menuAddTile); m_menuTypeCombobox = new MetroComboBox(); MetroSkinManager.ApplyMetroStyle(m_menuTypeCombobox); m_menuTypeCombobox.Left = m_menuAddTile.Right + DEFAULT_SEPARATOR; m_menuTypeCombobox.Width = 100; m_menuTypeCombobox.Height = DEFAULT_SIZE; m_menuTypeCombobox.BindingContext = new BindingContext(); m_menuTypeCombobox.DataSource = ASSET_TYPES; m_menuTypeCombobox.SelectedValueChanged += m_menuTypeCombobox_SelectedValueChanged; m_toolbarPanel.Controls.Add(m_menuTypeCombobox); m_menuSearchTextbox = new MetroTextBox(); MetroSkinManager.ApplyMetroStyle(m_menuSearchTextbox); m_menuSearchTextbox.Left = m_menuTypeCombobox.Right + DEFAULT_SEPARATOR; m_menuSearchTextbox.Width = 250; m_menuSearchTextbox.Height = DEFAULT_SIZE; m_menuSearchTextbox.Text = ""; m_menuSearchTextbox.TextChanged += m_menuSearchTextbox_TextChanged; m_toolbarPanel.Controls.Add(m_menuSearchTextbox); m_menuPathLabel = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(m_menuPathLabel); m_menuPathLabel.Left = m_menuSearchTextbox.Right + DEFAULT_SEPARATOR; m_menuPathLabel.Width = 0; m_menuPathLabel.Height = 0; m_menuPathLabel.Text = ""; m_menuPathLabel.AutoSize = true; m_toolbarPanel.Controls.Add(m_menuPathLabel); m_filesListPanel = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(m_filesListPanel); m_filesListPanel.Dock = DockStyle.Fill; m_filesListScrollbar = new MetroScrollBar(MetroScrollOrientation.Horizontal); MetroSkinManager.ApplyMetroStyle(m_filesListScrollbar); m_filesListScrollbar.Dock = DockStyle.Bottom; m_filesListScrollbar.Scroll += m_filesListScrollbar_Scroll; Controls.Add(m_filesListPanel); Controls.Add(m_toolbarPanel); Controls.Add(m_filesListScrollbar); UpdateScrollbar(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { var userType = GlobalObjects.CasEnvironment.IdentityUser.UserType; MetroFramework.Controls.MetroLabel labelNumber; MetroFramework.Controls.MetroLabel label1; MetroFramework.Controls.MetroLabel label2; MetroFramework.Controls.MetroLabel label3; this.flightNumberListViewAll = new CAS.UI.UIControls.ScheduleControls.FlightNumberListView(); this.flightNumberListView2 = new CAS.UI.UIControls.ScheduleControls.FlightNumberListView(); this.buttonDelete = new System.Windows.Forms.Button(); this.buttonAdd = new System.Windows.Forms.Button(); this.textBoxRemarks = new MetroFramework.Controls.MetroTextBox(); this.comboBoxDayOfWeek = new System.Windows.Forms.ComboBox(); this.buttonOk = new System.Windows.Forms.Button(); this.lookupComboboxTrip = new CAS.UI.UIControls.Auxiliary.LookupCombobox(); this.comboBoxCustomer = new System.Windows.Forms.ComboBox(); this.panel1 = new MetroFramework.Controls.MetroPanel(); this.radioButtonSummer = new MetroFramework.Controls.MetroRadioButton(); this.radioButtonWinter = new MetroFramework.Controls.MetroRadioButton(); this.panel2 = new MetroFramework.Controls.MetroPanel(); this.radioButtonUnSchedule = new MetroFramework.Controls.MetroRadioButton(); this.radioButtonSchedule = new MetroFramework.Controls.MetroRadioButton(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.ButtonFilter = new AvControls.AvButtonT.AvButtonT(); labelNumber = new MetroFramework.Controls.MetroLabel(); label1 = new MetroFramework.Controls.MetroLabel(); label2 = new MetroFramework.Controls.MetroLabel(); label3 = new MetroFramework.Controls.MetroLabel(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); this.SuspendLayout(); // // labelNumber // labelNumber.AutoSize = true; labelNumber.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelNumber.Location = new System.Drawing.Point(11, 63); labelNumber.Name = "labelNumber"; labelNumber.Size = new System.Drawing.Size(81, 19); labelNumber.TabIndex = 28; labelNumber.Text = "Track Name:"; labelNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label1 // label1.AutoSize = true; label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label1.Location = new System.Drawing.Point(11, 93); label1.Name = "label1"; label1.Size = new System.Drawing.Size(86, 19); label1.TabIndex = 30; label1.Text = "Day of Week:"; label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label2 // label2.AutoSize = true; label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label2.Location = new System.Drawing.Point(446, 93); label2.Name = "label2"; label2.Size = new System.Drawing.Size(62, 19); label2.TabIndex = 210; label2.Text = "Remarks:"; label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label3 // label3.AutoSize = true; label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); label3.Location = new System.Drawing.Point(446, 63); label3.Name = "label3"; label3.Size = new System.Drawing.Size(70, 19); label3.TabIndex = 245; label3.Text = "Customer:"; label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // flightNumberListViewAll // this.flightNumberListViewAll.Displayer = null; this.flightNumberListViewAll.DisplayerText = null; this.flightNumberListViewAll.Entity = null; this.flightNumberListViewAll.Location = new System.Drawing.Point(11, 119); this.flightNumberListViewAll.Name = "flightNumberListViewAll"; this.flightNumberListViewAll.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this.flightNumberListViewAll.Size = new System.Drawing.Size(1244, 268); this.flightNumberListViewAll.TabIndex = 38; // // flightNumberListView2 // this.flightNumberListView2.Displayer = null; this.flightNumberListView2.DisplayerText = null; this.flightNumberListView2.Entity = null; this.flightNumberListView2.Location = new System.Drawing.Point(11, 393); this.flightNumberListView2.Name = "flightNumberListView2"; this.flightNumberListView2.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this.flightNumberListView2.Size = new System.Drawing.Size(1244, 272); this.flightNumberListView2.TabIndex = 39; // // buttonDelete // this.buttonDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonDelete.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonDelete.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonDelete.Location = new System.Drawing.Point(1068, 680); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(85, 33); this.buttonDelete.TabIndex = 42; this.buttonDelete.Text = "Delete"; this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click); this.buttonDelete.Enabled = !(userType == UsetType.ReadOnly || userType == UsetType.SaveOnly); // // buttonAdd // this.buttonAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonAdd.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonAdd.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonAdd.Location = new System.Drawing.Point(1159, 680); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(96, 33); this.buttonAdd.TabIndex = 40; this.buttonAdd.Text = "Add"; this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click); this.buttonAdd.Enabled = !(userType == UsetType.ReadOnly); // // textBoxRemarks // // // // this.textBoxRemarks.CustomButton.Image = null; this.textBoxRemarks.CustomButton.Location = new System.Drawing.Point(302, 2); this.textBoxRemarks.CustomButton.Name = ""; this.textBoxRemarks.CustomButton.Size = new System.Drawing.Size(15, 15); this.textBoxRemarks.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxRemarks.CustomButton.TabIndex = 1; this.textBoxRemarks.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxRemarks.CustomButton.UseSelectable = true; this.textBoxRemarks.CustomButton.Visible = false; this.textBoxRemarks.ForeColor = System.Drawing.Color.DimGray; this.textBoxRemarks.Lines = new string[0]; this.textBoxRemarks.Location = new System.Drawing.Point(525, 93); this.textBoxRemarks.MaxLength = 32767; this.textBoxRemarks.Name = "textBoxRemarks"; this.textBoxRemarks.PasswordChar = '\0'; this.textBoxRemarks.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxRemarks.SelectedText = ""; this.textBoxRemarks.SelectionLength = 0; this.textBoxRemarks.SelectionStart = 0; this.textBoxRemarks.ShortcutsEnabled = true; this.textBoxRemarks.Size = new System.Drawing.Size(320, 20); this.textBoxRemarks.TabIndex = 211; this.textBoxRemarks.UseSelectable = true; this.textBoxRemarks.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxRemarks.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // comboBoxDayOfWeek // this.comboBoxDayOfWeek.FormattingEnabled = true; this.comboBoxDayOfWeek.Location = new System.Drawing.Point(105, 93); this.comboBoxDayOfWeek.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); this.comboBoxDayOfWeek.Name = "comboBoxDayOfWeek"; this.comboBoxDayOfWeek.Size = new System.Drawing.Size(320, 21); this.comboBoxDayOfWeek.TabIndex = 212; this.comboBoxDayOfWeek.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(987, 680); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 243; this.buttonOk.Text = "OK"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); this.buttonOk.Enabled = !(userType == UsetType.ReadOnly); // // lookupComboboxTrip // this.lookupComboboxTrip.Displayer = null; this.lookupComboboxTrip.DisplayerText = null; this.lookupComboboxTrip.Entity = null; this.lookupComboboxTrip.Location = new System.Drawing.Point(105, 63); this.lookupComboboxTrip.Name = "lookupComboboxTrip"; this.lookupComboboxTrip.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this.lookupComboboxTrip.Size = new System.Drawing.Size(320, 21); this.lookupComboboxTrip.TabIndex = 244; this.lookupComboboxTrip.Type = null; this.lookupComboboxTrip.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // comboBoxCustomer // this.comboBoxCustomer.FormattingEnabled = true; this.comboBoxCustomer.Location = new System.Drawing.Point(525, 63); this.comboBoxCustomer.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); this.comboBoxCustomer.Name = "comboBoxCustomer"; this.comboBoxCustomer.Size = new System.Drawing.Size(320, 21); this.comboBoxCustomer.TabIndex = 246; this.comboBoxCustomer.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // panel1 // this.panel1.Controls.Add(this.radioButtonSummer); this.panel1.Controls.Add(this.radioButtonWinter); this.panel1.HorizontalScrollbarBarColor = true; this.panel1.HorizontalScrollbarHighlightOnWheel = false; this.panel1.HorizontalScrollbarSize = 10; this.panel1.Location = new System.Drawing.Point(851, 63); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(187, 21); this.panel1.TabIndex = 247; this.panel1.VerticalScrollbarBarColor = true; this.panel1.VerticalScrollbarHighlightOnWheel = false; this.panel1.VerticalScrollbarSize = 10; // // radioButtonSummer // this.radioButtonSummer.AutoSize = true; this.radioButtonSummer.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.radioButtonSummer.Location = new System.Drawing.Point(88, 3); this.radioButtonSummer.Name = "radioButtonSummer"; this.radioButtonSummer.Size = new System.Drawing.Size(68, 15); this.radioButtonSummer.TabIndex = 1; this.radioButtonSummer.TabStop = true; this.radioButtonSummer.Text = "Summer"; this.radioButtonSummer.UseSelectable = true; this.radioButtonSummer.CheckedChanged += new System.EventHandler(this.RadioButtonOnClick); // // radioButtonWinter // this.radioButtonWinter.AutoSize = true; this.radioButtonWinter.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.radioButtonWinter.Location = new System.Drawing.Point(3, 3); this.radioButtonWinter.Name = "radioButtonWinter"; this.radioButtonWinter.Size = new System.Drawing.Size(58, 15); this.radioButtonWinter.TabIndex = 0; this.radioButtonWinter.TabStop = true; this.radioButtonWinter.Text = "Winter"; this.radioButtonWinter.UseSelectable = true; this.radioButtonWinter.CheckedChanged += new System.EventHandler(this.RadioButtonOnClick); // // panel2 // this.panel2.Controls.Add(this.radioButtonUnSchedule); this.panel2.Controls.Add(this.radioButtonSchedule); this.panel2.HorizontalScrollbarBarColor = true; this.panel2.HorizontalScrollbarHighlightOnWheel = false; this.panel2.HorizontalScrollbarSize = 10; this.panel2.Location = new System.Drawing.Point(851, 93); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(187, 21); this.panel2.TabIndex = 248; this.panel2.VerticalScrollbarBarColor = true; this.panel2.VerticalScrollbarHighlightOnWheel = false; this.panel2.VerticalScrollbarSize = 10; // // radioButtonUnSchedule // this.radioButtonUnSchedule.AutoSize = true; this.radioButtonUnSchedule.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.radioButtonUnSchedule.Location = new System.Drawing.Point(88, 3); this.radioButtonUnSchedule.Name = "radioButtonUnSchedule"; this.radioButtonUnSchedule.Size = new System.Drawing.Size(86, 15); this.radioButtonUnSchedule.TabIndex = 1; this.radioButtonUnSchedule.TabStop = true; this.radioButtonUnSchedule.Text = "UnSchedule"; this.radioButtonUnSchedule.UseSelectable = true; this.radioButtonUnSchedule.CheckedChanged += new System.EventHandler(this.RadioButtonOnClick); // // radioButtonSchedule // this.radioButtonSchedule.AutoSize = true; this.radioButtonSchedule.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.radioButtonSchedule.Location = new System.Drawing.Point(3, 3); this.radioButtonSchedule.Name = "radioButtonSchedule"; this.radioButtonSchedule.Size = new System.Drawing.Size(71, 15); this.radioButtonSchedule.TabIndex = 0; this.radioButtonSchedule.TabStop = true; this.radioButtonSchedule.Text = "Schedule"; this.radioButtonSchedule.UseSelectable = true; this.radioButtonSchedule.CheckedChanged += new System.EventHandler(this.RadioButtonOnClick); // // pictureBox2 // this.pictureBox2.BackgroundImage = global::CAS.UI.Properties.Resources.SeparatorLine1; this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.pictureBox2.Location = new System.Drawing.Point(1249, 60); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(5, 50); this.pictureBox2.TabIndex = 250; this.pictureBox2.TabStop = false; // // ButtonFilter // this.ButtonFilter.ActiveBackColor = System.Drawing.Color.Transparent; this.ButtonFilter.ActiveBackgroundImage = null; this.ButtonFilter.Cursor = System.Windows.Forms.Cursors.Hand; this.ButtonFilter.FontMain = new System.Drawing.Font("Verdana", 14.25F); this.ButtonFilter.FontSecondary = new System.Drawing.Font("Verdana", 9.75F); this.ButtonFilter.ForeColorMain = System.Drawing.SystemColors.ControlText; this.ButtonFilter.ForeColorSecondary = System.Drawing.SystemColors.ControlText; this.ButtonFilter.Icon = global::CAS.UI.Properties.Resources.ApplyFilterIcon; this.ButtonFilter.IconLayout = System.Windows.Forms.ImageLayout.Center; this.ButtonFilter.IconNotEnabled = global::CAS.UI.Properties.Resources.AddIconGraySmall; this.ButtonFilter.Location = new System.Drawing.Point(1204, 64); this.ButtonFilter.Margin = new System.Windows.Forms.Padding(5); this.ButtonFilter.Name = "ButtonFilter"; this.ButtonFilter.NormalBackgroundImage = null; this.ButtonFilter.PaddingMain = new System.Windows.Forms.Padding(0); this.ButtonFilter.PaddingSecondary = new System.Windows.Forms.Padding(0); this.ButtonFilter.ShowToolTip = true; this.ButtonFilter.Size = new System.Drawing.Size(42, 38); this.ButtonFilter.TabIndex = 249; this.ButtonFilter.TextAlignMain = System.Drawing.ContentAlignment.MiddleLeft; this.ButtonFilter.TextAlignSecondary = System.Drawing.ContentAlignment.MiddleLeft; this.ButtonFilter.TextMain = ""; this.ButtonFilter.TextSecondary = ""; this.ButtonFilter.ToolTipText = "Add Item"; this.ButtonFilter.Click += new System.EventHandler(this.ButtonFilter_Click); // // TrackForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1262, 725); this.Controls.Add(this.pictureBox2); this.Controls.Add(this.ButtonFilter); this.Controls.Add(this.panel2); this.Controls.Add(this.panel1); this.Controls.Add(this.comboBoxCustomer); this.Controls.Add(label3); this.Controls.Add(this.lookupComboboxTrip); this.Controls.Add(this.buttonOk); this.Controls.Add(this.comboBoxDayOfWeek); this.Controls.Add(this.textBoxRemarks); this.Controls.Add(label2); this.Controls.Add(this.buttonDelete); this.Controls.Add(this.buttonAdd); this.Controls.Add(this.flightNumberListView2); this.Controls.Add(this.flightNumberListViewAll); this.Controls.Add(label1); this.Controls.Add(labelNumber); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "TrackForm"; this.Resizable = false; this.ShowIcon = false; this.Text = "TrackForm"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TripForm_FormClosing); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void UpdateDataGridView() { if (select_table != "") { cnn.DataAdapter(String.Format(query, select_table)); var data_adapter = cnn.GetDataAdapter(); DataSet ds = new DataSet(); data_adapter.Fill(ds, select_table); ColumnsComboBox.Items.Clear(); for (int i = 0; i < ds.Tables[0].Columns.Count; i++) { ColumnsComboBox.Items.Add(ds.Tables[0].Columns[i].ColumnName);// .Add(ds.Tables[0].Columns[i].ColumnName); } TableDataGridView.DataSource = ds; TableDataGridView.DataMember = select_table; int _x = 3; int _y = 41; int _columns = 0; FormPanel.AutoScroll = true; FormPanel.Controls.Clear(); MetroLabel label = new MetroLabel(); label.Location = new Point(0, 0); label.Size = new Size(232, 19); label.MaximumSize = new Size(232, 19); label.Text = select_table; FormPanel.Controls.Add(label); foreach (DataGridViewColumn column in TableDataGridView.Columns) { label = new MetroLabel(); label.Location = new Point(_x, 30 + (_y * _columns)); label.Size = new Size(232, 19); label.MaximumSize = new Size(232, 19); label.Text = column.Name; FormPanel.Controls.Add(label); MetroTextBox textbox = new MetroTextBox(); textbox.Location = new Point(_x, 50 + (_y * _columns)); textbox.Size = new Size(255, 23); textbox.MaximumSize = new Size(255, 23); textbox.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right; textbox.Enabled = Array.Exists(noEdit, element => element == column.Name) ? false : true; textbox.FontSize = MetroFramework.MetroTextBoxSize.Medium; FormPanel.Controls.Add(textbox); _columns++; } } }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelDescription; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CAASmsEventForm)); this.textBoxDescription = new MetroFramework.Controls.MetroTextBox(); this.labelConditions = new MetroFramework.Controls.MetroLabel(); this.flowLayoutPanelConditions = new System.Windows.Forms.FlowLayoutPanel(); this.panelAddCondition = new System.Windows.Forms.Panel(); this.linkLabelAddNew = new System.Windows.Forms.LinkLabel(); this.buttonOK = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.labelRiskIndex = new MetroFramework.Controls.MetroLabel(); this.textBoxRiskIndex = new MetroFramework.Controls.MetroTextBox(); this.comboBoxIncident = new System.Windows.Forms.ComboBox(); this.textBoxRemarks = new MetroFramework.Controls.MetroTextBox(); this.labelEventDate = new MetroFramework.Controls.MetroLabel(); this.labelRemarks = new MetroFramework.Controls.MetroLabel(); this.dateTimePickerEventDate = new System.Windows.Forms.DateTimePicker(); this.labelIncident = new MetroFramework.Controls.MetroLabel(); this.labelClass = new MetroFramework.Controls.MetroLabel(); this.labelEventCategory = new MetroFramework.Controls.MetroLabel(); this.labelEventType = new MetroFramework.Controls.MetroLabel(); this.dictionaryComboEventType = new CAS.UI.UIControls.Auxiliary.DictionaryComboBox(); this.dictionaryComboEventClass = new CAS.UI.UIControls.Auxiliary.DictionaryComboBox(); this.comboBox1 = new System.Windows.Forms.ComboBox(); labelDescription = new MetroFramework.Controls.MetroLabel(); this.flowLayoutPanelConditions.SuspendLayout(); this.panelAddCondition.SuspendLayout(); this.SuspendLayout(); // // labelDescription // labelDescription.AutoSize = true; labelDescription.Location = new System.Drawing.Point(11, 60); labelDescription.Name = "labelDescription"; labelDescription.Size = new System.Drawing.Size(77, 19); labelDescription.TabIndex = 0; labelDescription.Text = "Description:"; labelDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBoxDescription // this.textBoxDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); // // // this.textBoxDescription.CustomButton.Image = null; this.textBoxDescription.CustomButton.Location = new System.Drawing.Point(278, 2); this.textBoxDescription.CustomButton.Name = ""; this.textBoxDescription.CustomButton.Size = new System.Drawing.Size(75, 75); this.textBoxDescription.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxDescription.CustomButton.TabIndex = 1; this.textBoxDescription.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxDescription.CustomButton.UseSelectable = true; this.textBoxDescription.CustomButton.Visible = false; this.textBoxDescription.Lines = new string[0]; this.textBoxDescription.Location = new System.Drawing.Point(119, 63); this.textBoxDescription.MaxLength = 256; this.textBoxDescription.Multiline = true; this.textBoxDescription.Name = "textBoxDescription"; this.textBoxDescription.PasswordChar = '\0'; this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxDescription.SelectedText = ""; this.textBoxDescription.SelectionLength = 0; this.textBoxDescription.SelectionStart = 0; this.textBoxDescription.ShortcutsEnabled = true; this.textBoxDescription.Size = new System.Drawing.Size(356, 80); this.textBoxDescription.TabIndex = 2; this.textBoxDescription.UseSelectable = true; this.textBoxDescription.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxDescription.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // labelConditions // this.labelConditions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labelConditions.Location = new System.Drawing.Point(14, 312); this.labelConditions.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelConditions.Name = "labelConditions"; this.labelConditions.Size = new System.Drawing.Size(462, 19); this.labelConditions.TabIndex = 15; this.labelConditions.Text = "Conditions"; this.labelConditions.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // flowLayoutPanelConditions // this.flowLayoutPanelConditions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.flowLayoutPanelConditions.AutoScroll = true; this.flowLayoutPanelConditions.Controls.Add(this.panelAddCondition); this.flowLayoutPanelConditions.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; this.flowLayoutPanelConditions.Location = new System.Drawing.Point(14, 333); this.flowLayoutPanelConditions.Margin = new System.Windows.Forms.Padding(2); this.flowLayoutPanelConditions.MaximumSize = new System.Drawing.Size(485, 162); this.flowLayoutPanelConditions.Name = "flowLayoutPanelConditions"; this.flowLayoutPanelConditions.Size = new System.Drawing.Size(462, 162); this.flowLayoutPanelConditions.TabIndex = 8; this.flowLayoutPanelConditions.WrapContents = false; // // panelAddCondition // this.panelAddCondition.Controls.Add(this.linkLabelAddNew); this.panelAddCondition.Location = new System.Drawing.Point(0, 0); this.panelAddCondition.Margin = new System.Windows.Forms.Padding(0); this.panelAddCondition.Name = "panelAddCondition"; this.panelAddCondition.Size = new System.Drawing.Size(462, 30); this.panelAddCondition.TabIndex = 19; // // linkLabelAddNew // this.linkLabelAddNew.Anchor = System.Windows.Forms.AnchorStyles.None; this.linkLabelAddNew.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.linkLabelAddNew.Location = new System.Drawing.Point(180, 4); this.linkLabelAddNew.Name = "linkLabelAddNew"; this.linkLabelAddNew.Size = new System.Drawing.Size(114, 23); this.linkLabelAddNew.TabIndex = 2; this.linkLabelAddNew.TabStop = true; this.linkLabelAddNew.Text = "Add new condition"; this.linkLabelAddNew.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.linkLabelAddNew.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabelAddNewConditionLinkClicked); // // buttonOK // this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOK.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOK.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOK.Location = new System.Drawing.Point(347, 602); this.buttonOK.Margin = new System.Windows.Forms.Padding(2); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(56, 27); this.buttonOK.TabIndex = 10; this.buttonOK.Text = "OK"; this.buttonOK.Click += new System.EventHandler(this.ButtonOkClick); // // buttonCancel // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonCancel.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonCancel.Location = new System.Drawing.Point(406, 602); this.buttonCancel.Margin = new System.Windows.Forms.Padding(2); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(69, 27); this.buttonCancel.TabIndex = 11; this.buttonCancel.Text = "Cancel"; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick); // // labelRiskIndex // this.labelRiskIndex.AutoSize = true; this.labelRiskIndex.Location = new System.Drawing.Point(11, 229); this.labelRiskIndex.Name = "labelRiskIndex"; this.labelRiskIndex.Size = new System.Drawing.Size(66, 19); this.labelRiskIndex.TabIndex = 242; this.labelRiskIndex.Text = "Risk index"; // // textBoxRiskIndex // this.textBoxRiskIndex.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); // // // this.textBoxRiskIndex.CustomButton.Image = null; this.textBoxRiskIndex.CustomButton.Location = new System.Drawing.Point(339, 2); this.textBoxRiskIndex.CustomButton.Name = ""; this.textBoxRiskIndex.CustomButton.Size = new System.Drawing.Size(15, 15); this.textBoxRiskIndex.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxRiskIndex.CustomButton.TabIndex = 1; this.textBoxRiskIndex.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxRiskIndex.CustomButton.UseSelectable = true; this.textBoxRiskIndex.CustomButton.Visible = false; this.textBoxRiskIndex.Lines = new string[0]; this.textBoxRiskIndex.Location = new System.Drawing.Point(119, 229); this.textBoxRiskIndex.MaxLength = 256; this.textBoxRiskIndex.Name = "textBoxRiskIndex"; this.textBoxRiskIndex.PasswordChar = '\0'; this.textBoxRiskIndex.ReadOnly = true; this.textBoxRiskIndex.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxRiskIndex.SelectedText = ""; this.textBoxRiskIndex.SelectionLength = 0; this.textBoxRiskIndex.SelectionStart = 0; this.textBoxRiskIndex.ShortcutsEnabled = true; this.textBoxRiskIndex.Size = new System.Drawing.Size(357, 20); this.textBoxRiskIndex.TabIndex = 241; this.textBoxRiskIndex.UseSelectable = true; this.textBoxRiskIndex.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxRiskIndex.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // comboBoxIncident // this.comboBoxIncident.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.comboBoxIncident.FormattingEnabled = true; this.comboBoxIncident.Location = new System.Drawing.Point(119, 252); this.comboBoxIncident.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); this.comboBoxIncident.Name = "comboBoxIncident"; this.comboBoxIncident.Size = new System.Drawing.Size(356, 21); this.comboBoxIncident.TabIndex = 6; // // textBoxRemarks // this.textBoxRemarks.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); // // // this.textBoxRemarks.CustomButton.Image = null; this.textBoxRemarks.CustomButton.Location = new System.Drawing.Point(268, 2); this.textBoxRemarks.CustomButton.Name = ""; this.textBoxRemarks.CustomButton.Size = new System.Drawing.Size(85, 85); this.textBoxRemarks.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxRemarks.CustomButton.TabIndex = 1; this.textBoxRemarks.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxRemarks.CustomButton.UseSelectable = true; this.textBoxRemarks.CustomButton.Visible = false; this.textBoxRemarks.Lines = new string[0]; this.textBoxRemarks.Location = new System.Drawing.Point(119, 507); this.textBoxRemarks.MaxLength = 256; this.textBoxRemarks.Multiline = true; this.textBoxRemarks.Name = "textBoxRemarks"; this.textBoxRemarks.PasswordChar = '\0'; this.textBoxRemarks.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxRemarks.SelectedText = ""; this.textBoxRemarks.SelectionLength = 0; this.textBoxRemarks.SelectionStart = 0; this.textBoxRemarks.ShortcutsEnabled = true; this.textBoxRemarks.Size = new System.Drawing.Size(356, 90); this.textBoxRemarks.TabIndex = 9; this.textBoxRemarks.UseSelectable = true; this.textBoxRemarks.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxRemarks.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // labelEventDate // this.labelEventDate.AutoSize = true; this.labelEventDate.Location = new System.Drawing.Point(11, 277); this.labelEventDate.Name = "labelEventDate"; this.labelEventDate.Size = new System.Drawing.Size(71, 19); this.labelEventDate.TabIndex = 235; this.labelEventDate.Text = "Event Date"; // // labelRemarks // this.labelRemarks.AutoSize = true; this.labelRemarks.Location = new System.Drawing.Point(11, 507); this.labelRemarks.Name = "labelRemarks"; this.labelRemarks.Size = new System.Drawing.Size(59, 19); this.labelRemarks.TabIndex = 234; this.labelRemarks.Text = "Remarks"; // // dateTimePickerEventDate // this.dateTimePickerEventDate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dateTimePickerEventDate.Location = new System.Drawing.Point(119, 277); this.dateTimePickerEventDate.Margin = new System.Windows.Forms.Padding(2); this.dateTimePickerEventDate.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerEventDate.Name = "dateTimePickerEventDate"; this.dateTimePickerEventDate.Size = new System.Drawing.Size(356, 20); this.dateTimePickerEventDate.TabIndex = 7; this.dateTimePickerEventDate.Value = new System.DateTime(2012, 12, 26, 0, 0, 0, 0); // // labelIncident // this.labelIncident.AutoSize = true; this.labelIncident.Location = new System.Drawing.Point(11, 252); this.labelIncident.Name = "labelIncident"; this.labelIncident.Size = new System.Drawing.Size(109, 19); this.labelIncident.TabIndex = 239; this.labelIncident.Text = "Incident/Accident"; // // labelClass // this.labelClass.AutoSize = true; this.labelClass.Location = new System.Drawing.Point(11, 176); this.labelClass.Name = "labelClass"; this.labelClass.Size = new System.Drawing.Size(70, 19); this.labelClass.TabIndex = 238; this.labelClass.Text = "Event class"; // // labelEventCategory // this.labelEventCategory.AutoSize = true; this.labelEventCategory.Location = new System.Drawing.Point(11, 202); this.labelEventCategory.Name = "labelEventCategory"; this.labelEventCategory.Size = new System.Drawing.Size(99, 19); this.labelEventCategory.TabIndex = 236; this.labelEventCategory.Text = "Event Category"; // // labelEventType // this.labelEventType.AutoSize = true; this.labelEventType.Location = new System.Drawing.Point(11, 150); this.labelEventType.Name = "labelEventType"; this.labelEventType.Size = new System.Drawing.Size(69, 19); this.labelEventType.TabIndex = 232; this.labelEventType.Text = "Event type"; // // dictionaryComboEventType // this.dictionaryComboEventType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dictionaryComboEventType.Displayer = null; this.dictionaryComboEventType.DisplayerText = null; this.dictionaryComboEventType.Entity = null; this.dictionaryComboEventType.Location = new System.Drawing.Point(119, 150); this.dictionaryComboEventType.Margin = new System.Windows.Forms.Padding(4); this.dictionaryComboEventType.Name = "dictionaryComboEventType"; this.dictionaryComboEventType.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this.dictionaryComboEventType.Size = new System.Drawing.Size(356, 21); this.dictionaryComboEventType.TabIndex = 243; this.dictionaryComboEventType.SelectedIndexChanged += new System.EventHandler(this.LookupComboboxEventTypeSelectedIndexChanged); // // dictionaryComboEventClass // this.dictionaryComboEventClass.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dictionaryComboEventClass.Displayer = null; this.dictionaryComboEventClass.DisplayerText = null; this.dictionaryComboEventClass.Entity = null; this.dictionaryComboEventClass.Location = new System.Drawing.Point(119, 176); this.dictionaryComboEventClass.Margin = new System.Windows.Forms.Padding(4); this.dictionaryComboEventClass.Name = "dictionaryComboEventClass"; this.dictionaryComboEventClass.ReflectionType = CAS.UI.Management.Dispatchering.ReflectionTypes.DisplayInCurrent; this.dictionaryComboEventClass.Size = new System.Drawing.Size(356, 21); this.dictionaryComboEventClass.TabIndex = 244; this.dictionaryComboEventClass.SelectedIndexChanged += new System.EventHandler(this.DictionaryComboEventClassSelectedIndexChanged); // // comboBox1 // this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(119, 201); this.comboBox1.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(356, 21); this.comboBox1.TabIndex = 245; // // CAASmsEventForm // this.AcceptButton = this.buttonOK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.buttonCancel; this.ClientSize = new System.Drawing.Size(485, 636); this.Controls.Add(this.comboBox1); this.Controls.Add(this.dictionaryComboEventClass); this.Controls.Add(this.dictionaryComboEventType); this.Controls.Add(this.labelRiskIndex); this.Controls.Add(this.textBoxRiskIndex); this.Controls.Add(this.comboBoxIncident); this.Controls.Add(this.textBoxRemarks); this.Controls.Add(this.labelEventDate); this.Controls.Add(this.labelRemarks); this.Controls.Add(this.dateTimePickerEventDate); this.Controls.Add(this.labelIncident); this.Controls.Add(this.labelClass); this.Controls.Add(this.labelEventCategory); this.Controls.Add(this.labelEventType); this.Controls.Add(this.buttonOK); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.flowLayoutPanelConditions); this.Controls.Add(this.labelConditions); this.Controls.Add(this.textBoxDescription); this.Controls.Add(labelDescription); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(2); this.MaximizeBox = false; this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(485, 534); this.Name = "CAASmsEventForm"; this.Text = "SMS Event Form"; this.flowLayoutPanelConditions.ResumeLayout(false); this.panelAddCondition.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/** * @return Panel **/ public void create() { this.panel = new QuestionPanel(); this.lbQuestion = new MetroLabel(); this.rbAnswer1 = new MetroRadioButton(); this.rbAnswer2 = new MetroRadioButton(); this.rbAnswer3 = new MetroRadioButton(); this.rbAnswer4 = new MetroRadioButton(); /** * @note panel **/ this.panel.SuspendLayout(); this.panel.Dock = System.Windows.Forms.DockStyle.Top; this.panel.HorizontalScrollbarBarColor = true; this.panel.HorizontalScrollbarHighlightOnWheel = false; this.panel.HorizontalScrollbarSize = 7; this.panel.Location = new System.Drawing.Point(124, 3); this.panel.Size = new System.Drawing.Size(909, 375); this.panel.TabIndex = 1; this.panel.VerticalScrollbarBarColor = true; this.panel.VerticalScrollbarHighlightOnWheel = false; this.panel.VerticalScrollbarSize = 7; /** * @note lbQuestion **/ this.lbQuestion.Text = this.getQuestion(); this.lbQuestion.Left = 0; this.lbQuestion.Width = this.panel.Width; this.lbQuestion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lbQuestion.Top = 50; this.lbQuestion.FontSize = MetroFramework.MetroLabelSize.Tall; this.lbQuestion.FontWeight = MetroFramework.MetroLabelWeight.Bold; /** * @note rbAnswer1 **/ this.rbAnswer1.Text = this.getAnswer1(); this.rbAnswer1.AutoSize = true; this.rbAnswer1.AutoEllipsis = true; this.rbAnswer1.CheckedChanged += this.rbAnswer1_CheckedChanged; this.rbAnswer1.Location = new System.Drawing.Point(this.panel.Width /4 , ((lbQuestion.Top + lbQuestion.Height) + 10)); this.rbAnswer1.FontSize = MetroFramework.MetroCheckBoxSize.Tall; /** * @note rbAnswer2 **/ this.rbAnswer2.Text = this.getAnswer2(); this.rbAnswer2.AutoSize = true; this.rbAnswer2.Location = new System.Drawing.Point(this.panel.Width / 4, ((lbQuestion.Top + lbQuestion.Height) + 40)); this.rbAnswer2.FontSize = MetroFramework.MetroCheckBoxSize.Tall; /** * @note rbAnswer3 **/ this.rbAnswer3.Text = this.getAnswer3(); this.rbAnswer3.AutoSize = true; this.rbAnswer3.Location = new System.Drawing.Point(this.panel.Width / 4, ((lbQuestion.Top + lbQuestion.Height) + 70)); this.rbAnswer3.FontSize = MetroFramework.MetroCheckBoxSize.Tall; /** * @note rbAnswer4 **/ this.rbAnswer4.Text = this.getAnswer4(); this.rbAnswer4.AutoSize = true; this.rbAnswer4.Location = new System.Drawing.Point(this.panel.Width / 4, ((lbQuestion.Top + lbQuestion.Height) + 100)); this.rbAnswer4.FontSize = MetroFramework.MetroCheckBoxSize.Tall; /** * @note add elements to panel **/ this.panel.Controls.Add(lbQuestion); this.panel.Controls.Add(rbAnswer1); this.panel.Controls.Add(rbAnswer2); this.panel.Controls.Add(rbAnswer3); this.panel.Controls.Add(rbAnswer4); /** * @note hide the panel by default **/ this.panel.ResumeLayout(false); this.panel.PerformLayout(); this.panel.Hide(); }
private void InitializeComponent() { ComponentResourceManager manager = new ComponentResourceManager(typeof(Form4)); this.metroTile1 = new MetroTile(); this.pictureBox8 = new PictureBox(); this.pictureBox1 = new PictureBox(); this.metroTile2 = new MetroTile(); this.pictureBox7 = new PictureBox(); this.pictureBox6 = new PictureBox(); this.pictureBox2 = new PictureBox(); this.metroTile3 = new MetroTile(); this.pictureBox3 = new PictureBox(); this.metroTile4 = new MetroTile(); this.pictureBox4 = new PictureBox(); this.metroTile5 = new MetroTile(); this.pictureBox5 = new PictureBox(); this.openFileDialog1 = new OpenFileDialog(); this.folderBrowserDialog1 = new FolderBrowserDialog(); this.textBox1 = new TextBox(); this.backgroundWorker1 = new BackgroundWorker(); this.metroProgressBar1 = new MetroProgressBar(); this.metroTile6 = new MetroTile(); this.pictureBox9 = new PictureBox(); this.metroTile7 = new MetroTile(); this.pictureBox10 = new PictureBox(); this.panel1 = new Panel(); this.metroLabel1 = new MetroLabel(); this.pictureBox11 = new PictureBox(); this.pictureBox12 = new PictureBox(); this.panel2 = new Panel(); this.metroLabel6 = new MetroLabel(); this.metroLabel5 = new MetroLabel(); this.pictureBox14 = new PictureBox(); this.metroLabel3 = new MetroLabel(); this.metroLabel4 = new MetroLabel(); this.metroLabel2 = new MetroLabel(); this.pictureBox13 = new PictureBox(); this.textBox2 = new TextBox(); this.metroLabel7 = new MetroLabel(); this.metroTile1.SuspendLayout(); ((ISupportInitialize) this.pictureBox8).BeginInit(); ((ISupportInitialize) this.pictureBox1).BeginInit(); this.metroTile2.SuspendLayout(); ((ISupportInitialize) this.pictureBox7).BeginInit(); ((ISupportInitialize) this.pictureBox6).BeginInit(); ((ISupportInitialize) this.pictureBox2).BeginInit(); this.metroTile3.SuspendLayout(); ((ISupportInitialize) this.pictureBox3).BeginInit(); this.metroTile4.SuspendLayout(); ((ISupportInitialize) this.pictureBox4).BeginInit(); this.metroTile5.SuspendLayout(); ((ISupportInitialize) this.pictureBox5).BeginInit(); this.metroTile6.SuspendLayout(); ((ISupportInitialize) this.pictureBox9).BeginInit(); this.metroTile7.SuspendLayout(); ((ISupportInitialize) this.pictureBox10).BeginInit(); ((ISupportInitialize) this.pictureBox11).BeginInit(); ((ISupportInitialize) this.pictureBox12).BeginInit(); this.panel2.SuspendLayout(); ((ISupportInitialize) this.pictureBox14).BeginInit(); ((ISupportInitialize) this.pictureBox13).BeginInit(); base.SuspendLayout(); this.metroTile1.ActiveControl = null; this.metroTile1.BackColor = Color.Transparent; this.metroTile1.Controls.Add(this.pictureBox8); this.metroTile1.Controls.Add(this.pictureBox1); this.metroTile1.ForeColor = Color.Lavender; this.metroTile1.Location = new Point(0x34, 0x60); this.metroTile1.Name = "metroTile1"; this.metroTile1.Size = new Size(0xdb, 0x86); this.metroTile1.Style = MetroColorStyle.Blue; this.metroTile1.TabIndex = 0; this.metroTile1.Text = "Launch"; this.metroTile1.Theme = MetroThemeStyle.Light; this.metroTile1.UseSelectable = true; this.metroTile1.Click += new EventHandler(this.metroTile1_Click); this.pictureBox8.Image = Resources.pre; this.pictureBox8.Location = new Point(0x2c, 0x11); this.pictureBox8.Name = "pictureBox8"; this.pictureBox8.Size = new Size(0x77, 0x5b); this.pictureBox8.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox8.TabIndex = 1; this.pictureBox8.TabStop = false; this.pictureBox8.Click += new EventHandler(this.pictureBox8_Click); this.pictureBox1.Image = Resources._0074; this.pictureBox1.Location = new Point(0x2b, 0x11); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(120, 0x5b); this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; this.pictureBox1.Click += new EventHandler(this.pictureBox1_Click); this.metroTile2.ActiveControl = null; this.metroTile2.BackColor = Color.Transparent; this.metroTile2.Controls.Add(this.pictureBox7); this.metroTile2.Controls.Add(this.pictureBox6); this.metroTile2.Controls.Add(this.pictureBox2); this.metroTile2.Location = new Point(0x14b, 0x60); this.metroTile2.Name = "metroTile2"; this.metroTile2.Size = new Size(0x9b, 0x86); this.metroTile2.Style = MetroColorStyle.Blue; this.metroTile2.TabIndex = 1; this.metroTile2.Text = "Load"; this.metroTile2.Theme = MetroThemeStyle.Light; this.metroTile2.UseSelectable = true; this.metroTile2.Click += new EventHandler(this.metroTile2_Click); this.pictureBox7.Image = Resources.error_7_xxl; this.pictureBox7.Location = new Point(0x26, 0x29); this.pictureBox7.Name = "pictureBox7"; this.pictureBox7.Size = new Size(0x45, 0x3b); this.pictureBox7.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox7.TabIndex = 2; this.pictureBox7.TabStop = false; this.pictureBox7.Visible = false; this.pictureBox7.Click += new EventHandler(this.pictureBox7_Click); this.pictureBox6.Image = Resources.loaded; this.pictureBox6.Location = new Point(30, 0x15); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new Size(0x5f, 0x5d); this.pictureBox6.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox6.TabIndex = 1; this.pictureBox6.TabStop = false; this.pictureBox6.Visible = false; this.pictureBox6.Click += new EventHandler(this.pictureBox6_Click_1); this.pictureBox2.Image = Resources.loader; this.pictureBox2.Location = new Point(0x25, 0x29); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new Size(0x40, 0x3b); this.pictureBox2.SizeMode = PictureBoxSizeMode.Zoom; this.pictureBox2.TabIndex = 0; this.pictureBox2.TabStop = false; this.pictureBox2.Click += new EventHandler(this.pictureBox2_Click); this.metroTile3.ActiveControl = null; this.metroTile3.BackColor = Color.Transparent; this.metroTile3.Controls.Add(this.pictureBox3); this.metroTile3.Location = new Point(0x2ac, 0x60); this.metroTile3.Name = "metroTile3"; this.metroTile3.Size = new Size(0x9b, 0x86); this.metroTile3.Style = MetroColorStyle.Blue; this.metroTile3.TabIndex = 2; this.metroTile3.Text = "About"; this.metroTile3.Theme = MetroThemeStyle.Light; this.metroTile3.UseSelectable = true; this.metroTile3.Click += new EventHandler(this.metroTile3_Click); this.pictureBox3.Image = Resources.question; this.pictureBox3.Location = new Point(0x2e, 40); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new Size(0x3f, 0x3b); this.pictureBox3.SizeMode = PictureBoxSizeMode.Zoom; this.pictureBox3.TabIndex = 0; this.pictureBox3.TabStop = false; this.pictureBox3.Click += new EventHandler(this.pictureBox3_Click); this.metroTile4.ActiveControl = null; this.metroTile4.BackColor = Color.Transparent; this.metroTile4.Controls.Add(this.pictureBox4); this.metroTile4.Location = new Point(0x1fb, 0x60); this.metroTile4.Name = "metroTile4"; this.metroTile4.Size = new Size(0x9b, 0x86); this.metroTile4.Style = MetroColorStyle.Blue; this.metroTile4.TabIndex = 3; this.metroTile4.Text = "Suggestions"; this.metroTile4.Theme = MetroThemeStyle.Light; this.metroTile4.UseSelectable = true; this.metroTile4.Click += new EventHandler(this.metroTile4_Click); this.pictureBox4.Image = Resources.sugsn; this.pictureBox4.Location = new Point(0x2d, 0x27); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new Size(0x3e, 0x3b); this.pictureBox4.SizeMode = PictureBoxSizeMode.Zoom; this.pictureBox4.TabIndex = 0; this.pictureBox4.TabStop = false; this.pictureBox4.Click += new EventHandler(this.pictureBox4_Click); this.metroTile5.ActiveControl = null; this.metroTile5.BackColor = Color.Transparent; this.metroTile5.Controls.Add(this.pictureBox5); this.metroTile5.Location = new Point(0x2ac, 0xef); this.metroTile5.Name = "metroTile5"; this.metroTile5.Size = new Size(0x9b, 0x86); this.metroTile5.Style = MetroColorStyle.Blue; this.metroTile5.TabIndex = 4; this.metroTile5.Text = "Exit"; this.metroTile5.Theme = MetroThemeStyle.Light; this.metroTile5.UseSelectable = true; this.metroTile5.Click += new EventHandler(this.metroTile5_Click); this.pictureBox5.Image = Resources.exit_256; this.pictureBox5.Location = new Point(0x2f, 40); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new Size(0x3f, 0x3b); this.pictureBox5.SizeMode = PictureBoxSizeMode.Zoom; this.pictureBox5.TabIndex = 0; this.pictureBox5.TabStop = false; this.pictureBox5.Click += new EventHandler(this.pictureBox5_Click); this.textBox1.Location = new Point(0x232, 12); this.textBox1.Name = "textBox1"; this.textBox1.Size = new Size(100, 20); this.textBox1.TabIndex = 5; this.textBox1.Visible = false; this.backgroundWorker1.WorkerReportsProgress = true; this.backgroundWorker1.DoWork += new DoWorkEventHandler(this.backgroundWorker1_DoWork); this.backgroundWorker1.ProgressChanged += new ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged); this.backgroundWorker1.RunWorkerCompleted += new RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted); this.metroProgressBar1.FontWeight = MetroProgressBarWeight.Regular; this.metroProgressBar1.Location = new Point(0x34, 210); this.metroProgressBar1.Name = "metroProgressBar1"; this.metroProgressBar1.ProgressBarStyle = ProgressBarStyle.Blocks; this.metroProgressBar1.Size = new Size(0xdb, 4); this.metroProgressBar1.Style = MetroColorStyle.Blue; this.metroProgressBar1.TabIndex = 6; this.metroProgressBar1.TextAlign = ContentAlignment.MiddleCenter; this.metroProgressBar1.Theme = MetroThemeStyle.Light; this.metroProgressBar1.Click += new EventHandler(this.metroProgressBar1_Click); this.metroTile6.ActiveControl = null; this.metroTile6.BackColor = Color.Transparent; this.metroTile6.Controls.Add(this.pictureBox9); this.metroTile6.Location = new Point(0x1fb, 0xef); this.metroTile6.Name = "metroTile6"; this.metroTile6.Size = new Size(0x9b, 0x86); this.metroTile6.Style = MetroColorStyle.Blue; this.metroTile6.TabIndex = 7; this.metroTile6.Text = "Report Bug"; this.metroTile6.Theme = MetroThemeStyle.Light; this.metroTile6.UseSelectable = true; this.metroTile6.Click += new EventHandler(this.metroTile6_Click); this.pictureBox9.Image = Resources.gif_bestpage_sk_33; this.pictureBox9.Location = new Point(0x22, 0x1a); this.pictureBox9.Name = "pictureBox9"; this.pictureBox9.Size = new Size(0x5b, 0x51); this.pictureBox9.SizeMode = PictureBoxSizeMode.Zoom; this.pictureBox9.TabIndex = 0; this.pictureBox9.TabStop = false; this.pictureBox9.Click += new EventHandler(this.pictureBox9_Click); this.metroTile7.ActiveControl = null; this.metroTile7.BackColor = Color.Transparent; this.metroTile7.Controls.Add(this.pictureBox10); this.metroTile7.Location = new Point(0x14b, 0xef); this.metroTile7.Name = "metroTile7"; this.metroTile7.Size = new Size(0x9b, 0x86); this.metroTile7.Style = MetroColorStyle.Blue; this.metroTile7.TabIndex = 8; this.metroTile7.Text = "Like Us on Facebook!!"; this.metroTile7.Theme = MetroThemeStyle.Light; this.metroTile7.UseSelectable = true; this.metroTile7.Click += new EventHandler(this.metroTile7_Click); this.pictureBox10.Image = Resources.fbmta; this.pictureBox10.Location = new Point(3, 0); this.pictureBox10.Name = "pictureBox10"; this.pictureBox10.Size = new Size(0x95, 0x73); this.pictureBox10.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox10.TabIndex = 0; this.pictureBox10.TabStop = false; this.pictureBox10.Click += new EventHandler(this.pictureBox10_Click); this.panel1.BackColor = Color.Transparent; this.panel1.Location = new Point(0x25, 80); this.panel1.Name = "panel1"; this.panel1.Size = new Size(0x32f, 0x13c); this.panel1.TabIndex = 9; this.metroLabel1.AutoSize = true; this.metroLabel1.BackColor = Color.Transparent; this.metroLabel1.FontWeight = MetroLabelWeight.Bold; this.metroLabel1.Location = new Point(0xa3, 0x7f); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new Size(0x1e6, 0x72); this.metroLabel1.Style = MetroColorStyle.Green; this.metroLabel1.TabIndex = 100; this.metroLabel1.Text = "\r\n1. Now compatible with the PC having resolution 1024x768 and above.\r\n\r\n2. Some Small bugs have been fixed.\r\n\r\n "; this.metroLabel1.UseCustomBackColor = true; this.metroLabel1.UseStyleColors = true; this.pictureBox11.BackColor = Color.Transparent; this.pictureBox11.Image = Resources.online_test_318_23480; this.pictureBox11.Location = new Point(0x2c, 0x27); this.pictureBox11.Name = "pictureBox11"; this.pictureBox11.Size = new Size(60, 0x34); this.pictureBox11.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox11.TabIndex = 0x65; this.pictureBox11.TabStop = false; this.pictureBox11.Click += new EventHandler(this.pictureBox11_Click); this.pictureBox11.MouseEnter += new EventHandler(this.pictureBox11_MouseEnter); this.pictureBox12.BackColor = Color.Transparent; this.pictureBox12.Image = Resources.facebook; this.pictureBox12.Location = new Point(0x2ed, 0x127); this.pictureBox12.Name = "pictureBox12"; this.pictureBox12.Size = new Size(0x2a, 0x2a); this.pictureBox12.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox12.TabIndex = 0x68; this.pictureBox12.TabStop = false; this.pictureBox12.Click += new EventHandler(this.pictureBox12_Click); this.pictureBox12.MouseEnter += new EventHandler(this.pictureBox12_MouseEnter); this.panel2.BackgroundImage = Resources.sssssssssss; this.panel2.BackgroundImageLayout = ImageLayout.Stretch; this.panel2.Controls.Add(this.metroLabel7); this.panel2.Controls.Add(this.metroLabel6); this.panel2.Controls.Add(this.metroLabel5); this.panel2.Controls.Add(this.pictureBox14); this.panel2.Controls.Add(this.metroLabel3); this.panel2.Controls.Add(this.metroLabel4); this.panel2.Controls.Add(this.pictureBox12); this.panel2.Controls.Add(this.metroLabel2); this.panel2.Controls.Add(this.pictureBox13); this.panel2.Controls.Add(this.pictureBox11); this.panel2.Controls.Add(this.metroLabel1); this.panel2.Location = new Point(0x34, 0x25); this.panel2.Name = "panel2"; this.panel2.Size = new Size(0x329, 0x178); this.panel2.TabIndex = 10; this.panel2.Visible = false; this.panel2.MouseDown += new MouseEventHandler(this.panel2_MouseDown); this.metroLabel6.AutoSize = true; this.metroLabel6.BackColor = Color.Transparent; this.metroLabel6.FontSize = MetroLabelSize.Small; this.metroLabel6.FontWeight = MetroLabelWeight.Bold; this.metroLabel6.Location = new Point(0x71, 0x52); this.metroLabel6.Name = "metroLabel6"; this.metroLabel6.Size = new Size(0x13e, 15); this.metroLabel6.Style = MetroColorStyle.White; this.metroLabel6.TabIndex = 0x6f; this.metroLabel6.Text = "Copyright \x00a9 2014. Mock Test Adda - All Rights Reserved"; this.metroLabel6.UseCustomBackColor = true; this.metroLabel6.UseStyleColors = true; this.metroLabel5.AutoSize = true; this.metroLabel5.BackColor = Color.Transparent; this.metroLabel5.FontWeight = MetroLabelWeight.Bold; this.metroLabel5.Location = new Point(0x71, 0x3f); this.metroLabel5.Name = "metroLabel5"; this.metroLabel5.Size = new Size(0x6d, 0x13); this.metroLabel5.Style = MetroColorStyle.Blue; this.metroLabel5.TabIndex = 110; this.metroLabel5.Text = "MTA Beta 1.0.1"; this.metroLabel5.UseCustomBackColor = true; this.metroLabel5.UseStyleColors = true; this.pictureBox14.BackColor = Color.Transparent; this.pictureBox14.Image = Resources._new; this.pictureBox14.Location = new Point(400, 340); this.pictureBox14.Name = "pictureBox14"; this.pictureBox14.Size = new Size(0x196, 0x21); this.pictureBox14.SizeMode = PictureBoxSizeMode.CenterImage; this.pictureBox14.TabIndex = 0x6d; this.pictureBox14.TabStop = false; this.metroLabel3.AutoSize = true; this.metroLabel3.BackColor = Color.Transparent; this.metroLabel3.FontWeight = MetroLabelWeight.Bold; this.metroLabel3.Location = new Point(0x298, 0x13e); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new Size(0x54, 0x13); this.metroLabel3.Style = MetroColorStyle.Blue; this.metroLabel3.TabIndex = 0x6b; this.metroLabel3.Text = "Facebook!!"; this.metroLabel3.UseCustomBackColor = true; this.metroLabel3.UseStyleColors = true; this.metroLabel4.AutoSize = true; this.metroLabel4.BackColor = Color.Transparent; this.metroLabel4.FontWeight = MetroLabelWeight.Bold; this.metroLabel4.Location = new Point(0x1ce, 0x13e); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new Size(0x20, 0x13); this.metroLabel4.Style = MetroColorStyle.Red; this.metroLabel4.TabIndex = 0x6c; this.metroLabel4.Text = "P.S."; this.metroLabel4.UseCustomBackColor = true; this.metroLabel4.UseStyleColors = true; this.metroLabel2.AutoSize = true; this.metroLabel2.BackColor = Color.Transparent; this.metroLabel2.FontWeight = MetroLabelWeight.Bold; this.metroLabel2.Location = new Point(0x1e9, 0x13e); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new Size(0xb2, 0x13); this.metroLabel2.Style = MetroColorStyle.Green; this.metroLabel2.TabIndex = 0x6a; this.metroLabel2.Text = "Don't forget to Like us on"; this.metroLabel2.UseCustomBackColor = true; this.metroLabel2.UseStyleColors = true; this.pictureBox13.BackColor = Color.Transparent; this.pictureBox13.Image = Resources.button_cancel; this.pictureBox13.Location = new Point(0x2f7, -5); this.pictureBox13.Name = "pictureBox13"; this.pictureBox13.Size = new Size(50, 40); this.pictureBox13.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox13.TabIndex = 0x69; this.pictureBox13.TabStop = false; this.pictureBox13.Click += new EventHandler(this.pictureBox13_Click); this.pictureBox13.MouseEnter += new EventHandler(this.pictureBox13_MouseEnter); this.textBox2.Location = new Point(0x2ac, 12); this.textBox2.Name = "textBox2"; this.textBox2.Size = new Size(100, 20); this.textBox2.TabIndex = 0x71; this.textBox2.Visible = false; this.metroLabel7.AutoSize = true; this.metroLabel7.BackColor = Color.Transparent; this.metroLabel7.FontWeight = MetroLabelWeight.Bold; this.metroLabel7.Location = new Point(0x47, 0x91); this.metroLabel7.Name = "metroLabel7"; this.metroLabel7.Size = new Size(0x5c, 0x13); this.metroLabel7.Style = MetroColorStyle.Red; this.metroLabel7.TabIndex = 0x70; this.metroLabel7.Text = "Change Log:"; this.metroLabel7.UseCustomBackColor = true; this.metroLabel7.UseStyleColors = true; base.AutoScaleDimensions = new SizeF(6f, 13f); base.AutoScaleMode = AutoScaleMode.Font; this.BackgroundImage = Resources.finalbkmta; this.BackgroundImageLayout = ImageLayout.Stretch; base.ClientSize = new Size(930, 0x1ca); base.Controls.Add(this.textBox2); base.Controls.Add(this.panel2); base.Controls.Add(this.metroTile7); base.Controls.Add(this.metroTile6); base.Controls.Add(this.metroProgressBar1); base.Controls.Add(this.textBox1); base.Controls.Add(this.metroTile5); base.Controls.Add(this.metroTile4); base.Controls.Add(this.metroTile3); base.Controls.Add(this.metroTile2); base.Controls.Add(this.metroTile1); base.Controls.Add(this.panel1); this.DoubleBuffered = true; base.FormBorderStyle = FormBorderStyle.None; base.Icon = (Icon) manager.GetObject("$this.Icon"); base.Name = "Form4"; base.StartPosition = FormStartPosition.CenterScreen; this.Text = "MTA Beta"; base.Load += new EventHandler(this.Form4_Load); base.MouseDown += new MouseEventHandler(this.Form4_MouseDown); this.metroTile1.ResumeLayout(false); ((ISupportInitialize) this.pictureBox8).EndInit(); ((ISupportInitialize) this.pictureBox1).EndInit(); this.metroTile2.ResumeLayout(false); ((ISupportInitialize) this.pictureBox7).EndInit(); ((ISupportInitialize) this.pictureBox6).EndInit(); ((ISupportInitialize) this.pictureBox2).EndInit(); this.metroTile3.ResumeLayout(false); ((ISupportInitialize) this.pictureBox3).EndInit(); this.metroTile4.ResumeLayout(false); ((ISupportInitialize) this.pictureBox4).EndInit(); this.metroTile5.ResumeLayout(false); ((ISupportInitialize) this.pictureBox5).EndInit(); this.metroTile6.ResumeLayout(false); ((ISupportInitialize) this.pictureBox9).EndInit(); this.metroTile7.ResumeLayout(false); ((ISupportInitialize) this.pictureBox10).EndInit(); ((ISupportInitialize) this.pictureBox11).EndInit(); ((ISupportInitialize) this.pictureBox12).EndInit(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); ((ISupportInitialize) this.pictureBox14).EndInit(); ((ISupportInitialize) this.pictureBox13).EndInit(); base.ResumeLayout(false); base.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JakklConfig)); this.contextMenu = new System.Windows.Forms.ContextMenu(); this.menuItemConfigure = new System.Windows.Forms.MenuItem(); this.menuItemVwr = new System.Windows.Forms.MenuItem(); this.menuItem2 = new System.Windows.Forms.MenuItem(); this.menuItemExit = new System.Windows.Forms.MenuItem(); this.SaveButton = new MetroFramework.Controls.MetroButton(); this.cancelButton = new MetroFramework.Controls.MetroButton(); this.metroLabel1 = new MetroFramework.Controls.MetroLabel(); this.metroLabel2 = new MetroFramework.Controls.MetroLabel(); this.runOnStartup = new MetroFramework.Controls.MetroToggle(); this.metroLabel3 = new MetroFramework.Controls.MetroLabel(); this._saveSettings = new MetroFramework.Controls.MetroRadioButton(); this.cbFilter = new System.Windows.Forms.ComboBox(); this.cbLogs = new System.Windows.Forms.ComboBox(); this.checkBoxROS = new System.Windows.Forms.CheckBox(); this._saveSettingsLabel = new MetroFramework.Controls.MetroLabel(); this._saveSettings1 = new MetroFramework.Controls.MetroToggle(); this.metroLabel4 = new MetroFramework.Controls.MetroLabel(); this.syslogServer = new MetroFramework.Controls.MetroTextBox(); this.syslogPortLabel = new MetroFramework.Controls.MetroLabel(); this._syslogPort = new MetroFramework.Controls.MetroTextBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.testConnButton = new MetroFramework.Controls.MetroButton(); this.logsSelectedBox = new MetroFramework.Controls.MetroTextBox(); this.logsCheckBox = new System.Windows.Forms.ListBox(); this.metroButton1 = new FontAwesome.Sharp.IconPictureBox(); this.iconPictureBox1 = new FontAwesome.Sharp.IconPictureBox(); this.filterTextBox = new MetroFramework.Controls.MetroTextBox(); this._eventFilter = new System.Windows.Forms.ListBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.metroButton1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.iconPictureBox1)).BeginInit(); this.SuspendLayout(); // // contextMenu // this.contextMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItemConfigure, this.menuItemVwr, this.menuItem2, this.menuItemExit }); // // menuItemConfigure // this.menuItemConfigure.DefaultItem = true; this.menuItemConfigure.Index = 0; this.menuItemConfigure.Text = "Configure..."; this.menuItemConfigure.Click += new System.EventHandler(this.menuItemConfigure_Click); // // menuItemVwr // this.menuItemVwr.Index = 1; this.menuItemVwr.Text = "Event Viewer"; this.menuItemVwr.Click += new System.EventHandler(this.menuItemVwr_Click); // // menuItem2 // this.menuItem2.Index = 2; this.menuItem2.Text = "-"; // // menuItemExit // this.menuItemExit.Index = 3; this.menuItemExit.Text = "Exit"; this.menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click); // // SaveButton // this.SaveButton.Location = new System.Drawing.Point(182, 350); this.SaveButton.Name = "SaveButton"; this.SaveButton.Size = new System.Drawing.Size(82, 23); this.SaveButton.TabIndex = 2; this.SaveButton.Text = "Apply"; this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click); // // cancelButton // this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(23, 350); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 3; this.cancelButton.Text = "Cancel"; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // metroLabel1 // this.metroLabel1.AutoSize = true; this.metroLabel1.Location = new System.Drawing.Point(23, 61); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new System.Drawing.Size(115, 19); this.metroLabel1.TabIndex = 7; this.metroLabel1.Text = "Log(s) to monitor:"; // // metroLabel2 // this.metroLabel2.AutoSize = true; this.metroLabel2.Location = new System.Drawing.Point(23, 126); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new System.Drawing.Size(128, 19); this.metroLabel2.TabIndex = 8; this.metroLabel2.Text = "Filter by event types:"; // // runOnStartup // this.runOnStartup.AutoSize = true; this.runOnStartup.Checked = true; this.runOnStartup.CheckState = System.Windows.Forms.CheckState.Checked; this.runOnStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.runOnStartup.Location = new System.Drawing.Point(183, 273); this.runOnStartup.Name = "runOnStartup"; this.runOnStartup.Size = new System.Drawing.Size(80, 17); this.runOnStartup.TabIndex = 8; this.runOnStartup.Text = "On"; this.runOnStartup.UseVisualStyleBackColor = true; this.runOnStartup.CheckedChanged += new System.EventHandler(this.MetroToggle1_CheckedChanged); // // metroLabel3 // this.metroLabel3.AutoSize = true; this.metroLabel3.Location = new System.Drawing.Point(23, 273); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new System.Drawing.Size(103, 19); this.metroLabel3.TabIndex = 11; this.metroLabel3.Text = "Run On Startup:"; // // _saveSettings // this._saveSettings.Location = new System.Drawing.Point(0, 0); this._saveSettings.Name = "_saveSettings"; this._saveSettings.Size = new System.Drawing.Size(104, 24); this._saveSettings.TabIndex = 0; // // cbFilter // this.cbFilter.Location = new System.Drawing.Point(0, 0); this.cbFilter.Name = "cbFilter"; this.cbFilter.Size = new System.Drawing.Size(121, 21); this.cbFilter.TabIndex = 0; // // cbLogs // this.cbLogs.Location = new System.Drawing.Point(0, 0); this.cbLogs.Name = "cbLogs"; this.cbLogs.Size = new System.Drawing.Size(121, 21); this.cbLogs.TabIndex = 0; // // checkBoxROS // this.checkBoxROS.Location = new System.Drawing.Point(0, 0); this.checkBoxROS.Name = "checkBoxROS"; this.checkBoxROS.Size = new System.Drawing.Size(104, 24); this.checkBoxROS.TabIndex = 0; // // _saveSettingsLabel // this._saveSettingsLabel.AutoSize = true; this._saveSettingsLabel.Location = new System.Drawing.Point(23, 305); this._saveSettingsLabel.Name = "_saveSettingsLabel"; this._saveSettingsLabel.Size = new System.Drawing.Size(88, 19); this._saveSettingsLabel.TabIndex = 12; this._saveSettingsLabel.Text = "Save Settings:"; // // _saveSettings1 // this._saveSettings1.AutoSize = true; this._saveSettings1.Checked = true; this._saveSettings1.CheckState = System.Windows.Forms.CheckState.Checked; this._saveSettings1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._saveSettings1.Location = new System.Drawing.Point(183, 307); this._saveSettings1.Name = "_saveSettings1"; this._saveSettings1.Size = new System.Drawing.Size(80, 17); this._saveSettings1.TabIndex = 13; this._saveSettings1.Text = "On"; this._saveSettings1.UseVisualStyleBackColor = true; // // metroLabel4 // this.metroLabel4.AutoSize = true; this.metroLabel4.Location = new System.Drawing.Point(23, 195); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new System.Drawing.Size(92, 19); this.metroLabel4.TabIndex = 14; this.metroLabel4.Text = "Syslog Server:"; // // syslogServer // this.syslogServer.CustomBackground = true; this.syslogServer.Location = new System.Drawing.Point(26, 217); this.syslogServer.Name = "syslogServer"; this.syslogServer.Size = new System.Drawing.Size(125, 23); this.syslogServer.TabIndex = 15; this.syslogServer.Text = "0.0.0.0"; this.syslogServer.Click += new System.EventHandler(this.MetroTextBox1_Click); // // syslogPortLabel // this.syslogPortLabel.AutoSize = true; this.syslogPortLabel.Location = new System.Drawing.Point(161, 195); this.syslogPortLabel.Name = "syslogPortLabel"; this.syslogPortLabel.Size = new System.Drawing.Size(37, 19); this.syslogPortLabel.TabIndex = 16; this.syslogPortLabel.Text = "Port:"; this.syslogPortLabel.Click += new System.EventHandler(this.SyslogPort_Click); // // _syslogPort // this._syslogPort.BackColor = System.Drawing.SystemColors.Window; this._syslogPort.CustomBackground = true; this._syslogPort.Location = new System.Drawing.Point(161, 217); this._syslogPort.Name = "_syslogPort"; this._syslogPort.Size = new System.Drawing.Size(43, 23); this._syslogPort.TabIndex = 17; this._syslogPort.Text = "514"; // // pictureBox1 // this.pictureBox1.Image = global::Jakkl.Properties.Resources.Jakkl_sm; this.pictureBox1.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.InitialImage"))); this.pictureBox1.Location = new System.Drawing.Point(202, 7); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(74, 76); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.pictureBox1.TabIndex = 18; this.pictureBox1.TabStop = false; // // testConnButton // this.testConnButton.Location = new System.Drawing.Point(210, 217); this.testConnButton.Name = "testConnButton"; this.testConnButton.Size = new System.Drawing.Size(54, 23); this.testConnButton.TabIndex = 20; this.testConnButton.Text = "Test"; this.testConnButton.Click += new System.EventHandler(this.testConnButton_Click); // // logsSelectedBox // this.logsSelectedBox.FontWeight = MetroFramework.MetroTextBoxWeight.Light; this.logsSelectedBox.Location = new System.Drawing.Point(26, 85); this.logsSelectedBox.Name = "logsSelectedBox"; this.logsSelectedBox.Size = new System.Drawing.Size(209, 23); this.logsSelectedBox.TabIndex = 22; this.logsSelectedBox.Click += new System.EventHandler(this.metroTextBox1_Click_1); // // logsCheckBox // this.logsCheckBox.FormattingEnabled = true; this.logsCheckBox.Location = new System.Drawing.Point(26, 114); this.logsCheckBox.Name = "logsCheckBox"; this.logsCheckBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple; this.logsCheckBox.Size = new System.Drawing.Size(237, 95); this.logsCheckBox.Sorted = true; this.logsCheckBox.TabIndex = 25; this.logsCheckBox.Visible = false; this.logsCheckBox.MouseLeave += new System.EventHandler(this.Close_ListBox); // // metroButton1 // this.metroButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.metroButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.metroButton1.ForeColor = System.Drawing.SystemColors.ControlText; this.metroButton1.IconChar = FontAwesome.Sharp.IconChar.None; this.metroButton1.IconColor = System.Drawing.SystemColors.ControlText; this.metroButton1.IconSize = 23; this.metroButton1.Location = new System.Drawing.Point(241, 85); this.metroButton1.Name = "metroButton1"; this.metroButton1.Size = new System.Drawing.Size(23, 23); this.metroButton1.TabIndex = 26; this.metroButton1.TabStop = false; this.metroButton1.Click += new System.EventHandler(this.ShowLogsCheckBox); this.metroButton1.MouseHover += new System.EventHandler(this.ShowLogsCheckBox); // // iconPictureBox1 // this.iconPictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.iconPictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.iconPictureBox1.ForeColor = System.Drawing.SystemColors.ControlText; this.iconPictureBox1.IconChar = FontAwesome.Sharp.IconChar.None; this.iconPictureBox1.IconColor = System.Drawing.SystemColors.ControlText; this.iconPictureBox1.IconSize = 23; this.iconPictureBox1.Location = new System.Drawing.Point(241, 148); this.iconPictureBox1.Name = "iconPictureBox1"; this.iconPictureBox1.Size = new System.Drawing.Size(23, 23); this.iconPictureBox1.TabIndex = 28; this.iconPictureBox1.TabStop = false; this.iconPictureBox1.MouseHover += new System.EventHandler(this.ShoweventFilters); // // filterTextBox // this.filterTextBox.FontWeight = MetroFramework.MetroTextBoxWeight.Light; this.filterTextBox.Location = new System.Drawing.Point(28, 148); this.filterTextBox.Name = "filterTextBox"; this.filterTextBox.Size = new System.Drawing.Size(207, 23); this.filterTextBox.TabIndex = 27; // // _eventFilter // this._eventFilter.FormattingEnabled = true; this._eventFilter.Items.AddRange(new object[] { "All Event Types", "Error", "FailureAudit", "Information", "SuccessAudit", "Warning" }); this._eventFilter.Location = new System.Drawing.Point(28, 177); this._eventFilter.Name = "_eventFilter"; this._eventFilter.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple; this._eventFilter.Size = new System.Drawing.Size(235, 69); this._eventFilter.Sorted = true; this._eventFilter.TabIndex = 29; this._eventFilter.Visible = false; this._eventFilter.MouseLeave += new System.EventHandler(this.Close_FiltersListBox); // // JakklConfig // this.AcceptButton = this.SaveButton; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(293, 388); this.ContextMenu = this.contextMenu; this.ControlBox = false; this.Controls.Add(this.logsCheckBox); this.Controls.Add(this._eventFilter); this.Controls.Add(this.iconPictureBox1); this.Controls.Add(this.filterTextBox); this.Controls.Add(this.metroButton1); this.Controls.Add(this.logsSelectedBox); this.Controls.Add(this.testConnButton); this.Controls.Add(this.pictureBox1); this.Controls.Add(this._syslogPort); this.Controls.Add(this.syslogPortLabel); this.Controls.Add(this.syslogServer); this.Controls.Add(this.metroLabel4); this.Controls.Add(this._saveSettings1); this.Controls.Add(this._saveSettingsLabel); this.Controls.Add(this.metroLabel3); this.Controls.Add(this.runOnStartup); this.Controls.Add(this.metroLabel2); this.Controls.Add(this.metroLabel1); this.Controls.Add(this.cancelButton); this.Controls.Add(this.SaveButton); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "JakklConfig"; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.Text = "Jakkl Config"; this.Load += new System.EventHandler(this.Config_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.metroButton1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.iconPictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeGeneral() { m_generalPanel = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(m_generalPanel); m_generalPanel.Size = new Size(); m_generalPanel.AutoSize = true; m_generalPanel.Left = DEFAULT_SECTION_SEPARATOR; m_generalPanel.Top = DEFAULT_SECTION_SEPARATOR; Controls.Add(m_generalPanel); MetroLabel title = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(title); title.Text = "General"; title.Size = new Size(); title.AutoSize = true; m_generalPanel.Controls.Add(title); m_generalNewProjectTile = new MetroTileIcon(); MetroSkinManager.ApplyMetroStyle(m_generalNewProjectTile); m_generalNewProjectTile.Text = "NEW\nPROJECT"; m_generalNewProjectTile.Image = Bitmap.FromFile("resources/icons/appbar.page.new.png"); m_generalNewProjectTile.Size = DEFAULT_TILE_SIZE; m_generalNewProjectTile.Location = new Point(DEFAULT_TILE_SEPARATOR.X, title.Bottom + DEFAULT_TILE_SEPARATOR.Y); m_generalNewProjectTile.Click += new EventHandler(m_generalNewProjectTile_Click); m_generalPanel.Controls.Add(m_generalNewProjectTile); m_generalOpenProjectTile = new MetroTileIcon(); MetroSkinManager.ApplyMetroStyle(m_generalOpenProjectTile); m_generalOpenProjectTile.Text = "OPEN\nPROJECT"; m_generalOpenProjectTile.Image = Bitmap.FromFile("resources/icons/appbar.page.edit.png"); m_generalOpenProjectTile.Size = DEFAULT_TILE_SIZE; m_generalOpenProjectTile.Location = new Point(m_generalNewProjectTile.Right + DEFAULT_TILE_SEPARATOR.X, title.Bottom + DEFAULT_TILE_SEPARATOR.Y); m_generalOpenProjectTile.Click += new EventHandler(m_generalOpenProjectTile_Click); m_generalPanel.Controls.Add(m_generalOpenProjectTile); //m_generalImportProjectTile = new MetroTileIcon(); //MetroSkinManager.ApplyMetroStyle(m_generalImportProjectTile); //m_generalImportProjectTile.Text = "IMPORT\nPROJECT"; //m_generalImportProjectTile.Image = Bitmap.FromFile("resources/icons/appbar.page.download.png"); //m_generalImportProjectTile.Size = DEFAULT_TILE_SIZE; //m_generalImportProjectTile.Location = new Point(m_generalOpenProjectTile.Right + DEFAULT_TILE_SEPARATOR.X, title.Bottom + DEFAULT_TILE_SEPARATOR.Y); //m_generalImportProjectTile.Click += new EventHandler(m_generalImportProjectTile_Click); //m_generalPanel.Controls.Add(m_generalImportProjectTile); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelDescription; MetroFramework.Controls.MetroLabel labelName; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SmsEventTypeForm)); this.textBoxDescription = new MetroFramework.Controls.MetroTextBox(); this.labelConditions = new MetroFramework.Controls.MetroLabel(); this.flowLayoutPanelConditions = new System.Windows.Forms.FlowLayoutPanel(); this.panelAddCondition = new System.Windows.Forms.Panel(); this.linkLabelAddNew = new System.Windows.Forms.LinkLabel(); this.buttonOK = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.listViewCompliance = new System.Windows.Forms.ListView(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonEdit = new System.Windows.Forms.Button(); this.buttonDelete = new System.Windows.Forms.Button(); this.labelRiskLevel = new MetroFramework.Controls.MetroLabel(); this.textBoxName = new MetroFramework.Controls.MetroTextBox(); labelDescription = new MetroFramework.Controls.MetroLabel(); labelName = new MetroFramework.Controls.MetroLabel(); this.flowLayoutPanelConditions.SuspendLayout(); this.panelAddCondition.SuspendLayout(); this.SuspendLayout(); // // labelDescription // labelDescription.AutoSize = true; labelDescription.Location = new System.Drawing.Point(16, 91); labelDescription.Name = "labelDescription"; labelDescription.Size = new System.Drawing.Size(77, 19); labelDescription.TabIndex = 0; labelDescription.Text = "Description:"; labelDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelName // labelName.AutoSize = true; labelName.Location = new System.Drawing.Point(16, 65); labelName.Name = "labelName"; labelName.Size = new System.Drawing.Size(48, 19); labelName.TabIndex = 0; labelName.Text = "Name:"; labelName.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBoxDescription // this.textBoxDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); // // // this.textBoxDescription.CustomButton.Image = null; this.textBoxDescription.CustomButton.Location = new System.Drawing.Point(300, 2); this.textBoxDescription.CustomButton.Margin = new System.Windows.Forms.Padding(2); this.textBoxDescription.CustomButton.Name = ""; this.textBoxDescription.CustomButton.Size = new System.Drawing.Size(75, 75); this.textBoxDescription.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxDescription.CustomButton.TabIndex = 1; this.textBoxDescription.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxDescription.CustomButton.UseSelectable = true; this.textBoxDescription.CustomButton.Visible = false; this.textBoxDescription.Lines = new string[0]; this.textBoxDescription.Location = new System.Drawing.Point(93, 89); this.textBoxDescription.MaxLength = 256; this.textBoxDescription.Multiline = true; this.textBoxDescription.Name = "textBoxDescription"; this.textBoxDescription.PasswordChar = '\0'; this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxDescription.SelectedText = ""; this.textBoxDescription.SelectionLength = 0; this.textBoxDescription.SelectionStart = 0; this.textBoxDescription.ShortcutsEnabled = true; this.textBoxDescription.Size = new System.Drawing.Size(378, 80); this.textBoxDescription.TabIndex = 2; this.textBoxDescription.UseSelectable = true; this.textBoxDescription.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxDescription.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // labelConditions // this.labelConditions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labelConditions.Location = new System.Drawing.Point(8, 170); this.labelConditions.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelConditions.Name = "labelConditions"; this.labelConditions.Size = new System.Drawing.Size(464, 19); this.labelConditions.TabIndex = 15; this.labelConditions.Text = "Conditions"; this.labelConditions.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // flowLayoutPanelConditions // this.flowLayoutPanelConditions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.flowLayoutPanelConditions.AutoScroll = true; this.flowLayoutPanelConditions.Controls.Add(this.panelAddCondition); this.flowLayoutPanelConditions.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; this.flowLayoutPanelConditions.Location = new System.Drawing.Point(10, 191); this.flowLayoutPanelConditions.Margin = new System.Windows.Forms.Padding(2); this.flowLayoutPanelConditions.MaximumSize = new System.Drawing.Size(485, 162); this.flowLayoutPanelConditions.Name = "flowLayoutPanelConditions"; this.flowLayoutPanelConditions.Size = new System.Drawing.Size(462, 162); this.flowLayoutPanelConditions.TabIndex = 3; this.flowLayoutPanelConditions.WrapContents = false; // // panelAddCondition // this.panelAddCondition.Controls.Add(this.linkLabelAddNew); this.panelAddCondition.Location = new System.Drawing.Point(0, 0); this.panelAddCondition.Margin = new System.Windows.Forms.Padding(0); this.panelAddCondition.Name = "panelAddCondition"; this.panelAddCondition.Size = new System.Drawing.Size(462, 30); this.panelAddCondition.TabIndex = 19; // // linkLabelAddNew // this.linkLabelAddNew.Anchor = System.Windows.Forms.AnchorStyles.None; this.linkLabelAddNew.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.linkLabelAddNew.Location = new System.Drawing.Point(15, 4); this.linkLabelAddNew.Name = "linkLabelAddNew"; this.linkLabelAddNew.Size = new System.Drawing.Size(431, 23); this.linkLabelAddNew.TabIndex = 2; this.linkLabelAddNew.TabStop = true; this.linkLabelAddNew.Text = "Add new condition"; this.linkLabelAddNew.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.linkLabelAddNew.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabelAddNewConditionLinkClicked); // // buttonOK // this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOK.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOK.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOK.Location = new System.Drawing.Point(342, 546); this.buttonOK.Margin = new System.Windows.Forms.Padding(2); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(56, 27); this.buttonOK.TabIndex = 7; this.buttonOK.Text = "OK"; this.buttonOK.Click += new System.EventHandler(this.ButtonOkClick); // // buttonCancel // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonCancel.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonCancel.Location = new System.Drawing.Point(402, 546); this.buttonCancel.Margin = new System.Windows.Forms.Padding(2); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(69, 27); this.buttonCancel.TabIndex = 9; this.buttonCancel.Text = "Cancel"; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick); // // listViewCompliance // this.listViewCompliance.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.listViewCompliance.FullRowSelect = true; this.listViewCompliance.HideSelection = false; this.listViewCompliance.Location = new System.Drawing.Point(8, 378); this.listViewCompliance.Name = "listViewCompliance"; this.listViewCompliance.Size = new System.Drawing.Size(463, 152); this.listViewCompliance.TabIndex = 4; this.listViewCompliance.UseCompatibleStateImageBehavior = false; this.listViewCompliance.View = System.Windows.Forms.View.Details; this.listViewCompliance.Click += new System.EventHandler(this.ListViewComplainceClick); this.listViewCompliance.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.ListViewComplainceMouseDoubleClick); // // buttonAdd // this.buttonAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonAdd.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonAdd.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonAdd.Location = new System.Drawing.Point(8, 546); this.buttonAdd.Margin = new System.Windows.Forms.Padding(2); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(56, 27); this.buttonAdd.TabIndex = 5; this.buttonAdd.Text = "Add"; this.buttonAdd.Click += new System.EventHandler(this.ButtonAddClick); // // buttonEdit // this.buttonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonEdit.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonEdit.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonEdit.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonEdit.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonEdit.Location = new System.Drawing.Point(69, 546); this.buttonEdit.Margin = new System.Windows.Forms.Padding(2); this.buttonEdit.Name = "buttonEdit"; this.buttonEdit.Size = new System.Drawing.Size(56, 27); this.buttonEdit.TabIndex = 6; this.buttonEdit.Text = "Edit"; this.buttonEdit.Click += new System.EventHandler(this.ButtonEditClick); // // buttonDelete // this.buttonDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonDelete.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonDelete.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonDelete.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonDelete.Location = new System.Drawing.Point(130, 546); this.buttonDelete.Margin = new System.Windows.Forms.Padding(2); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(65, 27); this.buttonDelete.TabIndex = 7; this.buttonDelete.Text = "Delete"; this.buttonDelete.Click += new System.EventHandler(this.ButtonDeleteClick); // // labelRiskLevel // this.labelRiskLevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labelRiskLevel.Location = new System.Drawing.Point(8, 356); this.labelRiskLevel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelRiskLevel.Name = "labelRiskLevel"; this.labelRiskLevel.Size = new System.Drawing.Size(464, 19); this.labelRiskLevel.TabIndex = 17; this.labelRiskLevel.Text = "Risk Lelel"; this.labelRiskLevel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // textBoxName // this.textBoxName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); // // // this.textBoxName.CustomButton.Image = null; this.textBoxName.CustomButton.Location = new System.Drawing.Point(356, 1); this.textBoxName.CustomButton.Margin = new System.Windows.Forms.Padding(2); this.textBoxName.CustomButton.Name = ""; this.textBoxName.CustomButton.Size = new System.Drawing.Size(21, 21); this.textBoxName.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxName.CustomButton.TabIndex = 1; this.textBoxName.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxName.CustomButton.UseSelectable = true; this.textBoxName.CustomButton.Visible = false; this.textBoxName.Lines = new string[0]; this.textBoxName.Location = new System.Drawing.Point(93, 63); this.textBoxName.MaxLength = 256; this.textBoxName.Name = "textBoxName"; this.textBoxName.PasswordChar = '\0'; this.textBoxName.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxName.SelectedText = ""; this.textBoxName.SelectionLength = 0; this.textBoxName.SelectionStart = 0; this.textBoxName.ShortcutsEnabled = true; this.textBoxName.Size = new System.Drawing.Size(378, 23); this.textBoxName.TabIndex = 1; this.textBoxName.UseSelectable = true; this.textBoxName.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxName.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // SmsEventTypeForm // this.AcceptButton = this.buttonOK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.buttonCancel; this.ClientSize = new System.Drawing.Size(481, 591); this.Controls.Add(this.textBoxName); this.Controls.Add(labelName); this.Controls.Add(this.buttonOK); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.labelRiskLevel); this.Controls.Add(this.buttonDelete); this.Controls.Add(this.buttonAdd); this.Controls.Add(this.flowLayoutPanelConditions); this.Controls.Add(this.buttonEdit); this.Controls.Add(this.labelConditions); this.Controls.Add(this.listViewCompliance); this.Controls.Add(this.textBoxDescription); this.Controls.Add(labelDescription); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(2); this.MaximizeBox = false; this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(481, 526); this.Name = "SmsEventTypeForm"; this.Padding = new System.Windows.Forms.Padding(15, 60, 15, 16); this.Text = "SMS Event Type Form"; this.flowLayoutPanelConditions.ResumeLayout(false); this.panelAddCondition.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeSpecific() { m_specificPanel = new MetroPanel(); MetroSkinManager.ApplyMetroStyle(m_specificPanel); m_specificPanel.Size = new Size(); m_specificPanel.AutoSize = true; m_specificPanel.Left = DEFAULT_SECTION_SEPARATOR; m_specificPanel.Top = m_generalPanel.Bottom + DEFAULT_SECTION_SEPARATOR; Controls.Add(m_specificPanel); MetroLabel title = new MetroLabel(); MetroSkinManager.ApplyMetroStyle(title); title.Text = "Project-specific"; title.Size = new Size(); title.AutoSize = true; m_specificPanel.Controls.Add(title); m_specificExportProjectTile = new MetroTileIcon(); MetroSkinManager.ApplyMetroStyle(m_specificExportProjectTile); m_specificExportProjectTile.Text = "EXPORT\nPROJECT"; m_specificExportProjectTile.Image = Bitmap.FromFile("resources/icons/appbar.page.upload.png"); m_specificExportProjectTile.Size = DEFAULT_TILE_SIZE; m_specificExportProjectTile.Location = new Point(DEFAULT_TILE_SEPARATOR.X, title.Bottom + DEFAULT_TILE_SEPARATOR.Y); m_specificExportProjectTile.Click += new EventHandler(m_specificExportProjectTile_Click); m_specificPanel.Controls.Add(m_specificExportProjectTile); m_specificCloseProjectTile = new MetroTileIcon(); MetroSkinManager.ApplyMetroStyle(m_specificCloseProjectTile); m_specificCloseProjectTile.Text = "CLOSE\nPROJECT"; m_specificCloseProjectTile.Image = Bitmap.FromFile("resources/icons/appbar.close.png"); m_specificCloseProjectTile.Size = DEFAULT_TILE_SIZE; m_specificCloseProjectTile.Location = new Point(m_specificExportProjectTile.Right + DEFAULT_TILE_SEPARATOR.X, title.Bottom + DEFAULT_TILE_SEPARATOR.Y); m_specificCloseProjectTile.Click += new EventHandler(m_specificCloseProjectTile_Click); m_specificPanel.Controls.Add(m_specificCloseProjectTile); }
private void InitializeComponent() { ChartArea item = new ChartArea(); Legend legend = new Legend(); ComponentResourceManager manager = new ComponentResourceManager(typeof(Form2)); this.metroButton1 = new MetroButton(); this.urname = new MetroTextBox(); this.urscore = new MetroTextBox(); this.metroLabel1 = new MetroLabel(); this.metroLabel2 = new MetroLabel(); this.panel1 = new Panel(); this.pid = new MetroTextBox(); this.tstname = new MetroTextBox(); this.metroLabel13 = new MetroLabel(); this.metroProgressSpinner1 = new MetroProgressSpinner(); this.chart1 = new Chart(); this.backgroundWorker1 = new BackgroundWorker(); this.dg1 = new DataGridView(); this.metroLabel3 = new MetroLabel(); this.metroLabel4 = new MetroLabel(); this.metroLabel5 = new MetroLabel(); this.metroLabel6 = new MetroLabel(); this.metroLabel7 = new MetroLabel(); this.metroLabel8 = new MetroLabel(); this.metroLabel9 = new MetroLabel(); this.metroLabel10 = new MetroLabel(); this.metroLabel11 = new MetroLabel(); this.metroLabel12 = new MetroLabel(); this.metroLabel14 = new MetroLabel(); this.panel2 = new Panel(); this.pictureBox2 = new PictureBox(); this.metroLabel15 = new MetroLabel(); this.metroLabel16 = new MetroLabel(); this.metroLabel17 = new MetroLabel(); this.metroLabel18 = new MetroLabel(); this.metroLabel19 = new MetroLabel(); this.metroLabel20 = new MetroLabel(); this.button1 = new Button(); this.pictureBox3 = new PictureBox(); this.pictureBox1 = new PictureBox(); this.metroButton2 = new MetroButton(); this.pictureBox4 = new PictureBox(); this.panel1.SuspendLayout(); this.chart1.BeginInit(); ((ISupportInitialize) this.dg1).BeginInit(); this.panel2.SuspendLayout(); ((ISupportInitialize) this.pictureBox2).BeginInit(); ((ISupportInitialize) this.pictureBox3).BeginInit(); ((ISupportInitialize) this.pictureBox1).BeginInit(); ((ISupportInitialize) this.pictureBox4).BeginInit(); base.SuspendLayout(); this.metroButton1.Highlight = true; this.metroButton1.Location = new Point(0x6f, 0x97); this.metroButton1.Name = "metroButton1"; this.metroButton1.Size = new Size(0xc7, 0x24); this.metroButton1.Style = MetroColorStyle.Blue; this.metroButton1.TabIndex = 0; this.metroButton1.Text = "Submit"; this.metroButton1.Theme = MetroThemeStyle.Dark; this.metroButton1.UseSelectable = true; this.metroButton1.Click += new EventHandler(this.metroButton1_Click); this.urname.Lines = new string[0]; this.urname.Location = new Point(0x6f, 0x1b); this.urname.MaxLength = 0x7fff; this.urname.Name = "urname"; this.urname.PasswordChar = '\0'; this.urname.ScrollBars = ScrollBars.None; this.urname.SelectedText = ""; this.urname.Size = new Size(0xc7, 0x17); this.urname.Style = MetroColorStyle.Blue; this.urname.TabIndex = 1; this.urname.Theme = MetroThemeStyle.Dark; this.urname.UseSelectable = true; this.urname.UseStyleColors = true; this.urname.TextChanged += new EventHandler(this.urname_TextChanged); this.urscore.Enabled = false; this.urscore.Lines = new string[0]; this.urscore.Location = new Point(0x6f, 0x58); this.urscore.MaxLength = 0x7fff; this.urscore.Name = "urscore"; this.urscore.PasswordChar = '\0'; this.urscore.ScrollBars = ScrollBars.None; this.urscore.SelectedText = ""; this.urscore.Size = new Size(0xc7, 0x17); this.urscore.Style = MetroColorStyle.Blue; this.urscore.TabIndex = 2; this.urscore.Theme = MetroThemeStyle.Dark; this.urscore.UseSelectable = true; this.urscore.UseStyleColors = true; this.metroLabel1.AutoSize = true; this.metroLabel1.FontWeight = MetroLabelWeight.Bold; this.metroLabel1.Location = new Point(0x17, 30); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new Size(0x31, 0x13); this.metroLabel1.Style = MetroColorStyle.Blue; this.metroLabel1.TabIndex = 3; this.metroLabel1.Text = "Name"; this.metroLabel1.Theme = MetroThemeStyle.Dark; this.metroLabel1.UseCustomBackColor = true; this.metroLabel1.UseStyleColors = true; this.metroLabel2.AutoSize = true; this.metroLabel2.FontWeight = MetroLabelWeight.Bold; this.metroLabel2.Location = new Point(0x1a, 0x5b); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new Size(0x2f, 0x13); this.metroLabel2.Style = MetroColorStyle.Blue; this.metroLabel2.TabIndex = 4; this.metroLabel2.Text = "Score"; this.metroLabel2.Theme = MetroThemeStyle.Dark; this.metroLabel2.UseCustomBackColor = true; this.metroLabel2.UseStyleColors = true; this.panel1.BackColor = Color.Transparent; this.panel1.Controls.Add(this.pid); this.panel1.Controls.Add(this.tstname); this.panel1.Controls.Add(this.metroLabel13); this.panel1.Controls.Add(this.metroLabel1); this.panel1.Controls.Add(this.metroButton1); this.panel1.Controls.Add(this.metroLabel2); this.panel1.Controls.Add(this.urname); this.panel1.Controls.Add(this.urscore); this.panel1.Location = new Point(12, 0x2f); this.panel1.Name = "panel1"; this.panel1.Size = new Size(330, 0xd0); this.panel1.TabIndex = 6; this.pid.Enabled = false; this.pid.Lines = new string[0]; this.pid.Location = new Point(0x6f, 3); this.pid.MaxLength = 0x7fff; this.pid.Name = "pid"; this.pid.PasswordChar = '\0'; this.pid.ScrollBars = ScrollBars.None; this.pid.SelectedText = ""; this.pid.Size = new Size(0xc7, 0x17); this.pid.Style = MetroColorStyle.Blue; this.pid.TabIndex = 8; this.pid.Theme = MetroThemeStyle.Dark; this.pid.UseSelectable = true; this.pid.UseStyleColors = true; this.pid.Visible = false; this.tstname.Lines = new string[0]; this.tstname.Location = new Point(0x6f, 0x75); this.tstname.MaxLength = 0x7fff; this.tstname.Name = "tstname"; this.tstname.PasswordChar = '\0'; this.tstname.ScrollBars = ScrollBars.None; this.tstname.SelectedText = ""; this.tstname.Size = new Size(0xc7, 0x17); this.tstname.Style = MetroColorStyle.Blue; this.tstname.TabIndex = 7; this.tstname.Theme = MetroThemeStyle.Dark; this.tstname.UseSelectable = true; this.tstname.UseStyleColors = true; this.tstname.Visible = false; this.metroLabel13.AutoSize = true; this.metroLabel13.FontWeight = MetroLabelWeight.Bold; this.metroLabel13.Location = new Point(0x6f, 0x35); this.metroLabel13.Name = "metroLabel13"; this.metroLabel13.Size = new Size(0, 0); this.metroLabel13.Style = MetroColorStyle.Red; this.metroLabel13.TabIndex = 6; this.metroLabel13.Theme = MetroThemeStyle.Dark; this.metroLabel13.UseCustomBackColor = true; this.metroLabel13.UseStyleColors = true; this.metroProgressSpinner1.Location = new Point(0x15, 0x112); this.metroProgressSpinner1.Maximum = 100; this.metroProgressSpinner1.Name = "metroProgressSpinner1"; this.metroProgressSpinner1.Size = new Size(0x17, 0x17); this.metroProgressSpinner1.Style = MetroColorStyle.Blue; this.metroProgressSpinner1.TabIndex = 8; this.metroProgressSpinner1.Theme = MetroThemeStyle.Dark; this.metroProgressSpinner1.UseCustomBackColor = true; this.metroProgressSpinner1.UseSelectable = true; this.metroProgressSpinner1.Visible = false; item.Name = "ChartArea1"; this.chart1.ChartAreas.Add(item); legend.Name = "Legend1"; this.chart1.Legends.Add(legend); this.chart1.Location = new Point(0x26a, 0x2f); this.chart1.Name = "chart1"; this.chart1.Size = new Size(0x15b, 0xd0); this.chart1.TabIndex = 7; this.chart1.Text = "chart1"; this.backgroundWorker1.WorkerReportsProgress = true; this.backgroundWorker1.DoWork += new DoWorkEventHandler(this.backgroundWorker1_DoWork); this.backgroundWorker1.ProgressChanged += new ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged); this.backgroundWorker1.RunWorkerCompleted += new RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted); this.dg1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dg1.Location = new Point(12, 0x10a); this.dg1.Name = "dg1"; this.dg1.Size = new Size(0x31, 0x12); this.dg1.TabIndex = 8; this.dg1.Visible = false; this.metroLabel3.AutoSize = true; this.metroLabel3.BackColor = Color.Transparent; this.metroLabel3.FontWeight = MetroLabelWeight.Bold; this.metroLabel3.Location = new Point(0x4c, 0x36); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new Size(15, 0x13); this.metroLabel3.Style = MetroColorStyle.Teal; this.metroLabel3.TabIndex = 6; this.metroLabel3.Text = "-"; this.metroLabel3.Theme = MetroThemeStyle.Dark; this.metroLabel3.UseCustomBackColor = true; this.metroLabel3.UseStyleColors = true; this.metroLabel4.AutoSize = true; this.metroLabel4.BackColor = Color.Transparent; this.metroLabel4.FontWeight = MetroLabelWeight.Bold; this.metroLabel4.Location = new Point(0x4c, 0x57); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new Size(15, 0x13); this.metroLabel4.Style = MetroColorStyle.Yellow; this.metroLabel4.TabIndex = 9; this.metroLabel4.Text = "-"; this.metroLabel4.Theme = MetroThemeStyle.Dark; this.metroLabel4.UseCustomBackColor = true; this.metroLabel4.UseStyleColors = true; this.metroLabel5.AutoSize = true; this.metroLabel5.BackColor = Color.Transparent; this.metroLabel5.FontWeight = MetroLabelWeight.Bold; this.metroLabel5.Location = new Point(0x4c, 0x77); this.metroLabel5.Name = "metroLabel5"; this.metroLabel5.Size = new Size(15, 0x13); this.metroLabel5.Style = MetroColorStyle.Orange; this.metroLabel5.TabIndex = 10; this.metroLabel5.Text = "-"; this.metroLabel5.Theme = MetroThemeStyle.Dark; this.metroLabel5.UseCustomBackColor = true; this.metroLabel5.UseStyleColors = true; this.metroLabel6.AutoSize = true; this.metroLabel6.BackColor = Color.Transparent; this.metroLabel6.FontWeight = MetroLabelWeight.Bold; this.metroLabel6.Location = new Point(0x4c, 0x97); this.metroLabel6.Name = "metroLabel6"; this.metroLabel6.Size = new Size(15, 0x13); this.metroLabel6.Style = MetroColorStyle.Blue; this.metroLabel6.TabIndex = 11; this.metroLabel6.Text = "-"; this.metroLabel6.Theme = MetroThemeStyle.Dark; this.metroLabel6.UseCustomBackColor = true; this.metroLabel6.UseStyleColors = true; this.metroLabel7.AutoSize = true; this.metroLabel7.BackColor = Color.Transparent; this.metroLabel7.FontWeight = MetroLabelWeight.Bold; this.metroLabel7.Location = new Point(0x4c, 0xb7); this.metroLabel7.Name = "metroLabel7"; this.metroLabel7.Size = new Size(15, 0x13); this.metroLabel7.Style = MetroColorStyle.Silver; this.metroLabel7.TabIndex = 12; this.metroLabel7.Text = "-"; this.metroLabel7.Theme = MetroThemeStyle.Dark; this.metroLabel7.UseCustomBackColor = true; this.metroLabel7.UseStyleColors = true; this.metroLabel8.AutoSize = true; this.metroLabel8.BackColor = Color.Transparent; this.metroLabel8.FontWeight = MetroLabelWeight.Bold; this.metroLabel8.Location = new Point(0xc7, 0x36); this.metroLabel8.Name = "metroLabel8"; this.metroLabel8.Size = new Size(15, 0x13); this.metroLabel8.Style = MetroColorStyle.Teal; this.metroLabel8.TabIndex = 6; this.metroLabel8.Text = "-"; this.metroLabel8.Theme = MetroThemeStyle.Dark; this.metroLabel8.UseCustomBackColor = true; this.metroLabel8.UseStyleColors = true; this.metroLabel9.AutoSize = true; this.metroLabel9.BackColor = Color.Transparent; this.metroLabel9.FontWeight = MetroLabelWeight.Bold; this.metroLabel9.Location = new Point(0xc7, 0x57); this.metroLabel9.Name = "metroLabel9"; this.metroLabel9.Size = new Size(15, 0x13); this.metroLabel9.Style = MetroColorStyle.Yellow; this.metroLabel9.TabIndex = 13; this.metroLabel9.Text = "-"; this.metroLabel9.Theme = MetroThemeStyle.Dark; this.metroLabel9.UseCustomBackColor = true; this.metroLabel9.UseStyleColors = true; this.metroLabel10.AutoSize = true; this.metroLabel10.BackColor = Color.Transparent; this.metroLabel10.FontWeight = MetroLabelWeight.Bold; this.metroLabel10.Location = new Point(0xc7, 0x77); this.metroLabel10.Name = "metroLabel10"; this.metroLabel10.Size = new Size(15, 0x13); this.metroLabel10.Style = MetroColorStyle.Orange; this.metroLabel10.TabIndex = 14; this.metroLabel10.Text = "-"; this.metroLabel10.Theme = MetroThemeStyle.Dark; this.metroLabel10.UseCustomBackColor = true; this.metroLabel10.UseStyleColors = true; this.metroLabel11.AutoSize = true; this.metroLabel11.BackColor = Color.Transparent; this.metroLabel11.FontWeight = MetroLabelWeight.Bold; this.metroLabel11.Location = new Point(0xc7, 0x97); this.metroLabel11.Name = "metroLabel11"; this.metroLabel11.Size = new Size(15, 0x13); this.metroLabel11.Style = MetroColorStyle.Blue; this.metroLabel11.TabIndex = 15; this.metroLabel11.Text = "-"; this.metroLabel11.Theme = MetroThemeStyle.Dark; this.metroLabel11.UseCustomBackColor = true; this.metroLabel11.UseStyleColors = true; this.metroLabel12.AutoSize = true; this.metroLabel12.BackColor = Color.Transparent; this.metroLabel12.FontWeight = MetroLabelWeight.Bold; this.metroLabel12.Location = new Point(0xc7, 0xb7); this.metroLabel12.Name = "metroLabel12"; this.metroLabel12.Size = new Size(15, 0x13); this.metroLabel12.Style = MetroColorStyle.Silver; this.metroLabel12.TabIndex = 0x10; this.metroLabel12.Text = "-"; this.metroLabel12.Theme = MetroThemeStyle.Dark; this.metroLabel12.UseCustomBackColor = true; this.metroLabel12.UseStyleColors = true; this.metroLabel14.AutoSize = true; this.metroLabel14.BackColor = Color.Transparent; this.metroLabel14.FontWeight = MetroLabelWeight.Bold; this.metroLabel14.Location = new Point(0x68, 0x109); this.metroLabel14.Name = "metroLabel14"; this.metroLabel14.Size = new Size(0, 0); this.metroLabel14.Style = MetroColorStyle.Green; this.metroLabel14.TabIndex = 0x11; this.metroLabel14.Theme = MetroThemeStyle.Dark; this.metroLabel14.UseCustomBackColor = true; this.metroLabel14.UseStyleColors = true; this.panel2.BackColor = Color.Transparent; this.panel2.Controls.Add(this.pictureBox2); this.panel2.Controls.Add(this.metroLabel15); this.panel2.Controls.Add(this.metroLabel16); this.panel2.Controls.Add(this.metroLabel17); this.panel2.Controls.Add(this.metroLabel18); this.panel2.Controls.Add(this.metroLabel19); this.panel2.Controls.Add(this.metroLabel8); this.panel2.Controls.Add(this.metroLabel3); this.panel2.Controls.Add(this.metroLabel4); this.panel2.Controls.Add(this.metroLabel5); this.panel2.Controls.Add(this.metroLabel12); this.panel2.Controls.Add(this.metroLabel6); this.panel2.Controls.Add(this.metroLabel11); this.panel2.Controls.Add(this.metroLabel7); this.panel2.Controls.Add(this.metroLabel10); this.panel2.Controls.Add(this.metroLabel9); this.panel2.Location = new Point(0x15c, 0x2f); this.panel2.Name = "panel2"; this.panel2.Size = new Size(0x108, 0xd0); this.panel2.TabIndex = 0x12; this.panel2.Paint += new PaintEventHandler(this.panel2_Paint); this.pictureBox2.Image = Resources.RPT; this.pictureBox2.Location = new Point(0x15, 0x1b); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new Size(240, 0x18); this.pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox2.TabIndex = 0x16; this.pictureBox2.TabStop = false; this.metroLabel15.AutoSize = true; this.metroLabel15.BackColor = Color.Transparent; this.metroLabel15.FontWeight = MetroLabelWeight.Bold; this.metroLabel15.Location = new Point(0x15, 0x36); this.metroLabel15.Name = "metroLabel15"; this.metroLabel15.Size = new Size(0x1c, 0x13); this.metroLabel15.Style = MetroColorStyle.Teal; this.metroLabel15.TabIndex = 0x11; this.metroLabel15.Text = "1st"; this.metroLabel15.Theme = MetroThemeStyle.Dark; this.metroLabel15.UseCustomBackColor = true; this.metroLabel15.UseStyleColors = true; this.metroLabel16.AutoSize = true; this.metroLabel16.BackColor = Color.Transparent; this.metroLabel16.FontWeight = MetroLabelWeight.Bold; this.metroLabel16.Location = new Point(0x15, 0x57); this.metroLabel16.Name = "metroLabel16"; this.metroLabel16.Size = new Size(0x22, 0x13); this.metroLabel16.Style = MetroColorStyle.Yellow; this.metroLabel16.TabIndex = 0x12; this.metroLabel16.Text = "2nd"; this.metroLabel16.Theme = MetroThemeStyle.Dark; this.metroLabel16.UseCustomBackColor = true; this.metroLabel16.UseStyleColors = true; this.metroLabel17.AutoSize = true; this.metroLabel17.BackColor = Color.Transparent; this.metroLabel17.FontWeight = MetroLabelWeight.Bold; this.metroLabel17.Location = new Point(0x15, 0x77); this.metroLabel17.Name = "metroLabel17"; this.metroLabel17.Size = new Size(0x20, 0x13); this.metroLabel17.Style = MetroColorStyle.Orange; this.metroLabel17.TabIndex = 0x13; this.metroLabel17.Text = "3rd"; this.metroLabel17.Theme = MetroThemeStyle.Dark; this.metroLabel17.UseCustomBackColor = true; this.metroLabel17.UseStyleColors = true; this.metroLabel18.AutoSize = true; this.metroLabel18.BackColor = Color.Transparent; this.metroLabel18.FontWeight = MetroLabelWeight.Bold; this.metroLabel18.Location = new Point(0x15, 0x97); this.metroLabel18.Name = "metroLabel18"; this.metroLabel18.Size = new Size(30, 0x13); this.metroLabel18.Style = MetroColorStyle.Blue; this.metroLabel18.TabIndex = 20; this.metroLabel18.Text = "4th"; this.metroLabel18.Theme = MetroThemeStyle.Dark; this.metroLabel18.UseCustomBackColor = true; this.metroLabel18.UseStyleColors = true; this.metroLabel19.AutoSize = true; this.metroLabel19.BackColor = Color.Transparent; this.metroLabel19.FontWeight = MetroLabelWeight.Bold; this.metroLabel19.Location = new Point(0x15, 0xb7); this.metroLabel19.Name = "metroLabel19"; this.metroLabel19.Size = new Size(30, 0x13); this.metroLabel19.Style = MetroColorStyle.Silver; this.metroLabel19.TabIndex = 0x15; this.metroLabel19.Text = "5th"; this.metroLabel19.Theme = MetroThemeStyle.Dark; this.metroLabel19.UseCustomBackColor = true; this.metroLabel19.UseStyleColors = true; this.metroLabel20.AutoSize = true; this.metroLabel20.FontWeight = MetroLabelWeight.Bold; this.metroLabel20.Location = new Point(0x3b, 0x116); this.metroLabel20.Name = "metroLabel20"; this.metroLabel20.Size = new Size(0, 0); this.metroLabel20.Style = MetroColorStyle.Red; this.metroLabel20.TabIndex = 0x13; this.metroLabel20.Theme = MetroThemeStyle.Dark; this.metroLabel20.UseCustomBackColor = true; this.metroLabel20.UseStyleColors = true; this.button1.BackColor = Color.Transparent; this.button1.BackgroundImage = Resources.button_cancel; this.button1.BackgroundImageLayout = ImageLayout.Stretch; this.button1.FlatStyle = FlatStyle.Popup; this.button1.Location = new Point(940, -1); this.button1.Name = "button1"; this.button1.Size = new Size(0x31, 0x20); this.button1.TabIndex = 0x62; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new EventHandler(this.button1_Click); this.pictureBox3.BackColor = Color.Transparent; this.pictureBox3.BackgroundImage = Resources.services_accelerator_icon_growthbubble; this.pictureBox3.BackgroundImageLayout = ImageLayout.Stretch; this.pictureBox3.Location = new Point(0x26a, 0x2f); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new Size(0x15b, 0xd0); this.pictureBox3.SizeMode = PictureBoxSizeMode.CenterImage; this.pictureBox3.TabIndex = 20; this.pictureBox3.TabStop = false; this.pictureBox3.Visible = false; this.pictureBox1.Image = Resources.mta; this.pictureBox1.Location = new Point(13, 0x100); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(0x29, 0x29); this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 0x11; this.pictureBox1.TabStop = false; this.pictureBox1.Visible = false; this.metroButton2.Highlight = true; this.metroButton2.Location = new Point(0x7b, 0x112); this.metroButton2.Name = "metroButton2"; this.metroButton2.Size = new Size(0xc7, 0x24); this.metroButton2.Style = MetroColorStyle.Blue; this.metroButton2.TabIndex = 9; this.metroButton2.Text = "Submit"; this.metroButton2.Theme = MetroThemeStyle.Dark; this.metroButton2.UseSelectable = true; this.metroButton2.Visible = false; this.metroButton2.Click += new EventHandler(this.metroButton2_Click_1); this.pictureBox4.BackColor = Color.Transparent; this.pictureBox4.Image = Resources.iTSBw9qsqAVIt; this.pictureBox4.Location = new Point(12, 0x100); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new Size(0x60, 0x36); this.pictureBox4.SizeMode = PictureBoxSizeMode.Zoom; this.pictureBox4.TabIndex = 0x63; this.pictureBox4.TabStop = false; this.pictureBox4.Visible = false; base.AutoScaleDimensions = new SizeF(6f, 13f); base.AutoScaleMode = AutoScaleMode.Font; this.BackColor = SystemColors.ActiveCaptionText; this.BackgroundImage = Resources.Mtabetabkofyop5; this.BackgroundImageLayout = ImageLayout.Stretch; base.ClientSize = new Size(0x3db, 0x16d); base.Controls.Add(this.pictureBox4); base.Controls.Add(this.metroLabel14); base.Controls.Add(this.metroButton2); base.Controls.Add(this.button1); base.Controls.Add(this.pictureBox3); base.Controls.Add(this.metroLabel20); base.Controls.Add(this.panel2); base.Controls.Add(this.pictureBox1); base.Controls.Add(this.metroProgressSpinner1); base.Controls.Add(this.dg1); base.Controls.Add(this.chart1); base.Controls.Add(this.panel1); this.DoubleBuffered = true; base.FormBorderStyle = FormBorderStyle.None; base.Icon = (Icon) manager.GetObject("$this.Icon"); base.Name = "Form2"; base.StartPosition = FormStartPosition.CenterScreen; this.Text = "Top 5"; base.Load += new EventHandler(this.Form2_Load); base.MouseDown += new MouseEventHandler(this.Form2_MouseDown); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.chart1.EndInit(); ((ISupportInitialize) this.dg1).EndInit(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); ((ISupportInitialize) this.pictureBox2).EndInit(); ((ISupportInitialize) this.pictureBox3).EndInit(); ((ISupportInitialize) this.pictureBox1).EndInit(); ((ISupportInitialize) this.pictureBox4).EndInit(); base.ResumeLayout(false); base.PerformLayout(); }
private void InitializeComponent() { this.components = new Container(); ComponentResourceManager manager = new ComponentResourceManager(typeof(Form1)); this.metroTabControl1 = new MetroTabControl(); this.QAtab = new MetroTabPage(); this.picBox = new PictureBox(); this.markandnextQA = new MetroButton(); this.panel13 = new Panel(); this.metroLabel28 = new MetroLabel(); this.pictureBox5 = new PictureBox(); this.metroLabel27 = new MetroLabel(); this.metroLabel26 = new MetroLabel(); this.metroLabel25 = new MetroLabel(); this.pictureBox4 = new PictureBox(); this.pictureBox3 = new PictureBox(); this.pictureBox2 = new PictureBox(); this.adminchk = new Panel(); this.secnameQA = new Label(); this.textBox1 = new TextBox(); this.S2chkans = new TextBox(); this.sb1 = new TextBox(); this.metroLabel4 = new MetroLabel(); this.rs5 = new TextBox(); this.sb5 = new TextBox(); this.metroLabel3 = new MetroLabel(); this.ans = new TextBox(); this.sb2 = new TextBox(); this.metroLabel2 = new MetroLabel(); this.sb3 = new TextBox(); this.sb4 = new TextBox(); this.metroLabel1 = new MetroLabel(); this.rs4 = new TextBox(); this.rs1 = new TextBox(); this.rs3 = new TextBox(); this.rs2 = new TextBox(); this.sec2 = new TextBox(); this.panel1 = new Panel(); this.QAopd = new Label(); this.QAopc = new Label(); this.QAopb = new Label(); this.QAopa = new Label(); this.metroRadioButton8 = new MetroRadioButton(); this.metroRadioButton7 = new MetroRadioButton(); this.metroRadioButton6 = new MetroRadioButton(); this.metroRadioButton5 = new MetroRadioButton(); this.ref4DI = new TextBox(); this.savennextQA = new MetroButton(); this.panel2 = new Panel(); this.DIQ1 = new Button(); this.DIQ50 = new Button(); this.DIQ2 = new Button(); this.DIQ49 = new Button(); this.DIQ3 = new Button(); this.DIQ48 = new Button(); this.DIQ4 = new Button(); this.DIQ47 = new Button(); this.DIQ5 = new Button(); this.DIQ46 = new Button(); this.DIQ6 = new Button(); this.DIQ45 = new Button(); this.DIQ7 = new Button(); this.DIQ44 = new Button(); this.DIQ8 = new Button(); this.DIQ43 = new Button(); this.DIQ9 = new Button(); this.DIQ42 = new Button(); this.DIQ10 = new Button(); this.DIQ41 = new Button(); this.DIQ11 = new Button(); this.DIQ40 = new Button(); this.DIQ12 = new Button(); this.DIQ39 = new Button(); this.DIQ13 = new Button(); this.DIQ38 = new Button(); this.DIQ14 = new Button(); this.DIQ37 = new Button(); this.DIQ15 = new Button(); this.DIQ36 = new Button(); this.DIQ16 = new Button(); this.DIQ35 = new Button(); this.DIQ17 = new Button(); this.DIQ34 = new Button(); this.DIQ18 = new Button(); this.DIQ33 = new Button(); this.DIQ19 = new Button(); this.DIQ32 = new Button(); this.DIQ20 = new Button(); this.DIQ31 = new Button(); this.DIQ21 = new Button(); this.DIQ30 = new Button(); this.DIQ22 = new Button(); this.DIQ29 = new Button(); this.DIQ23 = new Button(); this.DIQ28 = new Button(); this.DIQ24 = new Button(); this.DIQ27 = new Button(); this.DIQ25 = new Button(); this.DIQ26 = new Button(); this.label1 = new Label(); this.ENGtab = new MetroTabPage(); this.panel18 = new Panel(); this.textBox3 = new TextBox(); this.engchkans = new TextBox(); this.metroLabel9 = new MetroLabel(); this.ans4EN = new TextBox(); this.metroLabel10 = new MetroLabel(); this.secnameENG = new Label(); this.metroLabel11 = new MetroLabel(); this.metroLabel12 = new MetroLabel(); this.markandnextENG = new MetroButton(); this.panel14 = new Panel(); this.metroLabel29 = new MetroLabel(); this.pictureBox6 = new PictureBox(); this.metroLabel30 = new MetroLabel(); this.metroLabel31 = new MetroLabel(); this.metroLabel32 = new MetroLabel(); this.pictureBox7 = new PictureBox(); this.pictureBox8 = new PictureBox(); this.pictureBox9 = new PictureBox(); this.label4 = new Label(); this.savennextENG = new MetroButton(); this.panel6 = new Panel(); this.ENQ1 = new Button(); this.ENQ50 = new Button(); this.ENQ2 = new Button(); this.ENQ49 = new Button(); this.ENQ3 = new Button(); this.ENQ48 = new Button(); this.ENQ4 = new Button(); this.ENQ47 = new Button(); this.ENQ5 = new Button(); this.ENQ46 = new Button(); this.ENQ6 = new Button(); this.ENQ45 = new Button(); this.ENQ7 = new Button(); this.ENQ44 = new Button(); this.ENQ8 = new Button(); this.ENQ43 = new Button(); this.ENQ9 = new Button(); this.ENQ42 = new Button(); this.ENQ10 = new Button(); this.ENQ41 = new Button(); this.ENQ11 = new Button(); this.ENQ40 = new Button(); this.ENQ12 = new Button(); this.ENQ39 = new Button(); this.ENQ13 = new Button(); this.ENQ38 = new Button(); this.ENQ14 = new Button(); this.ENQ37 = new Button(); this.ENQ15 = new Button(); this.ENQ36 = new Button(); this.ENQ16 = new Button(); this.ENQ35 = new Button(); this.ENQ17 = new Button(); this.ENQ34 = new Button(); this.ENQ18 = new Button(); this.ENQ33 = new Button(); this.ENQ19 = new Button(); this.ENQ32 = new Button(); this.ENQ20 = new Button(); this.ENQ31 = new Button(); this.ENQ21 = new Button(); this.ENQ30 = new Button(); this.ENQ22 = new Button(); this.ENQ29 = new Button(); this.ENQ23 = new Button(); this.ENQ28 = new Button(); this.ENQ24 = new Button(); this.ENQ27 = new Button(); this.ENQ25 = new Button(); this.ENQ26 = new Button(); this.ref4EN = new TextBox(); this.panel4 = new Panel(); this.ENGopd = new Label(); this.ENGopc = new Label(); this.ENGopb = new Label(); this.ENGopa = new Label(); this.metroRadioButton1 = new MetroRadioButton(); this.metroRadioButton2 = new MetroRadioButton(); this.metroRadioButton3 = new MetroRadioButton(); this.metroRadioButton4 = new MetroRadioButton(); this.sec1 = new TextBox(); this.GKtab = new MetroTabPage(); this.panel19 = new Panel(); this.textBox11 = new TextBox(); this.chkansGK = new TextBox(); this.metroLabel5 = new MetroLabel(); this.ans4GK = new TextBox(); this.secnameGK = new Label(); this.metroLabel6 = new MetroLabel(); this.metroLabel8 = new MetroLabel(); this.metroLabel7 = new MetroLabel(); this.markandnextGK = new MetroButton(); this.panel15 = new Panel(); this.metroLabel33 = new MetroLabel(); this.pictureBox10 = new PictureBox(); this.metroLabel34 = new MetroLabel(); this.metroLabel35 = new MetroLabel(); this.metroLabel36 = new MetroLabel(); this.pictureBox11 = new PictureBox(); this.pictureBox12 = new PictureBox(); this.pictureBox13 = new PictureBox(); this.label5 = new Label(); this.savennextGK = new MetroButton(); this.panel7 = new Panel(); this.GK1 = new Button(); this.GK50 = new Button(); this.GK2 = new Button(); this.GK49 = new Button(); this.GK3 = new Button(); this.GK48 = new Button(); this.GK4 = new Button(); this.GK47 = new Button(); this.GK5 = new Button(); this.GK46 = new Button(); this.GK6 = new Button(); this.GK45 = new Button(); this.GK7 = new Button(); this.GK44 = new Button(); this.GK8 = new Button(); this.GK43 = new Button(); this.GK9 = new Button(); this.GK42 = new Button(); this.GK10 = new Button(); this.GK41 = new Button(); this.GK11 = new Button(); this.GK40 = new Button(); this.GK12 = new Button(); this.GK39 = new Button(); this.GK13 = new Button(); this.GK38 = new Button(); this.GK14 = new Button(); this.GK37 = new Button(); this.GK15 = new Button(); this.GK36 = new Button(); this.GK16 = new Button(); this.GK35 = new Button(); this.GK17 = new Button(); this.GK34 = new Button(); this.GK18 = new Button(); this.GK33 = new Button(); this.GK19 = new Button(); this.GK32 = new Button(); this.GK20 = new Button(); this.GK31 = new Button(); this.GK21 = new Button(); this.GK30 = new Button(); this.GK22 = new Button(); this.GK29 = new Button(); this.GK23 = new Button(); this.GK28 = new Button(); this.GK24 = new Button(); this.GK27 = new Button(); this.GK25 = new Button(); this.GK26 = new Button(); this.refr4GK = new TextBox(); this.panel5 = new Panel(); this.GKopd = new Label(); this.GKopc = new Label(); this.GKopb = new Label(); this.GKopa = new Label(); this.metroRadioButton9 = new MetroRadioButton(); this.metroRadioButton10 = new MetroRadioButton(); this.metroRadioButton11 = new MetroRadioButton(); this.metroRadioButton12 = new MetroRadioButton(); this.sec3 = new TextBox(); this.RSNtab = new MetroTabPage(); this.panel20 = new Panel(); this.textBox13 = new TextBox(); this.chkansRSN = new TextBox(); this.metroLabel13 = new MetroLabel(); this.ans4RSN = new TextBox(); this.metroLabel14 = new MetroLabel(); this.secnameRSN = new Label(); this.metroLabel15 = new MetroLabel(); this.metroLabel16 = new MetroLabel(); this.markandnextRSN = new MetroButton(); this.panel16 = new Panel(); this.metroLabel37 = new MetroLabel(); this.pictureBox14 = new PictureBox(); this.metroLabel38 = new MetroLabel(); this.metroLabel39 = new MetroLabel(); this.metroLabel40 = new MetroLabel(); this.pictureBox15 = new PictureBox(); this.pictureBox16 = new PictureBox(); this.pictureBox17 = new PictureBox(); this.label6 = new Label(); this.savennextRSN = new MetroButton(); this.panel9 = new Panel(); this.RSN1 = new Button(); this.RSN50 = new Button(); this.RSN2 = new Button(); this.RSN49 = new Button(); this.RSN3 = new Button(); this.RSN48 = new Button(); this.RSN4 = new Button(); this.RSN47 = new Button(); this.RSN5 = new Button(); this.RSN46 = new Button(); this.RSN6 = new Button(); this.RSN45 = new Button(); this.RSN7 = new Button(); this.RSN44 = new Button(); this.RSN8 = new Button(); this.RSN43 = new Button(); this.RSN9 = new Button(); this.RSN42 = new Button(); this.RSN10 = new Button(); this.RSN41 = new Button(); this.RSN11 = new Button(); this.RSN40 = new Button(); this.RSN12 = new Button(); this.RSN39 = new Button(); this.RSN13 = new Button(); this.RSN38 = new Button(); this.RSN14 = new Button(); this.RSN37 = new Button(); this.RSN15 = new Button(); this.RSN36 = new Button(); this.RSN16 = new Button(); this.RSN35 = new Button(); this.RSN17 = new Button(); this.RSN34 = new Button(); this.RSN18 = new Button(); this.RSN33 = new Button(); this.RSN19 = new Button(); this.RSN32 = new Button(); this.RSN20 = new Button(); this.RSN31 = new Button(); this.RSN21 = new Button(); this.RSN30 = new Button(); this.RSN22 = new Button(); this.RSN29 = new Button(); this.RSN23 = new Button(); this.RSN28 = new Button(); this.RSN24 = new Button(); this.RSN27 = new Button(); this.RSN25 = new Button(); this.RSN26 = new Button(); this.refrRSN = new TextBox(); this.panel10 = new Panel(); this.RSNopd = new Label(); this.RSNopc = new Label(); this.RSNopb = new Label(); this.RSNopa = new Label(); this.metroRadioButton13 = new MetroRadioButton(); this.metroRadioButton14 = new MetroRadioButton(); this.metroRadioButton15 = new MetroRadioButton(); this.metroRadioButton16 = new MetroRadioButton(); this.sec4 = new TextBox(); this.MnCtab = new MetroTabPage(); this.panel21 = new Panel(); this.textBox15 = new TextBox(); this.chkansMnC = new TextBox(); this.ans4MnC = new TextBox(); this.secnameMnC = new Label(); this.metroLabel20 = new MetroLabel(); this.metroLabel18 = new MetroLabel(); this.metroLabel17 = new MetroLabel(); this.metroLabel19 = new MetroLabel(); this.markandnextMnC = new MetroButton(); this.panel17 = new Panel(); this.metroLabel41 = new MetroLabel(); this.pictureBox18 = new PictureBox(); this.metroLabel42 = new MetroLabel(); this.metroLabel43 = new MetroLabel(); this.metroLabel44 = new MetroLabel(); this.pictureBox19 = new PictureBox(); this.pictureBox20 = new PictureBox(); this.pictureBox21 = new PictureBox(); this.label7 = new Label(); this.savennextMnC = new MetroButton(); this.panel11 = new Panel(); this.MnC1 = new Button(); this.MnC50 = new Button(); this.MnC2 = new Button(); this.MnC49 = new Button(); this.MnC3 = new Button(); this.MnC48 = new Button(); this.MnC4 = new Button(); this.MnC47 = new Button(); this.MnC5 = new Button(); this.MnC46 = new Button(); this.MnC6 = new Button(); this.MnC45 = new Button(); this.MnC7 = new Button(); this.MnC44 = new Button(); this.MnC8 = new Button(); this.MnC43 = new Button(); this.MnC9 = new Button(); this.MnC42 = new Button(); this.MnC10 = new Button(); this.MnC41 = new Button(); this.MnC11 = new Button(); this.MnC40 = new Button(); this.MnC12 = new Button(); this.MnC39 = new Button(); this.MnC13 = new Button(); this.MnC38 = new Button(); this.MnC14 = new Button(); this.MnC37 = new Button(); this.MnC15 = new Button(); this.MnC36 = new Button(); this.MnC16 = new Button(); this.MnC35 = new Button(); this.MnC17 = new Button(); this.MnC34 = new Button(); this.MnC18 = new Button(); this.MnC33 = new Button(); this.MnC19 = new Button(); this.MnC32 = new Button(); this.MnC20 = new Button(); this.MnC31 = new Button(); this.MnC21 = new Button(); this.MnC30 = new Button(); this.MnC22 = new Button(); this.MnC29 = new Button(); this.MnC23 = new Button(); this.MnC28 = new Button(); this.MnC24 = new Button(); this.MnC27 = new Button(); this.MnC25 = new Button(); this.MnC26 = new Button(); this.refrMnC = new TextBox(); this.panel12 = new Panel(); this.MnCopd = new Label(); this.MnCopc = new Label(); this.MnCopb = new Label(); this.MnCopa = new Label(); this.metroRadioButton17 = new MetroRadioButton(); this.metroRadioButton18 = new MetroRadioButton(); this.metroRadioButton19 = new MetroRadioButton(); this.metroRadioButton20 = new MetroRadioButton(); this.sec5 = new TextBox(); this.metroPanel2 = new MetroPanel(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.backgroundWorker1 = new BackgroundWorker(); this.revbtn = new MetroButton(); this.metroProgressBar1 = new MetroProgressBar(); this.metroLabel21 = new MetroLabel(); this.total = new MetroLabel(); this.metroLabel22 = new MetroLabel(); this.metroLabel23 = new MetroLabel(); this.right = new MetroLabel(); this.wrong = new MetroLabel(); this.metroLabel24 = new MetroLabel(); this.unans = new MetroLabel(); this.pictureBox1 = new PictureBox(); this.pass = new MetroLabel(); this.fail = new MetroLabel(); this.metroProgressSpinner1 = new MetroProgressSpinner(); this.aftrsbmitpnl = new Panel(); this.metroLabel46 = new MetroLabel(); this.metroLabel47 = new MetroLabel(); this.panel24 = new Panel(); this.online = new MetroButton(); this.metroButton7 = new MetroButton(); this.metroButton6 = new MetroButton(); this.panel3 = new Panel(); this.lblHr = new Label(); this.lblMin = new Label(); this.lblSec = new Label(); this.pictureBox22 = new PictureBox(); this.submit = new TextBox(); this.panel23 = new Panel(); this.panel22 = new Panel(); this.metroLabel45 = new MetroLabel(); this.metroButton8 = new MetroButton(); this.metroButton1 = new MetroButton(); this.metroButton2 = new MetroButton(); this.button1 = new Button(); this.panel25 = new Panel(); this.panel8 = new Panel(); this.metroTabControl1.SuspendLayout(); this.QAtab.SuspendLayout(); ((ISupportInitialize) this.picBox).BeginInit(); this.panel13.SuspendLayout(); ((ISupportInitialize) this.pictureBox5).BeginInit(); ((ISupportInitialize) this.pictureBox4).BeginInit(); ((ISupportInitialize) this.pictureBox3).BeginInit(); ((ISupportInitialize) this.pictureBox2).BeginInit(); this.adminchk.SuspendLayout(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.ENGtab.SuspendLayout(); this.panel18.SuspendLayout(); this.panel14.SuspendLayout(); ((ISupportInitialize) this.pictureBox6).BeginInit(); ((ISupportInitialize) this.pictureBox7).BeginInit(); ((ISupportInitialize) this.pictureBox8).BeginInit(); ((ISupportInitialize) this.pictureBox9).BeginInit(); this.panel6.SuspendLayout(); this.panel4.SuspendLayout(); this.GKtab.SuspendLayout(); this.panel19.SuspendLayout(); this.panel15.SuspendLayout(); ((ISupportInitialize) this.pictureBox10).BeginInit(); ((ISupportInitialize) this.pictureBox11).BeginInit(); ((ISupportInitialize) this.pictureBox12).BeginInit(); ((ISupportInitialize) this.pictureBox13).BeginInit(); this.panel7.SuspendLayout(); this.panel5.SuspendLayout(); this.RSNtab.SuspendLayout(); this.panel20.SuspendLayout(); this.panel16.SuspendLayout(); ((ISupportInitialize) this.pictureBox14).BeginInit(); ((ISupportInitialize) this.pictureBox15).BeginInit(); ((ISupportInitialize) this.pictureBox16).BeginInit(); ((ISupportInitialize) this.pictureBox17).BeginInit(); this.panel9.SuspendLayout(); this.panel10.SuspendLayout(); this.MnCtab.SuspendLayout(); this.panel21.SuspendLayout(); this.panel17.SuspendLayout(); ((ISupportInitialize) this.pictureBox18).BeginInit(); ((ISupportInitialize) this.pictureBox19).BeginInit(); ((ISupportInitialize) this.pictureBox20).BeginInit(); ((ISupportInitialize) this.pictureBox21).BeginInit(); this.panel11.SuspendLayout(); this.panel12.SuspendLayout(); ((ISupportInitialize) this.pictureBox1).BeginInit(); this.aftrsbmitpnl.SuspendLayout(); this.panel24.SuspendLayout(); this.panel3.SuspendLayout(); ((ISupportInitialize) this.pictureBox22).BeginInit(); this.panel23.SuspendLayout(); this.panel25.SuspendLayout(); this.panel8.SuspendLayout(); base.SuspendLayout(); this.metroTabControl1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.metroTabControl1.Controls.Add(this.QAtab); this.metroTabControl1.Controls.Add(this.ENGtab); this.metroTabControl1.Controls.Add(this.GKtab); this.metroTabControl1.Controls.Add(this.RSNtab); this.metroTabControl1.Controls.Add(this.MnCtab); this.metroTabControl1.FontWeight = MetroTabControlWeight.Bold; this.metroTabControl1.HotTrack = true; this.metroTabControl1.ItemSize = new Size(90, 0x1f); this.metroTabControl1.Location = new Point(0, 70); this.metroTabControl1.Margin = new Padding(50, 30, 30, 30); this.metroTabControl1.Multiline = true; this.metroTabControl1.Name = "metroTabControl1"; this.metroTabControl1.SelectedIndex = 4; this.metroTabControl1.Size = new Size(0x400, 0x300); this.metroTabControl1.Style = MetroColorStyle.Black; this.metroTabControl1.TabIndex = 1; this.metroTabControl1.TextAlign = ContentAlignment.TopCenter; this.metroTabControl1.Theme = MetroThemeStyle.Light; this.metroTabControl1.UseCustomBackColor = true; this.metroTabControl1.UseSelectable = true; this.metroTabControl1.UseStyleColors = true; this.metroTabControl1.TabIndexChanged += new EventHandler(this.metroTabControl1_TabIndexChanged); this.metroTabControl1.Click += new EventHandler(this.metroTabControl1_Click); this.QAtab.Controls.Add(this.picBox); this.QAtab.Controls.Add(this.markandnextQA); this.QAtab.Controls.Add(this.panel13); this.QAtab.Controls.Add(this.panel8); this.QAtab.Controls.Add(this.savennextQA); this.QAtab.Controls.Add(this.panel2); this.QAtab.Controls.Add(this.label1); this.QAtab.Controls.Add(this.adminchk); this.QAtab.HorizontalScrollbar = true; this.QAtab.HorizontalScrollbarBarColor = true; this.QAtab.HorizontalScrollbarHighlightOnWheel = false; this.QAtab.HorizontalScrollbarSize = 10; this.QAtab.Location = new Point(4, 0x23); this.QAtab.Margin = new Padding(10); this.QAtab.Name = "QAtab"; this.QAtab.Size = new Size(0x3f8, 0x2d9); this.QAtab.Style = MetroColorStyle.Blue; this.QAtab.TabIndex = 1; this.QAtab.Text = "Quantitative Apt"; this.QAtab.Theme = MetroThemeStyle.Light; this.QAtab.VerticalScrollbar = true; this.QAtab.VerticalScrollbarBarColor = true; this.QAtab.VerticalScrollbarHighlightOnWheel = false; this.QAtab.VerticalScrollbarSize = 15; this.picBox.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.picBox.Location = new Point(0x4c, 2); this.picBox.Name = "picBox"; this.picBox.Size = new Size(0x2a5, 0x11c); this.picBox.SizeMode = PictureBoxSizeMode.StretchImage; this.picBox.TabIndex = 0x19; this.picBox.TabStop = false; this.picBox.DragDrop += new DragEventHandler(this.picBox_DragDrop); this.picBox.DragEnter += new DragEventHandler(this.picBox_DragEnter); this.markandnextQA.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextQA.Location = new Point(0x2f6, 0x196); this.markandnextQA.Name = "markandnextQA"; this.markandnextQA.Size = new Size(0x7c, 0x2d); this.markandnextQA.Style = MetroColorStyle.Blue; this.markandnextQA.TabIndex = 0x5f; this.markandnextQA.Text = "Mark and Next"; this.markandnextQA.Theme = MetroThemeStyle.Light; this.markandnextQA.UseSelectable = true; this.markandnextQA.Click += new EventHandler(this.metroButton9_Click); this.panel13.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel13.BackColor = SystemColors.InactiveCaptionText; this.panel13.Controls.Add(this.metroLabel28); this.panel13.Controls.Add(this.pictureBox5); this.panel13.Controls.Add(this.metroLabel27); this.panel13.Controls.Add(this.metroLabel26); this.panel13.Controls.Add(this.metroLabel25); this.panel13.Controls.Add(this.pictureBox4); this.panel13.Controls.Add(this.pictureBox3); this.panel13.Controls.Add(this.pictureBox2); this.panel13.Location = new Point(0x2f6, 0x1c6); this.panel13.Name = "panel13"; this.panel13.Size = new Size(0x105, 0xb2); this.panel13.TabIndex = 0x5e; this.metroLabel28.AutoSize = true; this.metroLabel28.BackColor = Color.Transparent; this.metroLabel28.FontWeight = MetroLabelWeight.Bold; this.metroLabel28.Location = new Point(0x3b, 0x94); this.metroLabel28.Name = "metroLabel28"; this.metroLabel28.Size = new Size(0x8b, 0x13); this.metroLabel28.Style = MetroColorStyle.Purple; this.metroLabel28.TabIndex = 0x65; this.metroLabel28.Text = "Marked For Review"; this.metroLabel28.Theme = MetroThemeStyle.Dark; this.metroLabel28.UseCustomBackColor = true; this.metroLabel28.UseStyleColors = true; this.pictureBox5.BackColor = Color.White; this.pictureBox5.Image = Resources.rvw; this.pictureBox5.Location = new Point(3, 0x8f); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new Size(30, 30); this.pictureBox5.TabIndex = 100; this.pictureBox5.TabStop = false; this.metroLabel27.AutoSize = true; this.metroLabel27.BackColor = Color.Transparent; this.metroLabel27.FontWeight = MetroLabelWeight.Bold; this.metroLabel27.Location = new Point(60, 0x63); this.metroLabel27.Name = "metroLabel27"; this.metroLabel27.Size = new Size(0x53, 0x13); this.metroLabel27.Style = MetroColorStyle.White; this.metroLabel27.TabIndex = 0x63; this.metroLabel27.Text = "Not Visited"; this.metroLabel27.Theme = MetroThemeStyle.Dark; this.metroLabel27.UseCustomBackColor = true; this.metroLabel27.UseStyleColors = true; this.metroLabel26.AutoSize = true; this.metroLabel26.BackColor = Color.Transparent; this.metroLabel26.FontWeight = MetroLabelWeight.Bold; this.metroLabel26.Location = new Point(60, 0x35); this.metroLabel26.Name = "metroLabel26"; this.metroLabel26.Size = new Size(0x68, 0x13); this.metroLabel26.Style = MetroColorStyle.Red; this.metroLabel26.TabIndex = 0x62; this.metroLabel26.Text = "Not Answered"; this.metroLabel26.Theme = MetroThemeStyle.Dark; this.metroLabel26.UseCustomBackColor = true; this.metroLabel26.UseStyleColors = true; this.metroLabel25.AutoSize = true; this.metroLabel25.BackColor = Color.Transparent; this.metroLabel25.FontWeight = MetroLabelWeight.Bold; this.metroLabel25.Location = new Point(60, 7); this.metroLabel25.Name = "metroLabel25"; this.metroLabel25.Size = new Size(0x4b, 0x13); this.metroLabel25.Style = MetroColorStyle.Green; this.metroLabel25.TabIndex = 0x5f; this.metroLabel25.Text = "Answered"; this.metroLabel25.Theme = MetroThemeStyle.Dark; this.metroLabel25.UseCustomBackColor = true; this.metroLabel25.UseStyleColors = true; this.pictureBox4.BackColor = Color.White; this.pictureBox4.Location = new Point(3, 0x5f); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new Size(30, 30); this.pictureBox4.TabIndex = 0x61; this.pictureBox4.TabStop = false; this.pictureBox3.Image = Resources.unchk; this.pictureBox3.Location = new Point(3, 0x31); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new Size(30, 30); this.pictureBox3.TabIndex = 0x60; this.pictureBox3.TabStop = false; this.pictureBox2.Image = Resources.chk1; this.pictureBox2.Location = new Point(3, 3); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new Size(30, 30); this.pictureBox2.TabIndex = 0x5f; this.pictureBox2.TabStop = false; this.adminchk.BackColor = Color.Transparent; this.adminchk.Controls.Add(this.secnameQA); this.adminchk.Controls.Add(this.textBox1); this.adminchk.Controls.Add(this.S2chkans); this.adminchk.Controls.Add(this.sb1); this.adminchk.Controls.Add(this.metroLabel4); this.adminchk.Controls.Add(this.rs5); this.adminchk.Controls.Add(this.sb5); this.adminchk.Controls.Add(this.metroLabel3); this.adminchk.Controls.Add(this.ans); this.adminchk.Controls.Add(this.sb2); this.adminchk.Controls.Add(this.metroLabel2); this.adminchk.Controls.Add(this.sb3); this.adminchk.Controls.Add(this.sb4); this.adminchk.Controls.Add(this.metroLabel1); this.adminchk.Controls.Add(this.rs4); this.adminchk.Controls.Add(this.rs1); this.adminchk.Controls.Add(this.rs3); this.adminchk.Controls.Add(this.rs2); this.adminchk.Location = new Point(0x37b, 7); this.adminchk.Name = "adminchk"; this.adminchk.Size = new Size(0x90, 0x189); this.adminchk.TabIndex = 0x5d; this.adminchk.Visible = false; this.secnameQA.AutoSize = true; this.secnameQA.Location = new Point(13, 0x2e); this.secnameQA.Name = "secnameQA"; this.secnameQA.Size = new Size(0x1a, 13); this.secnameQA.TabIndex = 0x60; this.secnameQA.Text = "DIQ"; this.textBox1.Location = new Point(0x4f, 0x2e); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.Size = new Size(0x18, 0x1b); this.textBox1.TabIndex = 0x4a; this.textBox1.Text = "1"; this.S2chkans.Location = new Point(0x10, 0x4f); this.S2chkans.Name = "S2chkans"; this.S2chkans.Size = new Size(40, 20); this.S2chkans.TabIndex = 0x18; this.sb1.Location = new Point(0x19, 0x84); this.sb1.Name = "sb1"; this.sb1.Size = new Size(40, 20); this.sb1.TabIndex = 0x51; this.metroLabel4.AutoSize = true; this.metroLabel4.FontWeight = MetroLabelWeight.Bold; this.metroLabel4.Location = new Point(0x2a, 0x16f); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new Size(0x3d, 0x13); this.metroLabel4.Style = MetroColorStyle.Black; this.metroLabel4.TabIndex = 0x17; this.metroLabel4.Text = "option4"; this.metroLabel4.Theme = MetroThemeStyle.Light; this.metroLabel4.UseStyleColors = true; this.rs5.Location = new Point(0x4f, 0xec); this.rs5.Name = "rs5"; this.rs5.Size = new Size(40, 20); this.rs5.TabIndex = 90; this.sb5.Location = new Point(0x19, 0xec); this.sb5.Name = "sb5"; this.sb5.Size = new Size(40, 20); this.sb5.TabIndex = 0x55; this.metroLabel3.AutoSize = true; this.metroLabel3.BackColor = Color.Transparent; this.metroLabel3.FontWeight = MetroLabelWeight.Bold; this.metroLabel3.Location = new Point(0x2a, 0x141); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new Size(0x3d, 0x13); this.metroLabel3.Style = MetroColorStyle.Black; this.metroLabel3.TabIndex = 0x18; this.metroLabel3.Text = "option3"; this.metroLabel3.Theme = MetroThemeStyle.Light; this.metroLabel3.UseStyleColors = true; this.ans.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.ans.Location = new Point(0x4f, 0x4f); this.ans.Name = "ans"; this.ans.Size = new Size(40, 0x16); this.ans.TabIndex = 0x5c; this.sb2.Location = new Point(0x19, 0x9e); this.sb2.Name = "sb2"; this.sb2.Size = new Size(40, 20); this.sb2.TabIndex = 0x52; this.metroLabel2.AutoSize = true; this.metroLabel2.FontWeight = MetroLabelWeight.Bold; this.metroLabel2.Location = new Point(0x2a, 0x129); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new Size(0x3d, 0x13); this.metroLabel2.Style = MetroColorStyle.Black; this.metroLabel2.TabIndex = 0x19; this.metroLabel2.Text = "option2"; this.metroLabel2.Theme = MetroThemeStyle.Light; this.metroLabel2.UseStyleColors = true; this.sb3.Location = new Point(0x19, 0xb8); this.sb3.Name = "sb3"; this.sb3.Size = new Size(40, 20); this.sb3.TabIndex = 0x53; this.sb4.Location = new Point(0x19, 210); this.sb4.Name = "sb4"; this.sb4.Size = new Size(40, 20); this.sb4.TabIndex = 0x54; this.metroLabel1.AutoSize = true; this.metroLabel1.FontWeight = MetroLabelWeight.Bold; this.metroLabel1.ForeColor = Color.Black; this.metroLabel1.Location = new Point(0x2a, 0x106); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new Size(0x3d, 0x13); this.metroLabel1.Style = MetroColorStyle.Black; this.metroLabel1.TabIndex = 0x1a; this.metroLabel1.Text = "option1"; this.metroLabel1.Theme = MetroThemeStyle.Light; this.metroLabel1.UseStyleColors = true; this.rs4.Location = new Point(0x4f, 210); this.rs4.Name = "rs4"; this.rs4.Size = new Size(40, 20); this.rs4.TabIndex = 0x59; this.rs1.Location = new Point(0x4f, 0x84); this.rs1.Name = "rs1"; this.rs1.Size = new Size(40, 20); this.rs1.TabIndex = 0x56; this.rs3.Location = new Point(0x4f, 0xb8); this.rs3.Name = "rs3"; this.rs3.Size = new Size(40, 20); this.rs3.TabIndex = 0x58; this.rs2.Location = new Point(0x4f, 0x9e); this.rs2.Name = "rs2"; this.rs2.Size = new Size(40, 20); this.rs2.TabIndex = 0x57; this.sec2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec2.BackColor = Color.White; this.sec2.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec2.Location = new Point(10, 3); this.sec2.Multiline = true; this.sec2.Name = "sec2"; this.sec2.ReadOnly = true; this.sec2.ScrollBars = ScrollBars.Vertical; this.sec2.Size = new Size(0x2a5, 0x84); this.sec2.TabIndex = 0x4e; this.panel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel1.BackColor = Color.Transparent; this.panel1.Controls.Add(this.QAopd); this.panel1.Controls.Add(this.QAopc); this.panel1.Controls.Add(this.QAopb); this.panel1.Controls.Add(this.QAopa); this.panel1.Controls.Add(this.metroRadioButton8); this.panel1.Controls.Add(this.metroRadioButton7); this.panel1.Controls.Add(this.metroRadioButton6); this.panel1.Controls.Add(this.metroRadioButton5); this.panel1.Location = new Point(10, 0x8a); this.panel1.Name = "panel1"; this.panel1.Size = new Size(0x2a5, 0x7f); this.panel1.TabIndex = 0x4f; this.QAopd.AutoSize = true; this.QAopd.Font = new Font("Britannic Bold", 11.25f); this.QAopd.Location = new Point(0x35, 0x67); this.QAopd.Name = "QAopd"; this.QAopd.Size = new Size(0x24, 0x10); this.QAopd.TabIndex = 0x7b; this.QAopd.Text = "OpD"; this.QAopc.AutoSize = true; this.QAopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.QAopc.Location = new Point(0x36, 0x4a); this.QAopc.Name = "QAopc"; this.QAopc.Size = new Size(0x23, 0x10); this.QAopc.TabIndex = 0x7a; this.QAopc.Text = "OpC"; this.QAopb.AutoSize = true; this.QAopb.Font = new Font("Britannic Bold", 11.25f); this.QAopb.Location = new Point(0x36, 0x2d); this.QAopb.Name = "QAopb"; this.QAopb.Size = new Size(0x23, 0x10); this.QAopb.TabIndex = 0x79; this.QAopb.Text = "OpB"; this.QAopa.AutoSize = true; this.QAopa.Font = new Font("Britannic Bold", 11.25f); this.QAopa.Location = new Point(0x36, 13); this.QAopa.Name = "QAopa"; this.QAopa.Size = new Size(0x22, 0x10); this.QAopa.TabIndex = 120; this.QAopa.Text = "OpA"; this.metroRadioButton8.AutoSize = true; this.metroRadioButton8.Location = new Point(0x11, 14); this.metroRadioButton8.Name = "metroRadioButton8"; this.metroRadioButton8.Size = new Size(0x1f, 15); this.metroRadioButton8.Style = MetroColorStyle.Blue; this.metroRadioButton8.TabIndex = 0x1b; this.metroRadioButton8.TabStop = true; this.metroRadioButton8.Text = "A"; this.metroRadioButton8.Theme = MetroThemeStyle.Light; this.metroRadioButton8.UseSelectable = true; this.metroRadioButton8.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton8.Click += new EventHandler(this.radioButton_Click); this.metroRadioButton7.AutoSize = true; this.metroRadioButton7.Location = new Point(0x11, 0x2e); this.metroRadioButton7.Name = "metroRadioButton7"; this.metroRadioButton7.Size = new Size(30, 15); this.metroRadioButton7.Style = MetroColorStyle.Blue; this.metroRadioButton7.TabIndex = 0x1c; this.metroRadioButton7.TabStop = true; this.metroRadioButton7.Text = "B"; this.metroRadioButton7.Theme = MetroThemeStyle.Light; this.metroRadioButton7.UseSelectable = true; this.metroRadioButton7.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton7.Click += new EventHandler(this.radioButton_Click); this.metroRadioButton6.AutoSize = true; this.metroRadioButton6.Location = new Point(0x11, 0x4b); this.metroRadioButton6.Name = "metroRadioButton6"; this.metroRadioButton6.Size = new Size(0x1f, 15); this.metroRadioButton6.Style = MetroColorStyle.Blue; this.metroRadioButton6.TabIndex = 0x1d; this.metroRadioButton6.TabStop = true; this.metroRadioButton6.Text = "C"; this.metroRadioButton6.Theme = MetroThemeStyle.Light; this.metroRadioButton6.UseSelectable = true; this.metroRadioButton6.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton6.Click += new EventHandler(this.radioButton_Click); this.metroRadioButton5.AutoSize = true; this.metroRadioButton5.Location = new Point(0x11, 0x68); this.metroRadioButton5.Name = "metroRadioButton5"; this.metroRadioButton5.Size = new Size(0x1f, 15); this.metroRadioButton5.Style = MetroColorStyle.Blue; this.metroRadioButton5.TabIndex = 30; this.metroRadioButton5.TabStop = true; this.metroRadioButton5.Text = "D"; this.metroRadioButton5.Theme = MetroThemeStyle.Light; this.metroRadioButton5.UseSelectable = true; this.metroRadioButton5.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton5.Click += new EventHandler(this.radioButton_Click); this.ref4DI.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.ref4DI.BackColor = Color.White; this.ref4DI.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ref4DI.Location = new Point(9, 0x10a); this.ref4DI.Multiline = true; this.ref4DI.Name = "ref4DI"; this.ref4DI.ReadOnly = true; this.ref4DI.ScrollBars = ScrollBars.Vertical; this.ref4DI.Size = new Size(0x2a5, 0x3f); this.ref4DI.TabIndex = 80; this.savennextQA.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextQA.Location = new Point(0x378, 0x196); this.savennextQA.Name = "savennextQA"; this.savennextQA.Size = new Size(0x83, 0x2d); this.savennextQA.Style = MetroColorStyle.Blue; this.savennextQA.TabIndex = 0x16; this.savennextQA.Text = "Save and Next"; this.savennextQA.Theme = MetroThemeStyle.Light; this.savennextQA.UseSelectable = true; this.savennextQA.Click += new EventHandler(this.savennext_Click); this.panel2.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel2.AutoScroll = true; this.panel2.BackColor = Color.Transparent; this.panel2.BorderStyle = BorderStyle.FixedSingle; this.panel2.Controls.Add(this.DIQ1); this.panel2.Controls.Add(this.DIQ50); this.panel2.Controls.Add(this.DIQ2); this.panel2.Controls.Add(this.DIQ49); this.panel2.Controls.Add(this.DIQ3); this.panel2.Controls.Add(this.DIQ48); this.panel2.Controls.Add(this.DIQ4); this.panel2.Controls.Add(this.DIQ47); this.panel2.Controls.Add(this.DIQ5); this.panel2.Controls.Add(this.DIQ46); this.panel2.Controls.Add(this.DIQ6); this.panel2.Controls.Add(this.DIQ45); this.panel2.Controls.Add(this.DIQ7); this.panel2.Controls.Add(this.DIQ44); this.panel2.Controls.Add(this.DIQ8); this.panel2.Controls.Add(this.DIQ43); this.panel2.Controls.Add(this.DIQ9); this.panel2.Controls.Add(this.DIQ42); this.panel2.Controls.Add(this.DIQ10); this.panel2.Controls.Add(this.DIQ41); this.panel2.Controls.Add(this.DIQ11); this.panel2.Controls.Add(this.DIQ40); this.panel2.Controls.Add(this.DIQ12); this.panel2.Controls.Add(this.DIQ39); this.panel2.Controls.Add(this.DIQ13); this.panel2.Controls.Add(this.DIQ38); this.panel2.Controls.Add(this.DIQ14); this.panel2.Controls.Add(this.DIQ37); this.panel2.Controls.Add(this.DIQ15); this.panel2.Controls.Add(this.DIQ36); this.panel2.Controls.Add(this.DIQ16); this.panel2.Controls.Add(this.DIQ35); this.panel2.Controls.Add(this.DIQ17); this.panel2.Controls.Add(this.DIQ34); this.panel2.Controls.Add(this.DIQ18); this.panel2.Controls.Add(this.DIQ33); this.panel2.Controls.Add(this.DIQ19); this.panel2.Controls.Add(this.DIQ32); this.panel2.Controls.Add(this.DIQ20); this.panel2.Controls.Add(this.DIQ31); this.panel2.Controls.Add(this.DIQ21); this.panel2.Controls.Add(this.DIQ30); this.panel2.Controls.Add(this.DIQ22); this.panel2.Controls.Add(this.DIQ29); this.panel2.Controls.Add(this.DIQ23); this.panel2.Controls.Add(this.DIQ28); this.panel2.Controls.Add(this.DIQ24); this.panel2.Controls.Add(this.DIQ27); this.panel2.Controls.Add(this.DIQ25); this.panel2.Controls.Add(this.DIQ26); this.panel2.Location = new Point(0x2f4, 2); this.panel2.Name = "panel2"; this.panel2.Size = new Size(0x107, 0x18e); this.panel2.TabIndex = 0x4c; this.panel2.Paint += new PaintEventHandler(this.panel2_Paint); this.DIQ1.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ1.FlatAppearance.BorderSize = 2; this.DIQ1.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ1.FlatStyle = FlatStyle.Flat; this.DIQ1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ1.ForeColor = SystemColors.ActiveCaptionText; this.DIQ1.Location = new Point(15, 12); this.DIQ1.Name = "DIQ1"; this.DIQ1.Size = new Size(40, 40); this.DIQ1.TabIndex = 0x74; this.DIQ1.Text = "1"; this.DIQ1.TextAlign = ContentAlignment.TopLeft; this.DIQ1.UseVisualStyleBackColor = true; this.DIQ1.Click += new EventHandler(this.DIQ1_Click_1); this.DIQ50.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ50.FlatAppearance.BorderSize = 2; this.DIQ50.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ50.FlatStyle = FlatStyle.Flat; this.DIQ50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ50.ForeColor = SystemColors.ActiveCaptionText; this.DIQ50.Location = new Point(0xc6, 0x1aa); this.DIQ50.Name = "DIQ50"; this.DIQ50.Size = new Size(40, 40); this.DIQ50.TabIndex = 0xa5; this.DIQ50.Text = "50"; this.DIQ50.TextAlign = ContentAlignment.TopLeft; this.DIQ50.UseVisualStyleBackColor = true; this.DIQ50.Click += new EventHandler(this.DIQ50_Click); this.DIQ2.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ2.FlatAppearance.BorderSize = 2; this.DIQ2.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ2.FlatStyle = FlatStyle.Flat; this.DIQ2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ2.ForeColor = SystemColors.ActiveCaptionText; this.DIQ2.Location = new Point(0x3d, 12); this.DIQ2.Name = "DIQ2"; this.DIQ2.Size = new Size(40, 40); this.DIQ2.TabIndex = 0x75; this.DIQ2.Text = "2"; this.DIQ2.TextAlign = ContentAlignment.TopLeft; this.DIQ2.UseVisualStyleBackColor = true; this.DIQ2.Click += new EventHandler(this.DIQ2_Click); this.DIQ49.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ49.FlatAppearance.BorderSize = 2; this.DIQ49.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ49.FlatStyle = FlatStyle.Flat; this.DIQ49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ49.ForeColor = SystemColors.ActiveCaptionText; this.DIQ49.Location = new Point(0x99, 0x1aa); this.DIQ49.Name = "DIQ49"; this.DIQ49.Size = new Size(40, 40); this.DIQ49.TabIndex = 0xa4; this.DIQ49.Text = "49"; this.DIQ49.TextAlign = ContentAlignment.TopLeft; this.DIQ49.UseVisualStyleBackColor = true; this.DIQ49.Click += new EventHandler(this.DIQ49_Click); this.DIQ3.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ3.FlatAppearance.BorderSize = 2; this.DIQ3.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ3.FlatStyle = FlatStyle.Flat; this.DIQ3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ3.ForeColor = SystemColors.ActiveCaptionText; this.DIQ3.Location = new Point(0x6b, 12); this.DIQ3.Name = "DIQ3"; this.DIQ3.Size = new Size(40, 40); this.DIQ3.TabIndex = 0x76; this.DIQ3.Text = "3"; this.DIQ3.TextAlign = ContentAlignment.TopLeft; this.DIQ3.UseVisualStyleBackColor = true; this.DIQ3.Click += new EventHandler(this.DIQ3_Click); this.DIQ48.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ48.FlatAppearance.BorderSize = 2; this.DIQ48.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ48.FlatStyle = FlatStyle.Flat; this.DIQ48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ48.ForeColor = SystemColors.ActiveCaptionText; this.DIQ48.Location = new Point(0x6b, 0x1aa); this.DIQ48.Name = "DIQ48"; this.DIQ48.Size = new Size(40, 40); this.DIQ48.TabIndex = 0xa3; this.DIQ48.Text = "48"; this.DIQ48.TextAlign = ContentAlignment.TopLeft; this.DIQ48.UseVisualStyleBackColor = true; this.DIQ48.Click += new EventHandler(this.DIQ48_Click); this.DIQ4.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ4.FlatAppearance.BorderSize = 2; this.DIQ4.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ4.FlatStyle = FlatStyle.Flat; this.DIQ4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ4.ForeColor = SystemColors.ActiveCaptionText; this.DIQ4.Location = new Point(0x99, 12); this.DIQ4.Name = "DIQ4"; this.DIQ4.Size = new Size(40, 40); this.DIQ4.TabIndex = 0x77; this.DIQ4.Text = "4"; this.DIQ4.TextAlign = ContentAlignment.TopLeft; this.DIQ4.UseVisualStyleBackColor = true; this.DIQ4.Click += new EventHandler(this.DIQ4_Click); this.DIQ47.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ47.FlatAppearance.BorderSize = 2; this.DIQ47.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ47.FlatStyle = FlatStyle.Flat; this.DIQ47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ47.ForeColor = SystemColors.ActiveCaptionText; this.DIQ47.Location = new Point(0x3d, 0x1aa); this.DIQ47.Name = "DIQ47"; this.DIQ47.Size = new Size(40, 40); this.DIQ47.TabIndex = 0xa2; this.DIQ47.Text = "47"; this.DIQ47.TextAlign = ContentAlignment.TopLeft; this.DIQ47.UseVisualStyleBackColor = true; this.DIQ47.Click += new EventHandler(this.DIQ47_Click); this.DIQ5.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ5.FlatAppearance.BorderSize = 2; this.DIQ5.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ5.FlatStyle = FlatStyle.Flat; this.DIQ5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ5.ForeColor = SystemColors.ActiveCaptionText; this.DIQ5.Location = new Point(0xc6, 12); this.DIQ5.Name = "DIQ5"; this.DIQ5.Size = new Size(40, 40); this.DIQ5.TabIndex = 120; this.DIQ5.Text = "5"; this.DIQ5.TextAlign = ContentAlignment.TopLeft; this.DIQ5.UseVisualStyleBackColor = true; this.DIQ5.Click += new EventHandler(this.DIQ5_Click); this.DIQ46.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ46.FlatAppearance.BorderSize = 2; this.DIQ46.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ46.FlatStyle = FlatStyle.Flat; this.DIQ46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ46.ForeColor = SystemColors.ActiveCaptionText; this.DIQ46.Location = new Point(15, 0x1aa); this.DIQ46.Name = "DIQ46"; this.DIQ46.Size = new Size(40, 40); this.DIQ46.TabIndex = 0xa1; this.DIQ46.Text = "46"; this.DIQ46.TextAlign = ContentAlignment.TopLeft; this.DIQ46.UseVisualStyleBackColor = true; this.DIQ46.Click += new EventHandler(this.DIQ46_Click); this.DIQ6.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ6.FlatAppearance.BorderSize = 2; this.DIQ6.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ6.FlatStyle = FlatStyle.Flat; this.DIQ6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ6.ForeColor = SystemColors.ActiveCaptionText; this.DIQ6.Location = new Point(15, 0x3a); this.DIQ6.Name = "DIQ6"; this.DIQ6.Size = new Size(40, 40); this.DIQ6.TabIndex = 0x79; this.DIQ6.Text = "6"; this.DIQ6.TextAlign = ContentAlignment.TopLeft; this.DIQ6.UseVisualStyleBackColor = true; this.DIQ6.Click += new EventHandler(this.DIQ6_Click); this.DIQ45.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ45.FlatAppearance.BorderSize = 2; this.DIQ45.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ45.FlatStyle = FlatStyle.Flat; this.DIQ45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ45.ForeColor = SystemColors.ActiveCaptionText; this.DIQ45.Location = new Point(0xc6, 380); this.DIQ45.Name = "DIQ45"; this.DIQ45.Size = new Size(40, 40); this.DIQ45.TabIndex = 160; this.DIQ45.Text = "45"; this.DIQ45.TextAlign = ContentAlignment.TopLeft; this.DIQ45.UseVisualStyleBackColor = true; this.DIQ45.Click += new EventHandler(this.DIQ45_Click); this.DIQ7.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ7.FlatAppearance.BorderSize = 2; this.DIQ7.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ7.FlatStyle = FlatStyle.Flat; this.DIQ7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ7.ForeColor = SystemColors.ActiveCaptionText; this.DIQ7.Location = new Point(0x3d, 0x3a); this.DIQ7.Name = "DIQ7"; this.DIQ7.Size = new Size(40, 40); this.DIQ7.TabIndex = 0x7a; this.DIQ7.Text = "7"; this.DIQ7.TextAlign = ContentAlignment.TopLeft; this.DIQ7.UseVisualStyleBackColor = true; this.DIQ7.Click += new EventHandler(this.DIQ7_Click); this.DIQ44.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ44.FlatAppearance.BorderSize = 2; this.DIQ44.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ44.FlatStyle = FlatStyle.Flat; this.DIQ44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ44.ForeColor = SystemColors.ActiveCaptionText; this.DIQ44.Location = new Point(0x99, 380); this.DIQ44.Name = "DIQ44"; this.DIQ44.Size = new Size(40, 40); this.DIQ44.TabIndex = 0x9f; this.DIQ44.Text = "44"; this.DIQ44.TextAlign = ContentAlignment.TopLeft; this.DIQ44.UseVisualStyleBackColor = true; this.DIQ44.Click += new EventHandler(this.DIQ44_Click); this.DIQ8.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ8.FlatAppearance.BorderSize = 2; this.DIQ8.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ8.FlatStyle = FlatStyle.Flat; this.DIQ8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ8.ForeColor = SystemColors.ActiveCaptionText; this.DIQ8.Location = new Point(0x6b, 0x3a); this.DIQ8.Name = "DIQ8"; this.DIQ8.Size = new Size(40, 40); this.DIQ8.TabIndex = 0x7b; this.DIQ8.Text = "8"; this.DIQ8.TextAlign = ContentAlignment.TopLeft; this.DIQ8.UseVisualStyleBackColor = true; this.DIQ8.Click += new EventHandler(this.DIQ8_Click); this.DIQ43.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ43.FlatAppearance.BorderSize = 2; this.DIQ43.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ43.FlatStyle = FlatStyle.Flat; this.DIQ43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ43.ForeColor = SystemColors.ActiveCaptionText; this.DIQ43.Location = new Point(0x6b, 380); this.DIQ43.Name = "DIQ43"; this.DIQ43.Size = new Size(40, 40); this.DIQ43.TabIndex = 0x9e; this.DIQ43.Text = "43"; this.DIQ43.TextAlign = ContentAlignment.TopLeft; this.DIQ43.UseVisualStyleBackColor = true; this.DIQ43.Click += new EventHandler(this.DIQ43_Click); this.DIQ9.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ9.FlatAppearance.BorderSize = 2; this.DIQ9.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ9.FlatStyle = FlatStyle.Flat; this.DIQ9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ9.ForeColor = SystemColors.ActiveCaptionText; this.DIQ9.Location = new Point(0x99, 0x3a); this.DIQ9.Name = "DIQ9"; this.DIQ9.Size = new Size(40, 40); this.DIQ9.TabIndex = 0x7c; this.DIQ9.Text = "9"; this.DIQ9.TextAlign = ContentAlignment.TopLeft; this.DIQ9.UseVisualStyleBackColor = true; this.DIQ9.Click += new EventHandler(this.DIQ9_Click); this.DIQ42.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ42.FlatAppearance.BorderSize = 2; this.DIQ42.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ42.FlatStyle = FlatStyle.Flat; this.DIQ42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ42.ForeColor = SystemColors.ActiveCaptionText; this.DIQ42.Location = new Point(0x3d, 380); this.DIQ42.Name = "DIQ42"; this.DIQ42.Size = new Size(40, 40); this.DIQ42.TabIndex = 0x9d; this.DIQ42.Text = "42"; this.DIQ42.TextAlign = ContentAlignment.TopLeft; this.DIQ42.UseVisualStyleBackColor = true; this.DIQ42.Click += new EventHandler(this.DIQ42_Click); this.DIQ10.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ10.FlatAppearance.BorderSize = 2; this.DIQ10.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ10.FlatStyle = FlatStyle.Flat; this.DIQ10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ10.ForeColor = SystemColors.ActiveCaptionText; this.DIQ10.Location = new Point(0xc6, 0x3a); this.DIQ10.Name = "DIQ10"; this.DIQ10.Size = new Size(40, 40); this.DIQ10.TabIndex = 0x7d; this.DIQ10.Text = "10"; this.DIQ10.TextAlign = ContentAlignment.TopLeft; this.DIQ10.UseVisualStyleBackColor = true; this.DIQ10.Click += new EventHandler(this.DIQ10_Click); this.DIQ41.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ41.FlatAppearance.BorderSize = 2; this.DIQ41.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ41.FlatStyle = FlatStyle.Flat; this.DIQ41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ41.ForeColor = SystemColors.ActiveCaptionText; this.DIQ41.Location = new Point(15, 380); this.DIQ41.Name = "DIQ41"; this.DIQ41.Size = new Size(40, 40); this.DIQ41.TabIndex = 0x9c; this.DIQ41.Text = "41"; this.DIQ41.TextAlign = ContentAlignment.TopLeft; this.DIQ41.UseVisualStyleBackColor = true; this.DIQ41.Click += new EventHandler(this.DIQ41_Click); this.DIQ11.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ11.FlatAppearance.BorderSize = 2; this.DIQ11.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ11.FlatStyle = FlatStyle.Flat; this.DIQ11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ11.ForeColor = SystemColors.ActiveCaptionText; this.DIQ11.Location = new Point(15, 0x68); this.DIQ11.Name = "DIQ11"; this.DIQ11.Size = new Size(40, 40); this.DIQ11.TabIndex = 0x7e; this.DIQ11.Text = "11"; this.DIQ11.TextAlign = ContentAlignment.TopLeft; this.DIQ11.UseVisualStyleBackColor = true; this.DIQ11.Click += new EventHandler(this.DIQ11_Click); this.DIQ40.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ40.FlatAppearance.BorderSize = 2; this.DIQ40.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ40.FlatStyle = FlatStyle.Flat; this.DIQ40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ40.ForeColor = SystemColors.ActiveCaptionText; this.DIQ40.Location = new Point(0xc6, 0x14e); this.DIQ40.Name = "DIQ40"; this.DIQ40.Size = new Size(40, 40); this.DIQ40.TabIndex = 0x9b; this.DIQ40.Text = "40"; this.DIQ40.TextAlign = ContentAlignment.TopLeft; this.DIQ40.UseVisualStyleBackColor = true; this.DIQ40.Click += new EventHandler(this.DIQ40_Click); this.DIQ12.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ12.FlatAppearance.BorderSize = 2; this.DIQ12.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ12.FlatStyle = FlatStyle.Flat; this.DIQ12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ12.ForeColor = SystemColors.ActiveCaptionText; this.DIQ12.Location = new Point(0x3d, 0x68); this.DIQ12.Name = "DIQ12"; this.DIQ12.Size = new Size(40, 40); this.DIQ12.TabIndex = 0x7f; this.DIQ12.Text = "12"; this.DIQ12.TextAlign = ContentAlignment.TopLeft; this.DIQ12.UseVisualStyleBackColor = true; this.DIQ12.Click += new EventHandler(this.DIQ12_Click); this.DIQ39.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ39.FlatAppearance.BorderSize = 2; this.DIQ39.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ39.FlatStyle = FlatStyle.Flat; this.DIQ39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ39.ForeColor = SystemColors.ActiveCaptionText; this.DIQ39.Location = new Point(0x99, 0x14e); this.DIQ39.Name = "DIQ39"; this.DIQ39.Size = new Size(40, 40); this.DIQ39.TabIndex = 0x9a; this.DIQ39.Text = "39"; this.DIQ39.TextAlign = ContentAlignment.TopLeft; this.DIQ39.UseVisualStyleBackColor = true; this.DIQ39.Click += new EventHandler(this.DIQ39_Click); this.DIQ13.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ13.FlatAppearance.BorderSize = 2; this.DIQ13.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ13.FlatStyle = FlatStyle.Flat; this.DIQ13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ13.ForeColor = SystemColors.ActiveCaptionText; this.DIQ13.Location = new Point(0x6b, 0x68); this.DIQ13.Name = "DIQ13"; this.DIQ13.Size = new Size(40, 40); this.DIQ13.TabIndex = 0x80; this.DIQ13.Text = "13"; this.DIQ13.TextAlign = ContentAlignment.TopLeft; this.DIQ13.UseVisualStyleBackColor = true; this.DIQ13.Click += new EventHandler(this.DIQ13_Click); this.DIQ38.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ38.FlatAppearance.BorderSize = 2; this.DIQ38.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ38.FlatStyle = FlatStyle.Flat; this.DIQ38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ38.ForeColor = SystemColors.ActiveCaptionText; this.DIQ38.Location = new Point(0x6b, 0x14e); this.DIQ38.Name = "DIQ38"; this.DIQ38.Size = new Size(40, 40); this.DIQ38.TabIndex = 0x99; this.DIQ38.Text = "38"; this.DIQ38.TextAlign = ContentAlignment.TopLeft; this.DIQ38.UseVisualStyleBackColor = true; this.DIQ38.Click += new EventHandler(this.DIQ38_Click); this.DIQ14.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ14.FlatAppearance.BorderSize = 2; this.DIQ14.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ14.FlatStyle = FlatStyle.Flat; this.DIQ14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ14.ForeColor = SystemColors.ActiveCaptionText; this.DIQ14.Location = new Point(0x99, 0x68); this.DIQ14.Name = "DIQ14"; this.DIQ14.Size = new Size(40, 40); this.DIQ14.TabIndex = 0x81; this.DIQ14.Text = "14"; this.DIQ14.TextAlign = ContentAlignment.TopLeft; this.DIQ14.UseVisualStyleBackColor = true; this.DIQ14.Click += new EventHandler(this.DIQ14_Click); this.DIQ37.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ37.FlatAppearance.BorderSize = 2; this.DIQ37.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ37.FlatStyle = FlatStyle.Flat; this.DIQ37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ37.ForeColor = SystemColors.ActiveCaptionText; this.DIQ37.Location = new Point(0x3d, 0x14e); this.DIQ37.Name = "DIQ37"; this.DIQ37.Size = new Size(40, 40); this.DIQ37.TabIndex = 0x98; this.DIQ37.Text = "37"; this.DIQ37.TextAlign = ContentAlignment.TopLeft; this.DIQ37.UseVisualStyleBackColor = true; this.DIQ37.Click += new EventHandler(this.DIQ37_Click); this.DIQ15.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ15.FlatAppearance.BorderSize = 2; this.DIQ15.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ15.FlatStyle = FlatStyle.Flat; this.DIQ15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ15.ForeColor = SystemColors.ActiveCaptionText; this.DIQ15.Location = new Point(0xc6, 0x68); this.DIQ15.Name = "DIQ15"; this.DIQ15.Size = new Size(40, 40); this.DIQ15.TabIndex = 130; this.DIQ15.Text = "15"; this.DIQ15.TextAlign = ContentAlignment.TopLeft; this.DIQ15.UseVisualStyleBackColor = true; this.DIQ15.Click += new EventHandler(this.DIQ15_Click); this.DIQ36.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ36.FlatAppearance.BorderSize = 2; this.DIQ36.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ36.FlatStyle = FlatStyle.Flat; this.DIQ36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ36.ForeColor = SystemColors.ActiveCaptionText; this.DIQ36.Location = new Point(15, 0x14e); this.DIQ36.Name = "DIQ36"; this.DIQ36.Size = new Size(40, 40); this.DIQ36.TabIndex = 0x97; this.DIQ36.Text = "36"; this.DIQ36.TextAlign = ContentAlignment.TopLeft; this.DIQ36.UseVisualStyleBackColor = true; this.DIQ36.Click += new EventHandler(this.DIQ36_Click); this.DIQ16.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ16.FlatAppearance.BorderSize = 2; this.DIQ16.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ16.FlatStyle = FlatStyle.Flat; this.DIQ16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ16.ForeColor = SystemColors.ActiveCaptionText; this.DIQ16.Location = new Point(15, 150); this.DIQ16.Name = "DIQ16"; this.DIQ16.Size = new Size(40, 40); this.DIQ16.TabIndex = 0x83; this.DIQ16.Text = "16"; this.DIQ16.TextAlign = ContentAlignment.TopLeft; this.DIQ16.UseVisualStyleBackColor = true; this.DIQ16.Click += new EventHandler(this.DIQ16_Click); this.DIQ35.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ35.FlatAppearance.BorderSize = 2; this.DIQ35.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ35.FlatStyle = FlatStyle.Flat; this.DIQ35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ35.ForeColor = SystemColors.ActiveCaptionText; this.DIQ35.Location = new Point(0xc6, 0x120); this.DIQ35.Name = "DIQ35"; this.DIQ35.Size = new Size(40, 40); this.DIQ35.TabIndex = 150; this.DIQ35.Text = "35"; this.DIQ35.TextAlign = ContentAlignment.TopLeft; this.DIQ35.UseVisualStyleBackColor = true; this.DIQ35.Click += new EventHandler(this.DIQ35_Click); this.DIQ17.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ17.FlatAppearance.BorderSize = 2; this.DIQ17.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ17.FlatStyle = FlatStyle.Flat; this.DIQ17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ17.ForeColor = SystemColors.ActiveCaptionText; this.DIQ17.Location = new Point(0x3d, 150); this.DIQ17.Name = "DIQ17"; this.DIQ17.Size = new Size(40, 40); this.DIQ17.TabIndex = 0x84; this.DIQ17.Text = "17"; this.DIQ17.TextAlign = ContentAlignment.TopLeft; this.DIQ17.UseVisualStyleBackColor = true; this.DIQ17.Click += new EventHandler(this.DIQ17_Click); this.DIQ34.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ34.FlatAppearance.BorderSize = 2; this.DIQ34.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ34.FlatStyle = FlatStyle.Flat; this.DIQ34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ34.ForeColor = SystemColors.ActiveCaptionText; this.DIQ34.Location = new Point(0x99, 0x120); this.DIQ34.Name = "DIQ34"; this.DIQ34.Size = new Size(40, 40); this.DIQ34.TabIndex = 0x95; this.DIQ34.Text = "34"; this.DIQ34.TextAlign = ContentAlignment.TopLeft; this.DIQ34.UseVisualStyleBackColor = true; this.DIQ34.Click += new EventHandler(this.DIQ34_Click); this.DIQ18.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ18.FlatAppearance.BorderSize = 2; this.DIQ18.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ18.FlatStyle = FlatStyle.Flat; this.DIQ18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ18.ForeColor = SystemColors.ActiveCaptionText; this.DIQ18.Location = new Point(0x6b, 150); this.DIQ18.Name = "DIQ18"; this.DIQ18.Size = new Size(40, 40); this.DIQ18.TabIndex = 0x85; this.DIQ18.Text = "18"; this.DIQ18.TextAlign = ContentAlignment.TopLeft; this.DIQ18.UseVisualStyleBackColor = true; this.DIQ18.Click += new EventHandler(this.DIQ18_Click); this.DIQ33.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ33.FlatAppearance.BorderSize = 2; this.DIQ33.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ33.FlatStyle = FlatStyle.Flat; this.DIQ33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ33.ForeColor = SystemColors.ActiveCaptionText; this.DIQ33.Location = new Point(0x6b, 0x120); this.DIQ33.Name = "DIQ33"; this.DIQ33.Size = new Size(40, 40); this.DIQ33.TabIndex = 0x94; this.DIQ33.Text = "33"; this.DIQ33.TextAlign = ContentAlignment.TopLeft; this.DIQ33.UseVisualStyleBackColor = true; this.DIQ33.Click += new EventHandler(this.DIQ33_Click); this.DIQ19.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ19.FlatAppearance.BorderSize = 2; this.DIQ19.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ19.FlatStyle = FlatStyle.Flat; this.DIQ19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ19.ForeColor = SystemColors.ActiveCaptionText; this.DIQ19.Location = new Point(0x99, 150); this.DIQ19.Name = "DIQ19"; this.DIQ19.Size = new Size(40, 40); this.DIQ19.TabIndex = 0x86; this.DIQ19.Text = "19"; this.DIQ19.TextAlign = ContentAlignment.TopLeft; this.DIQ19.UseVisualStyleBackColor = true; this.DIQ19.Click += new EventHandler(this.DIQ19_Click); this.DIQ32.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ32.FlatAppearance.BorderSize = 2; this.DIQ32.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ32.FlatStyle = FlatStyle.Flat; this.DIQ32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ32.ForeColor = SystemColors.ActiveCaptionText; this.DIQ32.Location = new Point(0x3d, 0x120); this.DIQ32.Name = "DIQ32"; this.DIQ32.Size = new Size(40, 40); this.DIQ32.TabIndex = 0x93; this.DIQ32.Text = "32"; this.DIQ32.TextAlign = ContentAlignment.TopLeft; this.DIQ32.UseVisualStyleBackColor = true; this.DIQ32.Click += new EventHandler(this.DIQ32_Click); this.DIQ20.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ20.FlatAppearance.BorderSize = 2; this.DIQ20.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ20.FlatStyle = FlatStyle.Flat; this.DIQ20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ20.ForeColor = SystemColors.ActiveCaptionText; this.DIQ20.Location = new Point(0xc6, 150); this.DIQ20.Name = "DIQ20"; this.DIQ20.Size = new Size(40, 40); this.DIQ20.TabIndex = 0x87; this.DIQ20.Text = "20"; this.DIQ20.TextAlign = ContentAlignment.TopLeft; this.DIQ20.UseVisualStyleBackColor = true; this.DIQ20.Click += new EventHandler(this.DIQ20_Click); this.DIQ31.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ31.FlatAppearance.BorderSize = 2; this.DIQ31.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ31.FlatStyle = FlatStyle.Flat; this.DIQ31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ31.ForeColor = SystemColors.ActiveCaptionText; this.DIQ31.Location = new Point(15, 0x120); this.DIQ31.Name = "DIQ31"; this.DIQ31.Size = new Size(40, 40); this.DIQ31.TabIndex = 0x92; this.DIQ31.Text = "31"; this.DIQ31.TextAlign = ContentAlignment.TopLeft; this.DIQ31.UseVisualStyleBackColor = true; this.DIQ31.Click += new EventHandler(this.DIQ31_Click); this.DIQ21.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ21.FlatAppearance.BorderSize = 2; this.DIQ21.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ21.FlatStyle = FlatStyle.Flat; this.DIQ21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ21.ForeColor = SystemColors.ActiveCaptionText; this.DIQ21.Location = new Point(15, 0xc4); this.DIQ21.Name = "DIQ21"; this.DIQ21.Size = new Size(40, 40); this.DIQ21.TabIndex = 0x88; this.DIQ21.Text = "21"; this.DIQ21.TextAlign = ContentAlignment.TopLeft; this.DIQ21.UseVisualStyleBackColor = true; this.DIQ21.Click += new EventHandler(this.DIQ21_Click); this.DIQ30.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ30.FlatAppearance.BorderSize = 2; this.DIQ30.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ30.FlatStyle = FlatStyle.Flat; this.DIQ30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ30.ForeColor = SystemColors.ActiveCaptionText; this.DIQ30.Location = new Point(0xc6, 0xf2); this.DIQ30.Name = "DIQ30"; this.DIQ30.Size = new Size(40, 40); this.DIQ30.TabIndex = 0x91; this.DIQ30.Text = "30"; this.DIQ30.TextAlign = ContentAlignment.TopLeft; this.DIQ30.UseVisualStyleBackColor = true; this.DIQ30.Click += new EventHandler(this.DIQ30_Click); this.DIQ22.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ22.FlatAppearance.BorderSize = 2; this.DIQ22.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ22.FlatStyle = FlatStyle.Flat; this.DIQ22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ22.ForeColor = SystemColors.ActiveCaptionText; this.DIQ22.Location = new Point(0x3d, 0xc4); this.DIQ22.Name = "DIQ22"; this.DIQ22.Size = new Size(40, 40); this.DIQ22.TabIndex = 0x89; this.DIQ22.Text = "22"; this.DIQ22.TextAlign = ContentAlignment.TopLeft; this.DIQ22.UseVisualStyleBackColor = true; this.DIQ22.Click += new EventHandler(this.DIQ22_Click); this.DIQ29.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ29.FlatAppearance.BorderSize = 2; this.DIQ29.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ29.FlatStyle = FlatStyle.Flat; this.DIQ29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ29.ForeColor = SystemColors.ActiveCaptionText; this.DIQ29.Location = new Point(0x99, 0xf2); this.DIQ29.Name = "DIQ29"; this.DIQ29.Size = new Size(40, 40); this.DIQ29.TabIndex = 0x90; this.DIQ29.Text = "29"; this.DIQ29.TextAlign = ContentAlignment.TopLeft; this.DIQ29.UseVisualStyleBackColor = true; this.DIQ29.Click += new EventHandler(this.DIQ29_Click); this.DIQ23.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ23.FlatAppearance.BorderSize = 2; this.DIQ23.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ23.FlatStyle = FlatStyle.Flat; this.DIQ23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ23.ForeColor = SystemColors.ActiveCaptionText; this.DIQ23.Location = new Point(0x6b, 0xc4); this.DIQ23.Name = "DIQ23"; this.DIQ23.Size = new Size(40, 40); this.DIQ23.TabIndex = 0x8a; this.DIQ23.Text = "23"; this.DIQ23.TextAlign = ContentAlignment.TopLeft; this.DIQ23.UseVisualStyleBackColor = true; this.DIQ23.Click += new EventHandler(this.DIQ23_Click); this.DIQ28.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ28.FlatAppearance.BorderSize = 2; this.DIQ28.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ28.FlatStyle = FlatStyle.Flat; this.DIQ28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ28.ForeColor = SystemColors.ActiveCaptionText; this.DIQ28.Location = new Point(0x6b, 0xf2); this.DIQ28.Name = "DIQ28"; this.DIQ28.Size = new Size(40, 40); this.DIQ28.TabIndex = 0x8f; this.DIQ28.Text = "28"; this.DIQ28.TextAlign = ContentAlignment.TopLeft; this.DIQ28.UseVisualStyleBackColor = true; this.DIQ28.Click += new EventHandler(this.DIQ28_Click); this.DIQ24.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ24.FlatAppearance.BorderSize = 2; this.DIQ24.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ24.FlatStyle = FlatStyle.Flat; this.DIQ24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ24.ForeColor = SystemColors.ActiveCaptionText; this.DIQ24.Location = new Point(0x99, 0xc4); this.DIQ24.Name = "DIQ24"; this.DIQ24.Size = new Size(40, 40); this.DIQ24.TabIndex = 0x8b; this.DIQ24.Text = "24"; this.DIQ24.TextAlign = ContentAlignment.TopLeft; this.DIQ24.UseVisualStyleBackColor = true; this.DIQ24.Click += new EventHandler(this.DIQ24_Click); this.DIQ27.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ27.FlatAppearance.BorderSize = 2; this.DIQ27.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ27.FlatStyle = FlatStyle.Flat; this.DIQ27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ27.ForeColor = SystemColors.ActiveCaptionText; this.DIQ27.Location = new Point(0x3d, 0xf2); this.DIQ27.Name = "DIQ27"; this.DIQ27.Size = new Size(40, 40); this.DIQ27.TabIndex = 0x8e; this.DIQ27.Text = "27"; this.DIQ27.TextAlign = ContentAlignment.TopLeft; this.DIQ27.UseVisualStyleBackColor = true; this.DIQ27.Click += new EventHandler(this.DIQ27_Click); this.DIQ25.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ25.FlatAppearance.BorderSize = 2; this.DIQ25.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ25.FlatStyle = FlatStyle.Flat; this.DIQ25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ25.ForeColor = SystemColors.ActiveCaptionText; this.DIQ25.Location = new Point(0xc6, 0xc4); this.DIQ25.Name = "DIQ25"; this.DIQ25.Size = new Size(40, 40); this.DIQ25.TabIndex = 140; this.DIQ25.Text = "25"; this.DIQ25.TextAlign = ContentAlignment.TopLeft; this.DIQ25.UseVisualStyleBackColor = true; this.DIQ25.Click += new EventHandler(this.DIQ25_Click); this.DIQ26.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ26.FlatAppearance.BorderSize = 2; this.DIQ26.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ26.FlatStyle = FlatStyle.Flat; this.DIQ26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ26.ForeColor = SystemColors.ActiveCaptionText; this.DIQ26.Location = new Point(15, 0xf2); this.DIQ26.Name = "DIQ26"; this.DIQ26.Size = new Size(40, 40); this.DIQ26.TabIndex = 0x8d; this.DIQ26.Text = "26"; this.DIQ26.TextAlign = ContentAlignment.TopLeft; this.DIQ26.UseVisualStyleBackColor = true; this.DIQ26.Click += new EventHandler(this.DIQ26_Click); this.label1.AutoSize = true; this.label1.Location = new Point(3, 7); this.label1.Name = "label1"; this.label1.Size = new Size(0x3a, 13); this.label1.TabIndex = 0x48; this.label1.Text = "Question 1"; this.ENGtab.Controls.Add(this.markandnextENG); this.ENGtab.Controls.Add(this.panel14); this.ENGtab.Controls.Add(this.label4); this.ENGtab.Controls.Add(this.savennextENG); this.ENGtab.Controls.Add(this.panel6); this.ENGtab.Controls.Add(this.ref4EN); this.ENGtab.Controls.Add(this.panel4); this.ENGtab.Controls.Add(this.sec1); this.ENGtab.Controls.Add(this.panel18); this.ENGtab.HorizontalScrollbarBarColor = true; this.ENGtab.HorizontalScrollbarHighlightOnWheel = false; this.ENGtab.HorizontalScrollbarSize = 30; this.ENGtab.Location = new Point(4, 0x23); this.ENGtab.Name = "ENGtab"; this.ENGtab.Size = new Size(0x3f8, 0x2d9); this.ENGtab.Style = MetroColorStyle.Green; this.ENGtab.TabIndex = 0; this.ENGtab.Text = "English"; this.ENGtab.Theme = MetroThemeStyle.Light; this.ENGtab.VerticalScrollbarBarColor = true; this.ENGtab.VerticalScrollbarHighlightOnWheel = false; this.ENGtab.VerticalScrollbarSize = 10; this.panel18.BackColor = Color.Transparent; this.panel18.Controls.Add(this.textBox3); this.panel18.Controls.Add(this.engchkans); this.panel18.Controls.Add(this.metroLabel9); this.panel18.Controls.Add(this.ans4EN); this.panel18.Controls.Add(this.metroLabel10); this.panel18.Controls.Add(this.secnameENG); this.panel18.Controls.Add(this.metroLabel11); this.panel18.Controls.Add(this.metroLabel12); this.panel18.Location = new Point(0x369, 6); this.panel18.Name = "panel18"; this.panel18.Size = new Size(0x90, 270); this.panel18.TabIndex = 100; this.panel18.Visible = false; this.textBox3.Location = new Point(0x15, 0x21); this.textBox3.Multiline = true; this.textBox3.Name = "textBox3"; this.textBox3.Size = new Size(0x18, 0x1b); this.textBox3.TabIndex = 0x54; this.textBox3.Text = "1"; this.engchkans.Location = new Point(0x15, 0x42); this.engchkans.Name = "engchkans"; this.engchkans.Size = new Size(40, 20); this.engchkans.TabIndex = 0x53; this.metroLabel9.AutoSize = true; this.metroLabel9.FontWeight = MetroLabelWeight.Bold; this.metroLabel9.Location = new Point(0x27, 0xcc); this.metroLabel9.Name = "metroLabel9"; this.metroLabel9.Size = new Size(0x3d, 0x13); this.metroLabel9.Style = MetroColorStyle.Black; this.metroLabel9.TabIndex = 0x17; this.metroLabel9.Text = "option4"; this.metroLabel9.Theme = MetroThemeStyle.Light; this.metroLabel9.UseStyleColors = true; this.ans4EN.Location = new Point(0x49, 0x42); this.ans4EN.Name = "ans4EN"; this.ans4EN.Size = new Size(40, 20); this.ans4EN.TabIndex = 0x5d; this.metroLabel10.AutoSize = true; this.metroLabel10.FontWeight = MetroLabelWeight.Bold; this.metroLabel10.Location = new Point(0x27, 0xb0); this.metroLabel10.Name = "metroLabel10"; this.metroLabel10.Size = new Size(0x3d, 0x13); this.metroLabel10.Style = MetroColorStyle.Black; this.metroLabel10.TabIndex = 0x18; this.metroLabel10.Text = "option3"; this.metroLabel10.Theme = MetroThemeStyle.Light; this.metroLabel10.UseStyleColors = true; this.secnameENG.AutoSize = true; this.secnameENG.Location = new Point(70, 0x21); this.secnameENG.Name = "secnameENG"; this.secnameENG.Size = new Size(30, 13); this.secnameENG.TabIndex = 0x61; this.secnameENG.Text = "ENQ"; this.metroLabel11.AutoSize = true; this.metroLabel11.FontWeight = MetroLabelWeight.Bold; this.metroLabel11.Location = new Point(0x27, 0x9d); this.metroLabel11.Name = "metroLabel11"; this.metroLabel11.Size = new Size(0x3d, 0x13); this.metroLabel11.Style = MetroColorStyle.Black; this.metroLabel11.TabIndex = 0x19; this.metroLabel11.Text = "option2"; this.metroLabel11.Theme = MetroThemeStyle.Light; this.metroLabel11.UseStyleColors = true; this.metroLabel12.AutoSize = true; this.metroLabel12.FontWeight = MetroLabelWeight.Bold; this.metroLabel12.Location = new Point(0x27, 0x81); this.metroLabel12.Name = "metroLabel12"; this.metroLabel12.Size = new Size(0x3d, 0x13); this.metroLabel12.Style = MetroColorStyle.Black; this.metroLabel12.TabIndex = 0x1a; this.metroLabel12.Text = "option1"; this.metroLabel12.Theme = MetroThemeStyle.Light; this.metroLabel12.UseStyleColors = true; this.markandnextENG.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextENG.Location = new Point(0x2f5, 0x196); this.markandnextENG.Name = "markandnextENG"; this.markandnextENG.Size = new Size(0x79, 0x2d); this.markandnextENG.Style = MetroColorStyle.Blue; this.markandnextENG.TabIndex = 0x63; this.markandnextENG.Text = "Mark and Next"; this.markandnextENG.Theme = MetroThemeStyle.Light; this.markandnextENG.UseSelectable = true; this.markandnextENG.Click += new EventHandler(this.metroButton3_Click); this.panel14.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel14.BackColor = SystemColors.InactiveCaptionText; this.panel14.Controls.Add(this.metroLabel29); this.panel14.Controls.Add(this.pictureBox6); this.panel14.Controls.Add(this.metroLabel30); this.panel14.Controls.Add(this.metroLabel31); this.panel14.Controls.Add(this.metroLabel32); this.panel14.Controls.Add(this.pictureBox7); this.panel14.Controls.Add(this.pictureBox8); this.panel14.Controls.Add(this.pictureBox9); this.panel14.Location = new Point(0x2f5, 0x1c6); this.panel14.Name = "panel14"; this.panel14.Size = new Size(0x10b, 0xb2); this.panel14.TabIndex = 0x62; this.metroLabel29.AutoSize = true; this.metroLabel29.BackColor = Color.Transparent; this.metroLabel29.FontWeight = MetroLabelWeight.Bold; this.metroLabel29.Location = new Point(0x3b, 0x94); this.metroLabel29.Name = "metroLabel29"; this.metroLabel29.Size = new Size(0x8b, 0x13); this.metroLabel29.Style = MetroColorStyle.Purple; this.metroLabel29.TabIndex = 0x65; this.metroLabel29.Text = "Marked For Review"; this.metroLabel29.Theme = MetroThemeStyle.Dark; this.metroLabel29.UseCustomBackColor = true; this.metroLabel29.UseStyleColors = true; this.pictureBox6.BackColor = Color.White; this.pictureBox6.Image = Resources.rvw; this.pictureBox6.Location = new Point(3, 0x8f); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new Size(30, 30); this.pictureBox6.TabIndex = 100; this.pictureBox6.TabStop = false; this.metroLabel30.AutoSize = true; this.metroLabel30.BackColor = Color.Transparent; this.metroLabel30.FontWeight = MetroLabelWeight.Bold; this.metroLabel30.Location = new Point(60, 0x63); this.metroLabel30.Name = "metroLabel30"; this.metroLabel30.Size = new Size(0x53, 0x13); this.metroLabel30.Style = MetroColorStyle.White; this.metroLabel30.TabIndex = 0x63; this.metroLabel30.Text = "Not Visited"; this.metroLabel30.Theme = MetroThemeStyle.Dark; this.metroLabel30.UseCustomBackColor = true; this.metroLabel30.UseStyleColors = true; this.metroLabel31.AutoSize = true; this.metroLabel31.BackColor = Color.Transparent; this.metroLabel31.FontWeight = MetroLabelWeight.Bold; this.metroLabel31.Location = new Point(60, 0x35); this.metroLabel31.Name = "metroLabel31"; this.metroLabel31.Size = new Size(0x68, 0x13); this.metroLabel31.Style = MetroColorStyle.Red; this.metroLabel31.TabIndex = 0x62; this.metroLabel31.Text = "Not Answered"; this.metroLabel31.Theme = MetroThemeStyle.Dark; this.metroLabel31.UseCustomBackColor = true; this.metroLabel31.UseStyleColors = true; this.metroLabel32.AutoSize = true; this.metroLabel32.BackColor = Color.Transparent; this.metroLabel32.FontWeight = MetroLabelWeight.Bold; this.metroLabel32.Location = new Point(60, 7); this.metroLabel32.Name = "metroLabel32"; this.metroLabel32.Size = new Size(0x4b, 0x13); this.metroLabel32.Style = MetroColorStyle.Green; this.metroLabel32.TabIndex = 0x5f; this.metroLabel32.Text = "Answered"; this.metroLabel32.Theme = MetroThemeStyle.Dark; this.metroLabel32.UseCustomBackColor = true; this.metroLabel32.UseStyleColors = true; this.pictureBox7.BackColor = Color.White; this.pictureBox7.Location = new Point(3, 0x5f); this.pictureBox7.Name = "pictureBox7"; this.pictureBox7.Size = new Size(30, 30); this.pictureBox7.TabIndex = 0x61; this.pictureBox7.TabStop = false; this.pictureBox8.Image = Resources.unchk; this.pictureBox8.Location = new Point(3, 0x31); this.pictureBox8.Name = "pictureBox8"; this.pictureBox8.Size = new Size(30, 30); this.pictureBox8.TabIndex = 0x60; this.pictureBox8.TabStop = false; this.pictureBox9.Image = Resources.chk1; this.pictureBox9.Location = new Point(3, 3); this.pictureBox9.Name = "pictureBox9"; this.pictureBox9.Size = new Size(30, 30); this.pictureBox9.TabIndex = 0x5f; this.pictureBox9.TabStop = false; this.label4.AutoSize = true; this.label4.Location = new Point(10, 6); this.label4.Name = "label4"; this.label4.Size = new Size(0x3a, 13); this.label4.TabIndex = 0x55; this.label4.Text = "Question 1"; this.savennextENG.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextENG.Location = new Point(0x374, 0x196); this.savennextENG.Name = "savennextENG"; this.savennextENG.Size = new Size(0x8a, 0x2d); this.savennextENG.Style = MetroColorStyle.Blue; this.savennextENG.TabIndex = 0x52; this.savennextENG.Text = "Save and Next"; this.savennextENG.Theme = MetroThemeStyle.Light; this.savennextENG.UseSelectable = true; this.savennextENG.Click += new EventHandler(this.metroButton2_Click); this.panel6.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel6.AutoScroll = true; this.panel6.BackColor = Color.Transparent; this.panel6.BorderStyle = BorderStyle.FixedSingle; this.panel6.Controls.Add(this.ENQ1); this.panel6.Controls.Add(this.ENQ50); this.panel6.Controls.Add(this.ENQ2); this.panel6.Controls.Add(this.ENQ49); this.panel6.Controls.Add(this.ENQ3); this.panel6.Controls.Add(this.ENQ48); this.panel6.Controls.Add(this.ENQ4); this.panel6.Controls.Add(this.ENQ47); this.panel6.Controls.Add(this.ENQ5); this.panel6.Controls.Add(this.ENQ46); this.panel6.Controls.Add(this.ENQ6); this.panel6.Controls.Add(this.ENQ45); this.panel6.Controls.Add(this.ENQ7); this.panel6.Controls.Add(this.ENQ44); this.panel6.Controls.Add(this.ENQ8); this.panel6.Controls.Add(this.ENQ43); this.panel6.Controls.Add(this.ENQ9); this.panel6.Controls.Add(this.ENQ42); this.panel6.Controls.Add(this.ENQ10); this.panel6.Controls.Add(this.ENQ41); this.panel6.Controls.Add(this.ENQ11); this.panel6.Controls.Add(this.ENQ40); this.panel6.Controls.Add(this.ENQ12); this.panel6.Controls.Add(this.ENQ39); this.panel6.Controls.Add(this.ENQ13); this.panel6.Controls.Add(this.ENQ38); this.panel6.Controls.Add(this.ENQ14); this.panel6.Controls.Add(this.ENQ37); this.panel6.Controls.Add(this.ENQ15); this.panel6.Controls.Add(this.ENQ36); this.panel6.Controls.Add(this.ENQ16); this.panel6.Controls.Add(this.ENQ35); this.panel6.Controls.Add(this.ENQ17); this.panel6.Controls.Add(this.ENQ34); this.panel6.Controls.Add(this.ENQ18); this.panel6.Controls.Add(this.ENQ33); this.panel6.Controls.Add(this.ENQ19); this.panel6.Controls.Add(this.ENQ32); this.panel6.Controls.Add(this.ENQ20); this.panel6.Controls.Add(this.ENQ31); this.panel6.Controls.Add(this.ENQ21); this.panel6.Controls.Add(this.ENQ30); this.panel6.Controls.Add(this.ENQ22); this.panel6.Controls.Add(this.ENQ29); this.panel6.Controls.Add(this.ENQ23); this.panel6.Controls.Add(this.ENQ28); this.panel6.Controls.Add(this.ENQ24); this.panel6.Controls.Add(this.ENQ27); this.panel6.Controls.Add(this.ENQ25); this.panel6.Controls.Add(this.ENQ26); this.panel6.Location = new Point(0x2f5, 3); this.panel6.Name = "panel6"; this.panel6.Size = new Size(0x109, 0x18f); this.panel6.TabIndex = 0x51; this.ENQ1.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ1.FlatAppearance.BorderSize = 2; this.ENQ1.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ1.FlatStyle = FlatStyle.Flat; this.ENQ1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ1.ForeColor = SystemColors.ActiveCaptionText; this.ENQ1.Location = new Point(15, 14); this.ENQ1.Name = "ENQ1"; this.ENQ1.Size = new Size(40, 40); this.ENQ1.TabIndex = 0x74; this.ENQ1.Text = "1"; this.ENQ1.TextAlign = ContentAlignment.TopLeft; this.ENQ1.UseVisualStyleBackColor = true; this.ENQ1.Click += new EventHandler(this.ENQ1_Click); this.ENQ50.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ50.FlatAppearance.BorderSize = 2; this.ENQ50.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ50.FlatStyle = FlatStyle.Flat; this.ENQ50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ50.ForeColor = SystemColors.ActiveCaptionText; this.ENQ50.Location = new Point(0xc6, 0x1ac); this.ENQ50.Name = "ENQ50"; this.ENQ50.Size = new Size(40, 40); this.ENQ50.TabIndex = 0xa5; this.ENQ50.Text = "50"; this.ENQ50.TextAlign = ContentAlignment.TopLeft; this.ENQ50.UseVisualStyleBackColor = true; this.ENQ50.Visible = false; this.ENQ50.Click += new EventHandler(this.button3_Click); this.ENQ2.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ2.FlatAppearance.BorderSize = 2; this.ENQ2.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ2.FlatStyle = FlatStyle.Flat; this.ENQ2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ2.ForeColor = SystemColors.ActiveCaptionText; this.ENQ2.Location = new Point(0x3d, 14); this.ENQ2.Name = "ENQ2"; this.ENQ2.Size = new Size(40, 40); this.ENQ2.TabIndex = 0x75; this.ENQ2.Text = "2"; this.ENQ2.TextAlign = ContentAlignment.TopLeft; this.ENQ2.UseVisualStyleBackColor = true; this.ENQ2.Click += new EventHandler(this.ENQ2_Click); this.ENQ49.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ49.FlatAppearance.BorderSize = 2; this.ENQ49.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ49.FlatStyle = FlatStyle.Flat; this.ENQ49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ49.ForeColor = SystemColors.ActiveCaptionText; this.ENQ49.Location = new Point(0x99, 0x1ac); this.ENQ49.Name = "ENQ49"; this.ENQ49.Size = new Size(40, 40); this.ENQ49.TabIndex = 0xa4; this.ENQ49.Text = "49"; this.ENQ49.TextAlign = ContentAlignment.TopLeft; this.ENQ49.UseVisualStyleBackColor = true; this.ENQ49.Visible = false; this.ENQ49.Click += new EventHandler(this.button5_Click); this.ENQ3.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ3.FlatAppearance.BorderSize = 2; this.ENQ3.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ3.FlatStyle = FlatStyle.Flat; this.ENQ3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ3.ForeColor = SystemColors.ActiveCaptionText; this.ENQ3.Location = new Point(0x6b, 14); this.ENQ3.Name = "ENQ3"; this.ENQ3.Size = new Size(40, 40); this.ENQ3.TabIndex = 0x76; this.ENQ3.Text = "3"; this.ENQ3.TextAlign = ContentAlignment.TopLeft; this.ENQ3.UseVisualStyleBackColor = true; this.ENQ3.Click += new EventHandler(this.ENQ3_Click); this.ENQ48.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ48.FlatAppearance.BorderSize = 2; this.ENQ48.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ48.FlatStyle = FlatStyle.Flat; this.ENQ48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ48.ForeColor = SystemColors.ActiveCaptionText; this.ENQ48.Location = new Point(0x6b, 0x1ac); this.ENQ48.Name = "ENQ48"; this.ENQ48.Size = new Size(40, 40); this.ENQ48.TabIndex = 0xa3; this.ENQ48.Text = "48"; this.ENQ48.TextAlign = ContentAlignment.TopLeft; this.ENQ48.UseVisualStyleBackColor = true; this.ENQ48.Visible = false; this.ENQ48.Click += new EventHandler(this.button7_Click); this.ENQ4.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ4.FlatAppearance.BorderSize = 2; this.ENQ4.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ4.FlatStyle = FlatStyle.Flat; this.ENQ4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ4.ForeColor = SystemColors.ActiveCaptionText; this.ENQ4.Location = new Point(0x99, 14); this.ENQ4.Name = "ENQ4"; this.ENQ4.Size = new Size(40, 40); this.ENQ4.TabIndex = 0x77; this.ENQ4.Text = "4"; this.ENQ4.TextAlign = ContentAlignment.TopLeft; this.ENQ4.UseVisualStyleBackColor = true; this.ENQ4.Click += new EventHandler(this.button8_Click); this.ENQ47.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ47.FlatAppearance.BorderSize = 2; this.ENQ47.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ47.FlatStyle = FlatStyle.Flat; this.ENQ47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ47.ForeColor = SystemColors.ActiveCaptionText; this.ENQ47.Location = new Point(0x3d, 0x1ac); this.ENQ47.Name = "ENQ47"; this.ENQ47.Size = new Size(40, 40); this.ENQ47.TabIndex = 0xa2; this.ENQ47.Text = "47"; this.ENQ47.TextAlign = ContentAlignment.TopLeft; this.ENQ47.UseVisualStyleBackColor = true; this.ENQ47.Visible = false; this.ENQ47.Click += new EventHandler(this.button9_Click); this.ENQ5.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ5.FlatAppearance.BorderSize = 2; this.ENQ5.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ5.FlatStyle = FlatStyle.Flat; this.ENQ5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ5.ForeColor = SystemColors.ActiveCaptionText; this.ENQ5.Location = new Point(0xc6, 14); this.ENQ5.Name = "ENQ5"; this.ENQ5.Size = new Size(40, 40); this.ENQ5.TabIndex = 120; this.ENQ5.Text = "5"; this.ENQ5.TextAlign = ContentAlignment.TopLeft; this.ENQ5.UseVisualStyleBackColor = true; this.ENQ5.Click += new EventHandler(this.button10_Click); this.ENQ46.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ46.FlatAppearance.BorderSize = 2; this.ENQ46.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ46.FlatStyle = FlatStyle.Flat; this.ENQ46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ46.ForeColor = SystemColors.ActiveCaptionText; this.ENQ46.Location = new Point(15, 0x1ac); this.ENQ46.Name = "ENQ46"; this.ENQ46.Size = new Size(40, 40); this.ENQ46.TabIndex = 0xa1; this.ENQ46.Text = "46"; this.ENQ46.TextAlign = ContentAlignment.TopLeft; this.ENQ46.UseVisualStyleBackColor = true; this.ENQ46.Visible = false; this.ENQ46.Click += new EventHandler(this.button11_Click); this.ENQ6.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ6.FlatAppearance.BorderSize = 2; this.ENQ6.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ6.FlatStyle = FlatStyle.Flat; this.ENQ6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ6.ForeColor = SystemColors.ActiveCaptionText; this.ENQ6.Location = new Point(15, 60); this.ENQ6.Name = "ENQ6"; this.ENQ6.Size = new Size(40, 40); this.ENQ6.TabIndex = 0x79; this.ENQ6.Text = "6"; this.ENQ6.TextAlign = ContentAlignment.TopLeft; this.ENQ6.UseVisualStyleBackColor = true; this.ENQ6.Click += new EventHandler(this.button12_Click); this.ENQ45.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ45.FlatAppearance.BorderSize = 2; this.ENQ45.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ45.FlatStyle = FlatStyle.Flat; this.ENQ45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ45.ForeColor = SystemColors.ActiveCaptionText; this.ENQ45.Location = new Point(0xc6, 0x17e); this.ENQ45.Name = "ENQ45"; this.ENQ45.Size = new Size(40, 40); this.ENQ45.TabIndex = 160; this.ENQ45.Text = "45"; this.ENQ45.TextAlign = ContentAlignment.TopLeft; this.ENQ45.UseVisualStyleBackColor = true; this.ENQ45.Visible = false; this.ENQ45.Click += new EventHandler(this.button13_Click); this.ENQ7.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ7.FlatAppearance.BorderSize = 2; this.ENQ7.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ7.FlatStyle = FlatStyle.Flat; this.ENQ7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ7.ForeColor = SystemColors.ActiveCaptionText; this.ENQ7.Location = new Point(0x3d, 60); this.ENQ7.Name = "ENQ7"; this.ENQ7.Size = new Size(40, 40); this.ENQ7.TabIndex = 0x7a; this.ENQ7.Text = "7"; this.ENQ7.TextAlign = ContentAlignment.TopLeft; this.ENQ7.UseVisualStyleBackColor = true; this.ENQ7.Click += new EventHandler(this.button14_Click); this.ENQ44.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ44.FlatAppearance.BorderSize = 2; this.ENQ44.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ44.FlatStyle = FlatStyle.Flat; this.ENQ44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ44.ForeColor = SystemColors.ActiveCaptionText; this.ENQ44.Location = new Point(0x99, 0x17e); this.ENQ44.Name = "ENQ44"; this.ENQ44.Size = new Size(40, 40); this.ENQ44.TabIndex = 0x9f; this.ENQ44.Text = "44"; this.ENQ44.TextAlign = ContentAlignment.TopLeft; this.ENQ44.UseVisualStyleBackColor = true; this.ENQ44.Visible = false; this.ENQ44.Click += new EventHandler(this.button15_Click_1); this.ENQ8.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ8.FlatAppearance.BorderSize = 2; this.ENQ8.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ8.FlatStyle = FlatStyle.Flat; this.ENQ8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ8.ForeColor = SystemColors.ActiveCaptionText; this.ENQ8.Location = new Point(0x6b, 60); this.ENQ8.Name = "ENQ8"; this.ENQ8.Size = new Size(40, 40); this.ENQ8.TabIndex = 0x7b; this.ENQ8.Text = "8"; this.ENQ8.TextAlign = ContentAlignment.TopLeft; this.ENQ8.UseVisualStyleBackColor = true; this.ENQ8.Click += new EventHandler(this.button16_Click_1); this.ENQ43.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ43.FlatAppearance.BorderSize = 2; this.ENQ43.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ43.FlatStyle = FlatStyle.Flat; this.ENQ43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ43.ForeColor = SystemColors.ActiveCaptionText; this.ENQ43.Location = new Point(0x6b, 0x17e); this.ENQ43.Name = "ENQ43"; this.ENQ43.Size = new Size(40, 40); this.ENQ43.TabIndex = 0x9e; this.ENQ43.Text = "43"; this.ENQ43.TextAlign = ContentAlignment.TopLeft; this.ENQ43.UseVisualStyleBackColor = true; this.ENQ43.Visible = false; this.ENQ43.Click += new EventHandler(this.button17_Click_1); this.ENQ9.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ9.FlatAppearance.BorderSize = 2; this.ENQ9.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ9.FlatStyle = FlatStyle.Flat; this.ENQ9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ9.ForeColor = SystemColors.ActiveCaptionText; this.ENQ9.Location = new Point(0x99, 60); this.ENQ9.Name = "ENQ9"; this.ENQ9.Size = new Size(40, 40); this.ENQ9.TabIndex = 0x7c; this.ENQ9.Text = "9"; this.ENQ9.TextAlign = ContentAlignment.TopLeft; this.ENQ9.UseVisualStyleBackColor = true; this.ENQ9.Click += new EventHandler(this.button18_Click_1); this.ENQ42.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ42.FlatAppearance.BorderSize = 2; this.ENQ42.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ42.FlatStyle = FlatStyle.Flat; this.ENQ42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ42.ForeColor = SystemColors.ActiveCaptionText; this.ENQ42.Location = new Point(0x3d, 0x17e); this.ENQ42.Name = "ENQ42"; this.ENQ42.Size = new Size(40, 40); this.ENQ42.TabIndex = 0x9d; this.ENQ42.Text = "42"; this.ENQ42.TextAlign = ContentAlignment.TopLeft; this.ENQ42.UseVisualStyleBackColor = true; this.ENQ42.Visible = false; this.ENQ42.Click += new EventHandler(this.button19_Click_1); this.ENQ10.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ10.FlatAppearance.BorderSize = 2; this.ENQ10.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ10.FlatStyle = FlatStyle.Flat; this.ENQ10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ10.ForeColor = SystemColors.ActiveCaptionText; this.ENQ10.Location = new Point(0xc6, 60); this.ENQ10.Name = "ENQ10"; this.ENQ10.Size = new Size(40, 40); this.ENQ10.TabIndex = 0x7d; this.ENQ10.Text = "10"; this.ENQ10.TextAlign = ContentAlignment.TopLeft; this.ENQ10.UseVisualStyleBackColor = true; this.ENQ10.Click += new EventHandler(this.button20_Click_1); this.ENQ41.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ41.FlatAppearance.BorderSize = 2; this.ENQ41.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ41.FlatStyle = FlatStyle.Flat; this.ENQ41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ41.ForeColor = SystemColors.ActiveCaptionText; this.ENQ41.Location = new Point(15, 0x17e); this.ENQ41.Name = "ENQ41"; this.ENQ41.Size = new Size(40, 40); this.ENQ41.TabIndex = 0x9c; this.ENQ41.Text = "41"; this.ENQ41.TextAlign = ContentAlignment.TopLeft; this.ENQ41.UseVisualStyleBackColor = true; this.ENQ41.Visible = false; this.ENQ41.Click += new EventHandler(this.button21_Click_1); this.ENQ11.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ11.FlatAppearance.BorderSize = 2; this.ENQ11.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ11.FlatStyle = FlatStyle.Flat; this.ENQ11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ11.ForeColor = SystemColors.ActiveCaptionText; this.ENQ11.Location = new Point(15, 0x6a); this.ENQ11.Name = "ENQ11"; this.ENQ11.Size = new Size(40, 40); this.ENQ11.TabIndex = 0x7e; this.ENQ11.Text = "11"; this.ENQ11.TextAlign = ContentAlignment.TopLeft; this.ENQ11.UseVisualStyleBackColor = true; this.ENQ11.Click += new EventHandler(this.button22_Click_1); this.ENQ40.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ40.FlatAppearance.BorderSize = 2; this.ENQ40.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ40.FlatStyle = FlatStyle.Flat; this.ENQ40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ40.ForeColor = SystemColors.ActiveCaptionText; this.ENQ40.Location = new Point(0xc6, 0x150); this.ENQ40.Name = "ENQ40"; this.ENQ40.Size = new Size(40, 40); this.ENQ40.TabIndex = 0x9b; this.ENQ40.Text = "40"; this.ENQ40.TextAlign = ContentAlignment.TopLeft; this.ENQ40.UseVisualStyleBackColor = true; this.ENQ40.Click += new EventHandler(this.button23_Click); this.ENQ12.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ12.FlatAppearance.BorderSize = 2; this.ENQ12.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ12.FlatStyle = FlatStyle.Flat; this.ENQ12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ12.ForeColor = SystemColors.ActiveCaptionText; this.ENQ12.Location = new Point(0x3d, 0x6a); this.ENQ12.Name = "ENQ12"; this.ENQ12.Size = new Size(40, 40); this.ENQ12.TabIndex = 0x7f; this.ENQ12.Text = "12"; this.ENQ12.TextAlign = ContentAlignment.TopLeft; this.ENQ12.UseVisualStyleBackColor = true; this.ENQ12.Click += new EventHandler(this.button24_Click); this.ENQ39.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ39.FlatAppearance.BorderSize = 2; this.ENQ39.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ39.FlatStyle = FlatStyle.Flat; this.ENQ39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ39.ForeColor = SystemColors.ActiveCaptionText; this.ENQ39.Location = new Point(0x99, 0x150); this.ENQ39.Name = "ENQ39"; this.ENQ39.Size = new Size(40, 40); this.ENQ39.TabIndex = 0x9a; this.ENQ39.Text = "39"; this.ENQ39.TextAlign = ContentAlignment.TopLeft; this.ENQ39.UseVisualStyleBackColor = true; this.ENQ39.Click += new EventHandler(this.button25_Click); this.ENQ13.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ13.FlatAppearance.BorderSize = 2; this.ENQ13.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ13.FlatStyle = FlatStyle.Flat; this.ENQ13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ13.ForeColor = SystemColors.ActiveCaptionText; this.ENQ13.Location = new Point(0x6b, 0x6a); this.ENQ13.Name = "ENQ13"; this.ENQ13.Size = new Size(40, 40); this.ENQ13.TabIndex = 0x80; this.ENQ13.Text = "13"; this.ENQ13.TextAlign = ContentAlignment.TopLeft; this.ENQ13.UseVisualStyleBackColor = true; this.ENQ13.Click += new EventHandler(this.button26_Click); this.ENQ38.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ38.FlatAppearance.BorderSize = 2; this.ENQ38.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ38.FlatStyle = FlatStyle.Flat; this.ENQ38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ38.ForeColor = SystemColors.ActiveCaptionText; this.ENQ38.Location = new Point(0x6b, 0x150); this.ENQ38.Name = "ENQ38"; this.ENQ38.Size = new Size(40, 40); this.ENQ38.TabIndex = 0x99; this.ENQ38.Text = "38"; this.ENQ38.TextAlign = ContentAlignment.TopLeft; this.ENQ38.UseVisualStyleBackColor = true; this.ENQ38.Click += new EventHandler(this.button27_Click); this.ENQ14.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ14.FlatAppearance.BorderSize = 2; this.ENQ14.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ14.FlatStyle = FlatStyle.Flat; this.ENQ14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ14.ForeColor = SystemColors.ActiveCaptionText; this.ENQ14.Location = new Point(0x99, 0x6a); this.ENQ14.Name = "ENQ14"; this.ENQ14.Size = new Size(40, 40); this.ENQ14.TabIndex = 0x81; this.ENQ14.Text = "14"; this.ENQ14.TextAlign = ContentAlignment.TopLeft; this.ENQ14.UseVisualStyleBackColor = true; this.ENQ14.Click += new EventHandler(this.button28_Click); this.ENQ37.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ37.FlatAppearance.BorderSize = 2; this.ENQ37.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ37.FlatStyle = FlatStyle.Flat; this.ENQ37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ37.ForeColor = SystemColors.ActiveCaptionText; this.ENQ37.Location = new Point(0x3d, 0x150); this.ENQ37.Name = "ENQ37"; this.ENQ37.Size = new Size(40, 40); this.ENQ37.TabIndex = 0x98; this.ENQ37.Text = "37"; this.ENQ37.TextAlign = ContentAlignment.TopLeft; this.ENQ37.UseVisualStyleBackColor = true; this.ENQ37.Click += new EventHandler(this.button29_Click); this.ENQ15.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ15.FlatAppearance.BorderSize = 2; this.ENQ15.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ15.FlatStyle = FlatStyle.Flat; this.ENQ15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ15.ForeColor = SystemColors.ActiveCaptionText; this.ENQ15.Location = new Point(0xc6, 0x6a); this.ENQ15.Name = "ENQ15"; this.ENQ15.Size = new Size(40, 40); this.ENQ15.TabIndex = 130; this.ENQ15.Text = "15"; this.ENQ15.TextAlign = ContentAlignment.TopLeft; this.ENQ15.UseVisualStyleBackColor = true; this.ENQ15.Click += new EventHandler(this.button30_Click); this.ENQ36.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ36.FlatAppearance.BorderSize = 2; this.ENQ36.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ36.FlatStyle = FlatStyle.Flat; this.ENQ36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ36.ForeColor = SystemColors.ActiveCaptionText; this.ENQ36.Location = new Point(15, 0x150); this.ENQ36.Name = "ENQ36"; this.ENQ36.Size = new Size(40, 40); this.ENQ36.TabIndex = 0x97; this.ENQ36.Text = "36"; this.ENQ36.TextAlign = ContentAlignment.TopLeft; this.ENQ36.UseVisualStyleBackColor = true; this.ENQ36.Click += new EventHandler(this.button31_Click); this.ENQ16.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ16.FlatAppearance.BorderSize = 2; this.ENQ16.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ16.FlatStyle = FlatStyle.Flat; this.ENQ16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ16.ForeColor = SystemColors.ActiveCaptionText; this.ENQ16.Location = new Point(15, 0x98); this.ENQ16.Name = "ENQ16"; this.ENQ16.Size = new Size(40, 40); this.ENQ16.TabIndex = 0x83; this.ENQ16.Text = "16"; this.ENQ16.TextAlign = ContentAlignment.TopLeft; this.ENQ16.UseVisualStyleBackColor = true; this.ENQ16.Click += new EventHandler(this.button32_Click); this.ENQ35.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ35.FlatAppearance.BorderSize = 2; this.ENQ35.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ35.FlatStyle = FlatStyle.Flat; this.ENQ35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ35.ForeColor = SystemColors.ActiveCaptionText; this.ENQ35.Location = new Point(0xc6, 290); this.ENQ35.Name = "ENQ35"; this.ENQ35.Size = new Size(40, 40); this.ENQ35.TabIndex = 150; this.ENQ35.Text = "35"; this.ENQ35.TextAlign = ContentAlignment.TopLeft; this.ENQ35.UseVisualStyleBackColor = true; this.ENQ35.Click += new EventHandler(this.button33_Click); this.ENQ17.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ17.FlatAppearance.BorderSize = 2; this.ENQ17.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ17.FlatStyle = FlatStyle.Flat; this.ENQ17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ17.ForeColor = SystemColors.ActiveCaptionText; this.ENQ17.Location = new Point(0x3d, 0x98); this.ENQ17.Name = "ENQ17"; this.ENQ17.Size = new Size(40, 40); this.ENQ17.TabIndex = 0x84; this.ENQ17.Text = "17"; this.ENQ17.TextAlign = ContentAlignment.TopLeft; this.ENQ17.UseVisualStyleBackColor = true; this.ENQ17.Click += new EventHandler(this.button34_Click); this.ENQ34.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ34.FlatAppearance.BorderSize = 2; this.ENQ34.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ34.FlatStyle = FlatStyle.Flat; this.ENQ34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ34.ForeColor = SystemColors.ActiveCaptionText; this.ENQ34.Location = new Point(0x99, 290); this.ENQ34.Name = "ENQ34"; this.ENQ34.Size = new Size(40, 40); this.ENQ34.TabIndex = 0x95; this.ENQ34.Text = "34"; this.ENQ34.TextAlign = ContentAlignment.TopLeft; this.ENQ34.UseVisualStyleBackColor = true; this.ENQ34.Click += new EventHandler(this.button35_Click); this.ENQ18.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ18.FlatAppearance.BorderSize = 2; this.ENQ18.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ18.FlatStyle = FlatStyle.Flat; this.ENQ18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ18.ForeColor = SystemColors.ActiveCaptionText; this.ENQ18.Location = new Point(0x6b, 0x98); this.ENQ18.Name = "ENQ18"; this.ENQ18.Size = new Size(40, 40); this.ENQ18.TabIndex = 0x85; this.ENQ18.Text = "18"; this.ENQ18.TextAlign = ContentAlignment.TopLeft; this.ENQ18.UseVisualStyleBackColor = true; this.ENQ18.Click += new EventHandler(this.button36_Click); this.ENQ33.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ33.FlatAppearance.BorderSize = 2; this.ENQ33.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ33.FlatStyle = FlatStyle.Flat; this.ENQ33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ33.ForeColor = SystemColors.ActiveCaptionText; this.ENQ33.Location = new Point(0x6b, 290); this.ENQ33.Name = "ENQ33"; this.ENQ33.Size = new Size(40, 40); this.ENQ33.TabIndex = 0x94; this.ENQ33.Text = "33"; this.ENQ33.TextAlign = ContentAlignment.TopLeft; this.ENQ33.UseVisualStyleBackColor = true; this.ENQ33.Click += new EventHandler(this.button37_Click); this.ENQ19.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ19.FlatAppearance.BorderSize = 2; this.ENQ19.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ19.FlatStyle = FlatStyle.Flat; this.ENQ19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ19.ForeColor = SystemColors.ActiveCaptionText; this.ENQ19.Location = new Point(0x99, 0x98); this.ENQ19.Name = "ENQ19"; this.ENQ19.Size = new Size(40, 40); this.ENQ19.TabIndex = 0x86; this.ENQ19.Text = "19"; this.ENQ19.TextAlign = ContentAlignment.TopLeft; this.ENQ19.UseVisualStyleBackColor = true; this.ENQ19.Click += new EventHandler(this.button38_Click); this.ENQ32.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ32.FlatAppearance.BorderSize = 2; this.ENQ32.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ32.FlatStyle = FlatStyle.Flat; this.ENQ32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ32.ForeColor = SystemColors.ActiveCaptionText; this.ENQ32.Location = new Point(0x3d, 290); this.ENQ32.Name = "ENQ32"; this.ENQ32.Size = new Size(40, 40); this.ENQ32.TabIndex = 0x93; this.ENQ32.Text = "32"; this.ENQ32.TextAlign = ContentAlignment.TopLeft; this.ENQ32.UseVisualStyleBackColor = true; this.ENQ32.Click += new EventHandler(this.button39_Click); this.ENQ20.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ20.FlatAppearance.BorderSize = 2; this.ENQ20.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ20.FlatStyle = FlatStyle.Flat; this.ENQ20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ20.ForeColor = SystemColors.ActiveCaptionText; this.ENQ20.Location = new Point(0xc6, 0x98); this.ENQ20.Name = "ENQ20"; this.ENQ20.Size = new Size(40, 40); this.ENQ20.TabIndex = 0x87; this.ENQ20.Text = "20"; this.ENQ20.TextAlign = ContentAlignment.TopLeft; this.ENQ20.UseVisualStyleBackColor = true; this.ENQ20.Click += new EventHandler(this.button40_Click); this.ENQ31.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ31.FlatAppearance.BorderSize = 2; this.ENQ31.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ31.FlatStyle = FlatStyle.Flat; this.ENQ31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ31.ForeColor = SystemColors.ActiveCaptionText; this.ENQ31.Location = new Point(15, 290); this.ENQ31.Name = "ENQ31"; this.ENQ31.Size = new Size(40, 40); this.ENQ31.TabIndex = 0x92; this.ENQ31.Text = "31"; this.ENQ31.TextAlign = ContentAlignment.TopLeft; this.ENQ31.UseVisualStyleBackColor = true; this.ENQ31.Click += new EventHandler(this.button41_Click); this.ENQ21.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ21.FlatAppearance.BorderSize = 2; this.ENQ21.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ21.FlatStyle = FlatStyle.Flat; this.ENQ21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ21.ForeColor = SystemColors.ActiveCaptionText; this.ENQ21.Location = new Point(15, 0xc6); this.ENQ21.Name = "ENQ21"; this.ENQ21.Size = new Size(40, 40); this.ENQ21.TabIndex = 0x88; this.ENQ21.Text = "21"; this.ENQ21.TextAlign = ContentAlignment.TopLeft; this.ENQ21.UseVisualStyleBackColor = true; this.ENQ21.Click += new EventHandler(this.button42_Click); this.ENQ30.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ30.FlatAppearance.BorderSize = 2; this.ENQ30.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ30.FlatStyle = FlatStyle.Flat; this.ENQ30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ30.ForeColor = SystemColors.ActiveCaptionText; this.ENQ30.Location = new Point(0xc6, 0xf4); this.ENQ30.Name = "ENQ30"; this.ENQ30.Size = new Size(40, 40); this.ENQ30.TabIndex = 0x91; this.ENQ30.Text = "30"; this.ENQ30.TextAlign = ContentAlignment.TopLeft; this.ENQ30.UseVisualStyleBackColor = true; this.ENQ30.Click += new EventHandler(this.button43_Click); this.ENQ22.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ22.FlatAppearance.BorderSize = 2; this.ENQ22.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ22.FlatStyle = FlatStyle.Flat; this.ENQ22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ22.ForeColor = SystemColors.ActiveCaptionText; this.ENQ22.Location = new Point(0x3d, 0xc6); this.ENQ22.Name = "ENQ22"; this.ENQ22.Size = new Size(40, 40); this.ENQ22.TabIndex = 0x89; this.ENQ22.Text = "22"; this.ENQ22.TextAlign = ContentAlignment.TopLeft; this.ENQ22.UseVisualStyleBackColor = true; this.ENQ22.Click += new EventHandler(this.button44_Click); this.ENQ29.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ29.FlatAppearance.BorderSize = 2; this.ENQ29.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ29.FlatStyle = FlatStyle.Flat; this.ENQ29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ29.ForeColor = SystemColors.ActiveCaptionText; this.ENQ29.Location = new Point(0x99, 0xf4); this.ENQ29.Name = "ENQ29"; this.ENQ29.Size = new Size(40, 40); this.ENQ29.TabIndex = 0x90; this.ENQ29.Text = "29"; this.ENQ29.TextAlign = ContentAlignment.TopLeft; this.ENQ29.UseVisualStyleBackColor = true; this.ENQ29.Click += new EventHandler(this.button45_Click); this.ENQ23.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ23.FlatAppearance.BorderSize = 2; this.ENQ23.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ23.FlatStyle = FlatStyle.Flat; this.ENQ23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ23.ForeColor = SystemColors.ActiveCaptionText; this.ENQ23.Location = new Point(0x6b, 0xc6); this.ENQ23.Name = "ENQ23"; this.ENQ23.Size = new Size(40, 40); this.ENQ23.TabIndex = 0x8a; this.ENQ23.Text = "23"; this.ENQ23.TextAlign = ContentAlignment.TopLeft; this.ENQ23.UseVisualStyleBackColor = true; this.ENQ23.Click += new EventHandler(this.button46_Click); this.ENQ28.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ28.FlatAppearance.BorderSize = 2; this.ENQ28.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ28.FlatStyle = FlatStyle.Flat; this.ENQ28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ28.ForeColor = SystemColors.ActiveCaptionText; this.ENQ28.Location = new Point(0x6b, 0xf4); this.ENQ28.Name = "ENQ28"; this.ENQ28.Size = new Size(40, 40); this.ENQ28.TabIndex = 0x8f; this.ENQ28.Text = "28"; this.ENQ28.TextAlign = ContentAlignment.TopLeft; this.ENQ28.UseVisualStyleBackColor = true; this.ENQ28.Click += new EventHandler(this.button47_Click); this.ENQ24.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ24.FlatAppearance.BorderSize = 2; this.ENQ24.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ24.FlatStyle = FlatStyle.Flat; this.ENQ24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ24.ForeColor = SystemColors.ActiveCaptionText; this.ENQ24.Location = new Point(0x99, 0xc6); this.ENQ24.Name = "ENQ24"; this.ENQ24.Size = new Size(40, 40); this.ENQ24.TabIndex = 0x8b; this.ENQ24.Text = "24"; this.ENQ24.TextAlign = ContentAlignment.TopLeft; this.ENQ24.UseVisualStyleBackColor = true; this.ENQ24.Click += new EventHandler(this.button48_Click); this.ENQ27.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ27.FlatAppearance.BorderSize = 2; this.ENQ27.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ27.FlatStyle = FlatStyle.Flat; this.ENQ27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ27.ForeColor = SystemColors.ActiveCaptionText; this.ENQ27.Location = new Point(0x3d, 0xf4); this.ENQ27.Name = "ENQ27"; this.ENQ27.Size = new Size(40, 40); this.ENQ27.TabIndex = 0x8e; this.ENQ27.Text = "27"; this.ENQ27.TextAlign = ContentAlignment.TopLeft; this.ENQ27.UseVisualStyleBackColor = true; this.ENQ27.Click += new EventHandler(this.button49_Click); this.ENQ25.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ25.FlatAppearance.BorderSize = 2; this.ENQ25.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ25.FlatStyle = FlatStyle.Flat; this.ENQ25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ25.ForeColor = SystemColors.ActiveCaptionText; this.ENQ25.Location = new Point(0xc6, 0xc6); this.ENQ25.Name = "ENQ25"; this.ENQ25.Size = new Size(40, 40); this.ENQ25.TabIndex = 140; this.ENQ25.Text = "25"; this.ENQ25.TextAlign = ContentAlignment.TopLeft; this.ENQ25.UseVisualStyleBackColor = true; this.ENQ25.Click += new EventHandler(this.button50_Click); this.ENQ26.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ26.FlatAppearance.BorderSize = 2; this.ENQ26.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ26.FlatStyle = FlatStyle.Flat; this.ENQ26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ26.ForeColor = SystemColors.ActiveCaptionText; this.ENQ26.Location = new Point(15, 0xf4); this.ENQ26.Name = "ENQ26"; this.ENQ26.Size = new Size(40, 40); this.ENQ26.TabIndex = 0x8d; this.ENQ26.Text = "26"; this.ENQ26.TextAlign = ContentAlignment.TopLeft; this.ENQ26.UseVisualStyleBackColor = true; this.ENQ26.Click += new EventHandler(this.button51_Click); this.ref4EN.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.ref4EN.BackColor = Color.White; this.ref4EN.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.ref4EN.Location = new Point(0x4d, 0x199); this.ref4EN.Multiline = true; this.ref4EN.Name = "ref4EN"; this.ref4EN.ReadOnly = true; this.ref4EN.ScrollBars = ScrollBars.Vertical; this.ref4EN.Size = new Size(0x2a5, 0x92); this.ref4EN.TabIndex = 80; this.panel4.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel4.BackColor = Color.Transparent; this.panel4.Controls.Add(this.ENGopd); this.panel4.Controls.Add(this.ENGopc); this.panel4.Controls.Add(this.ENGopb); this.panel4.Controls.Add(this.ENGopa); this.panel4.Controls.Add(this.metroRadioButton1); this.panel4.Controls.Add(this.metroRadioButton2); this.panel4.Controls.Add(this.metroRadioButton3); this.panel4.Controls.Add(this.metroRadioButton4); this.panel4.Location = new Point(0x4d, 0x10f); this.panel4.Name = "panel4"; this.panel4.Size = new Size(0x2a5, 0x84); this.panel4.TabIndex = 0x4f; this.ENGopd.AutoSize = true; this.ENGopd.Font = new Font("Britannic Bold", 11.25f); this.ENGopd.Location = new Point(0x36, 0x67); this.ENGopd.Name = "ENGopd"; this.ENGopd.Size = new Size(0x24, 0x10); this.ENGopd.TabIndex = 0x77; this.ENGopd.Text = "OpD"; this.ENGopc.AutoSize = true; this.ENGopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.ENGopc.Location = new Point(0x36, 0x47); this.ENGopc.Name = "ENGopc"; this.ENGopc.Size = new Size(0x23, 0x10); this.ENGopc.TabIndex = 0x76; this.ENGopc.Text = "OpC"; this.ENGopb.AutoSize = true; this.ENGopb.Font = new Font("Britannic Bold", 11.25f); this.ENGopb.Location = new Point(0x35, 0x2a); this.ENGopb.Name = "ENGopb"; this.ENGopb.Size = new Size(0x23, 0x10); this.ENGopb.TabIndex = 0x75; this.ENGopb.Text = "OpB"; this.ENGopa.AutoSize = true; this.ENGopa.Font = new Font("Britannic Bold", 11.25f); this.ENGopa.Location = new Point(0x36, 11); this.ENGopa.Name = "ENGopa"; this.ENGopa.Size = new Size(0x22, 0x10); this.ENGopa.TabIndex = 0x74; this.ENGopa.Text = "OpA"; this.metroRadioButton1.AutoSize = true; this.metroRadioButton1.Location = new Point(0x11, 12); this.metroRadioButton1.Name = "metroRadioButton1"; this.metroRadioButton1.Size = new Size(0x1f, 15); this.metroRadioButton1.Style = MetroColorStyle.Blue; this.metroRadioButton1.TabIndex = 0x1b; this.metroRadioButton1.TabStop = true; this.metroRadioButton1.Text = "A"; this.metroRadioButton1.Theme = MetroThemeStyle.Light; this.metroRadioButton1.UseSelectable = true; this.metroRadioButton1.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton1.Click += new EventHandler(this.radioButton_Click4EN); this.metroRadioButton2.AutoSize = true; this.metroRadioButton2.Location = new Point(0x11, 0x2b); this.metroRadioButton2.Name = "metroRadioButton2"; this.metroRadioButton2.Size = new Size(30, 15); this.metroRadioButton2.Style = MetroColorStyle.Blue; this.metroRadioButton2.TabIndex = 0x1c; this.metroRadioButton2.TabStop = true; this.metroRadioButton2.Text = "B"; this.metroRadioButton2.Theme = MetroThemeStyle.Light; this.metroRadioButton2.UseSelectable = true; this.metroRadioButton2.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton2.Click += new EventHandler(this.radioButton_Click4EN); this.metroRadioButton3.AutoSize = true; this.metroRadioButton3.Location = new Point(0x11, 0x48); this.metroRadioButton3.Name = "metroRadioButton3"; this.metroRadioButton3.Size = new Size(0x1f, 15); this.metroRadioButton3.Style = MetroColorStyle.Blue; this.metroRadioButton3.TabIndex = 0x1d; this.metroRadioButton3.TabStop = true; this.metroRadioButton3.Text = "C"; this.metroRadioButton3.Theme = MetroThemeStyle.Light; this.metroRadioButton3.UseSelectable = true; this.metroRadioButton3.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton3.Click += new EventHandler(this.radioButton_Click4EN); this.metroRadioButton4.AutoSize = true; this.metroRadioButton4.Location = new Point(0x11, 0x67); this.metroRadioButton4.Name = "metroRadioButton4"; this.metroRadioButton4.Size = new Size(0x1f, 15); this.metroRadioButton4.Style = MetroColorStyle.Blue; this.metroRadioButton4.TabIndex = 30; this.metroRadioButton4.TabStop = true; this.metroRadioButton4.Text = "D"; this.metroRadioButton4.Theme = MetroThemeStyle.Light; this.metroRadioButton4.UseSelectable = true; this.metroRadioButton4.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton4.Click += new EventHandler(this.radioButton_Click4EN); this.sec1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec1.BackColor = Color.White; this.sec1.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec1.ForeColor = SystemColors.Desktop; this.sec1.Location = new Point(0x4d, 3); this.sec1.Multiline = true; this.sec1.Name = "sec1"; this.sec1.ReadOnly = true; this.sec1.ScrollBars = ScrollBars.Vertical; this.sec1.Size = new Size(0x2a5, 0x106); this.sec1.TabIndex = 0x27; this.GKtab.Controls.Add(this.markandnextGK); this.GKtab.Controls.Add(this.panel15); this.GKtab.Controls.Add(this.label5); this.GKtab.Controls.Add(this.savennextGK); this.GKtab.Controls.Add(this.panel7); this.GKtab.Controls.Add(this.refr4GK); this.GKtab.Controls.Add(this.panel5); this.GKtab.Controls.Add(this.sec3); this.GKtab.Controls.Add(this.panel19); this.GKtab.HorizontalScrollbarBarColor = true; this.GKtab.HorizontalScrollbarHighlightOnWheel = false; this.GKtab.HorizontalScrollbarSize = 10; this.GKtab.Location = new Point(4, 0x23); this.GKtab.Name = "GKtab"; this.GKtab.Size = new Size(0x3f8, 0x2d9); this.GKtab.Style = MetroColorStyle.Orange; this.GKtab.TabIndex = 2; this.GKtab.Text = "General Awareness"; this.GKtab.Theme = MetroThemeStyle.Light; this.GKtab.VerticalScrollbarBarColor = true; this.GKtab.VerticalScrollbarHighlightOnWheel = false; this.GKtab.VerticalScrollbarSize = 10; this.panel19.BackColor = Color.Transparent; this.panel19.Controls.Add(this.textBox11); this.panel19.Controls.Add(this.chkansGK); this.panel19.Controls.Add(this.metroLabel5); this.panel19.Controls.Add(this.ans4GK); this.panel19.Controls.Add(this.secnameGK); this.panel19.Controls.Add(this.metroLabel6); this.panel19.Controls.Add(this.metroLabel8); this.panel19.Controls.Add(this.metroLabel7); this.panel19.Location = new Point(0x35f, 5); this.panel19.Name = "panel19"; this.panel19.Size = new Size(0x90, 270); this.panel19.TabIndex = 0x66; this.panel19.Visible = false; this.textBox11.Location = new Point(0x15, 0x13); this.textBox11.Multiline = true; this.textBox11.Name = "textBox11"; this.textBox11.Size = new Size(0x18, 0x1b); this.textBox11.TabIndex = 0x56; this.textBox11.Text = "1"; this.chkansGK.Location = new Point(0x15, 0x34); this.chkansGK.Name = "chkansGK"; this.chkansGK.Size = new Size(40, 20); this.chkansGK.TabIndex = 0x55; this.metroLabel5.AutoSize = true; this.metroLabel5.FontWeight = MetroLabelWeight.Bold; this.metroLabel5.Location = new Point(0x1c, 0xd7); this.metroLabel5.Name = "metroLabel5"; this.metroLabel5.Size = new Size(0x3d, 0x13); this.metroLabel5.Style = MetroColorStyle.Black; this.metroLabel5.TabIndex = 0x17; this.metroLabel5.Text = "option4"; this.metroLabel5.Theme = MetroThemeStyle.Light; this.metroLabel5.UseStyleColors = true; this.ans4GK.Location = new Point(0x54, 0x34); this.ans4GK.Name = "ans4GK"; this.ans4GK.Size = new Size(40, 20); this.ans4GK.TabIndex = 0x5e; this.secnameGK.AutoSize = true; this.secnameGK.Location = new Point(0x49, 0x13); this.secnameGK.Name = "secnameGK"; this.secnameGK.Size = new Size(0x16, 13); this.secnameGK.TabIndex = 0x61; this.secnameGK.Text = "GK"; this.metroLabel6.AutoSize = true; this.metroLabel6.FontWeight = MetroLabelWeight.Bold; this.metroLabel6.Location = new Point(0x1c, 190); this.metroLabel6.Name = "metroLabel6"; this.metroLabel6.Size = new Size(0x3d, 0x13); this.metroLabel6.Style = MetroColorStyle.Black; this.metroLabel6.TabIndex = 0x18; this.metroLabel6.Text = "option3"; this.metroLabel6.Theme = MetroThemeStyle.Light; this.metroLabel6.UseStyleColors = true; this.metroLabel8.AutoSize = true; this.metroLabel8.FontWeight = MetroLabelWeight.Bold; this.metroLabel8.Location = new Point(0x1c, 0x7e); this.metroLabel8.Name = "metroLabel8"; this.metroLabel8.Size = new Size(0x3d, 0x13); this.metroLabel8.Style = MetroColorStyle.Black; this.metroLabel8.TabIndex = 0x1a; this.metroLabel8.Text = "option1"; this.metroLabel8.Theme = MetroThemeStyle.Light; this.metroLabel8.UseStyleColors = true; this.metroLabel7.AutoSize = true; this.metroLabel7.FontWeight = MetroLabelWeight.Bold; this.metroLabel7.Location = new Point(0x1c, 0x9b); this.metroLabel7.Name = "metroLabel7"; this.metroLabel7.Size = new Size(0x3d, 0x13); this.metroLabel7.Style = MetroColorStyle.Black; this.metroLabel7.TabIndex = 0x19; this.metroLabel7.Text = "option2"; this.metroLabel7.Theme = MetroThemeStyle.Light; this.metroLabel7.UseStyleColors = true; this.markandnextGK.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextGK.Location = new Point(0x2f5, 0x196); this.markandnextGK.Name = "markandnextGK"; this.markandnextGK.Size = new Size(0x79, 0x2d); this.markandnextGK.Style = MetroColorStyle.Blue; this.markandnextGK.TabIndex = 0x65; this.markandnextGK.Text = "Mark and Next"; this.markandnextGK.Theme = MetroThemeStyle.Light; this.markandnextGK.UseSelectable = true; this.markandnextGK.Click += new EventHandler(this.markandnextGK_Click); this.panel15.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel15.BackColor = SystemColors.InactiveCaptionText; this.panel15.Controls.Add(this.metroLabel33); this.panel15.Controls.Add(this.pictureBox10); this.panel15.Controls.Add(this.metroLabel34); this.panel15.Controls.Add(this.metroLabel35); this.panel15.Controls.Add(this.metroLabel36); this.panel15.Controls.Add(this.pictureBox11); this.panel15.Controls.Add(this.pictureBox12); this.panel15.Controls.Add(this.pictureBox13); this.panel15.Location = new Point(0x2f5, 0x1c6); this.panel15.Name = "panel15"; this.panel15.Size = new Size(0x108, 0xb2); this.panel15.TabIndex = 100; this.metroLabel33.AutoSize = true; this.metroLabel33.BackColor = Color.Transparent; this.metroLabel33.FontWeight = MetroLabelWeight.Bold; this.metroLabel33.Location = new Point(0x3b, 0x94); this.metroLabel33.Name = "metroLabel33"; this.metroLabel33.Size = new Size(0x8b, 0x13); this.metroLabel33.Style = MetroColorStyle.Purple; this.metroLabel33.TabIndex = 0x65; this.metroLabel33.Text = "Marked For Review"; this.metroLabel33.Theme = MetroThemeStyle.Dark; this.metroLabel33.UseCustomBackColor = true; this.metroLabel33.UseStyleColors = true; this.pictureBox10.BackColor = Color.White; this.pictureBox10.Image = Resources.rvw; this.pictureBox10.Location = new Point(3, 0x8f); this.pictureBox10.Name = "pictureBox10"; this.pictureBox10.Size = new Size(30, 30); this.pictureBox10.TabIndex = 100; this.pictureBox10.TabStop = false; this.metroLabel34.AutoSize = true; this.metroLabel34.BackColor = Color.Transparent; this.metroLabel34.FontWeight = MetroLabelWeight.Bold; this.metroLabel34.Location = new Point(60, 0x63); this.metroLabel34.Name = "metroLabel34"; this.metroLabel34.Size = new Size(0x53, 0x13); this.metroLabel34.Style = MetroColorStyle.White; this.metroLabel34.TabIndex = 0x63; this.metroLabel34.Text = "Not Visited"; this.metroLabel34.Theme = MetroThemeStyle.Dark; this.metroLabel34.UseCustomBackColor = true; this.metroLabel34.UseStyleColors = true; this.metroLabel35.AutoSize = true; this.metroLabel35.BackColor = Color.Transparent; this.metroLabel35.FontWeight = MetroLabelWeight.Bold; this.metroLabel35.Location = new Point(60, 0x35); this.metroLabel35.Name = "metroLabel35"; this.metroLabel35.Size = new Size(0x68, 0x13); this.metroLabel35.Style = MetroColorStyle.Red; this.metroLabel35.TabIndex = 0x62; this.metroLabel35.Text = "Not Answered"; this.metroLabel35.Theme = MetroThemeStyle.Dark; this.metroLabel35.UseCustomBackColor = true; this.metroLabel35.UseStyleColors = true; this.metroLabel36.AutoSize = true; this.metroLabel36.BackColor = Color.Transparent; this.metroLabel36.FontWeight = MetroLabelWeight.Bold; this.metroLabel36.Location = new Point(60, 7); this.metroLabel36.Name = "metroLabel36"; this.metroLabel36.Size = new Size(0x4b, 0x13); this.metroLabel36.Style = MetroColorStyle.Green; this.metroLabel36.TabIndex = 0x5f; this.metroLabel36.Text = "Answered"; this.metroLabel36.Theme = MetroThemeStyle.Dark; this.metroLabel36.UseCustomBackColor = true; this.metroLabel36.UseStyleColors = true; this.pictureBox11.BackColor = Color.White; this.pictureBox11.Location = new Point(3, 0x5f); this.pictureBox11.Name = "pictureBox11"; this.pictureBox11.Size = new Size(30, 30); this.pictureBox11.TabIndex = 0x61; this.pictureBox11.TabStop = false; this.pictureBox12.Image = Resources.unchk; this.pictureBox12.Location = new Point(3, 0x31); this.pictureBox12.Name = "pictureBox12"; this.pictureBox12.Size = new Size(30, 30); this.pictureBox12.TabIndex = 0x60; this.pictureBox12.TabStop = false; this.pictureBox13.Image = Resources.chk1; this.pictureBox13.Location = new Point(3, 3); this.pictureBox13.Name = "pictureBox13"; this.pictureBox13.Size = new Size(30, 30); this.pictureBox13.TabIndex = 0x5f; this.pictureBox13.TabStop = false; this.label5.AutoSize = true; this.label5.Location = new Point(10, 6); this.label5.Name = "label5"; this.label5.Size = new Size(0x3a, 13); this.label5.TabIndex = 0x57; this.label5.Text = "Question 1"; this.savennextGK.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextGK.Location = new Point(0x373, 0x196); this.savennextGK.Name = "savennextGK"; this.savennextGK.Size = new Size(0x8a, 0x2d); this.savennextGK.Style = MetroColorStyle.Blue; this.savennextGK.TabIndex = 0x54; this.savennextGK.Text = "Save and Next"; this.savennextGK.Theme = MetroThemeStyle.Light; this.savennextGK.UseSelectable = true; this.savennextGK.Click += new EventHandler(this.savennextGK_Click); this.panel7.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel7.AutoScroll = true; this.panel7.BackColor = Color.Transparent; this.panel7.BorderStyle = BorderStyle.FixedSingle; this.panel7.Controls.Add(this.GK1); this.panel7.Controls.Add(this.GK50); this.panel7.Controls.Add(this.GK2); this.panel7.Controls.Add(this.GK49); this.panel7.Controls.Add(this.GK3); this.panel7.Controls.Add(this.GK48); this.panel7.Controls.Add(this.GK4); this.panel7.Controls.Add(this.GK47); this.panel7.Controls.Add(this.GK5); this.panel7.Controls.Add(this.GK46); this.panel7.Controls.Add(this.GK6); this.panel7.Controls.Add(this.GK45); this.panel7.Controls.Add(this.GK7); this.panel7.Controls.Add(this.GK44); this.panel7.Controls.Add(this.GK8); this.panel7.Controls.Add(this.GK43); this.panel7.Controls.Add(this.GK9); this.panel7.Controls.Add(this.GK42); this.panel7.Controls.Add(this.GK10); this.panel7.Controls.Add(this.GK41); this.panel7.Controls.Add(this.GK11); this.panel7.Controls.Add(this.GK40); this.panel7.Controls.Add(this.GK12); this.panel7.Controls.Add(this.GK39); this.panel7.Controls.Add(this.GK13); this.panel7.Controls.Add(this.GK38); this.panel7.Controls.Add(this.GK14); this.panel7.Controls.Add(this.GK37); this.panel7.Controls.Add(this.GK15); this.panel7.Controls.Add(this.GK36); this.panel7.Controls.Add(this.GK16); this.panel7.Controls.Add(this.GK35); this.panel7.Controls.Add(this.GK17); this.panel7.Controls.Add(this.GK34); this.panel7.Controls.Add(this.GK18); this.panel7.Controls.Add(this.GK33); this.panel7.Controls.Add(this.GK19); this.panel7.Controls.Add(this.GK32); this.panel7.Controls.Add(this.GK20); this.panel7.Controls.Add(this.GK31); this.panel7.Controls.Add(this.GK21); this.panel7.Controls.Add(this.GK30); this.panel7.Controls.Add(this.GK22); this.panel7.Controls.Add(this.GK29); this.panel7.Controls.Add(this.GK23); this.panel7.Controls.Add(this.GK28); this.panel7.Controls.Add(this.GK24); this.panel7.Controls.Add(this.GK27); this.panel7.Controls.Add(this.GK25); this.panel7.Controls.Add(this.GK26); this.panel7.Location = new Point(0x2f5, 3); this.panel7.Name = "panel7"; this.panel7.Size = new Size(0x108, 0x191); this.panel7.TabIndex = 0x53; this.GK1.BackgroundImageLayout = ImageLayout.Stretch; this.GK1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK1.FlatAppearance.BorderSize = 2; this.GK1.FlatAppearance.CheckedBackColor = Color.Black; this.GK1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK1.FlatStyle = FlatStyle.Flat; this.GK1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK1.ForeColor = SystemColors.ActiveCaptionText; this.GK1.Location = new Point(15, 14); this.GK1.Name = "GK1"; this.GK1.Size = new Size(40, 40); this.GK1.TabIndex = 0x74; this.GK1.Text = "1"; this.GK1.TextAlign = ContentAlignment.TopLeft; this.GK1.UseVisualStyleBackColor = true; this.GK1.Click += new EventHandler(this.GK1_Click); this.GK50.BackgroundImageLayout = ImageLayout.Stretch; this.GK50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK50.FlatAppearance.BorderSize = 2; this.GK50.FlatAppearance.CheckedBackColor = Color.Black; this.GK50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK50.FlatStyle = FlatStyle.Flat; this.GK50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK50.ForeColor = SystemColors.ActiveCaptionText; this.GK50.Location = new Point(0xc6, 0x1ac); this.GK50.Name = "GK50"; this.GK50.Size = new Size(40, 40); this.GK50.TabIndex = 0xa5; this.GK50.Text = "50"; this.GK50.TextAlign = ContentAlignment.TopLeft; this.GK50.UseVisualStyleBackColor = true; this.GK50.Visible = false; this.GK50.Click += new EventHandler(this.GK50_Click); this.GK2.BackgroundImageLayout = ImageLayout.Stretch; this.GK2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK2.FlatAppearance.BorderSize = 2; this.GK2.FlatAppearance.CheckedBackColor = Color.Black; this.GK2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK2.FlatStyle = FlatStyle.Flat; this.GK2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK2.ForeColor = SystemColors.ActiveCaptionText; this.GK2.Location = new Point(0x3d, 14); this.GK2.Name = "GK2"; this.GK2.Size = new Size(40, 40); this.GK2.TabIndex = 0x75; this.GK2.Text = "2"; this.GK2.TextAlign = ContentAlignment.TopLeft; this.GK2.UseVisualStyleBackColor = true; this.GK2.Click += new EventHandler(this.GK2_Click); this.GK49.BackgroundImageLayout = ImageLayout.Stretch; this.GK49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK49.FlatAppearance.BorderSize = 2; this.GK49.FlatAppearance.CheckedBackColor = Color.Black; this.GK49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK49.FlatStyle = FlatStyle.Flat; this.GK49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK49.ForeColor = SystemColors.ActiveCaptionText; this.GK49.Location = new Point(0x99, 0x1ac); this.GK49.Name = "GK49"; this.GK49.Size = new Size(40, 40); this.GK49.TabIndex = 0xa4; this.GK49.Text = "49"; this.GK49.TextAlign = ContentAlignment.TopLeft; this.GK49.UseVisualStyleBackColor = true; this.GK49.Visible = false; this.GK49.Click += new EventHandler(this.GK49_Click); this.GK3.BackgroundImageLayout = ImageLayout.Stretch; this.GK3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK3.FlatAppearance.BorderSize = 2; this.GK3.FlatAppearance.CheckedBackColor = Color.Black; this.GK3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK3.FlatStyle = FlatStyle.Flat; this.GK3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK3.ForeColor = SystemColors.ActiveCaptionText; this.GK3.Location = new Point(0x6b, 14); this.GK3.Name = "GK3"; this.GK3.Size = new Size(40, 40); this.GK3.TabIndex = 0x76; this.GK3.Text = "3"; this.GK3.TextAlign = ContentAlignment.TopLeft; this.GK3.UseVisualStyleBackColor = true; this.GK3.Click += new EventHandler(this.GK3_Click); this.GK48.BackgroundImageLayout = ImageLayout.Stretch; this.GK48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK48.FlatAppearance.BorderSize = 2; this.GK48.FlatAppearance.CheckedBackColor = Color.Black; this.GK48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK48.FlatStyle = FlatStyle.Flat; this.GK48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK48.ForeColor = SystemColors.ActiveCaptionText; this.GK48.Location = new Point(0x6b, 0x1ac); this.GK48.Name = "GK48"; this.GK48.Size = new Size(40, 40); this.GK48.TabIndex = 0xa3; this.GK48.Text = "48"; this.GK48.TextAlign = ContentAlignment.TopLeft; this.GK48.UseVisualStyleBackColor = true; this.GK48.Visible = false; this.GK48.Click += new EventHandler(this.GK48_Click); this.GK4.BackgroundImageLayout = ImageLayout.Stretch; this.GK4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK4.FlatAppearance.BorderSize = 2; this.GK4.FlatAppearance.CheckedBackColor = Color.Black; this.GK4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK4.FlatStyle = FlatStyle.Flat; this.GK4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK4.ForeColor = SystemColors.ActiveCaptionText; this.GK4.Location = new Point(0x99, 14); this.GK4.Name = "GK4"; this.GK4.Size = new Size(40, 40); this.GK4.TabIndex = 0x77; this.GK4.Text = "4"; this.GK4.TextAlign = ContentAlignment.TopLeft; this.GK4.UseVisualStyleBackColor = true; this.GK4.Click += new EventHandler(this.GK4_Click); this.GK47.BackgroundImageLayout = ImageLayout.Stretch; this.GK47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK47.FlatAppearance.BorderSize = 2; this.GK47.FlatAppearance.CheckedBackColor = Color.Black; this.GK47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK47.FlatStyle = FlatStyle.Flat; this.GK47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK47.ForeColor = SystemColors.ActiveCaptionText; this.GK47.Location = new Point(0x3d, 0x1ac); this.GK47.Name = "GK47"; this.GK47.Size = new Size(40, 40); this.GK47.TabIndex = 0xa2; this.GK47.Text = "47"; this.GK47.TextAlign = ContentAlignment.TopLeft; this.GK47.UseVisualStyleBackColor = true; this.GK47.Visible = false; this.GK47.Click += new EventHandler(this.GK47_Click); this.GK5.BackgroundImageLayout = ImageLayout.Stretch; this.GK5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK5.FlatAppearance.BorderSize = 2; this.GK5.FlatAppearance.CheckedBackColor = Color.Black; this.GK5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK5.FlatStyle = FlatStyle.Flat; this.GK5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK5.ForeColor = SystemColors.ActiveCaptionText; this.GK5.Location = new Point(0xc6, 14); this.GK5.Name = "GK5"; this.GK5.Size = new Size(40, 40); this.GK5.TabIndex = 120; this.GK5.Text = "5"; this.GK5.TextAlign = ContentAlignment.TopLeft; this.GK5.UseVisualStyleBackColor = true; this.GK5.Click += new EventHandler(this.GK5_Click); this.GK46.BackgroundImageLayout = ImageLayout.Stretch; this.GK46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK46.FlatAppearance.BorderSize = 2; this.GK46.FlatAppearance.CheckedBackColor = Color.Black; this.GK46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK46.FlatStyle = FlatStyle.Flat; this.GK46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK46.ForeColor = SystemColors.ActiveCaptionText; this.GK46.Location = new Point(15, 0x1ac); this.GK46.Name = "GK46"; this.GK46.Size = new Size(40, 40); this.GK46.TabIndex = 0xa1; this.GK46.Text = "46"; this.GK46.TextAlign = ContentAlignment.TopLeft; this.GK46.UseVisualStyleBackColor = true; this.GK46.Visible = false; this.GK46.Click += new EventHandler(this.GK46_Click); this.GK6.BackgroundImageLayout = ImageLayout.Stretch; this.GK6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK6.FlatAppearance.BorderSize = 2; this.GK6.FlatAppearance.CheckedBackColor = Color.Black; this.GK6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK6.FlatStyle = FlatStyle.Flat; this.GK6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK6.ForeColor = SystemColors.ActiveCaptionText; this.GK6.Location = new Point(15, 60); this.GK6.Name = "GK6"; this.GK6.Size = new Size(40, 40); this.GK6.TabIndex = 0x79; this.GK6.Text = "6"; this.GK6.TextAlign = ContentAlignment.TopLeft; this.GK6.UseVisualStyleBackColor = true; this.GK6.Click += new EventHandler(this.GK6_Click); this.GK45.BackgroundImageLayout = ImageLayout.Stretch; this.GK45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK45.FlatAppearance.BorderSize = 2; this.GK45.FlatAppearance.CheckedBackColor = Color.Black; this.GK45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK45.FlatStyle = FlatStyle.Flat; this.GK45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK45.ForeColor = SystemColors.ActiveCaptionText; this.GK45.Location = new Point(0xc6, 0x17e); this.GK45.Name = "GK45"; this.GK45.Size = new Size(40, 40); this.GK45.TabIndex = 160; this.GK45.Text = "45"; this.GK45.TextAlign = ContentAlignment.TopLeft; this.GK45.UseVisualStyleBackColor = true; this.GK45.Visible = false; this.GK45.Click += new EventHandler(this.GK45_Click); this.GK7.BackgroundImageLayout = ImageLayout.Stretch; this.GK7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK7.FlatAppearance.BorderSize = 2; this.GK7.FlatAppearance.CheckedBackColor = Color.Black; this.GK7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK7.FlatStyle = FlatStyle.Flat; this.GK7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK7.ForeColor = SystemColors.ActiveCaptionText; this.GK7.Location = new Point(0x3d, 60); this.GK7.Name = "GK7"; this.GK7.Size = new Size(40, 40); this.GK7.TabIndex = 0x7a; this.GK7.Text = "7"; this.GK7.TextAlign = ContentAlignment.TopLeft; this.GK7.UseVisualStyleBackColor = true; this.GK7.Click += new EventHandler(this.GK7_Click); this.GK44.BackgroundImageLayout = ImageLayout.Stretch; this.GK44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK44.FlatAppearance.BorderSize = 2; this.GK44.FlatAppearance.CheckedBackColor = Color.Black; this.GK44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK44.FlatStyle = FlatStyle.Flat; this.GK44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK44.ForeColor = SystemColors.ActiveCaptionText; this.GK44.Location = new Point(0x99, 0x17e); this.GK44.Name = "GK44"; this.GK44.Size = new Size(40, 40); this.GK44.TabIndex = 0x9f; this.GK44.Text = "44"; this.GK44.TextAlign = ContentAlignment.TopLeft; this.GK44.UseVisualStyleBackColor = true; this.GK44.Visible = false; this.GK44.Click += new EventHandler(this.GK44_Click); this.GK8.BackgroundImageLayout = ImageLayout.Stretch; this.GK8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK8.FlatAppearance.BorderSize = 2; this.GK8.FlatAppearance.CheckedBackColor = Color.Black; this.GK8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK8.FlatStyle = FlatStyle.Flat; this.GK8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK8.ForeColor = SystemColors.ActiveCaptionText; this.GK8.Location = new Point(0x6b, 60); this.GK8.Name = "GK8"; this.GK8.Size = new Size(40, 40); this.GK8.TabIndex = 0x7b; this.GK8.Text = "8"; this.GK8.TextAlign = ContentAlignment.TopLeft; this.GK8.UseVisualStyleBackColor = true; this.GK8.Click += new EventHandler(this.GK8_Click); this.GK43.BackgroundImageLayout = ImageLayout.Stretch; this.GK43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK43.FlatAppearance.BorderSize = 2; this.GK43.FlatAppearance.CheckedBackColor = Color.Black; this.GK43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK43.FlatStyle = FlatStyle.Flat; this.GK43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK43.ForeColor = SystemColors.ActiveCaptionText; this.GK43.Location = new Point(0x6b, 0x17e); this.GK43.Name = "GK43"; this.GK43.Size = new Size(40, 40); this.GK43.TabIndex = 0x9e; this.GK43.Text = "43"; this.GK43.TextAlign = ContentAlignment.TopLeft; this.GK43.UseVisualStyleBackColor = true; this.GK43.Visible = false; this.GK43.Click += new EventHandler(this.GK43_Click); this.GK9.BackgroundImageLayout = ImageLayout.Stretch; this.GK9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK9.FlatAppearance.BorderSize = 2; this.GK9.FlatAppearance.CheckedBackColor = Color.Black; this.GK9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK9.FlatStyle = FlatStyle.Flat; this.GK9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK9.ForeColor = SystemColors.ActiveCaptionText; this.GK9.Location = new Point(0x99, 60); this.GK9.Name = "GK9"; this.GK9.Size = new Size(40, 40); this.GK9.TabIndex = 0x7c; this.GK9.Text = "9"; this.GK9.TextAlign = ContentAlignment.TopLeft; this.GK9.UseVisualStyleBackColor = true; this.GK9.Click += new EventHandler(this.GK9_Click); this.GK42.BackgroundImageLayout = ImageLayout.Stretch; this.GK42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK42.FlatAppearance.BorderSize = 2; this.GK42.FlatAppearance.CheckedBackColor = Color.Black; this.GK42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK42.FlatStyle = FlatStyle.Flat; this.GK42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK42.ForeColor = SystemColors.ActiveCaptionText; this.GK42.Location = new Point(0x3d, 0x17e); this.GK42.Name = "GK42"; this.GK42.Size = new Size(40, 40); this.GK42.TabIndex = 0x9d; this.GK42.Text = "42"; this.GK42.TextAlign = ContentAlignment.TopLeft; this.GK42.UseVisualStyleBackColor = true; this.GK42.Visible = false; this.GK42.Click += new EventHandler(this.GK42_Click); this.GK10.BackgroundImageLayout = ImageLayout.Stretch; this.GK10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK10.FlatAppearance.BorderSize = 2; this.GK10.FlatAppearance.CheckedBackColor = Color.Black; this.GK10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK10.FlatStyle = FlatStyle.Flat; this.GK10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK10.ForeColor = SystemColors.ActiveCaptionText; this.GK10.Location = new Point(0xc6, 60); this.GK10.Name = "GK10"; this.GK10.Size = new Size(40, 40); this.GK10.TabIndex = 0x7d; this.GK10.Text = "10"; this.GK10.TextAlign = ContentAlignment.TopLeft; this.GK10.UseVisualStyleBackColor = true; this.GK10.Click += new EventHandler(this.GK10_Click); this.GK41.BackgroundImageLayout = ImageLayout.Stretch; this.GK41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK41.FlatAppearance.BorderSize = 2; this.GK41.FlatAppearance.CheckedBackColor = Color.Black; this.GK41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK41.FlatStyle = FlatStyle.Flat; this.GK41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK41.ForeColor = SystemColors.ActiveCaptionText; this.GK41.Location = new Point(15, 0x17e); this.GK41.Name = "GK41"; this.GK41.Size = new Size(40, 40); this.GK41.TabIndex = 0x9c; this.GK41.Text = "41"; this.GK41.TextAlign = ContentAlignment.TopLeft; this.GK41.UseVisualStyleBackColor = true; this.GK41.Visible = false; this.GK41.Click += new EventHandler(this.GK41_Click); this.GK11.BackgroundImageLayout = ImageLayout.Stretch; this.GK11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK11.FlatAppearance.BorderSize = 2; this.GK11.FlatAppearance.CheckedBackColor = Color.Black; this.GK11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK11.FlatStyle = FlatStyle.Flat; this.GK11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK11.ForeColor = SystemColors.ActiveCaptionText; this.GK11.Location = new Point(15, 0x6a); this.GK11.Name = "GK11"; this.GK11.Size = new Size(40, 40); this.GK11.TabIndex = 0x7e; this.GK11.Text = "11"; this.GK11.TextAlign = ContentAlignment.TopLeft; this.GK11.UseVisualStyleBackColor = true; this.GK11.Click += new EventHandler(this.GK11_Click); this.GK40.BackgroundImageLayout = ImageLayout.Stretch; this.GK40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK40.FlatAppearance.BorderSize = 2; this.GK40.FlatAppearance.CheckedBackColor = Color.Black; this.GK40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK40.FlatStyle = FlatStyle.Flat; this.GK40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK40.ForeColor = SystemColors.ActiveCaptionText; this.GK40.Location = new Point(0xc6, 0x150); this.GK40.Name = "GK40"; this.GK40.Size = new Size(40, 40); this.GK40.TabIndex = 0x9b; this.GK40.Text = "40"; this.GK40.TextAlign = ContentAlignment.TopLeft; this.GK40.UseVisualStyleBackColor = true; this.GK40.Click += new EventHandler(this.GK40_Click); this.GK12.BackgroundImageLayout = ImageLayout.Stretch; this.GK12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK12.FlatAppearance.BorderSize = 2; this.GK12.FlatAppearance.CheckedBackColor = Color.Black; this.GK12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK12.FlatStyle = FlatStyle.Flat; this.GK12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK12.ForeColor = SystemColors.ActiveCaptionText; this.GK12.Location = new Point(0x3d, 0x6a); this.GK12.Name = "GK12"; this.GK12.Size = new Size(40, 40); this.GK12.TabIndex = 0x7f; this.GK12.Text = "12"; this.GK12.TextAlign = ContentAlignment.TopLeft; this.GK12.UseVisualStyleBackColor = true; this.GK12.Click += new EventHandler(this.GK12_Click); this.GK39.BackgroundImageLayout = ImageLayout.Stretch; this.GK39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK39.FlatAppearance.BorderSize = 2; this.GK39.FlatAppearance.CheckedBackColor = Color.Black; this.GK39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK39.FlatStyle = FlatStyle.Flat; this.GK39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK39.ForeColor = SystemColors.ActiveCaptionText; this.GK39.Location = new Point(0x99, 0x150); this.GK39.Name = "GK39"; this.GK39.Size = new Size(40, 40); this.GK39.TabIndex = 0x9a; this.GK39.Text = "39"; this.GK39.TextAlign = ContentAlignment.TopLeft; this.GK39.UseVisualStyleBackColor = true; this.GK39.Click += new EventHandler(this.GK39_Click); this.GK13.BackgroundImageLayout = ImageLayout.Stretch; this.GK13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK13.FlatAppearance.BorderSize = 2; this.GK13.FlatAppearance.CheckedBackColor = Color.Black; this.GK13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK13.FlatStyle = FlatStyle.Flat; this.GK13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK13.ForeColor = SystemColors.ActiveCaptionText; this.GK13.Location = new Point(0x6b, 0x6a); this.GK13.Name = "GK13"; this.GK13.Size = new Size(40, 40); this.GK13.TabIndex = 0x80; this.GK13.Text = "13"; this.GK13.TextAlign = ContentAlignment.TopLeft; this.GK13.UseVisualStyleBackColor = true; this.GK13.Click += new EventHandler(this.GK13_Click); this.GK38.BackgroundImageLayout = ImageLayout.Stretch; this.GK38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK38.FlatAppearance.BorderSize = 2; this.GK38.FlatAppearance.CheckedBackColor = Color.Black; this.GK38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK38.FlatStyle = FlatStyle.Flat; this.GK38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK38.ForeColor = SystemColors.ActiveCaptionText; this.GK38.Location = new Point(0x6b, 0x150); this.GK38.Name = "GK38"; this.GK38.Size = new Size(40, 40); this.GK38.TabIndex = 0x99; this.GK38.Text = "38"; this.GK38.TextAlign = ContentAlignment.TopLeft; this.GK38.UseVisualStyleBackColor = true; this.GK38.Click += new EventHandler(this.GK38_Click); this.GK14.BackgroundImageLayout = ImageLayout.Stretch; this.GK14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK14.FlatAppearance.BorderSize = 2; this.GK14.FlatAppearance.CheckedBackColor = Color.Black; this.GK14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK14.FlatStyle = FlatStyle.Flat; this.GK14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK14.ForeColor = SystemColors.ActiveCaptionText; this.GK14.Location = new Point(0x99, 0x6a); this.GK14.Name = "GK14"; this.GK14.Size = new Size(40, 40); this.GK14.TabIndex = 0x81; this.GK14.Text = "14"; this.GK14.TextAlign = ContentAlignment.TopLeft; this.GK14.UseVisualStyleBackColor = true; this.GK14.Click += new EventHandler(this.GK14_Click); this.GK37.BackgroundImageLayout = ImageLayout.Stretch; this.GK37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK37.FlatAppearance.BorderSize = 2; this.GK37.FlatAppearance.CheckedBackColor = Color.Black; this.GK37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK37.FlatStyle = FlatStyle.Flat; this.GK37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK37.ForeColor = SystemColors.ActiveCaptionText; this.GK37.Location = new Point(0x3d, 0x150); this.GK37.Name = "GK37"; this.GK37.Size = new Size(40, 40); this.GK37.TabIndex = 0x98; this.GK37.Text = "37"; this.GK37.TextAlign = ContentAlignment.TopLeft; this.GK37.UseVisualStyleBackColor = true; this.GK37.Click += new EventHandler(this.GK37_Click); this.GK15.BackgroundImageLayout = ImageLayout.Stretch; this.GK15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK15.FlatAppearance.BorderSize = 2; this.GK15.FlatAppearance.CheckedBackColor = Color.Black; this.GK15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK15.FlatStyle = FlatStyle.Flat; this.GK15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK15.ForeColor = SystemColors.ActiveCaptionText; this.GK15.Location = new Point(0xc6, 0x6a); this.GK15.Name = "GK15"; this.GK15.Size = new Size(40, 40); this.GK15.TabIndex = 130; this.GK15.Text = "15"; this.GK15.TextAlign = ContentAlignment.TopLeft; this.GK15.UseVisualStyleBackColor = true; this.GK15.Click += new EventHandler(this.GK15_Click); this.GK36.BackgroundImageLayout = ImageLayout.Stretch; this.GK36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK36.FlatAppearance.BorderSize = 2; this.GK36.FlatAppearance.CheckedBackColor = Color.Black; this.GK36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK36.FlatStyle = FlatStyle.Flat; this.GK36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK36.ForeColor = SystemColors.ActiveCaptionText; this.GK36.Location = new Point(15, 0x150); this.GK36.Name = "GK36"; this.GK36.Size = new Size(40, 40); this.GK36.TabIndex = 0x97; this.GK36.Text = "36"; this.GK36.TextAlign = ContentAlignment.TopLeft; this.GK36.UseVisualStyleBackColor = true; this.GK36.Click += new EventHandler(this.GK36_Click); this.GK16.BackgroundImageLayout = ImageLayout.Stretch; this.GK16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK16.FlatAppearance.BorderSize = 2; this.GK16.FlatAppearance.CheckedBackColor = Color.Black; this.GK16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK16.FlatStyle = FlatStyle.Flat; this.GK16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK16.ForeColor = SystemColors.ActiveCaptionText; this.GK16.Location = new Point(15, 0x98); this.GK16.Name = "GK16"; this.GK16.Size = new Size(40, 40); this.GK16.TabIndex = 0x83; this.GK16.Text = "16"; this.GK16.TextAlign = ContentAlignment.TopLeft; this.GK16.UseVisualStyleBackColor = true; this.GK16.Click += new EventHandler(this.GK16_Click); this.GK35.BackgroundImageLayout = ImageLayout.Stretch; this.GK35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK35.FlatAppearance.BorderSize = 2; this.GK35.FlatAppearance.CheckedBackColor = Color.Black; this.GK35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK35.FlatStyle = FlatStyle.Flat; this.GK35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK35.ForeColor = SystemColors.ActiveCaptionText; this.GK35.Location = new Point(0xc6, 290); this.GK35.Name = "GK35"; this.GK35.Size = new Size(40, 40); this.GK35.TabIndex = 150; this.GK35.Text = "35"; this.GK35.TextAlign = ContentAlignment.TopLeft; this.GK35.UseVisualStyleBackColor = true; this.GK35.Click += new EventHandler(this.GK35_Click); this.GK17.BackgroundImageLayout = ImageLayout.Stretch; this.GK17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK17.FlatAppearance.BorderSize = 2; this.GK17.FlatAppearance.CheckedBackColor = Color.Black; this.GK17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK17.FlatStyle = FlatStyle.Flat; this.GK17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK17.ForeColor = SystemColors.ActiveCaptionText; this.GK17.Location = new Point(0x3d, 0x98); this.GK17.Name = "GK17"; this.GK17.Size = new Size(40, 40); this.GK17.TabIndex = 0x84; this.GK17.Text = "17"; this.GK17.TextAlign = ContentAlignment.TopLeft; this.GK17.UseVisualStyleBackColor = true; this.GK17.Click += new EventHandler(this.GK17_Click); this.GK34.BackgroundImageLayout = ImageLayout.Stretch; this.GK34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK34.FlatAppearance.BorderSize = 2; this.GK34.FlatAppearance.CheckedBackColor = Color.Black; this.GK34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK34.FlatStyle = FlatStyle.Flat; this.GK34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK34.ForeColor = SystemColors.ActiveCaptionText; this.GK34.Location = new Point(0x99, 290); this.GK34.Name = "GK34"; this.GK34.Size = new Size(40, 40); this.GK34.TabIndex = 0x95; this.GK34.Text = "34"; this.GK34.TextAlign = ContentAlignment.TopLeft; this.GK34.UseVisualStyleBackColor = true; this.GK34.Click += new EventHandler(this.GK34_Click); this.GK18.BackgroundImageLayout = ImageLayout.Stretch; this.GK18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK18.FlatAppearance.BorderSize = 2; this.GK18.FlatAppearance.CheckedBackColor = Color.Black; this.GK18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK18.FlatStyle = FlatStyle.Flat; this.GK18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK18.ForeColor = SystemColors.ActiveCaptionText; this.GK18.Location = new Point(0x6b, 0x98); this.GK18.Name = "GK18"; this.GK18.Size = new Size(40, 40); this.GK18.TabIndex = 0x85; this.GK18.Text = "18"; this.GK18.TextAlign = ContentAlignment.TopLeft; this.GK18.UseVisualStyleBackColor = true; this.GK18.Click += new EventHandler(this.GK18_Click); this.GK33.BackgroundImageLayout = ImageLayout.Stretch; this.GK33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK33.FlatAppearance.BorderSize = 2; this.GK33.FlatAppearance.CheckedBackColor = Color.Black; this.GK33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK33.FlatStyle = FlatStyle.Flat; this.GK33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK33.ForeColor = SystemColors.ActiveCaptionText; this.GK33.Location = new Point(0x6b, 290); this.GK33.Name = "GK33"; this.GK33.Size = new Size(40, 40); this.GK33.TabIndex = 0x94; this.GK33.Text = "33"; this.GK33.TextAlign = ContentAlignment.TopLeft; this.GK33.UseVisualStyleBackColor = true; this.GK33.Click += new EventHandler(this.GK33_Click); this.GK19.BackgroundImageLayout = ImageLayout.Stretch; this.GK19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK19.FlatAppearance.BorderSize = 2; this.GK19.FlatAppearance.CheckedBackColor = Color.Black; this.GK19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK19.FlatStyle = FlatStyle.Flat; this.GK19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK19.ForeColor = SystemColors.ActiveCaptionText; this.GK19.Location = new Point(0x99, 0x98); this.GK19.Name = "GK19"; this.GK19.Size = new Size(40, 40); this.GK19.TabIndex = 0x86; this.GK19.Text = "19"; this.GK19.TextAlign = ContentAlignment.TopLeft; this.GK19.UseVisualStyleBackColor = true; this.GK19.Click += new EventHandler(this.GK19_Click); this.GK32.BackgroundImageLayout = ImageLayout.Stretch; this.GK32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK32.FlatAppearance.BorderSize = 2; this.GK32.FlatAppearance.CheckedBackColor = Color.Black; this.GK32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK32.FlatStyle = FlatStyle.Flat; this.GK32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK32.ForeColor = SystemColors.ActiveCaptionText; this.GK32.Location = new Point(0x3d, 290); this.GK32.Name = "GK32"; this.GK32.Size = new Size(40, 40); this.GK32.TabIndex = 0x93; this.GK32.Text = "32"; this.GK32.TextAlign = ContentAlignment.TopLeft; this.GK32.UseVisualStyleBackColor = true; this.GK32.Click += new EventHandler(this.GK32_Click); this.GK20.BackgroundImageLayout = ImageLayout.Stretch; this.GK20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK20.FlatAppearance.BorderSize = 2; this.GK20.FlatAppearance.CheckedBackColor = Color.Black; this.GK20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK20.FlatStyle = FlatStyle.Flat; this.GK20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK20.ForeColor = SystemColors.ActiveCaptionText; this.GK20.Location = new Point(0xc6, 0x98); this.GK20.Name = "GK20"; this.GK20.Size = new Size(40, 40); this.GK20.TabIndex = 0x87; this.GK20.Text = "20"; this.GK20.TextAlign = ContentAlignment.TopLeft; this.GK20.UseVisualStyleBackColor = true; this.GK20.Click += new EventHandler(this.GK20_Click); this.GK31.BackgroundImageLayout = ImageLayout.Stretch; this.GK31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK31.FlatAppearance.BorderSize = 2; this.GK31.FlatAppearance.CheckedBackColor = Color.Black; this.GK31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK31.FlatStyle = FlatStyle.Flat; this.GK31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK31.ForeColor = SystemColors.ActiveCaptionText; this.GK31.Location = new Point(15, 290); this.GK31.Name = "GK31"; this.GK31.Size = new Size(40, 40); this.GK31.TabIndex = 0x92; this.GK31.Text = "31"; this.GK31.TextAlign = ContentAlignment.TopLeft; this.GK31.UseVisualStyleBackColor = true; this.GK31.Click += new EventHandler(this.GK31_Click); this.GK21.BackgroundImageLayout = ImageLayout.Stretch; this.GK21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK21.FlatAppearance.BorderSize = 2; this.GK21.FlatAppearance.CheckedBackColor = Color.Black; this.GK21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK21.FlatStyle = FlatStyle.Flat; this.GK21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK21.ForeColor = SystemColors.ActiveCaptionText; this.GK21.Location = new Point(15, 0xc6); this.GK21.Name = "GK21"; this.GK21.Size = new Size(40, 40); this.GK21.TabIndex = 0x88; this.GK21.Text = "21"; this.GK21.TextAlign = ContentAlignment.TopLeft; this.GK21.UseVisualStyleBackColor = true; this.GK21.Click += new EventHandler(this.GK21_Click); this.GK30.BackgroundImageLayout = ImageLayout.Stretch; this.GK30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK30.FlatAppearance.BorderSize = 2; this.GK30.FlatAppearance.CheckedBackColor = Color.Black; this.GK30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK30.FlatStyle = FlatStyle.Flat; this.GK30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK30.ForeColor = SystemColors.ActiveCaptionText; this.GK30.Location = new Point(0xc6, 0xf4); this.GK30.Name = "GK30"; this.GK30.Size = new Size(40, 40); this.GK30.TabIndex = 0x91; this.GK30.Text = "30"; this.GK30.TextAlign = ContentAlignment.TopLeft; this.GK30.UseVisualStyleBackColor = true; this.GK30.Click += new EventHandler(this.GK30_Click); this.GK22.BackgroundImageLayout = ImageLayout.Stretch; this.GK22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK22.FlatAppearance.BorderSize = 2; this.GK22.FlatAppearance.CheckedBackColor = Color.Black; this.GK22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK22.FlatStyle = FlatStyle.Flat; this.GK22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK22.ForeColor = SystemColors.ActiveCaptionText; this.GK22.Location = new Point(0x3d, 0xc6); this.GK22.Name = "GK22"; this.GK22.Size = new Size(40, 40); this.GK22.TabIndex = 0x89; this.GK22.Text = "22"; this.GK22.TextAlign = ContentAlignment.TopLeft; this.GK22.UseVisualStyleBackColor = true; this.GK22.Click += new EventHandler(this.GK22_Click); this.GK29.BackgroundImageLayout = ImageLayout.Stretch; this.GK29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK29.FlatAppearance.BorderSize = 2; this.GK29.FlatAppearance.CheckedBackColor = Color.Black; this.GK29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK29.FlatStyle = FlatStyle.Flat; this.GK29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK29.ForeColor = SystemColors.ActiveCaptionText; this.GK29.Location = new Point(0x99, 0xf4); this.GK29.Name = "GK29"; this.GK29.Size = new Size(40, 40); this.GK29.TabIndex = 0x90; this.GK29.Text = "29"; this.GK29.TextAlign = ContentAlignment.TopLeft; this.GK29.UseVisualStyleBackColor = true; this.GK29.Click += new EventHandler(this.GK29_Click); this.GK23.BackgroundImageLayout = ImageLayout.Stretch; this.GK23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK23.FlatAppearance.BorderSize = 2; this.GK23.FlatAppearance.CheckedBackColor = Color.Black; this.GK23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK23.FlatStyle = FlatStyle.Flat; this.GK23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK23.ForeColor = SystemColors.ActiveCaptionText; this.GK23.Location = new Point(0x6b, 0xc6); this.GK23.Name = "GK23"; this.GK23.Size = new Size(40, 40); this.GK23.TabIndex = 0x8a; this.GK23.Text = "23"; this.GK23.TextAlign = ContentAlignment.TopLeft; this.GK23.UseVisualStyleBackColor = true; this.GK23.Click += new EventHandler(this.GK23_Click); this.GK28.BackgroundImageLayout = ImageLayout.Stretch; this.GK28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK28.FlatAppearance.BorderSize = 2; this.GK28.FlatAppearance.CheckedBackColor = Color.Black; this.GK28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK28.FlatStyle = FlatStyle.Flat; this.GK28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK28.ForeColor = SystemColors.ActiveCaptionText; this.GK28.Location = new Point(0x6b, 0xf4); this.GK28.Name = "GK28"; this.GK28.Size = new Size(40, 40); this.GK28.TabIndex = 0x8f; this.GK28.Text = "28"; this.GK28.TextAlign = ContentAlignment.TopLeft; this.GK28.UseVisualStyleBackColor = true; this.GK28.Click += new EventHandler(this.GK28_Click); this.GK24.BackgroundImageLayout = ImageLayout.Stretch; this.GK24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK24.FlatAppearance.BorderSize = 2; this.GK24.FlatAppearance.CheckedBackColor = Color.Black; this.GK24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK24.FlatStyle = FlatStyle.Flat; this.GK24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK24.ForeColor = SystemColors.ActiveCaptionText; this.GK24.Location = new Point(0x99, 0xc6); this.GK24.Name = "GK24"; this.GK24.Size = new Size(40, 40); this.GK24.TabIndex = 0x8b; this.GK24.Text = "24"; this.GK24.TextAlign = ContentAlignment.TopLeft; this.GK24.UseVisualStyleBackColor = true; this.GK24.Click += new EventHandler(this.GK24_Click); this.GK27.BackgroundImageLayout = ImageLayout.Stretch; this.GK27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK27.FlatAppearance.BorderSize = 2; this.GK27.FlatAppearance.CheckedBackColor = Color.Black; this.GK27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK27.FlatStyle = FlatStyle.Flat; this.GK27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK27.ForeColor = SystemColors.ActiveCaptionText; this.GK27.Location = new Point(0x3d, 0xf4); this.GK27.Name = "GK27"; this.GK27.Size = new Size(40, 40); this.GK27.TabIndex = 0x8e; this.GK27.Text = "27"; this.GK27.TextAlign = ContentAlignment.TopLeft; this.GK27.UseVisualStyleBackColor = true; this.GK27.Click += new EventHandler(this.GK27_Click); this.GK25.BackgroundImageLayout = ImageLayout.Stretch; this.GK25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK25.FlatAppearance.BorderSize = 2; this.GK25.FlatAppearance.CheckedBackColor = Color.Black; this.GK25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK25.FlatStyle = FlatStyle.Flat; this.GK25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK25.ForeColor = SystemColors.ActiveCaptionText; this.GK25.Location = new Point(0xc6, 0xc6); this.GK25.Name = "GK25"; this.GK25.Size = new Size(40, 40); this.GK25.TabIndex = 140; this.GK25.Text = "25"; this.GK25.TextAlign = ContentAlignment.TopLeft; this.GK25.UseVisualStyleBackColor = true; this.GK25.Click += new EventHandler(this.GK25_Click); this.GK26.BackgroundImageLayout = ImageLayout.Stretch; this.GK26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK26.FlatAppearance.BorderSize = 2; this.GK26.FlatAppearance.CheckedBackColor = Color.Black; this.GK26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK26.FlatStyle = FlatStyle.Flat; this.GK26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK26.ForeColor = SystemColors.ActiveCaptionText; this.GK26.Location = new Point(15, 0xf4); this.GK26.Name = "GK26"; this.GK26.Size = new Size(40, 40); this.GK26.TabIndex = 0x8d; this.GK26.Text = "26"; this.GK26.TextAlign = ContentAlignment.TopLeft; this.GK26.UseVisualStyleBackColor = true; this.GK26.Click += new EventHandler(this.GK26_Click); this.refr4GK.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.refr4GK.BackColor = Color.White; this.refr4GK.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.refr4GK.Location = new Point(0x4d, 0x199); this.refr4GK.Multiline = true; this.refr4GK.Name = "refr4GK"; this.refr4GK.ReadOnly = true; this.refr4GK.ScrollBars = ScrollBars.Vertical; this.refr4GK.Size = new Size(0x2a5, 0x7c); this.refr4GK.TabIndex = 0x52; this.panel5.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel5.BackColor = Color.Transparent; this.panel5.Controls.Add(this.GKopd); this.panel5.Controls.Add(this.GKopc); this.panel5.Controls.Add(this.GKopb); this.panel5.Controls.Add(this.GKopa); this.panel5.Controls.Add(this.metroRadioButton9); this.panel5.Controls.Add(this.metroRadioButton10); this.panel5.Controls.Add(this.metroRadioButton11); this.panel5.Controls.Add(this.metroRadioButton12); this.panel5.Location = new Point(0x4d, 0x10f); this.panel5.Name = "panel5"; this.panel5.Size = new Size(0x2a5, 0x84); this.panel5.TabIndex = 0x51; this.GKopd.AutoSize = true; this.GKopd.Font = new Font("Britannic Bold", 11.25f); this.GKopd.Location = new Point(0x38, 0x6f); this.GKopd.Name = "GKopd"; this.GKopd.Size = new Size(0x24, 0x10); this.GKopd.TabIndex = 0x73; this.GKopd.Text = "OpD"; this.GKopc.AutoSize = true; this.GKopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.GKopc.Location = new Point(0x38, 0x4d); this.GKopc.Name = "GKopc"; this.GKopc.Size = new Size(0x23, 0x10); this.GKopc.TabIndex = 0x72; this.GKopc.Text = "OpC"; this.GKopb.AutoSize = true; this.GKopb.Font = new Font("Britannic Bold", 11.25f); this.GKopb.Location = new Point(0x36, 0x2d); this.GKopb.Name = "GKopb"; this.GKopb.Size = new Size(0x23, 0x10); this.GKopb.TabIndex = 0x71; this.GKopb.Text = "OpB"; this.GKopa.AutoSize = true; this.GKopa.Font = new Font("Britannic Bold", 11.25f); this.GKopa.Location = new Point(0x36, 10); this.GKopa.Name = "GKopa"; this.GKopa.Size = new Size(0x22, 0x10); this.GKopa.TabIndex = 0x70; this.GKopa.Text = "OpA"; this.metroRadioButton9.AutoSize = true; this.metroRadioButton9.Location = new Point(0x11, 11); this.metroRadioButton9.Name = "metroRadioButton9"; this.metroRadioButton9.Size = new Size(0x1f, 15); this.metroRadioButton9.Style = MetroColorStyle.Blue; this.metroRadioButton9.TabIndex = 0x1b; this.metroRadioButton9.TabStop = true; this.metroRadioButton9.Text = "A"; this.metroRadioButton9.Theme = MetroThemeStyle.Light; this.metroRadioButton9.UseSelectable = true; this.metroRadioButton9.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton9.Click += new EventHandler(this.radioButton_Click4GK); this.metroRadioButton10.AutoSize = true; this.metroRadioButton10.Location = new Point(0x11, 0x2e); this.metroRadioButton10.Name = "metroRadioButton10"; this.metroRadioButton10.Size = new Size(30, 15); this.metroRadioButton10.Style = MetroColorStyle.Blue; this.metroRadioButton10.TabIndex = 0x1c; this.metroRadioButton10.TabStop = true; this.metroRadioButton10.Text = "B"; this.metroRadioButton10.Theme = MetroThemeStyle.Light; this.metroRadioButton10.UseSelectable = true; this.metroRadioButton10.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton10.Click += new EventHandler(this.radioButton_Click4GK); this.metroRadioButton11.AutoSize = true; this.metroRadioButton11.Location = new Point(0x11, 0x4d); this.metroRadioButton11.Name = "metroRadioButton11"; this.metroRadioButton11.Size = new Size(0x1f, 15); this.metroRadioButton11.Style = MetroColorStyle.Blue; this.metroRadioButton11.TabIndex = 0x1d; this.metroRadioButton11.TabStop = true; this.metroRadioButton11.Text = "C"; this.metroRadioButton11.Theme = MetroThemeStyle.Light; this.metroRadioButton11.UseSelectable = true; this.metroRadioButton11.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton11.Click += new EventHandler(this.radioButton_Click4GK); this.metroRadioButton12.AutoSize = true; this.metroRadioButton12.Location = new Point(0x11, 0x6f); this.metroRadioButton12.Name = "metroRadioButton12"; this.metroRadioButton12.Size = new Size(0x1f, 15); this.metroRadioButton12.Style = MetroColorStyle.Blue; this.metroRadioButton12.TabIndex = 30; this.metroRadioButton12.TabStop = true; this.metroRadioButton12.Text = "D"; this.metroRadioButton12.Theme = MetroThemeStyle.Light; this.metroRadioButton12.UseSelectable = true; this.metroRadioButton12.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton12.Click += new EventHandler(this.radioButton_Click4GK); this.sec3.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec3.BackColor = Color.White; this.sec3.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec3.Location = new Point(0x4d, 3); this.sec3.Multiline = true; this.sec3.Name = "sec3"; this.sec3.ReadOnly = true; this.sec3.ScrollBars = ScrollBars.Vertical; this.sec3.Size = new Size(0x2a5, 0x106); this.sec3.TabIndex = 0x18; this.RSNtab.Controls.Add(this.markandnextRSN); this.RSNtab.Controls.Add(this.panel16); this.RSNtab.Controls.Add(this.label6); this.RSNtab.Controls.Add(this.savennextRSN); this.RSNtab.Controls.Add(this.panel9); this.RSNtab.Controls.Add(this.refrRSN); this.RSNtab.Controls.Add(this.panel10); this.RSNtab.Controls.Add(this.sec4); this.RSNtab.Controls.Add(this.panel20); this.RSNtab.HorizontalScrollbarBarColor = true; this.RSNtab.HorizontalScrollbarHighlightOnWheel = false; this.RSNtab.HorizontalScrollbarSize = 10; this.RSNtab.Location = new Point(4, 0x23); this.RSNtab.Name = "RSNtab"; this.RSNtab.Size = new Size(0x3f8, 0x2d9); this.RSNtab.Style = MetroColorStyle.Blue; this.RSNtab.TabIndex = 3; this.RSNtab.Text = "Reasoning"; this.RSNtab.Theme = MetroThemeStyle.Light; this.RSNtab.VerticalScrollbarBarColor = true; this.RSNtab.VerticalScrollbarHighlightOnWheel = false; this.RSNtab.VerticalScrollbarSize = 10; this.panel20.BackColor = Color.Transparent; this.panel20.Controls.Add(this.textBox13); this.panel20.Controls.Add(this.chkansRSN); this.panel20.Controls.Add(this.metroLabel13); this.panel20.Controls.Add(this.ans4RSN); this.panel20.Controls.Add(this.metroLabel14); this.panel20.Controls.Add(this.secnameRSN); this.panel20.Controls.Add(this.metroLabel15); this.panel20.Controls.Add(this.metroLabel16); this.panel20.Location = new Point(0x354, 6); this.panel20.Name = "panel20"; this.panel20.Size = new Size(0x90, 270); this.panel20.TabIndex = 0x66; this.panel20.Visible = false; this.textBox13.Location = new Point(0x18, 0x13); this.textBox13.Multiline = true; this.textBox13.Name = "textBox13"; this.textBox13.Size = new Size(0x18, 0x1b); this.textBox13.TabIndex = 0x5b; this.textBox13.Text = "1"; this.chkansRSN.Location = new Point(0x18, 0x34); this.chkansRSN.Name = "chkansRSN"; this.chkansRSN.Size = new Size(40, 20); this.chkansRSN.TabIndex = 90; this.metroLabel13.AutoSize = true; this.metroLabel13.FontWeight = MetroLabelWeight.Bold; this.metroLabel13.Location = new Point(0x45, 0xc5); this.metroLabel13.Name = "metroLabel13"; this.metroLabel13.Size = new Size(0x3d, 0x13); this.metroLabel13.Style = MetroColorStyle.Black; this.metroLabel13.TabIndex = 0x17; this.metroLabel13.Text = "option4"; this.metroLabel13.Theme = MetroThemeStyle.Light; this.metroLabel13.UseStyleColors = true; this.ans4RSN.Location = new Point(0x5e, 0x34); this.ans4RSN.Name = "ans4RSN"; this.ans4RSN.Size = new Size(40, 20); this.ans4RSN.TabIndex = 0x5d; this.metroLabel14.AutoSize = true; this.metroLabel14.FontWeight = MetroLabelWeight.Bold; this.metroLabel14.Location = new Point(0x45, 0xa6); this.metroLabel14.Name = "metroLabel14"; this.metroLabel14.Size = new Size(0x3d, 0x13); this.metroLabel14.Style = MetroColorStyle.Black; this.metroLabel14.TabIndex = 0x18; this.metroLabel14.Text = "option3"; this.metroLabel14.Theme = MetroThemeStyle.Light; this.metroLabel14.UseStyleColors = true; this.secnameRSN.AutoSize = true; this.secnameRSN.Location = new Point(0x47, 0x13); this.secnameRSN.Name = "secnameRSN"; this.secnameRSN.Size = new Size(30, 13); this.secnameRSN.TabIndex = 0x5e; this.secnameRSN.Text = "RSN"; this.metroLabel15.AutoSize = true; this.metroLabel15.FontWeight = MetroLabelWeight.Bold; this.metroLabel15.Location = new Point(0x36, 0x8e); this.metroLabel15.Name = "metroLabel15"; this.metroLabel15.Size = new Size(0x3d, 0x13); this.metroLabel15.Style = MetroColorStyle.Black; this.metroLabel15.TabIndex = 0x19; this.metroLabel15.Text = "option2"; this.metroLabel15.Theme = MetroThemeStyle.Light; this.metroLabel15.UseStyleColors = true; this.metroLabel16.AutoSize = true; this.metroLabel16.FontWeight = MetroLabelWeight.Bold; this.metroLabel16.Location = new Point(0x36, 0x7b); this.metroLabel16.Name = "metroLabel16"; this.metroLabel16.Size = new Size(0x3d, 0x13); this.metroLabel16.Style = MetroColorStyle.Black; this.metroLabel16.TabIndex = 0x1a; this.metroLabel16.Text = "option1"; this.metroLabel16.Theme = MetroThemeStyle.Light; this.metroLabel16.UseStyleColors = true; this.markandnextRSN.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextRSN.Location = new Point(0x2f5, 0x196); this.markandnextRSN.Name = "markandnextRSN"; this.markandnextRSN.Size = new Size(0x79, 0x2d); this.markandnextRSN.Style = MetroColorStyle.Blue; this.markandnextRSN.TabIndex = 0x65; this.markandnextRSN.Text = "Mark and Next"; this.markandnextRSN.Theme = MetroThemeStyle.Light; this.markandnextRSN.UseSelectable = true; this.markandnextRSN.Click += new EventHandler(this.markandnextRSN_Click); this.panel16.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel16.BackColor = SystemColors.InactiveCaptionText; this.panel16.Controls.Add(this.metroLabel37); this.panel16.Controls.Add(this.pictureBox14); this.panel16.Controls.Add(this.metroLabel38); this.panel16.Controls.Add(this.metroLabel39); this.panel16.Controls.Add(this.metroLabel40); this.panel16.Controls.Add(this.pictureBox15); this.panel16.Controls.Add(this.pictureBox16); this.panel16.Controls.Add(this.pictureBox17); this.panel16.Location = new Point(0x2f5, 0x1c6); this.panel16.Name = "panel16"; this.panel16.Size = new Size(0x106, 0xb2); this.panel16.TabIndex = 100; this.metroLabel37.AutoSize = true; this.metroLabel37.BackColor = Color.Transparent; this.metroLabel37.FontWeight = MetroLabelWeight.Bold; this.metroLabel37.Location = new Point(0x3b, 0x94); this.metroLabel37.Name = "metroLabel37"; this.metroLabel37.Size = new Size(0x8b, 0x13); this.metroLabel37.Style = MetroColorStyle.Purple; this.metroLabel37.TabIndex = 0x65; this.metroLabel37.Text = "Marked For Review"; this.metroLabel37.Theme = MetroThemeStyle.Dark; this.metroLabel37.UseCustomBackColor = true; this.metroLabel37.UseStyleColors = true; this.pictureBox14.BackColor = Color.White; this.pictureBox14.Image = Resources.rvw; this.pictureBox14.Location = new Point(3, 0x8f); this.pictureBox14.Name = "pictureBox14"; this.pictureBox14.Size = new Size(30, 30); this.pictureBox14.TabIndex = 100; this.pictureBox14.TabStop = false; this.metroLabel38.AutoSize = true; this.metroLabel38.BackColor = Color.Transparent; this.metroLabel38.FontWeight = MetroLabelWeight.Bold; this.metroLabel38.Location = new Point(60, 0x63); this.metroLabel38.Name = "metroLabel38"; this.metroLabel38.Size = new Size(0x53, 0x13); this.metroLabel38.Style = MetroColorStyle.White; this.metroLabel38.TabIndex = 0x63; this.metroLabel38.Text = "Not Visited"; this.metroLabel38.Theme = MetroThemeStyle.Dark; this.metroLabel38.UseCustomBackColor = true; this.metroLabel38.UseStyleColors = true; this.metroLabel39.AutoSize = true; this.metroLabel39.BackColor = Color.Transparent; this.metroLabel39.FontWeight = MetroLabelWeight.Bold; this.metroLabel39.Location = new Point(60, 0x35); this.metroLabel39.Name = "metroLabel39"; this.metroLabel39.Size = new Size(0x68, 0x13); this.metroLabel39.Style = MetroColorStyle.Red; this.metroLabel39.TabIndex = 0x62; this.metroLabel39.Text = "Not Answered"; this.metroLabel39.Theme = MetroThemeStyle.Dark; this.metroLabel39.UseCustomBackColor = true; this.metroLabel39.UseStyleColors = true; this.metroLabel40.AutoSize = true; this.metroLabel40.BackColor = Color.Transparent; this.metroLabel40.FontWeight = MetroLabelWeight.Bold; this.metroLabel40.Location = new Point(60, 7); this.metroLabel40.Name = "metroLabel40"; this.metroLabel40.Size = new Size(0x4b, 0x13); this.metroLabel40.Style = MetroColorStyle.Green; this.metroLabel40.TabIndex = 0x5f; this.metroLabel40.Text = "Answered"; this.metroLabel40.Theme = MetroThemeStyle.Dark; this.metroLabel40.UseCustomBackColor = true; this.metroLabel40.UseStyleColors = true; this.pictureBox15.BackColor = Color.White; this.pictureBox15.Location = new Point(3, 0x5f); this.pictureBox15.Name = "pictureBox15"; this.pictureBox15.Size = new Size(30, 30); this.pictureBox15.TabIndex = 0x61; this.pictureBox15.TabStop = false; this.pictureBox16.Image = Resources.unchk; this.pictureBox16.Location = new Point(3, 0x31); this.pictureBox16.Name = "pictureBox16"; this.pictureBox16.Size = new Size(30, 30); this.pictureBox16.TabIndex = 0x60; this.pictureBox16.TabStop = false; this.pictureBox17.Image = Resources.chk1; this.pictureBox17.Location = new Point(3, 3); this.pictureBox17.Name = "pictureBox17"; this.pictureBox17.Size = new Size(30, 30); this.pictureBox17.TabIndex = 0x5f; this.pictureBox17.TabStop = false; this.label6.AutoSize = true; this.label6.Location = new Point(10, 6); this.label6.Name = "label6"; this.label6.Size = new Size(0x3a, 13); this.label6.TabIndex = 0x5c; this.label6.Text = "Question 1"; this.savennextRSN.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextRSN.Location = new Point(0x37b, 0x196); this.savennextRSN.Name = "savennextRSN"; this.savennextRSN.Size = new Size(0x80, 0x2d); this.savennextRSN.Style = MetroColorStyle.Blue; this.savennextRSN.TabIndex = 0x59; this.savennextRSN.Text = "Save and Next"; this.savennextRSN.Theme = MetroThemeStyle.Light; this.savennextRSN.UseSelectable = true; this.savennextRSN.Click += new EventHandler(this.metroButton4_Click); this.panel9.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel9.AutoScroll = true; this.panel9.BackColor = Color.Transparent; this.panel9.BorderStyle = BorderStyle.FixedSingle; this.panel9.Controls.Add(this.RSN1); this.panel9.Controls.Add(this.RSN50); this.panel9.Controls.Add(this.RSN2); this.panel9.Controls.Add(this.RSN49); this.panel9.Controls.Add(this.RSN3); this.panel9.Controls.Add(this.RSN48); this.panel9.Controls.Add(this.RSN4); this.panel9.Controls.Add(this.RSN47); this.panel9.Controls.Add(this.RSN5); this.panel9.Controls.Add(this.RSN46); this.panel9.Controls.Add(this.RSN6); this.panel9.Controls.Add(this.RSN45); this.panel9.Controls.Add(this.RSN7); this.panel9.Controls.Add(this.RSN44); this.panel9.Controls.Add(this.RSN8); this.panel9.Controls.Add(this.RSN43); this.panel9.Controls.Add(this.RSN9); this.panel9.Controls.Add(this.RSN42); this.panel9.Controls.Add(this.RSN10); this.panel9.Controls.Add(this.RSN41); this.panel9.Controls.Add(this.RSN11); this.panel9.Controls.Add(this.RSN40); this.panel9.Controls.Add(this.RSN12); this.panel9.Controls.Add(this.RSN39); this.panel9.Controls.Add(this.RSN13); this.panel9.Controls.Add(this.RSN38); this.panel9.Controls.Add(this.RSN14); this.panel9.Controls.Add(this.RSN37); this.panel9.Controls.Add(this.RSN15); this.panel9.Controls.Add(this.RSN36); this.panel9.Controls.Add(this.RSN16); this.panel9.Controls.Add(this.RSN35); this.panel9.Controls.Add(this.RSN17); this.panel9.Controls.Add(this.RSN34); this.panel9.Controls.Add(this.RSN18); this.panel9.Controls.Add(this.RSN33); this.panel9.Controls.Add(this.RSN19); this.panel9.Controls.Add(this.RSN32); this.panel9.Controls.Add(this.RSN20); this.panel9.Controls.Add(this.RSN31); this.panel9.Controls.Add(this.RSN21); this.panel9.Controls.Add(this.RSN30); this.panel9.Controls.Add(this.RSN22); this.panel9.Controls.Add(this.RSN29); this.panel9.Controls.Add(this.RSN23); this.panel9.Controls.Add(this.RSN28); this.panel9.Controls.Add(this.RSN24); this.panel9.Controls.Add(this.RSN27); this.panel9.Controls.Add(this.RSN25); this.panel9.Controls.Add(this.RSN26); this.panel9.Location = new Point(0x2f5, 2); this.panel9.Name = "panel9"; this.panel9.Size = new Size(0x106, 0x191); this.panel9.TabIndex = 0x58; this.panel9.Paint += new PaintEventHandler(this.panel9_Paint); this.RSN1.BackgroundImageLayout = ImageLayout.Stretch; this.RSN1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN1.FlatAppearance.BorderSize = 2; this.RSN1.FlatAppearance.CheckedBackColor = Color.Black; this.RSN1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN1.FlatStyle = FlatStyle.Flat; this.RSN1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN1.ForeColor = SystemColors.ActiveCaptionText; this.RSN1.Location = new Point(15, 14); this.RSN1.Name = "RSN1"; this.RSN1.Size = new Size(40, 40); this.RSN1.TabIndex = 0x74; this.RSN1.Text = "1"; this.RSN1.TextAlign = ContentAlignment.TopLeft; this.RSN1.UseVisualStyleBackColor = true; this.RSN1.Click += new EventHandler(this.RSN1_Click); this.RSN50.BackgroundImageLayout = ImageLayout.Stretch; this.RSN50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN50.FlatAppearance.BorderSize = 2; this.RSN50.FlatAppearance.CheckedBackColor = Color.Black; this.RSN50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN50.FlatStyle = FlatStyle.Flat; this.RSN50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN50.ForeColor = SystemColors.ActiveCaptionText; this.RSN50.Location = new Point(0xc6, 0x1ac); this.RSN50.Name = "RSN50"; this.RSN50.Size = new Size(40, 40); this.RSN50.TabIndex = 0xa5; this.RSN50.Text = "50"; this.RSN50.TextAlign = ContentAlignment.TopLeft; this.RSN50.UseVisualStyleBackColor = true; this.RSN50.Click += new EventHandler(this.RSN50_Click); this.RSN2.BackgroundImageLayout = ImageLayout.Stretch; this.RSN2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN2.FlatAppearance.BorderSize = 2; this.RSN2.FlatAppearance.CheckedBackColor = Color.Black; this.RSN2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN2.FlatStyle = FlatStyle.Flat; this.RSN2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN2.ForeColor = SystemColors.ActiveCaptionText; this.RSN2.Location = new Point(0x3d, 14); this.RSN2.Name = "RSN2"; this.RSN2.Size = new Size(40, 40); this.RSN2.TabIndex = 0x75; this.RSN2.Text = "2"; this.RSN2.TextAlign = ContentAlignment.TopLeft; this.RSN2.UseVisualStyleBackColor = true; this.RSN2.Click += new EventHandler(this.RSN2_Click); this.RSN49.BackgroundImageLayout = ImageLayout.Stretch; this.RSN49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN49.FlatAppearance.BorderSize = 2; this.RSN49.FlatAppearance.CheckedBackColor = Color.Black; this.RSN49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN49.FlatStyle = FlatStyle.Flat; this.RSN49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN49.ForeColor = SystemColors.ActiveCaptionText; this.RSN49.Location = new Point(0x99, 0x1ac); this.RSN49.Name = "RSN49"; this.RSN49.Size = new Size(40, 40); this.RSN49.TabIndex = 0xa4; this.RSN49.Text = "49"; this.RSN49.TextAlign = ContentAlignment.TopLeft; this.RSN49.UseVisualStyleBackColor = true; this.RSN49.Click += new EventHandler(this.RSN49_Click); this.RSN3.BackgroundImageLayout = ImageLayout.Stretch; this.RSN3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN3.FlatAppearance.BorderSize = 2; this.RSN3.FlatAppearance.CheckedBackColor = Color.Black; this.RSN3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN3.FlatStyle = FlatStyle.Flat; this.RSN3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN3.ForeColor = SystemColors.ActiveCaptionText; this.RSN3.Location = new Point(0x6b, 14); this.RSN3.Name = "RSN3"; this.RSN3.Size = new Size(40, 40); this.RSN3.TabIndex = 0x76; this.RSN3.Text = "3"; this.RSN3.TextAlign = ContentAlignment.TopLeft; this.RSN3.UseVisualStyleBackColor = true; this.RSN3.Click += new EventHandler(this.RSN3_Click); this.RSN48.BackgroundImageLayout = ImageLayout.Stretch; this.RSN48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN48.FlatAppearance.BorderSize = 2; this.RSN48.FlatAppearance.CheckedBackColor = Color.Black; this.RSN48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN48.FlatStyle = FlatStyle.Flat; this.RSN48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN48.ForeColor = SystemColors.ActiveCaptionText; this.RSN48.Location = new Point(0x6b, 0x1ac); this.RSN48.Name = "RSN48"; this.RSN48.Size = new Size(40, 40); this.RSN48.TabIndex = 0xa3; this.RSN48.Text = "48"; this.RSN48.TextAlign = ContentAlignment.TopLeft; this.RSN48.UseVisualStyleBackColor = true; this.RSN48.Click += new EventHandler(this.RSN48_Click); this.RSN4.BackgroundImageLayout = ImageLayout.Stretch; this.RSN4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN4.FlatAppearance.BorderSize = 2; this.RSN4.FlatAppearance.CheckedBackColor = Color.Black; this.RSN4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN4.FlatStyle = FlatStyle.Flat; this.RSN4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN4.ForeColor = SystemColors.ActiveCaptionText; this.RSN4.Location = new Point(0x99, 14); this.RSN4.Name = "RSN4"; this.RSN4.Size = new Size(40, 40); this.RSN4.TabIndex = 0x77; this.RSN4.Text = "4"; this.RSN4.TextAlign = ContentAlignment.TopLeft; this.RSN4.UseVisualStyleBackColor = true; this.RSN4.Click += new EventHandler(this.RSN4_Click); this.RSN47.BackgroundImageLayout = ImageLayout.Stretch; this.RSN47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN47.FlatAppearance.BorderSize = 2; this.RSN47.FlatAppearance.CheckedBackColor = Color.Black; this.RSN47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN47.FlatStyle = FlatStyle.Flat; this.RSN47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN47.ForeColor = SystemColors.ActiveCaptionText; this.RSN47.Location = new Point(0x3d, 0x1ac); this.RSN47.Name = "RSN47"; this.RSN47.Size = new Size(40, 40); this.RSN47.TabIndex = 0xa2; this.RSN47.Text = "47"; this.RSN47.TextAlign = ContentAlignment.TopLeft; this.RSN47.UseVisualStyleBackColor = true; this.RSN47.Click += new EventHandler(this.RSN47_Click); this.RSN5.BackgroundImageLayout = ImageLayout.Stretch; this.RSN5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN5.FlatAppearance.BorderSize = 2; this.RSN5.FlatAppearance.CheckedBackColor = Color.Black; this.RSN5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN5.FlatStyle = FlatStyle.Flat; this.RSN5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN5.ForeColor = SystemColors.ActiveCaptionText; this.RSN5.Location = new Point(0xc6, 14); this.RSN5.Name = "RSN5"; this.RSN5.Size = new Size(40, 40); this.RSN5.TabIndex = 120; this.RSN5.Text = "5"; this.RSN5.TextAlign = ContentAlignment.TopLeft; this.RSN5.UseVisualStyleBackColor = true; this.RSN5.Click += new EventHandler(this.RSN5_Click); this.RSN46.BackgroundImageLayout = ImageLayout.Stretch; this.RSN46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN46.FlatAppearance.BorderSize = 2; this.RSN46.FlatAppearance.CheckedBackColor = Color.Black; this.RSN46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN46.FlatStyle = FlatStyle.Flat; this.RSN46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN46.ForeColor = SystemColors.ActiveCaptionText; this.RSN46.Location = new Point(15, 0x1ac); this.RSN46.Name = "RSN46"; this.RSN46.Size = new Size(40, 40); this.RSN46.TabIndex = 0xa1; this.RSN46.Text = "46"; this.RSN46.TextAlign = ContentAlignment.TopLeft; this.RSN46.UseVisualStyleBackColor = true; this.RSN46.Click += new EventHandler(this.RSN46_Click); this.RSN6.BackgroundImageLayout = ImageLayout.Stretch; this.RSN6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN6.FlatAppearance.BorderSize = 2; this.RSN6.FlatAppearance.CheckedBackColor = Color.Black; this.RSN6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN6.FlatStyle = FlatStyle.Flat; this.RSN6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN6.ForeColor = SystemColors.ActiveCaptionText; this.RSN6.Location = new Point(15, 60); this.RSN6.Name = "RSN6"; this.RSN6.Size = new Size(40, 40); this.RSN6.TabIndex = 0x79; this.RSN6.Text = "6"; this.RSN6.TextAlign = ContentAlignment.TopLeft; this.RSN6.UseVisualStyleBackColor = true; this.RSN6.Click += new EventHandler(this.RSN6_Click); this.RSN45.BackgroundImageLayout = ImageLayout.Stretch; this.RSN45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN45.FlatAppearance.BorderSize = 2; this.RSN45.FlatAppearance.CheckedBackColor = Color.Black; this.RSN45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN45.FlatStyle = FlatStyle.Flat; this.RSN45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN45.ForeColor = SystemColors.ActiveCaptionText; this.RSN45.Location = new Point(0xc6, 0x17e); this.RSN45.Name = "RSN45"; this.RSN45.Size = new Size(40, 40); this.RSN45.TabIndex = 160; this.RSN45.Text = "45"; this.RSN45.TextAlign = ContentAlignment.TopLeft; this.RSN45.UseVisualStyleBackColor = true; this.RSN45.Click += new EventHandler(this.RSN45_Click); this.RSN7.BackgroundImageLayout = ImageLayout.Stretch; this.RSN7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN7.FlatAppearance.BorderSize = 2; this.RSN7.FlatAppearance.CheckedBackColor = Color.Black; this.RSN7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN7.FlatStyle = FlatStyle.Flat; this.RSN7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN7.ForeColor = SystemColors.ActiveCaptionText; this.RSN7.Location = new Point(0x3d, 60); this.RSN7.Name = "RSN7"; this.RSN7.Size = new Size(40, 40); this.RSN7.TabIndex = 0x7a; this.RSN7.Text = "7"; this.RSN7.TextAlign = ContentAlignment.TopLeft; this.RSN7.UseVisualStyleBackColor = true; this.RSN7.Click += new EventHandler(this.RSN7_Click); this.RSN44.BackgroundImageLayout = ImageLayout.Stretch; this.RSN44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN44.FlatAppearance.BorderSize = 2; this.RSN44.FlatAppearance.CheckedBackColor = Color.Black; this.RSN44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN44.FlatStyle = FlatStyle.Flat; this.RSN44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN44.ForeColor = SystemColors.ActiveCaptionText; this.RSN44.Location = new Point(0x99, 0x17e); this.RSN44.Name = "RSN44"; this.RSN44.Size = new Size(40, 40); this.RSN44.TabIndex = 0x9f; this.RSN44.Text = "44"; this.RSN44.TextAlign = ContentAlignment.TopLeft; this.RSN44.UseVisualStyleBackColor = true; this.RSN44.Click += new EventHandler(this.RSN44_Click); this.RSN8.BackgroundImageLayout = ImageLayout.Stretch; this.RSN8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN8.FlatAppearance.BorderSize = 2; this.RSN8.FlatAppearance.CheckedBackColor = Color.Black; this.RSN8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN8.FlatStyle = FlatStyle.Flat; this.RSN8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN8.ForeColor = SystemColors.ActiveCaptionText; this.RSN8.Location = new Point(0x6b, 60); this.RSN8.Name = "RSN8"; this.RSN8.Size = new Size(40, 40); this.RSN8.TabIndex = 0x7b; this.RSN8.Text = "8"; this.RSN8.TextAlign = ContentAlignment.TopLeft; this.RSN8.UseVisualStyleBackColor = true; this.RSN8.Click += new EventHandler(this.RSN8_Click); this.RSN43.BackgroundImageLayout = ImageLayout.Stretch; this.RSN43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN43.FlatAppearance.BorderSize = 2; this.RSN43.FlatAppearance.CheckedBackColor = Color.Black; this.RSN43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN43.FlatStyle = FlatStyle.Flat; this.RSN43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN43.ForeColor = SystemColors.ActiveCaptionText; this.RSN43.Location = new Point(0x6b, 0x17e); this.RSN43.Name = "RSN43"; this.RSN43.Size = new Size(40, 40); this.RSN43.TabIndex = 0x9e; this.RSN43.Text = "43"; this.RSN43.TextAlign = ContentAlignment.TopLeft; this.RSN43.UseVisualStyleBackColor = true; this.RSN43.Click += new EventHandler(this.RSN43_Click); this.RSN9.BackgroundImageLayout = ImageLayout.Stretch; this.RSN9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN9.FlatAppearance.BorderSize = 2; this.RSN9.FlatAppearance.CheckedBackColor = Color.Black; this.RSN9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN9.FlatStyle = FlatStyle.Flat; this.RSN9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN9.ForeColor = SystemColors.ActiveCaptionText; this.RSN9.Location = new Point(0x99, 60); this.RSN9.Name = "RSN9"; this.RSN9.Size = new Size(40, 40); this.RSN9.TabIndex = 0x7c; this.RSN9.Text = "9"; this.RSN9.TextAlign = ContentAlignment.TopLeft; this.RSN9.UseVisualStyleBackColor = true; this.RSN9.Click += new EventHandler(this.RSN9_Click); this.RSN42.BackgroundImageLayout = ImageLayout.Stretch; this.RSN42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN42.FlatAppearance.BorderSize = 2; this.RSN42.FlatAppearance.CheckedBackColor = Color.Black; this.RSN42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN42.FlatStyle = FlatStyle.Flat; this.RSN42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN42.ForeColor = SystemColors.ActiveCaptionText; this.RSN42.Location = new Point(0x3d, 0x17e); this.RSN42.Name = "RSN42"; this.RSN42.Size = new Size(40, 40); this.RSN42.TabIndex = 0x9d; this.RSN42.Text = "42"; this.RSN42.TextAlign = ContentAlignment.TopLeft; this.RSN42.UseVisualStyleBackColor = true; this.RSN42.Click += new EventHandler(this.RSN42_Click); this.RSN10.BackgroundImageLayout = ImageLayout.Stretch; this.RSN10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN10.FlatAppearance.BorderSize = 2; this.RSN10.FlatAppearance.CheckedBackColor = Color.Black; this.RSN10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN10.FlatStyle = FlatStyle.Flat; this.RSN10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN10.ForeColor = SystemColors.ActiveCaptionText; this.RSN10.Location = new Point(0xc6, 60); this.RSN10.Name = "RSN10"; this.RSN10.Size = new Size(40, 40); this.RSN10.TabIndex = 0x7d; this.RSN10.Text = "10"; this.RSN10.TextAlign = ContentAlignment.TopLeft; this.RSN10.UseVisualStyleBackColor = true; this.RSN10.Click += new EventHandler(this.RSN10_Click); this.RSN41.BackgroundImageLayout = ImageLayout.Stretch; this.RSN41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN41.FlatAppearance.BorderSize = 2; this.RSN41.FlatAppearance.CheckedBackColor = Color.Black; this.RSN41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN41.FlatStyle = FlatStyle.Flat; this.RSN41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN41.ForeColor = SystemColors.ActiveCaptionText; this.RSN41.Location = new Point(15, 0x17e); this.RSN41.Name = "RSN41"; this.RSN41.Size = new Size(40, 40); this.RSN41.TabIndex = 0x9c; this.RSN41.Text = "41"; this.RSN41.TextAlign = ContentAlignment.TopLeft; this.RSN41.UseVisualStyleBackColor = true; this.RSN41.Click += new EventHandler(this.RSN41_Click); this.RSN11.BackgroundImageLayout = ImageLayout.Stretch; this.RSN11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN11.FlatAppearance.BorderSize = 2; this.RSN11.FlatAppearance.CheckedBackColor = Color.Black; this.RSN11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN11.FlatStyle = FlatStyle.Flat; this.RSN11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN11.ForeColor = SystemColors.ActiveCaptionText; this.RSN11.Location = new Point(15, 0x6a); this.RSN11.Name = "RSN11"; this.RSN11.Size = new Size(40, 40); this.RSN11.TabIndex = 0x7e; this.RSN11.Text = "11"; this.RSN11.TextAlign = ContentAlignment.TopLeft; this.RSN11.UseVisualStyleBackColor = true; this.RSN11.Click += new EventHandler(this.RSN11_Click); this.RSN40.BackgroundImageLayout = ImageLayout.Stretch; this.RSN40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN40.FlatAppearance.BorderSize = 2; this.RSN40.FlatAppearance.CheckedBackColor = Color.Black; this.RSN40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN40.FlatStyle = FlatStyle.Flat; this.RSN40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN40.ForeColor = SystemColors.ActiveCaptionText; this.RSN40.Location = new Point(0xc6, 0x150); this.RSN40.Name = "RSN40"; this.RSN40.Size = new Size(40, 40); this.RSN40.TabIndex = 0x9b; this.RSN40.Text = "40"; this.RSN40.TextAlign = ContentAlignment.TopLeft; this.RSN40.UseVisualStyleBackColor = true; this.RSN40.Click += new EventHandler(this.RSN40_Click); this.RSN12.BackgroundImageLayout = ImageLayout.Stretch; this.RSN12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN12.FlatAppearance.BorderSize = 2; this.RSN12.FlatAppearance.CheckedBackColor = Color.Black; this.RSN12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN12.FlatStyle = FlatStyle.Flat; this.RSN12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN12.ForeColor = SystemColors.ActiveCaptionText; this.RSN12.Location = new Point(0x3d, 0x6a); this.RSN12.Name = "RSN12"; this.RSN12.Size = new Size(40, 40); this.RSN12.TabIndex = 0x7f; this.RSN12.Text = "12"; this.RSN12.TextAlign = ContentAlignment.TopLeft; this.RSN12.UseVisualStyleBackColor = true; this.RSN12.Click += new EventHandler(this.RSN12_Click); this.RSN39.BackgroundImageLayout = ImageLayout.Stretch; this.RSN39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN39.FlatAppearance.BorderSize = 2; this.RSN39.FlatAppearance.CheckedBackColor = Color.Black; this.RSN39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN39.FlatStyle = FlatStyle.Flat; this.RSN39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN39.ForeColor = SystemColors.ActiveCaptionText; this.RSN39.Location = new Point(0x99, 0x150); this.RSN39.Name = "RSN39"; this.RSN39.Size = new Size(40, 40); this.RSN39.TabIndex = 0x9a; this.RSN39.Text = "39"; this.RSN39.TextAlign = ContentAlignment.TopLeft; this.RSN39.UseVisualStyleBackColor = true; this.RSN39.Click += new EventHandler(this.RSN39_Click); this.RSN13.BackgroundImageLayout = ImageLayout.Stretch; this.RSN13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN13.FlatAppearance.BorderSize = 2; this.RSN13.FlatAppearance.CheckedBackColor = Color.Black; this.RSN13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN13.FlatStyle = FlatStyle.Flat; this.RSN13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN13.ForeColor = SystemColors.ActiveCaptionText; this.RSN13.Location = new Point(0x6b, 0x6a); this.RSN13.Name = "RSN13"; this.RSN13.Size = new Size(40, 40); this.RSN13.TabIndex = 0x80; this.RSN13.Text = "13"; this.RSN13.TextAlign = ContentAlignment.TopLeft; this.RSN13.UseVisualStyleBackColor = true; this.RSN13.Click += new EventHandler(this.RSN13_Click); this.RSN38.BackgroundImageLayout = ImageLayout.Stretch; this.RSN38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN38.FlatAppearance.BorderSize = 2; this.RSN38.FlatAppearance.CheckedBackColor = Color.Black; this.RSN38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN38.FlatStyle = FlatStyle.Flat; this.RSN38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN38.ForeColor = SystemColors.ActiveCaptionText; this.RSN38.Location = new Point(0x6b, 0x150); this.RSN38.Name = "RSN38"; this.RSN38.Size = new Size(40, 40); this.RSN38.TabIndex = 0x99; this.RSN38.Text = "38"; this.RSN38.TextAlign = ContentAlignment.TopLeft; this.RSN38.UseVisualStyleBackColor = true; this.RSN38.Click += new EventHandler(this.RSN38_Click); this.RSN14.BackgroundImageLayout = ImageLayout.Stretch; this.RSN14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN14.FlatAppearance.BorderSize = 2; this.RSN14.FlatAppearance.CheckedBackColor = Color.Black; this.RSN14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN14.FlatStyle = FlatStyle.Flat; this.RSN14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN14.ForeColor = SystemColors.ActiveCaptionText; this.RSN14.Location = new Point(0x99, 0x6a); this.RSN14.Name = "RSN14"; this.RSN14.Size = new Size(40, 40); this.RSN14.TabIndex = 0x81; this.RSN14.Text = "14"; this.RSN14.TextAlign = ContentAlignment.TopLeft; this.RSN14.UseVisualStyleBackColor = true; this.RSN14.Click += new EventHandler(this.RSN14_Click); this.RSN37.BackgroundImageLayout = ImageLayout.Stretch; this.RSN37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN37.FlatAppearance.BorderSize = 2; this.RSN37.FlatAppearance.CheckedBackColor = Color.Black; this.RSN37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN37.FlatStyle = FlatStyle.Flat; this.RSN37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN37.ForeColor = SystemColors.ActiveCaptionText; this.RSN37.Location = new Point(0x3d, 0x150); this.RSN37.Name = "RSN37"; this.RSN37.Size = new Size(40, 40); this.RSN37.TabIndex = 0x98; this.RSN37.Text = "37"; this.RSN37.TextAlign = ContentAlignment.TopLeft; this.RSN37.UseVisualStyleBackColor = true; this.RSN37.Click += new EventHandler(this.RSN37_Click); this.RSN15.BackgroundImageLayout = ImageLayout.Stretch; this.RSN15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN15.FlatAppearance.BorderSize = 2; this.RSN15.FlatAppearance.CheckedBackColor = Color.Black; this.RSN15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN15.FlatStyle = FlatStyle.Flat; this.RSN15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN15.ForeColor = SystemColors.ActiveCaptionText; this.RSN15.Location = new Point(0xc6, 0x6a); this.RSN15.Name = "RSN15"; this.RSN15.Size = new Size(40, 40); this.RSN15.TabIndex = 130; this.RSN15.Text = "15"; this.RSN15.TextAlign = ContentAlignment.TopLeft; this.RSN15.UseVisualStyleBackColor = true; this.RSN15.Click += new EventHandler(this.RSN15_Click); this.RSN36.BackgroundImageLayout = ImageLayout.Stretch; this.RSN36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN36.FlatAppearance.BorderSize = 2; this.RSN36.FlatAppearance.CheckedBackColor = Color.Black; this.RSN36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN36.FlatStyle = FlatStyle.Flat; this.RSN36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN36.ForeColor = SystemColors.ActiveCaptionText; this.RSN36.Location = new Point(15, 0x150); this.RSN36.Name = "RSN36"; this.RSN36.Size = new Size(40, 40); this.RSN36.TabIndex = 0x97; this.RSN36.Text = "36"; this.RSN36.TextAlign = ContentAlignment.TopLeft; this.RSN36.UseVisualStyleBackColor = true; this.RSN36.Click += new EventHandler(this.RSN36_Click); this.RSN16.BackgroundImageLayout = ImageLayout.Stretch; this.RSN16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN16.FlatAppearance.BorderSize = 2; this.RSN16.FlatAppearance.CheckedBackColor = Color.Black; this.RSN16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN16.FlatStyle = FlatStyle.Flat; this.RSN16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN16.ForeColor = SystemColors.ActiveCaptionText; this.RSN16.Location = new Point(15, 0x98); this.RSN16.Name = "RSN16"; this.RSN16.Size = new Size(40, 40); this.RSN16.TabIndex = 0x83; this.RSN16.Text = "16"; this.RSN16.TextAlign = ContentAlignment.TopLeft; this.RSN16.UseVisualStyleBackColor = true; this.RSN16.Click += new EventHandler(this.RSN16_Click); this.RSN35.BackgroundImageLayout = ImageLayout.Stretch; this.RSN35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN35.FlatAppearance.BorderSize = 2; this.RSN35.FlatAppearance.CheckedBackColor = Color.Black; this.RSN35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN35.FlatStyle = FlatStyle.Flat; this.RSN35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN35.ForeColor = SystemColors.ActiveCaptionText; this.RSN35.Location = new Point(0xc6, 290); this.RSN35.Name = "RSN35"; this.RSN35.Size = new Size(40, 40); this.RSN35.TabIndex = 150; this.RSN35.Text = "35"; this.RSN35.TextAlign = ContentAlignment.TopLeft; this.RSN35.UseVisualStyleBackColor = true; this.RSN35.Click += new EventHandler(this.RSN35_Click); this.RSN17.BackgroundImageLayout = ImageLayout.Stretch; this.RSN17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN17.FlatAppearance.BorderSize = 2; this.RSN17.FlatAppearance.CheckedBackColor = Color.Black; this.RSN17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN17.FlatStyle = FlatStyle.Flat; this.RSN17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN17.ForeColor = SystemColors.ActiveCaptionText; this.RSN17.Location = new Point(0x3d, 0x98); this.RSN17.Name = "RSN17"; this.RSN17.Size = new Size(40, 40); this.RSN17.TabIndex = 0x84; this.RSN17.Text = "17"; this.RSN17.TextAlign = ContentAlignment.TopLeft; this.RSN17.UseVisualStyleBackColor = true; this.RSN17.Click += new EventHandler(this.RSN17_Click); this.RSN34.BackgroundImageLayout = ImageLayout.Stretch; this.RSN34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN34.FlatAppearance.BorderSize = 2; this.RSN34.FlatAppearance.CheckedBackColor = Color.Black; this.RSN34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN34.FlatStyle = FlatStyle.Flat; this.RSN34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN34.ForeColor = SystemColors.ActiveCaptionText; this.RSN34.Location = new Point(0x99, 290); this.RSN34.Name = "RSN34"; this.RSN34.Size = new Size(40, 40); this.RSN34.TabIndex = 0x95; this.RSN34.Text = "34"; this.RSN34.TextAlign = ContentAlignment.TopLeft; this.RSN34.UseVisualStyleBackColor = true; this.RSN34.Click += new EventHandler(this.RSN34_Click); this.RSN18.BackgroundImageLayout = ImageLayout.Stretch; this.RSN18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN18.FlatAppearance.BorderSize = 2; this.RSN18.FlatAppearance.CheckedBackColor = Color.Black; this.RSN18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN18.FlatStyle = FlatStyle.Flat; this.RSN18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN18.ForeColor = SystemColors.ActiveCaptionText; this.RSN18.Location = new Point(0x6b, 0x98); this.RSN18.Name = "RSN18"; this.RSN18.Size = new Size(40, 40); this.RSN18.TabIndex = 0x85; this.RSN18.Text = "18"; this.RSN18.TextAlign = ContentAlignment.TopLeft; this.RSN18.UseVisualStyleBackColor = true; this.RSN18.Click += new EventHandler(this.RSN18_Click); this.RSN33.BackgroundImageLayout = ImageLayout.Stretch; this.RSN33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN33.FlatAppearance.BorderSize = 2; this.RSN33.FlatAppearance.CheckedBackColor = Color.Black; this.RSN33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN33.FlatStyle = FlatStyle.Flat; this.RSN33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN33.ForeColor = SystemColors.ActiveCaptionText; this.RSN33.Location = new Point(0x6b, 290); this.RSN33.Name = "RSN33"; this.RSN33.Size = new Size(40, 40); this.RSN33.TabIndex = 0x94; this.RSN33.Text = "33"; this.RSN33.TextAlign = ContentAlignment.TopLeft; this.RSN33.UseVisualStyleBackColor = true; this.RSN33.Click += new EventHandler(this.RSN33_Click); this.RSN19.BackgroundImageLayout = ImageLayout.Stretch; this.RSN19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN19.FlatAppearance.BorderSize = 2; this.RSN19.FlatAppearance.CheckedBackColor = Color.Black; this.RSN19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN19.FlatStyle = FlatStyle.Flat; this.RSN19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN19.ForeColor = SystemColors.ActiveCaptionText; this.RSN19.Location = new Point(0x99, 0x98); this.RSN19.Name = "RSN19"; this.RSN19.Size = new Size(40, 40); this.RSN19.TabIndex = 0x86; this.RSN19.Text = "19"; this.RSN19.TextAlign = ContentAlignment.TopLeft; this.RSN19.UseVisualStyleBackColor = true; this.RSN19.Click += new EventHandler(this.RSN19_Click); this.RSN32.BackgroundImageLayout = ImageLayout.Stretch; this.RSN32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN32.FlatAppearance.BorderSize = 2; this.RSN32.FlatAppearance.CheckedBackColor = Color.Black; this.RSN32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN32.FlatStyle = FlatStyle.Flat; this.RSN32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN32.ForeColor = SystemColors.ActiveCaptionText; this.RSN32.Location = new Point(0x3d, 290); this.RSN32.Name = "RSN32"; this.RSN32.Size = new Size(40, 40); this.RSN32.TabIndex = 0x93; this.RSN32.Text = "32"; this.RSN32.TextAlign = ContentAlignment.TopLeft; this.RSN32.UseVisualStyleBackColor = true; this.RSN32.Click += new EventHandler(this.RSN32_Click); this.RSN20.BackgroundImageLayout = ImageLayout.Stretch; this.RSN20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN20.FlatAppearance.BorderSize = 2; this.RSN20.FlatAppearance.CheckedBackColor = Color.Black; this.RSN20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN20.FlatStyle = FlatStyle.Flat; this.RSN20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN20.ForeColor = SystemColors.ActiveCaptionText; this.RSN20.Location = new Point(0xc6, 0x98); this.RSN20.Name = "RSN20"; this.RSN20.Size = new Size(40, 40); this.RSN20.TabIndex = 0x87; this.RSN20.Text = "20"; this.RSN20.TextAlign = ContentAlignment.TopLeft; this.RSN20.UseVisualStyleBackColor = true; this.RSN20.Click += new EventHandler(this.RSN20_Click); this.RSN31.BackgroundImageLayout = ImageLayout.Stretch; this.RSN31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN31.FlatAppearance.BorderSize = 2; this.RSN31.FlatAppearance.CheckedBackColor = Color.Black; this.RSN31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN31.FlatStyle = FlatStyle.Flat; this.RSN31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN31.ForeColor = SystemColors.ActiveCaptionText; this.RSN31.Location = new Point(15, 290); this.RSN31.Name = "RSN31"; this.RSN31.Size = new Size(40, 40); this.RSN31.TabIndex = 0x92; this.RSN31.Text = "31"; this.RSN31.TextAlign = ContentAlignment.TopLeft; this.RSN31.UseVisualStyleBackColor = true; this.RSN31.Click += new EventHandler(this.RSN31_Click); this.RSN21.BackgroundImageLayout = ImageLayout.Stretch; this.RSN21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN21.FlatAppearance.BorderSize = 2; this.RSN21.FlatAppearance.CheckedBackColor = Color.Black; this.RSN21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN21.FlatStyle = FlatStyle.Flat; this.RSN21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN21.ForeColor = SystemColors.ActiveCaptionText; this.RSN21.Location = new Point(15, 0xc6); this.RSN21.Name = "RSN21"; this.RSN21.Size = new Size(40, 40); this.RSN21.TabIndex = 0x88; this.RSN21.Text = "21"; this.RSN21.TextAlign = ContentAlignment.TopLeft; this.RSN21.UseVisualStyleBackColor = true; this.RSN21.Click += new EventHandler(this.RSN21_Click); this.RSN30.BackgroundImageLayout = ImageLayout.Stretch; this.RSN30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN30.FlatAppearance.BorderSize = 2; this.RSN30.FlatAppearance.CheckedBackColor = Color.Black; this.RSN30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN30.FlatStyle = FlatStyle.Flat; this.RSN30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN30.ForeColor = SystemColors.ActiveCaptionText; this.RSN30.Location = new Point(0xc6, 0xf4); this.RSN30.Name = "RSN30"; this.RSN30.Size = new Size(40, 40); this.RSN30.TabIndex = 0x91; this.RSN30.Text = "30"; this.RSN30.TextAlign = ContentAlignment.TopLeft; this.RSN30.UseVisualStyleBackColor = true; this.RSN30.Click += new EventHandler(this.RSN30_Click); this.RSN22.BackgroundImageLayout = ImageLayout.Stretch; this.RSN22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN22.FlatAppearance.BorderSize = 2; this.RSN22.FlatAppearance.CheckedBackColor = Color.Black; this.RSN22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN22.FlatStyle = FlatStyle.Flat; this.RSN22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN22.ForeColor = SystemColors.ActiveCaptionText; this.RSN22.Location = new Point(0x3d, 0xc6); this.RSN22.Name = "RSN22"; this.RSN22.Size = new Size(40, 40); this.RSN22.TabIndex = 0x89; this.RSN22.Text = "22"; this.RSN22.TextAlign = ContentAlignment.TopLeft; this.RSN22.UseVisualStyleBackColor = true; this.RSN22.Click += new EventHandler(this.RSN22_Click); this.RSN29.BackgroundImageLayout = ImageLayout.Stretch; this.RSN29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN29.FlatAppearance.BorderSize = 2; this.RSN29.FlatAppearance.CheckedBackColor = Color.Black; this.RSN29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN29.FlatStyle = FlatStyle.Flat; this.RSN29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN29.ForeColor = SystemColors.ActiveCaptionText; this.RSN29.Location = new Point(0x99, 0xf4); this.RSN29.Name = "RSN29"; this.RSN29.Size = new Size(40, 40); this.RSN29.TabIndex = 0x90; this.RSN29.Text = "29"; this.RSN29.TextAlign = ContentAlignment.TopLeft; this.RSN29.UseVisualStyleBackColor = true; this.RSN29.Click += new EventHandler(this.RSN29_Click); this.RSN23.BackgroundImageLayout = ImageLayout.Stretch; this.RSN23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN23.FlatAppearance.BorderSize = 2; this.RSN23.FlatAppearance.CheckedBackColor = Color.Black; this.RSN23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN23.FlatStyle = FlatStyle.Flat; this.RSN23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN23.ForeColor = SystemColors.ActiveCaptionText; this.RSN23.Location = new Point(0x6b, 0xc6); this.RSN23.Name = "RSN23"; this.RSN23.Size = new Size(40, 40); this.RSN23.TabIndex = 0x8a; this.RSN23.Text = "23"; this.RSN23.TextAlign = ContentAlignment.TopLeft; this.RSN23.UseVisualStyleBackColor = true; this.RSN23.Click += new EventHandler(this.RSN23_Click); this.RSN28.BackgroundImageLayout = ImageLayout.Stretch; this.RSN28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN28.FlatAppearance.BorderSize = 2; this.RSN28.FlatAppearance.CheckedBackColor = Color.Black; this.RSN28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN28.FlatStyle = FlatStyle.Flat; this.RSN28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN28.ForeColor = SystemColors.ActiveCaptionText; this.RSN28.Location = new Point(0x6b, 0xf4); this.RSN28.Name = "RSN28"; this.RSN28.Size = new Size(40, 40); this.RSN28.TabIndex = 0x8f; this.RSN28.Text = "28"; this.RSN28.TextAlign = ContentAlignment.TopLeft; this.RSN28.UseVisualStyleBackColor = true; this.RSN28.Click += new EventHandler(this.RSN28_Click); this.RSN24.BackgroundImageLayout = ImageLayout.Stretch; this.RSN24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN24.FlatAppearance.BorderSize = 2; this.RSN24.FlatAppearance.CheckedBackColor = Color.Black; this.RSN24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN24.FlatStyle = FlatStyle.Flat; this.RSN24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN24.ForeColor = SystemColors.ActiveCaptionText; this.RSN24.Location = new Point(0x99, 0xc6); this.RSN24.Name = "RSN24"; this.RSN24.Size = new Size(40, 40); this.RSN24.TabIndex = 0x8b; this.RSN24.Text = "24"; this.RSN24.TextAlign = ContentAlignment.TopLeft; this.RSN24.UseVisualStyleBackColor = true; this.RSN24.Click += new EventHandler(this.RSN24_Click); this.RSN27.BackgroundImageLayout = ImageLayout.Stretch; this.RSN27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN27.FlatAppearance.BorderSize = 2; this.RSN27.FlatAppearance.CheckedBackColor = Color.Black; this.RSN27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN27.FlatStyle = FlatStyle.Flat; this.RSN27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN27.ForeColor = SystemColors.ActiveCaptionText; this.RSN27.Location = new Point(0x3d, 0xf4); this.RSN27.Name = "RSN27"; this.RSN27.Size = new Size(40, 40); this.RSN27.TabIndex = 0x8e; this.RSN27.Text = "27"; this.RSN27.TextAlign = ContentAlignment.TopLeft; this.RSN27.UseVisualStyleBackColor = true; this.RSN27.Click += new EventHandler(this.RSN27_Click); this.RSN25.BackgroundImageLayout = ImageLayout.Stretch; this.RSN25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN25.FlatAppearance.BorderSize = 2; this.RSN25.FlatAppearance.CheckedBackColor = Color.Black; this.RSN25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN25.FlatStyle = FlatStyle.Flat; this.RSN25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN25.ForeColor = SystemColors.ActiveCaptionText; this.RSN25.Location = new Point(0xc6, 0xc6); this.RSN25.Name = "RSN25"; this.RSN25.Size = new Size(40, 40); this.RSN25.TabIndex = 140; this.RSN25.Text = "25"; this.RSN25.TextAlign = ContentAlignment.TopLeft; this.RSN25.UseVisualStyleBackColor = true; this.RSN25.Click += new EventHandler(this.RSN25_Click); this.RSN26.BackgroundImageLayout = ImageLayout.Stretch; this.RSN26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN26.FlatAppearance.BorderSize = 2; this.RSN26.FlatAppearance.CheckedBackColor = Color.Black; this.RSN26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN26.FlatStyle = FlatStyle.Flat; this.RSN26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN26.ForeColor = SystemColors.ActiveCaptionText; this.RSN26.Location = new Point(15, 0xf4); this.RSN26.Name = "RSN26"; this.RSN26.Size = new Size(40, 40); this.RSN26.TabIndex = 0x8d; this.RSN26.Text = "26"; this.RSN26.TextAlign = ContentAlignment.TopLeft; this.RSN26.UseVisualStyleBackColor = true; this.RSN26.Click += new EventHandler(this.RSN26_Click); this.refrRSN.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.refrRSN.BackColor = Color.White; this.refrRSN.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.refrRSN.Location = new Point(0x4d, 0x199); this.refrRSN.Multiline = true; this.refrRSN.Name = "refrRSN"; this.refrRSN.ReadOnly = true; this.refrRSN.ScrollBars = ScrollBars.Vertical; this.refrRSN.Size = new Size(0x2a5, 0x7c); this.refrRSN.TabIndex = 0x57; this.panel10.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel10.BackColor = Color.Transparent; this.panel10.Controls.Add(this.RSNopd); this.panel10.Controls.Add(this.RSNopc); this.panel10.Controls.Add(this.RSNopb); this.panel10.Controls.Add(this.RSNopa); this.panel10.Controls.Add(this.metroRadioButton13); this.panel10.Controls.Add(this.metroRadioButton14); this.panel10.Controls.Add(this.metroRadioButton15); this.panel10.Controls.Add(this.metroRadioButton16); this.panel10.Location = new Point(0x4d, 0x10f); this.panel10.Name = "panel10"; this.panel10.Size = new Size(0x2a5, 0x84); this.panel10.TabIndex = 0x56; this.RSNopd.AutoSize = true; this.RSNopd.Font = new Font("Britannic Bold", 11.25f); this.RSNopd.Location = new Point(0x38, 0x6d); this.RSNopd.Name = "RSNopd"; this.RSNopd.Size = new Size(0x24, 0x10); this.RSNopd.TabIndex = 0x6f; this.RSNopd.Text = "OpD"; this.RSNopc.AutoSize = true; this.RSNopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.RSNopc.Location = new Point(0x38, 0x4b); this.RSNopc.Name = "RSNopc"; this.RSNopc.Size = new Size(0x23, 0x10); this.RSNopc.TabIndex = 110; this.RSNopc.Text = "OpC"; this.RSNopb.AutoSize = true; this.RSNopb.Font = new Font("Britannic Bold", 11.25f); this.RSNopb.Location = new Point(0x36, 0x2a); this.RSNopb.Name = "RSNopb"; this.RSNopb.Size = new Size(0x23, 0x10); this.RSNopb.TabIndex = 0x6d; this.RSNopb.Text = "OpB"; this.RSNopa.AutoSize = true; this.RSNopa.Font = new Font("Britannic Bold", 11.25f); this.RSNopa.Location = new Point(0x36, 9); this.RSNopa.Name = "RSNopa"; this.RSNopa.Size = new Size(0x22, 0x10); this.RSNopa.TabIndex = 0x6c; this.RSNopa.Text = "OpA"; this.metroRadioButton13.AutoSize = true; this.metroRadioButton13.Location = new Point(0x11, 10); this.metroRadioButton13.Name = "metroRadioButton13"; this.metroRadioButton13.Size = new Size(0x1f, 15); this.metroRadioButton13.Style = MetroColorStyle.Blue; this.metroRadioButton13.TabIndex = 0x1b; this.metroRadioButton13.TabStop = true; this.metroRadioButton13.Text = "A"; this.metroRadioButton13.Theme = MetroThemeStyle.Light; this.metroRadioButton13.UseSelectable = true; this.metroRadioButton13.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton13.Click += new EventHandler(this.radioButton_Click4RSN); this.metroRadioButton14.AutoSize = true; this.metroRadioButton14.Location = new Point(0x11, 0x2b); this.metroRadioButton14.Name = "metroRadioButton14"; this.metroRadioButton14.Size = new Size(30, 15); this.metroRadioButton14.Style = MetroColorStyle.Blue; this.metroRadioButton14.TabIndex = 0x1c; this.metroRadioButton14.TabStop = true; this.metroRadioButton14.Text = "B"; this.metroRadioButton14.Theme = MetroThemeStyle.Light; this.metroRadioButton14.UseSelectable = true; this.metroRadioButton14.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton14.Click += new EventHandler(this.radioButton_Click4RSN); this.metroRadioButton15.AutoSize = true; this.metroRadioButton15.Location = new Point(0x11, 0x4c); this.metroRadioButton15.Name = "metroRadioButton15"; this.metroRadioButton15.Size = new Size(0x1f, 15); this.metroRadioButton15.Style = MetroColorStyle.Blue; this.metroRadioButton15.TabIndex = 0x1d; this.metroRadioButton15.TabStop = true; this.metroRadioButton15.Text = "C"; this.metroRadioButton15.Theme = MetroThemeStyle.Light; this.metroRadioButton15.UseSelectable = true; this.metroRadioButton15.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton15.Click += new EventHandler(this.radioButton_Click4RSN); this.metroRadioButton16.AutoSize = true; this.metroRadioButton16.Location = new Point(0x11, 0x6d); this.metroRadioButton16.Name = "metroRadioButton16"; this.metroRadioButton16.Size = new Size(0x1f, 15); this.metroRadioButton16.Style = MetroColorStyle.Blue; this.metroRadioButton16.TabIndex = 30; this.metroRadioButton16.TabStop = true; this.metroRadioButton16.Text = "D"; this.metroRadioButton16.Theme = MetroThemeStyle.Light; this.metroRadioButton16.UseSelectable = true; this.metroRadioButton16.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton16.Click += new EventHandler(this.radioButton_Click4RSN); this.sec4.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec4.BackColor = Color.White; this.sec4.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec4.Location = new Point(0x4d, 3); this.sec4.Multiline = true; this.sec4.Name = "sec4"; this.sec4.ReadOnly = true; this.sec4.ScrollBars = ScrollBars.Vertical; this.sec4.Size = new Size(0x2a5, 0x106); this.sec4.TabIndex = 0x55; this.MnCtab.Controls.Add(this.markandnextMnC); this.MnCtab.Controls.Add(this.panel17); this.MnCtab.Controls.Add(this.label7); this.MnCtab.Controls.Add(this.savennextMnC); this.MnCtab.Controls.Add(this.panel11); this.MnCtab.Controls.Add(this.refrMnC); this.MnCtab.Controls.Add(this.panel12); this.MnCtab.Controls.Add(this.sec5); this.MnCtab.Controls.Add(this.panel21); this.MnCtab.HorizontalScrollbarBarColor = true; this.MnCtab.HorizontalScrollbarHighlightOnWheel = false; this.MnCtab.HorizontalScrollbarSize = 10; this.MnCtab.Location = new Point(4, 0x23); this.MnCtab.Name = "MnCtab"; this.MnCtab.Size = new Size(0x3f8, 0x2d9); this.MnCtab.Style = MetroColorStyle.Blue; this.MnCtab.TabIndex = 4; this.MnCtab.Text = "Marketing/Computer"; this.MnCtab.Theme = MetroThemeStyle.Light; this.MnCtab.VerticalScrollbarBarColor = true; this.MnCtab.VerticalScrollbarHighlightOnWheel = false; this.MnCtab.VerticalScrollbarSize = 10; this.panel21.BackColor = Color.Transparent; this.panel21.Controls.Add(this.textBox15); this.panel21.Controls.Add(this.chkansMnC); this.panel21.Controls.Add(this.ans4MnC); this.panel21.Controls.Add(this.secnameMnC); this.panel21.Controls.Add(this.metroLabel20); this.panel21.Controls.Add(this.metroLabel18); this.panel21.Controls.Add(this.metroLabel17); this.panel21.Controls.Add(this.metroLabel19); this.panel21.Location = new Point(0x300, 9); this.panel21.Name = "panel21"; this.panel21.Size = new Size(0x90, 270); this.panel21.TabIndex = 0x66; this.panel21.Visible = false; this.textBox15.Location = new Point(13, 0x13); this.textBox15.Multiline = true; this.textBox15.Name = "textBox15"; this.textBox15.Size = new Size(0x18, 0x1b); this.textBox15.TabIndex = 0x5b; this.textBox15.Text = "1"; this.chkansMnC.Location = new Point(13, 0x34); this.chkansMnC.Name = "chkansMnC"; this.chkansMnC.Size = new Size(40, 20); this.chkansMnC.TabIndex = 90; this.ans4MnC.Location = new Point(0x5b, 0x34); this.ans4MnC.Name = "ans4MnC"; this.ans4MnC.Size = new Size(40, 20); this.ans4MnC.TabIndex = 0x5d; this.secnameMnC.AutoSize = true; this.secnameMnC.Location = new Point(0x49, 0x13); this.secnameMnC.Name = "secnameMnC"; this.secnameMnC.Size = new Size(0x1d, 13); this.secnameMnC.TabIndex = 0x5e; this.secnameMnC.Text = "MnC"; this.metroLabel20.AutoSize = true; this.metroLabel20.FontWeight = MetroLabelWeight.Bold; this.metroLabel20.ForeColor = Color.Black; this.metroLabel20.Location = new Point(0x29, 0x7d); this.metroLabel20.Name = "metroLabel20"; this.metroLabel20.Size = new Size(0x3d, 0x13); this.metroLabel20.Style = MetroColorStyle.Black; this.metroLabel20.TabIndex = 0x67; this.metroLabel20.Text = "option1"; this.metroLabel20.Theme = MetroThemeStyle.Light; this.metroLabel20.UseStyleColors = true; this.metroLabel18.AutoSize = true; this.metroLabel18.FontWeight = MetroLabelWeight.Bold; this.metroLabel18.Location = new Point(0x29, 0xb9); this.metroLabel18.Name = "metroLabel18"; this.metroLabel18.Size = new Size(0x3d, 0x13); this.metroLabel18.Style = MetroColorStyle.Black; this.metroLabel18.TabIndex = 0x18; this.metroLabel18.Text = "option3"; this.metroLabel18.Theme = MetroThemeStyle.Light; this.metroLabel18.UseStyleColors = true; this.metroLabel17.AutoSize = true; this.metroLabel17.FontWeight = MetroLabelWeight.Bold; this.metroLabel17.Location = new Point(0x29, 0xde); this.metroLabel17.Name = "metroLabel17"; this.metroLabel17.Size = new Size(0x3d, 0x13); this.metroLabel17.Style = MetroColorStyle.Black; this.metroLabel17.TabIndex = 0x67; this.metroLabel17.Text = "option4"; this.metroLabel17.Theme = MetroThemeStyle.Light; this.metroLabel17.UseStyleColors = true; this.metroLabel19.AutoSize = true; this.metroLabel19.FontWeight = MetroLabelWeight.Bold; this.metroLabel19.Location = new Point(0x29, 160); this.metroLabel19.Name = "metroLabel19"; this.metroLabel19.Size = new Size(0x3d, 0x13); this.metroLabel19.Style = MetroColorStyle.Black; this.metroLabel19.TabIndex = 0x19; this.metroLabel19.Text = "option2"; this.metroLabel19.Theme = MetroThemeStyle.Light; this.metroLabel19.UseStyleColors = true; this.markandnextMnC.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextMnC.Location = new Point(0x2f7, 0x196); this.markandnextMnC.Name = "markandnextMnC"; this.markandnextMnC.Size = new Size(0x7e, 0x2d); this.markandnextMnC.Style = MetroColorStyle.Blue; this.markandnextMnC.TabIndex = 0x65; this.markandnextMnC.Text = "Mark and Next"; this.markandnextMnC.Theme = MetroThemeStyle.Light; this.markandnextMnC.UseSelectable = true; this.markandnextMnC.Click += new EventHandler(this.markandnextMnC_Click); this.panel17.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel17.BackColor = SystemColors.InactiveCaptionText; this.panel17.Controls.Add(this.metroLabel41); this.panel17.Controls.Add(this.pictureBox18); this.panel17.Controls.Add(this.metroLabel42); this.panel17.Controls.Add(this.metroLabel43); this.panel17.Controls.Add(this.metroLabel44); this.panel17.Controls.Add(this.pictureBox19); this.panel17.Controls.Add(this.pictureBox20); this.panel17.Controls.Add(this.pictureBox21); this.panel17.Location = new Point(0x2f7, 0x1c6); this.panel17.Name = "panel17"; this.panel17.Size = new Size(0x107, 0xb2); this.panel17.TabIndex = 100; this.metroLabel41.AutoSize = true; this.metroLabel41.BackColor = Color.Transparent; this.metroLabel41.FontWeight = MetroLabelWeight.Bold; this.metroLabel41.Location = new Point(0x3b, 0x94); this.metroLabel41.Name = "metroLabel41"; this.metroLabel41.Size = new Size(0x8b, 0x13); this.metroLabel41.Style = MetroColorStyle.Purple; this.metroLabel41.TabIndex = 0x65; this.metroLabel41.Text = "Marked For Review"; this.metroLabel41.Theme = MetroThemeStyle.Dark; this.metroLabel41.UseCustomBackColor = true; this.metroLabel41.UseStyleColors = true; this.pictureBox18.BackColor = Color.White; this.pictureBox18.Image = Resources.rvw; this.pictureBox18.Location = new Point(3, 0x8f); this.pictureBox18.Name = "pictureBox18"; this.pictureBox18.Size = new Size(30, 30); this.pictureBox18.TabIndex = 100; this.pictureBox18.TabStop = false; this.metroLabel42.AutoSize = true; this.metroLabel42.BackColor = Color.Transparent; this.metroLabel42.FontWeight = MetroLabelWeight.Bold; this.metroLabel42.Location = new Point(60, 0x63); this.metroLabel42.Name = "metroLabel42"; this.metroLabel42.Size = new Size(0x53, 0x13); this.metroLabel42.Style = MetroColorStyle.White; this.metroLabel42.TabIndex = 0x63; this.metroLabel42.Text = "Not Visited"; this.metroLabel42.Theme = MetroThemeStyle.Dark; this.metroLabel42.UseCustomBackColor = true; this.metroLabel42.UseStyleColors = true; this.metroLabel43.AutoSize = true; this.metroLabel43.BackColor = Color.Transparent; this.metroLabel43.FontWeight = MetroLabelWeight.Bold; this.metroLabel43.Location = new Point(60, 0x35); this.metroLabel43.Name = "metroLabel43"; this.metroLabel43.Size = new Size(0x68, 0x13); this.metroLabel43.Style = MetroColorStyle.Red; this.metroLabel43.TabIndex = 0x62; this.metroLabel43.Text = "Not Answered"; this.metroLabel43.Theme = MetroThemeStyle.Dark; this.metroLabel43.UseCustomBackColor = true; this.metroLabel43.UseStyleColors = true; this.metroLabel44.AutoSize = true; this.metroLabel44.BackColor = Color.Transparent; this.metroLabel44.FontWeight = MetroLabelWeight.Bold; this.metroLabel44.Location = new Point(60, 7); this.metroLabel44.Name = "metroLabel44"; this.metroLabel44.Size = new Size(0x4b, 0x13); this.metroLabel44.Style = MetroColorStyle.Green; this.metroLabel44.TabIndex = 0x5f; this.metroLabel44.Text = "Answered"; this.metroLabel44.Theme = MetroThemeStyle.Dark; this.metroLabel44.UseCustomBackColor = true; this.metroLabel44.UseStyleColors = true; this.pictureBox19.BackColor = Color.White; this.pictureBox19.Location = new Point(3, 0x5f); this.pictureBox19.Name = "pictureBox19"; this.pictureBox19.Size = new Size(30, 30); this.pictureBox19.TabIndex = 0x61; this.pictureBox19.TabStop = false; this.pictureBox20.Image = Resources.unchk; this.pictureBox20.Location = new Point(3, 0x31); this.pictureBox20.Name = "pictureBox20"; this.pictureBox20.Size = new Size(30, 30); this.pictureBox20.TabIndex = 0x60; this.pictureBox20.TabStop = false; this.pictureBox21.Image = Resources.chk1; this.pictureBox21.Location = new Point(3, 3); this.pictureBox21.Name = "pictureBox21"; this.pictureBox21.Size = new Size(30, 30); this.pictureBox21.TabIndex = 0x5f; this.pictureBox21.TabStop = false; this.label7.AutoSize = true; this.label7.Location = new Point(9, 6); this.label7.Name = "label7"; this.label7.Size = new Size(0x3a, 13); this.label7.TabIndex = 0x5c; this.label7.Text = "Question 1"; this.savennextMnC.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextMnC.Location = new Point(0x385, 0x196); this.savennextMnC.Name = "savennextMnC"; this.savennextMnC.Size = new Size(0x79, 0x2d); this.savennextMnC.Style = MetroColorStyle.Blue; this.savennextMnC.TabIndex = 0x59; this.savennextMnC.Text = "Save and Next"; this.savennextMnC.Theme = MetroThemeStyle.Light; this.savennextMnC.UseSelectable = true; this.savennextMnC.Click += new EventHandler(this.metroButton5_Click); this.panel11.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel11.AutoScroll = true; this.panel11.BackColor = Color.Transparent; this.panel11.BorderStyle = BorderStyle.FixedSingle; this.panel11.Controls.Add(this.MnC1); this.panel11.Controls.Add(this.MnC50); this.panel11.Controls.Add(this.MnC2); this.panel11.Controls.Add(this.MnC49); this.panel11.Controls.Add(this.MnC3); this.panel11.Controls.Add(this.MnC48); this.panel11.Controls.Add(this.MnC4); this.panel11.Controls.Add(this.MnC47); this.panel11.Controls.Add(this.MnC5); this.panel11.Controls.Add(this.MnC46); this.panel11.Controls.Add(this.MnC6); this.panel11.Controls.Add(this.MnC45); this.panel11.Controls.Add(this.MnC7); this.panel11.Controls.Add(this.MnC44); this.panel11.Controls.Add(this.MnC8); this.panel11.Controls.Add(this.MnC43); this.panel11.Controls.Add(this.MnC9); this.panel11.Controls.Add(this.MnC42); this.panel11.Controls.Add(this.MnC10); this.panel11.Controls.Add(this.MnC41); this.panel11.Controls.Add(this.MnC11); this.panel11.Controls.Add(this.MnC40); this.panel11.Controls.Add(this.MnC12); this.panel11.Controls.Add(this.MnC39); this.panel11.Controls.Add(this.MnC13); this.panel11.Controls.Add(this.MnC38); this.panel11.Controls.Add(this.MnC14); this.panel11.Controls.Add(this.MnC37); this.panel11.Controls.Add(this.MnC15); this.panel11.Controls.Add(this.MnC36); this.panel11.Controls.Add(this.MnC16); this.panel11.Controls.Add(this.MnC35); this.panel11.Controls.Add(this.MnC17); this.panel11.Controls.Add(this.MnC34); this.panel11.Controls.Add(this.MnC18); this.panel11.Controls.Add(this.MnC33); this.panel11.Controls.Add(this.MnC19); this.panel11.Controls.Add(this.MnC32); this.panel11.Controls.Add(this.MnC20); this.panel11.Controls.Add(this.MnC31); this.panel11.Controls.Add(this.MnC21); this.panel11.Controls.Add(this.MnC30); this.panel11.Controls.Add(this.MnC22); this.panel11.Controls.Add(this.MnC29); this.panel11.Controls.Add(this.MnC23); this.panel11.Controls.Add(this.MnC28); this.panel11.Controls.Add(this.MnC24); this.panel11.Controls.Add(this.MnC27); this.panel11.Controls.Add(this.MnC25); this.panel11.Controls.Add(this.MnC26); this.panel11.Location = new Point(0x2f5, 3); this.panel11.Name = "panel11"; this.panel11.Size = new Size(0x107, 0x191); this.panel11.TabIndex = 0x58; this.MnC1.BackgroundImageLayout = ImageLayout.Stretch; this.MnC1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC1.FlatAppearance.BorderSize = 2; this.MnC1.FlatAppearance.CheckedBackColor = Color.Black; this.MnC1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC1.FlatStyle = FlatStyle.Flat; this.MnC1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC1.ForeColor = SystemColors.ActiveCaptionText; this.MnC1.Location = new Point(15, 14); this.MnC1.Name = "MnC1"; this.MnC1.Size = new Size(40, 40); this.MnC1.TabIndex = 0x74; this.MnC1.Text = "1"; this.MnC1.TextAlign = ContentAlignment.TopLeft; this.MnC1.UseVisualStyleBackColor = true; this.MnC1.Click += new EventHandler(this.MnC1_Click); this.MnC50.BackgroundImageLayout = ImageLayout.Stretch; this.MnC50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC50.FlatAppearance.BorderSize = 2; this.MnC50.FlatAppearance.CheckedBackColor = Color.Black; this.MnC50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC50.FlatStyle = FlatStyle.Flat; this.MnC50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC50.ForeColor = SystemColors.ActiveCaptionText; this.MnC50.Location = new Point(0xc6, 0x1ac); this.MnC50.Name = "MnC50"; this.MnC50.Size = new Size(40, 40); this.MnC50.TabIndex = 0xa5; this.MnC50.Text = "50"; this.MnC50.TextAlign = ContentAlignment.TopLeft; this.MnC50.UseVisualStyleBackColor = true; this.MnC50.Visible = false; this.MnC50.Click += new EventHandler(this.MnC50_Click); this.MnC2.BackgroundImageLayout = ImageLayout.Stretch; this.MnC2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC2.FlatAppearance.BorderSize = 2; this.MnC2.FlatAppearance.CheckedBackColor = Color.Black; this.MnC2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC2.FlatStyle = FlatStyle.Flat; this.MnC2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC2.ForeColor = SystemColors.ActiveCaptionText; this.MnC2.Location = new Point(0x3d, 14); this.MnC2.Name = "MnC2"; this.MnC2.Size = new Size(40, 40); this.MnC2.TabIndex = 0x75; this.MnC2.Text = "2"; this.MnC2.TextAlign = ContentAlignment.TopLeft; this.MnC2.UseVisualStyleBackColor = true; this.MnC2.Click += new EventHandler(this.MnC2_Click); this.MnC49.BackgroundImageLayout = ImageLayout.Stretch; this.MnC49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC49.FlatAppearance.BorderSize = 2; this.MnC49.FlatAppearance.CheckedBackColor = Color.Black; this.MnC49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC49.FlatStyle = FlatStyle.Flat; this.MnC49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC49.ForeColor = SystemColors.ActiveCaptionText; this.MnC49.Location = new Point(0x99, 0x1ac); this.MnC49.Name = "MnC49"; this.MnC49.Size = new Size(40, 40); this.MnC49.TabIndex = 0xa4; this.MnC49.Text = "49"; this.MnC49.TextAlign = ContentAlignment.TopLeft; this.MnC49.UseVisualStyleBackColor = true; this.MnC49.Visible = false; this.MnC49.Click += new EventHandler(this.MnC49_Click); this.MnC3.BackgroundImageLayout = ImageLayout.Stretch; this.MnC3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC3.FlatAppearance.BorderSize = 2; this.MnC3.FlatAppearance.CheckedBackColor = Color.Black; this.MnC3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC3.FlatStyle = FlatStyle.Flat; this.MnC3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC3.ForeColor = SystemColors.ActiveCaptionText; this.MnC3.Location = new Point(0x6b, 14); this.MnC3.Name = "MnC3"; this.MnC3.Size = new Size(40, 40); this.MnC3.TabIndex = 0x76; this.MnC3.Text = "3"; this.MnC3.TextAlign = ContentAlignment.TopLeft; this.MnC3.UseVisualStyleBackColor = true; this.MnC3.Click += new EventHandler(this.MnC3_Click); this.MnC48.BackgroundImageLayout = ImageLayout.Stretch; this.MnC48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC48.FlatAppearance.BorderSize = 2; this.MnC48.FlatAppearance.CheckedBackColor = Color.Black; this.MnC48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC48.FlatStyle = FlatStyle.Flat; this.MnC48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC48.ForeColor = SystemColors.ActiveCaptionText; this.MnC48.Location = new Point(0x6b, 0x1ac); this.MnC48.Name = "MnC48"; this.MnC48.Size = new Size(40, 40); this.MnC48.TabIndex = 0xa3; this.MnC48.Text = "48"; this.MnC48.TextAlign = ContentAlignment.TopLeft; this.MnC48.UseVisualStyleBackColor = true; this.MnC48.Visible = false; this.MnC48.Click += new EventHandler(this.MnC48_Click); this.MnC4.BackgroundImageLayout = ImageLayout.Stretch; this.MnC4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC4.FlatAppearance.BorderSize = 2; this.MnC4.FlatAppearance.CheckedBackColor = Color.Black; this.MnC4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC4.FlatStyle = FlatStyle.Flat; this.MnC4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC4.ForeColor = SystemColors.ActiveCaptionText; this.MnC4.Location = new Point(0x99, 14); this.MnC4.Name = "MnC4"; this.MnC4.Size = new Size(40, 40); this.MnC4.TabIndex = 0x77; this.MnC4.Text = "4"; this.MnC4.TextAlign = ContentAlignment.TopLeft; this.MnC4.UseVisualStyleBackColor = true; this.MnC4.Click += new EventHandler(this.MnC4_Click); this.MnC47.BackgroundImageLayout = ImageLayout.Stretch; this.MnC47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC47.FlatAppearance.BorderSize = 2; this.MnC47.FlatAppearance.CheckedBackColor = Color.Black; this.MnC47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC47.FlatStyle = FlatStyle.Flat; this.MnC47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC47.ForeColor = SystemColors.ActiveCaptionText; this.MnC47.Location = new Point(0x3d, 0x1ac); this.MnC47.Name = "MnC47"; this.MnC47.Size = new Size(40, 40); this.MnC47.TabIndex = 0xa2; this.MnC47.Text = "47"; this.MnC47.TextAlign = ContentAlignment.TopLeft; this.MnC47.UseVisualStyleBackColor = true; this.MnC47.Visible = false; this.MnC47.Click += new EventHandler(this.MnC47_Click); this.MnC5.BackgroundImageLayout = ImageLayout.Stretch; this.MnC5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC5.FlatAppearance.BorderSize = 2; this.MnC5.FlatAppearance.CheckedBackColor = Color.Black; this.MnC5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC5.FlatStyle = FlatStyle.Flat; this.MnC5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC5.ForeColor = SystemColors.ActiveCaptionText; this.MnC5.Location = new Point(0xc6, 14); this.MnC5.Name = "MnC5"; this.MnC5.Size = new Size(40, 40); this.MnC5.TabIndex = 120; this.MnC5.Text = "5"; this.MnC5.TextAlign = ContentAlignment.TopLeft; this.MnC5.UseVisualStyleBackColor = true; this.MnC5.Click += new EventHandler(this.MnC5_Click); this.MnC46.BackgroundImageLayout = ImageLayout.Stretch; this.MnC46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC46.FlatAppearance.BorderSize = 2; this.MnC46.FlatAppearance.CheckedBackColor = Color.Black; this.MnC46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC46.FlatStyle = FlatStyle.Flat; this.MnC46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC46.ForeColor = SystemColors.ActiveCaptionText; this.MnC46.Location = new Point(15, 0x1ac); this.MnC46.Name = "MnC46"; this.MnC46.Size = new Size(40, 40); this.MnC46.TabIndex = 0xa1; this.MnC46.Text = "46"; this.MnC46.TextAlign = ContentAlignment.TopLeft; this.MnC46.UseVisualStyleBackColor = true; this.MnC46.Visible = false; this.MnC46.Click += new EventHandler(this.MnC46_Click); this.MnC6.BackgroundImageLayout = ImageLayout.Stretch; this.MnC6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC6.FlatAppearance.BorderSize = 2; this.MnC6.FlatAppearance.CheckedBackColor = Color.Black; this.MnC6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC6.FlatStyle = FlatStyle.Flat; this.MnC6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC6.ForeColor = SystemColors.ActiveCaptionText; this.MnC6.Location = new Point(15, 60); this.MnC6.Name = "MnC6"; this.MnC6.Size = new Size(40, 40); this.MnC6.TabIndex = 0x79; this.MnC6.Text = "6"; this.MnC6.TextAlign = ContentAlignment.TopLeft; this.MnC6.UseVisualStyleBackColor = true; this.MnC6.Click += new EventHandler(this.MnC6_Click); this.MnC45.BackgroundImageLayout = ImageLayout.Stretch; this.MnC45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC45.FlatAppearance.BorderSize = 2; this.MnC45.FlatAppearance.CheckedBackColor = Color.Black; this.MnC45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC45.FlatStyle = FlatStyle.Flat; this.MnC45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC45.ForeColor = SystemColors.ActiveCaptionText; this.MnC45.Location = new Point(0xc6, 0x17e); this.MnC45.Name = "MnC45"; this.MnC45.Size = new Size(40, 40); this.MnC45.TabIndex = 160; this.MnC45.Text = "45"; this.MnC45.TextAlign = ContentAlignment.TopLeft; this.MnC45.UseVisualStyleBackColor = true; this.MnC45.Visible = false; this.MnC45.Click += new EventHandler(this.MnC45_Click); this.MnC7.BackgroundImageLayout = ImageLayout.Stretch; this.MnC7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC7.FlatAppearance.BorderSize = 2; this.MnC7.FlatAppearance.CheckedBackColor = Color.Black; this.MnC7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC7.FlatStyle = FlatStyle.Flat; this.MnC7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC7.ForeColor = SystemColors.ActiveCaptionText; this.MnC7.Location = new Point(0x3d, 60); this.MnC7.Name = "MnC7"; this.MnC7.Size = new Size(40, 40); this.MnC7.TabIndex = 0x7a; this.MnC7.Text = "7"; this.MnC7.TextAlign = ContentAlignment.TopLeft; this.MnC7.UseVisualStyleBackColor = true; this.MnC7.Click += new EventHandler(this.MnC7_Click); this.MnC44.BackgroundImageLayout = ImageLayout.Stretch; this.MnC44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC44.FlatAppearance.BorderSize = 2; this.MnC44.FlatAppearance.CheckedBackColor = Color.Black; this.MnC44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC44.FlatStyle = FlatStyle.Flat; this.MnC44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC44.ForeColor = SystemColors.ActiveCaptionText; this.MnC44.Location = new Point(0x99, 0x17e); this.MnC44.Name = "MnC44"; this.MnC44.Size = new Size(40, 40); this.MnC44.TabIndex = 0x9f; this.MnC44.Text = "44"; this.MnC44.TextAlign = ContentAlignment.TopLeft; this.MnC44.UseVisualStyleBackColor = true; this.MnC44.Visible = false; this.MnC44.Click += new EventHandler(this.MnC44_Click); this.MnC8.BackgroundImageLayout = ImageLayout.Stretch; this.MnC8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC8.FlatAppearance.BorderSize = 2; this.MnC8.FlatAppearance.CheckedBackColor = Color.Black; this.MnC8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC8.FlatStyle = FlatStyle.Flat; this.MnC8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC8.ForeColor = SystemColors.ActiveCaptionText; this.MnC8.Location = new Point(0x6b, 60); this.MnC8.Name = "MnC8"; this.MnC8.Size = new Size(40, 40); this.MnC8.TabIndex = 0x7b; this.MnC8.Text = "8"; this.MnC8.TextAlign = ContentAlignment.TopLeft; this.MnC8.UseVisualStyleBackColor = true; this.MnC8.Click += new EventHandler(this.MnC8_Click); this.MnC43.BackgroundImageLayout = ImageLayout.Stretch; this.MnC43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC43.FlatAppearance.BorderSize = 2; this.MnC43.FlatAppearance.CheckedBackColor = Color.Black; this.MnC43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC43.FlatStyle = FlatStyle.Flat; this.MnC43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC43.ForeColor = SystemColors.ActiveCaptionText; this.MnC43.Location = new Point(0x6b, 0x17e); this.MnC43.Name = "MnC43"; this.MnC43.Size = new Size(40, 40); this.MnC43.TabIndex = 0x9e; this.MnC43.Text = "43"; this.MnC43.TextAlign = ContentAlignment.TopLeft; this.MnC43.UseVisualStyleBackColor = true; this.MnC43.Visible = false; this.MnC43.Click += new EventHandler(this.MnC43_Click); this.MnC9.BackgroundImageLayout = ImageLayout.Stretch; this.MnC9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC9.FlatAppearance.BorderSize = 2; this.MnC9.FlatAppearance.CheckedBackColor = Color.Black; this.MnC9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC9.FlatStyle = FlatStyle.Flat; this.MnC9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC9.ForeColor = SystemColors.ActiveCaptionText; this.MnC9.Location = new Point(0x99, 60); this.MnC9.Name = "MnC9"; this.MnC9.Size = new Size(40, 40); this.MnC9.TabIndex = 0x7c; this.MnC9.Text = "9"; this.MnC9.TextAlign = ContentAlignment.TopLeft; this.MnC9.UseVisualStyleBackColor = true; this.MnC9.Click += new EventHandler(this.MnC9_Click); this.MnC42.BackgroundImageLayout = ImageLayout.Stretch; this.MnC42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC42.FlatAppearance.BorderSize = 2; this.MnC42.FlatAppearance.CheckedBackColor = Color.Black; this.MnC42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC42.FlatStyle = FlatStyle.Flat; this.MnC42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC42.ForeColor = SystemColors.ActiveCaptionText; this.MnC42.Location = new Point(0x3d, 0x17e); this.MnC42.Name = "MnC42"; this.MnC42.Size = new Size(40, 40); this.MnC42.TabIndex = 0x9d; this.MnC42.Text = "42"; this.MnC42.TextAlign = ContentAlignment.TopLeft; this.MnC42.UseVisualStyleBackColor = true; this.MnC42.Visible = false; this.MnC42.Click += new EventHandler(this.MnC42_Click); this.MnC10.BackgroundImageLayout = ImageLayout.Stretch; this.MnC10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC10.FlatAppearance.BorderSize = 2; this.MnC10.FlatAppearance.CheckedBackColor = Color.Black; this.MnC10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC10.FlatStyle = FlatStyle.Flat; this.MnC10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC10.ForeColor = SystemColors.ActiveCaptionText; this.MnC10.Location = new Point(0xc6, 60); this.MnC10.Name = "MnC10"; this.MnC10.Size = new Size(40, 40); this.MnC10.TabIndex = 0x7d; this.MnC10.Text = "10"; this.MnC10.TextAlign = ContentAlignment.TopLeft; this.MnC10.UseVisualStyleBackColor = true; this.MnC10.Click += new EventHandler(this.MnC10_Click); this.MnC41.BackgroundImageLayout = ImageLayout.Stretch; this.MnC41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC41.FlatAppearance.BorderSize = 2; this.MnC41.FlatAppearance.CheckedBackColor = Color.Black; this.MnC41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC41.FlatStyle = FlatStyle.Flat; this.MnC41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC41.ForeColor = SystemColors.ActiveCaptionText; this.MnC41.Location = new Point(15, 0x17e); this.MnC41.Name = "MnC41"; this.MnC41.Size = new Size(40, 40); this.MnC41.TabIndex = 0x9c; this.MnC41.Text = "41"; this.MnC41.TextAlign = ContentAlignment.TopLeft; this.MnC41.UseVisualStyleBackColor = true; this.MnC41.Visible = false; this.MnC41.Click += new EventHandler(this.MnC41_Click); this.MnC11.BackgroundImageLayout = ImageLayout.Stretch; this.MnC11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC11.FlatAppearance.BorderSize = 2; this.MnC11.FlatAppearance.CheckedBackColor = Color.Black; this.MnC11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC11.FlatStyle = FlatStyle.Flat; this.MnC11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC11.ForeColor = SystemColors.ActiveCaptionText; this.MnC11.Location = new Point(15, 0x6a); this.MnC11.Name = "MnC11"; this.MnC11.Size = new Size(40, 40); this.MnC11.TabIndex = 0x7e; this.MnC11.Text = "11"; this.MnC11.TextAlign = ContentAlignment.TopLeft; this.MnC11.UseVisualStyleBackColor = true; this.MnC11.Click += new EventHandler(this.MnC11_Click); this.MnC40.BackgroundImageLayout = ImageLayout.Stretch; this.MnC40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC40.FlatAppearance.BorderSize = 2; this.MnC40.FlatAppearance.CheckedBackColor = Color.Black; this.MnC40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC40.FlatStyle = FlatStyle.Flat; this.MnC40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC40.ForeColor = SystemColors.ActiveCaptionText; this.MnC40.Location = new Point(0xc6, 0x150); this.MnC40.Name = "MnC40"; this.MnC40.Size = new Size(40, 40); this.MnC40.TabIndex = 0x9b; this.MnC40.Text = "40"; this.MnC40.TextAlign = ContentAlignment.TopLeft; this.MnC40.UseVisualStyleBackColor = true; this.MnC40.Visible = false; this.MnC40.Click += new EventHandler(this.MnC40_Click); this.MnC12.BackgroundImageLayout = ImageLayout.Stretch; this.MnC12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC12.FlatAppearance.BorderSize = 2; this.MnC12.FlatAppearance.CheckedBackColor = Color.Black; this.MnC12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC12.FlatStyle = FlatStyle.Flat; this.MnC12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC12.ForeColor = SystemColors.ActiveCaptionText; this.MnC12.Location = new Point(0x3d, 0x6a); this.MnC12.Name = "MnC12"; this.MnC12.Size = new Size(40, 40); this.MnC12.TabIndex = 0x7f; this.MnC12.Text = "12"; this.MnC12.TextAlign = ContentAlignment.TopLeft; this.MnC12.UseVisualStyleBackColor = true; this.MnC12.Click += new EventHandler(this.MnC12_Click); this.MnC39.BackgroundImageLayout = ImageLayout.Stretch; this.MnC39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC39.FlatAppearance.BorderSize = 2; this.MnC39.FlatAppearance.CheckedBackColor = Color.Black; this.MnC39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC39.FlatStyle = FlatStyle.Flat; this.MnC39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC39.ForeColor = SystemColors.ActiveCaptionText; this.MnC39.Location = new Point(0x99, 0x150); this.MnC39.Name = "MnC39"; this.MnC39.Size = new Size(40, 40); this.MnC39.TabIndex = 0x9a; this.MnC39.Text = "39"; this.MnC39.TextAlign = ContentAlignment.TopLeft; this.MnC39.UseVisualStyleBackColor = true; this.MnC39.Visible = false; this.MnC39.Click += new EventHandler(this.MnC39_Click); this.MnC13.BackgroundImageLayout = ImageLayout.Stretch; this.MnC13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC13.FlatAppearance.BorderSize = 2; this.MnC13.FlatAppearance.CheckedBackColor = Color.Black; this.MnC13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC13.FlatStyle = FlatStyle.Flat; this.MnC13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC13.ForeColor = SystemColors.ActiveCaptionText; this.MnC13.Location = new Point(0x6b, 0x6a); this.MnC13.Name = "MnC13"; this.MnC13.Size = new Size(40, 40); this.MnC13.TabIndex = 0x80; this.MnC13.Text = "13"; this.MnC13.TextAlign = ContentAlignment.TopLeft; this.MnC13.UseVisualStyleBackColor = true; this.MnC13.Click += new EventHandler(this.MnC13_Click); this.MnC38.BackgroundImageLayout = ImageLayout.Stretch; this.MnC38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC38.FlatAppearance.BorderSize = 2; this.MnC38.FlatAppearance.CheckedBackColor = Color.Black; this.MnC38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC38.FlatStyle = FlatStyle.Flat; this.MnC38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC38.ForeColor = SystemColors.ActiveCaptionText; this.MnC38.Location = new Point(0x6b, 0x150); this.MnC38.Name = "MnC38"; this.MnC38.Size = new Size(40, 40); this.MnC38.TabIndex = 0x99; this.MnC38.Text = "38"; this.MnC38.TextAlign = ContentAlignment.TopLeft; this.MnC38.UseVisualStyleBackColor = true; this.MnC38.Visible = false; this.MnC38.Click += new EventHandler(this.MnC38_Click); this.MnC14.BackgroundImageLayout = ImageLayout.Stretch; this.MnC14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC14.FlatAppearance.BorderSize = 2; this.MnC14.FlatAppearance.CheckedBackColor = Color.Black; this.MnC14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC14.FlatStyle = FlatStyle.Flat; this.MnC14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC14.ForeColor = SystemColors.ActiveCaptionText; this.MnC14.Location = new Point(0x99, 0x6a); this.MnC14.Name = "MnC14"; this.MnC14.Size = new Size(40, 40); this.MnC14.TabIndex = 0x81; this.MnC14.Text = "14"; this.MnC14.TextAlign = ContentAlignment.TopLeft; this.MnC14.UseVisualStyleBackColor = true; this.MnC14.Click += new EventHandler(this.MnC14_Click); this.MnC37.BackgroundImageLayout = ImageLayout.Stretch; this.MnC37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC37.FlatAppearance.BorderSize = 2; this.MnC37.FlatAppearance.CheckedBackColor = Color.Black; this.MnC37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC37.FlatStyle = FlatStyle.Flat; this.MnC37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC37.ForeColor = SystemColors.ActiveCaptionText; this.MnC37.Location = new Point(0x3d, 0x150); this.MnC37.Name = "MnC37"; this.MnC37.Size = new Size(40, 40); this.MnC37.TabIndex = 0x98; this.MnC37.Text = "37"; this.MnC37.TextAlign = ContentAlignment.TopLeft; this.MnC37.UseVisualStyleBackColor = true; this.MnC37.Visible = false; this.MnC37.Click += new EventHandler(this.MnC37_Click); this.MnC15.BackgroundImageLayout = ImageLayout.Stretch; this.MnC15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC15.FlatAppearance.BorderSize = 2; this.MnC15.FlatAppearance.CheckedBackColor = Color.Black; this.MnC15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC15.FlatStyle = FlatStyle.Flat; this.MnC15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC15.ForeColor = SystemColors.ActiveCaptionText; this.MnC15.Location = new Point(0xc6, 0x6a); this.MnC15.Name = "MnC15"; this.MnC15.Size = new Size(40, 40); this.MnC15.TabIndex = 130; this.MnC15.Text = "15"; this.MnC15.TextAlign = ContentAlignment.TopLeft; this.MnC15.UseVisualStyleBackColor = true; this.MnC15.Click += new EventHandler(this.MnC15_Click); this.MnC36.BackgroundImageLayout = ImageLayout.Stretch; this.MnC36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC36.FlatAppearance.BorderSize = 2; this.MnC36.FlatAppearance.CheckedBackColor = Color.Black; this.MnC36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC36.FlatStyle = FlatStyle.Flat; this.MnC36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC36.ForeColor = SystemColors.ActiveCaptionText; this.MnC36.Location = new Point(15, 0x150); this.MnC36.Name = "MnC36"; this.MnC36.Size = new Size(40, 40); this.MnC36.TabIndex = 0x97; this.MnC36.Text = "36"; this.MnC36.TextAlign = ContentAlignment.TopLeft; this.MnC36.UseVisualStyleBackColor = true; this.MnC36.Visible = false; this.MnC36.Click += new EventHandler(this.MnC36_Click); this.MnC16.BackgroundImageLayout = ImageLayout.Stretch; this.MnC16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC16.FlatAppearance.BorderSize = 2; this.MnC16.FlatAppearance.CheckedBackColor = Color.Black; this.MnC16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC16.FlatStyle = FlatStyle.Flat; this.MnC16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC16.ForeColor = SystemColors.ActiveCaptionText; this.MnC16.Location = new Point(15, 0x98); this.MnC16.Name = "MnC16"; this.MnC16.Size = new Size(40, 40); this.MnC16.TabIndex = 0x83; this.MnC16.Text = "16"; this.MnC16.TextAlign = ContentAlignment.TopLeft; this.MnC16.UseVisualStyleBackColor = true; this.MnC16.Click += new EventHandler(this.MnC16_Click); this.MnC35.BackgroundImageLayout = ImageLayout.Stretch; this.MnC35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC35.FlatAppearance.BorderSize = 2; this.MnC35.FlatAppearance.CheckedBackColor = Color.Black; this.MnC35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC35.FlatStyle = FlatStyle.Flat; this.MnC35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC35.ForeColor = SystemColors.ActiveCaptionText; this.MnC35.Location = new Point(0xc6, 290); this.MnC35.Name = "MnC35"; this.MnC35.Size = new Size(40, 40); this.MnC35.TabIndex = 150; this.MnC35.Text = "35"; this.MnC35.TextAlign = ContentAlignment.TopLeft; this.MnC35.UseVisualStyleBackColor = true; this.MnC35.Visible = false; this.MnC35.Click += new EventHandler(this.MnC35_Click); this.MnC17.BackgroundImageLayout = ImageLayout.Stretch; this.MnC17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC17.FlatAppearance.BorderSize = 2; this.MnC17.FlatAppearance.CheckedBackColor = Color.Black; this.MnC17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC17.FlatStyle = FlatStyle.Flat; this.MnC17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC17.ForeColor = SystemColors.ActiveCaptionText; this.MnC17.Location = new Point(0x3d, 0x98); this.MnC17.Name = "MnC17"; this.MnC17.Size = new Size(40, 40); this.MnC17.TabIndex = 0x84; this.MnC17.Text = "17"; this.MnC17.TextAlign = ContentAlignment.TopLeft; this.MnC17.UseVisualStyleBackColor = true; this.MnC17.Click += new EventHandler(this.MnC17_Click); this.MnC34.BackgroundImageLayout = ImageLayout.Stretch; this.MnC34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC34.FlatAppearance.BorderSize = 2; this.MnC34.FlatAppearance.CheckedBackColor = Color.Black; this.MnC34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC34.FlatStyle = FlatStyle.Flat; this.MnC34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC34.ForeColor = SystemColors.ActiveCaptionText; this.MnC34.Location = new Point(0x99, 290); this.MnC34.Name = "MnC34"; this.MnC34.Size = new Size(40, 40); this.MnC34.TabIndex = 0x95; this.MnC34.Text = "34"; this.MnC34.TextAlign = ContentAlignment.TopLeft; this.MnC34.UseVisualStyleBackColor = true; this.MnC34.Visible = false; this.MnC34.Click += new EventHandler(this.MnC34_Click); this.MnC18.BackgroundImageLayout = ImageLayout.Stretch; this.MnC18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC18.FlatAppearance.BorderSize = 2; this.MnC18.FlatAppearance.CheckedBackColor = Color.Black; this.MnC18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC18.FlatStyle = FlatStyle.Flat; this.MnC18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC18.ForeColor = SystemColors.ActiveCaptionText; this.MnC18.Location = new Point(0x6b, 0x98); this.MnC18.Name = "MnC18"; this.MnC18.Size = new Size(40, 40); this.MnC18.TabIndex = 0x85; this.MnC18.Text = "18"; this.MnC18.TextAlign = ContentAlignment.TopLeft; this.MnC18.UseVisualStyleBackColor = true; this.MnC18.Click += new EventHandler(this.MnC18_Click); this.MnC33.BackgroundImageLayout = ImageLayout.Stretch; this.MnC33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC33.FlatAppearance.BorderSize = 2; this.MnC33.FlatAppearance.CheckedBackColor = Color.Black; this.MnC33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC33.FlatStyle = FlatStyle.Flat; this.MnC33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC33.ForeColor = SystemColors.ActiveCaptionText; this.MnC33.Location = new Point(0x6b, 290); this.MnC33.Name = "MnC33"; this.MnC33.Size = new Size(40, 40); this.MnC33.TabIndex = 0x94; this.MnC33.Text = "33"; this.MnC33.TextAlign = ContentAlignment.TopLeft; this.MnC33.UseVisualStyleBackColor = true; this.MnC33.Visible = false; this.MnC33.Click += new EventHandler(this.MnC33_Click); this.MnC19.BackgroundImageLayout = ImageLayout.Stretch; this.MnC19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC19.FlatAppearance.BorderSize = 2; this.MnC19.FlatAppearance.CheckedBackColor = Color.Black; this.MnC19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC19.FlatStyle = FlatStyle.Flat; this.MnC19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC19.ForeColor = SystemColors.ActiveCaptionText; this.MnC19.Location = new Point(0x99, 0x98); this.MnC19.Name = "MnC19"; this.MnC19.Size = new Size(40, 40); this.MnC19.TabIndex = 0x86; this.MnC19.Text = "19"; this.MnC19.TextAlign = ContentAlignment.TopLeft; this.MnC19.UseVisualStyleBackColor = true; this.MnC19.Click += new EventHandler(this.MnC19_Click); this.MnC32.BackgroundImageLayout = ImageLayout.Stretch; this.MnC32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC32.FlatAppearance.BorderSize = 2; this.MnC32.FlatAppearance.CheckedBackColor = Color.Black; this.MnC32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC32.FlatStyle = FlatStyle.Flat; this.MnC32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC32.ForeColor = SystemColors.ActiveCaptionText; this.MnC32.Location = new Point(0x3d, 290); this.MnC32.Name = "MnC32"; this.MnC32.Size = new Size(40, 40); this.MnC32.TabIndex = 0x93; this.MnC32.Text = "32"; this.MnC32.TextAlign = ContentAlignment.TopLeft; this.MnC32.UseVisualStyleBackColor = true; this.MnC32.Visible = false; this.MnC32.Click += new EventHandler(this.MnC32_Click); this.MnC20.BackgroundImageLayout = ImageLayout.Stretch; this.MnC20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC20.FlatAppearance.BorderSize = 2; this.MnC20.FlatAppearance.CheckedBackColor = Color.Black; this.MnC20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC20.FlatStyle = FlatStyle.Flat; this.MnC20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC20.ForeColor = SystemColors.ActiveCaptionText; this.MnC20.Location = new Point(0xc6, 0x98); this.MnC20.Name = "MnC20"; this.MnC20.Size = new Size(40, 40); this.MnC20.TabIndex = 0x87; this.MnC20.Text = "20"; this.MnC20.TextAlign = ContentAlignment.TopLeft; this.MnC20.UseVisualStyleBackColor = true; this.MnC20.Click += new EventHandler(this.MnC20_Click); this.MnC31.BackgroundImageLayout = ImageLayout.Stretch; this.MnC31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC31.FlatAppearance.BorderSize = 2; this.MnC31.FlatAppearance.CheckedBackColor = Color.Black; this.MnC31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC31.FlatStyle = FlatStyle.Flat; this.MnC31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC31.ForeColor = SystemColors.ActiveCaptionText; this.MnC31.Location = new Point(15, 290); this.MnC31.Name = "MnC31"; this.MnC31.Size = new Size(40, 40); this.MnC31.TabIndex = 0x92; this.MnC31.Text = "31"; this.MnC31.TextAlign = ContentAlignment.TopLeft; this.MnC31.UseVisualStyleBackColor = true; this.MnC31.Visible = false; this.MnC31.Click += new EventHandler(this.MnC31_Click); this.MnC21.BackgroundImageLayout = ImageLayout.Stretch; this.MnC21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC21.FlatAppearance.BorderSize = 2; this.MnC21.FlatAppearance.CheckedBackColor = Color.Black; this.MnC21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC21.FlatStyle = FlatStyle.Flat; this.MnC21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC21.ForeColor = SystemColors.ActiveCaptionText; this.MnC21.Location = new Point(15, 0xc6); this.MnC21.Name = "MnC21"; this.MnC21.Size = new Size(40, 40); this.MnC21.TabIndex = 0x88; this.MnC21.Text = "21"; this.MnC21.TextAlign = ContentAlignment.TopLeft; this.MnC21.UseVisualStyleBackColor = true; this.MnC21.Visible = false; this.MnC21.Click += new EventHandler(this.MnC21_Click); this.MnC30.BackgroundImageLayout = ImageLayout.Stretch; this.MnC30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC30.FlatAppearance.BorderSize = 2; this.MnC30.FlatAppearance.CheckedBackColor = Color.Black; this.MnC30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC30.FlatStyle = FlatStyle.Flat; this.MnC30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC30.ForeColor = SystemColors.ActiveCaptionText; this.MnC30.Location = new Point(0xc6, 0xf4); this.MnC30.Name = "MnC30"; this.MnC30.Size = new Size(40, 40); this.MnC30.TabIndex = 0x91; this.MnC30.Text = "30"; this.MnC30.TextAlign = ContentAlignment.TopLeft; this.MnC30.UseVisualStyleBackColor = true; this.MnC30.Visible = false; this.MnC30.Click += new EventHandler(this.MnC30_Click); this.MnC22.BackgroundImageLayout = ImageLayout.Stretch; this.MnC22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC22.FlatAppearance.BorderSize = 2; this.MnC22.FlatAppearance.CheckedBackColor = Color.Black; this.MnC22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC22.FlatStyle = FlatStyle.Flat; this.MnC22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC22.ForeColor = SystemColors.ActiveCaptionText; this.MnC22.Location = new Point(0x3d, 0xc6); this.MnC22.Name = "MnC22"; this.MnC22.Size = new Size(40, 40); this.MnC22.TabIndex = 0x89; this.MnC22.Text = "22"; this.MnC22.TextAlign = ContentAlignment.TopLeft; this.MnC22.UseVisualStyleBackColor = true; this.MnC22.Visible = false; this.MnC22.Click += new EventHandler(this.MnC22_Click); this.MnC29.BackgroundImageLayout = ImageLayout.Stretch; this.MnC29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC29.FlatAppearance.BorderSize = 2; this.MnC29.FlatAppearance.CheckedBackColor = Color.Black; this.MnC29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC29.FlatStyle = FlatStyle.Flat; this.MnC29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC29.ForeColor = SystemColors.ActiveCaptionText; this.MnC29.Location = new Point(0x99, 0xf4); this.MnC29.Name = "MnC29"; this.MnC29.Size = new Size(40, 40); this.MnC29.TabIndex = 0x90; this.MnC29.Text = "29"; this.MnC29.TextAlign = ContentAlignment.TopLeft; this.MnC29.UseVisualStyleBackColor = true; this.MnC29.Visible = false; this.MnC29.Click += new EventHandler(this.MnC29_Click); this.MnC23.BackgroundImageLayout = ImageLayout.Stretch; this.MnC23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC23.FlatAppearance.BorderSize = 2; this.MnC23.FlatAppearance.CheckedBackColor = Color.Black; this.MnC23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC23.FlatStyle = FlatStyle.Flat; this.MnC23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC23.ForeColor = SystemColors.ActiveCaptionText; this.MnC23.Location = new Point(0x6b, 0xc6); this.MnC23.Name = "MnC23"; this.MnC23.Size = new Size(40, 40); this.MnC23.TabIndex = 0x8a; this.MnC23.Text = "23"; this.MnC23.TextAlign = ContentAlignment.TopLeft; this.MnC23.UseVisualStyleBackColor = true; this.MnC23.Visible = false; this.MnC23.Click += new EventHandler(this.MnC23_Click); this.MnC28.BackgroundImageLayout = ImageLayout.Stretch; this.MnC28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC28.FlatAppearance.BorderSize = 2; this.MnC28.FlatAppearance.CheckedBackColor = Color.Black; this.MnC28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC28.FlatStyle = FlatStyle.Flat; this.MnC28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC28.ForeColor = SystemColors.ActiveCaptionText; this.MnC28.Location = new Point(0x6b, 0xf4); this.MnC28.Name = "MnC28"; this.MnC28.Size = new Size(40, 40); this.MnC28.TabIndex = 0x8f; this.MnC28.Text = "28"; this.MnC28.TextAlign = ContentAlignment.TopLeft; this.MnC28.UseVisualStyleBackColor = true; this.MnC28.Visible = false; this.MnC28.Click += new EventHandler(this.MnC28_Click); this.MnC24.BackgroundImageLayout = ImageLayout.Stretch; this.MnC24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC24.FlatAppearance.BorderSize = 2; this.MnC24.FlatAppearance.CheckedBackColor = Color.Black; this.MnC24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC24.FlatStyle = FlatStyle.Flat; this.MnC24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC24.ForeColor = SystemColors.ActiveCaptionText; this.MnC24.Location = new Point(0x99, 0xc6); this.MnC24.Name = "MnC24"; this.MnC24.Size = new Size(40, 40); this.MnC24.TabIndex = 0x8b; this.MnC24.Text = "24"; this.MnC24.TextAlign = ContentAlignment.TopLeft; this.MnC24.UseVisualStyleBackColor = true; this.MnC24.Visible = false; this.MnC24.Click += new EventHandler(this.MnC24_Click); this.MnC27.BackgroundImageLayout = ImageLayout.Stretch; this.MnC27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC27.FlatAppearance.BorderSize = 2; this.MnC27.FlatAppearance.CheckedBackColor = Color.Black; this.MnC27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC27.FlatStyle = FlatStyle.Flat; this.MnC27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC27.ForeColor = SystemColors.ActiveCaptionText; this.MnC27.Location = new Point(0x3d, 0xf4); this.MnC27.Name = "MnC27"; this.MnC27.Size = new Size(40, 40); this.MnC27.TabIndex = 0x8e; this.MnC27.Text = "27"; this.MnC27.TextAlign = ContentAlignment.TopLeft; this.MnC27.UseVisualStyleBackColor = true; this.MnC27.Visible = false; this.MnC27.Click += new EventHandler(this.MnC27_Click); this.MnC25.BackgroundImageLayout = ImageLayout.Stretch; this.MnC25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC25.FlatAppearance.BorderSize = 2; this.MnC25.FlatAppearance.CheckedBackColor = Color.Black; this.MnC25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC25.FlatStyle = FlatStyle.Flat; this.MnC25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC25.ForeColor = SystemColors.ActiveCaptionText; this.MnC25.Location = new Point(0xc6, 0xc6); this.MnC25.Name = "MnC25"; this.MnC25.Size = new Size(40, 40); this.MnC25.TabIndex = 140; this.MnC25.Text = "25"; this.MnC25.TextAlign = ContentAlignment.TopLeft; this.MnC25.UseVisualStyleBackColor = true; this.MnC25.Visible = false; this.MnC25.Click += new EventHandler(this.MnC25_Click); this.MnC26.BackgroundImageLayout = ImageLayout.Stretch; this.MnC26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC26.FlatAppearance.BorderSize = 2; this.MnC26.FlatAppearance.CheckedBackColor = Color.Black; this.MnC26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC26.FlatStyle = FlatStyle.Flat; this.MnC26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC26.ForeColor = SystemColors.ActiveCaptionText; this.MnC26.Location = new Point(15, 0xf4); this.MnC26.Name = "MnC26"; this.MnC26.Size = new Size(40, 40); this.MnC26.TabIndex = 0x8d; this.MnC26.Text = "26"; this.MnC26.TextAlign = ContentAlignment.TopLeft; this.MnC26.UseVisualStyleBackColor = true; this.MnC26.Visible = false; this.MnC26.Click += new EventHandler(this.MnC26_Click); this.refrMnC.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.refrMnC.BackColor = Color.White; this.refrMnC.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.refrMnC.Location = new Point(0x4d, 0x199); this.refrMnC.Multiline = true; this.refrMnC.Name = "refrMnC"; this.refrMnC.ReadOnly = true; this.refrMnC.ScrollBars = ScrollBars.Vertical; this.refrMnC.Size = new Size(0x2a5, 0x7c); this.refrMnC.TabIndex = 0x57; this.panel12.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel12.BackColor = Color.Transparent; this.panel12.Controls.Add(this.MnCopd); this.panel12.Controls.Add(this.MnCopc); this.panel12.Controls.Add(this.MnCopb); this.panel12.Controls.Add(this.MnCopa); this.panel12.Controls.Add(this.metroRadioButton17); this.panel12.Controls.Add(this.metroRadioButton18); this.panel12.Controls.Add(this.metroRadioButton19); this.panel12.Controls.Add(this.metroRadioButton20); this.panel12.Location = new Point(0x4d, 0x10f); this.panel12.Name = "panel12"; this.panel12.Size = new Size(0x2a5, 0x84); this.panel12.TabIndex = 0x56; this.MnCopd.AutoSize = true; this.MnCopd.Font = new Font("Britannic Bold", 11.25f); this.MnCopd.Location = new Point(60, 0x6b); this.MnCopd.Name = "MnCopd"; this.MnCopd.Size = new Size(0x24, 0x10); this.MnCopd.TabIndex = 0x6b; this.MnCopd.Text = "OpD"; this.MnCopc.AutoSize = true; this.MnCopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.MnCopc.Location = new Point(60, 0x49); this.MnCopc.Name = "MnCopc"; this.MnCopc.Size = new Size(0x23, 0x10); this.MnCopc.TabIndex = 0x6a; this.MnCopc.Text = "OpC"; this.MnCopb.AutoSize = true; this.MnCopb.Font = new Font("Britannic Bold", 11.25f); this.MnCopb.Location = new Point(0x3a, 40); this.MnCopb.Name = "MnCopb"; this.MnCopb.Size = new Size(0x23, 0x10); this.MnCopb.TabIndex = 0x69; this.MnCopb.Text = "OpB"; this.MnCopa.AutoSize = true; this.MnCopa.Font = new Font("Britannic Bold", 11.25f); this.MnCopa.Location = new Point(0x3a, 7); this.MnCopa.Name = "MnCopa"; this.MnCopa.Size = new Size(0x22, 0x10); this.MnCopa.TabIndex = 0x68; this.MnCopa.Text = "OpA"; this.metroRadioButton17.AutoSize = true; this.metroRadioButton17.Location = new Point(0x17, 8); this.metroRadioButton17.Name = "metroRadioButton17"; this.metroRadioButton17.Size = new Size(0x1f, 15); this.metroRadioButton17.Style = MetroColorStyle.Blue; this.metroRadioButton17.TabIndex = 0x1b; this.metroRadioButton17.TabStop = true; this.metroRadioButton17.Text = "A"; this.metroRadioButton17.Theme = MetroThemeStyle.Light; this.metroRadioButton17.UseCustomBackColor = true; this.metroRadioButton17.UseSelectable = true; this.metroRadioButton17.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton17.Click += new EventHandler(this.radioButton_Click4MnC); this.metroRadioButton18.AutoSize = true; this.metroRadioButton18.Location = new Point(0x17, 40); this.metroRadioButton18.Name = "metroRadioButton18"; this.metroRadioButton18.Size = new Size(30, 15); this.metroRadioButton18.Style = MetroColorStyle.Blue; this.metroRadioButton18.TabIndex = 0x1c; this.metroRadioButton18.TabStop = true; this.metroRadioButton18.Text = "B"; this.metroRadioButton18.Theme = MetroThemeStyle.Light; this.metroRadioButton18.UseSelectable = true; this.metroRadioButton18.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton18.Click += new EventHandler(this.radioButton_Click4MnC); this.metroRadioButton19.AutoSize = true; this.metroRadioButton19.Location = new Point(0x17, 0x4a); this.metroRadioButton19.Name = "metroRadioButton19"; this.metroRadioButton19.Size = new Size(0x1f, 15); this.metroRadioButton19.Style = MetroColorStyle.Blue; this.metroRadioButton19.TabIndex = 0x1d; this.metroRadioButton19.TabStop = true; this.metroRadioButton19.Text = "C"; this.metroRadioButton19.Theme = MetroThemeStyle.Light; this.metroRadioButton19.UseSelectable = true; this.metroRadioButton19.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton19.Click += new EventHandler(this.radioButton_Click4MnC); this.metroRadioButton20.AutoSize = true; this.metroRadioButton20.Location = new Point(0x17, 0x6b); this.metroRadioButton20.Name = "metroRadioButton20"; this.metroRadioButton20.Size = new Size(0x1f, 15); this.metroRadioButton20.Style = MetroColorStyle.Blue; this.metroRadioButton20.TabIndex = 30; this.metroRadioButton20.TabStop = true; this.metroRadioButton20.Text = "D"; this.metroRadioButton20.Theme = MetroThemeStyle.Light; this.metroRadioButton20.UseCustomBackColor = true; this.metroRadioButton20.UseSelectable = true; this.metroRadioButton20.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton20.Click += new EventHandler(this.radioButton_Click4MnC); this.sec5.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec5.BackColor = Color.White; this.sec5.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec5.Location = new Point(0x4d, 3); this.sec5.Multiline = true; this.sec5.Name = "sec5"; this.sec5.ReadOnly = true; this.sec5.ScrollBars = ScrollBars.Vertical; this.sec5.Size = new Size(0x2a5, 0x106); this.sec5.TabIndex = 0x55; this.metroPanel2.HorizontalScrollbarBarColor = true; this.metroPanel2.HorizontalScrollbarHighlightOnWheel = false; this.metroPanel2.HorizontalScrollbarSize = 10; this.metroPanel2.Location = new Point(12, 0x4c); this.metroPanel2.Name = "metroPanel2"; this.metroPanel2.Size = new Size(0x36d, 0x1ad); this.metroPanel2.Style = MetroColorStyle.Blue; this.metroPanel2.TabIndex = 0x11; this.metroPanel2.Theme = MetroThemeStyle.Light; this.metroPanel2.VerticalScrollbarBarColor = true; this.metroPanel2.VerticalScrollbarHighlightOnWheel = false; this.metroPanel2.VerticalScrollbarSize = 10; this.timer1.Interval = 0x3e8; this.timer1.Tick += new EventHandler(this.timer1_Tick); this.backgroundWorker1.WorkerReportsProgress = true; this.backgroundWorker1.DoWork += new DoWorkEventHandler(this.backgroundWorker1_DoWork); this.backgroundWorker1.ProgressChanged += new ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged); this.revbtn.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.revbtn.Enabled = false; this.revbtn.Location = new Point(0x217, 30); this.revbtn.Name = "revbtn"; this.revbtn.Size = new Size(0x4b, 0x17); this.revbtn.Style = MetroColorStyle.Blue; this.revbtn.TabIndex = 2; this.revbtn.Text = "Review"; this.revbtn.Theme = MetroThemeStyle.Dark; this.revbtn.UseSelectable = true; this.revbtn.Click += new EventHandler(this.metroButton9_Click_1); this.metroProgressBar1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroProgressBar1.FontWeight = MetroProgressBarWeight.Regular; this.metroProgressBar1.Location = new Point(0x6b, 30); this.metroProgressBar1.Name = "metroProgressBar1"; this.metroProgressBar1.ProgressBarStyle = ProgressBarStyle.Blocks; this.metroProgressBar1.Size = new Size(0x11a, 0x17); this.metroProgressBar1.Style = MetroColorStyle.Blue; this.metroProgressBar1.TabIndex = 3; this.metroProgressBar1.TextAlign = ContentAlignment.MiddleCenter; this.metroProgressBar1.Theme = MetroThemeStyle.Dark; this.metroLabel21.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel21.AutoSize = true; this.metroLabel21.BackColor = SystemColors.ActiveCaptionText; this.metroLabel21.FontWeight = MetroLabelWeight.Bold; this.metroLabel21.ForeColor = Color.Black; this.metroLabel21.Location = new Point(0x11f, 0x87); this.metroLabel21.Name = "metroLabel21"; this.metroLabel21.Size = new Size(0x70, 0x13); this.metroLabel21.Style = MetroColorStyle.Blue; this.metroLabel21.TabIndex = 4; this.metroLabel21.Text = "Total Answered"; this.metroLabel21.Theme = MetroThemeStyle.Dark; this.metroLabel21.UseCustomBackColor = true; this.metroLabel21.UseStyleColors = true; this.total.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.total.AutoSize = true; this.total.FontWeight = MetroLabelWeight.Bold; this.total.Location = new Point(0x1f2, 0x88); this.total.Name = "total"; this.total.Size = new Size(15, 0x13); this.total.Style = MetroColorStyle.Blue; this.total.TabIndex = 5; this.total.Text = "-"; this.total.Theme = MetroThemeStyle.Dark; this.total.UseCustomBackColor = true; this.total.UseStyleColors = true; this.metroLabel22.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel22.AutoSize = true; this.metroLabel22.FontWeight = MetroLabelWeight.Bold; this.metroLabel22.Location = new Point(0x11f, 0xb8); this.metroLabel22.Name = "metroLabel22"; this.metroLabel22.Size = new Size(0x51, 0x13); this.metroLabel22.Style = MetroColorStyle.Green; this.metroLabel22.TabIndex = 6; this.metroLabel22.Text = "Total Right"; this.metroLabel22.Theme = MetroThemeStyle.Dark; this.metroLabel22.UseCustomBackColor = true; this.metroLabel22.UseStyleColors = true; this.metroLabel23.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel23.AutoSize = true; this.metroLabel23.FontWeight = MetroLabelWeight.Bold; this.metroLabel23.Location = new Point(0x11f, 0xed); this.metroLabel23.Name = "metroLabel23"; this.metroLabel23.Size = new Size(0x5c, 0x13); this.metroLabel23.Style = MetroColorStyle.Red; this.metroLabel23.TabIndex = 7; this.metroLabel23.Text = "Total Wrong"; this.metroLabel23.Theme = MetroThemeStyle.Dark; this.metroLabel23.UseCustomBackColor = true; this.metroLabel23.UseStyleColors = true; this.right.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.right.AutoSize = true; this.right.FontWeight = MetroLabelWeight.Bold; this.right.Location = new Point(0x1f2, 0xba); this.right.Name = "right"; this.right.Size = new Size(15, 0x13); this.right.Style = MetroColorStyle.Green; this.right.TabIndex = 8; this.right.Text = "-"; this.right.Theme = MetroThemeStyle.Dark; this.right.UseCustomBackColor = true; this.right.UseStyleColors = true; this.wrong.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.wrong.AutoSize = true; this.wrong.FontWeight = MetroLabelWeight.Bold; this.wrong.Location = new Point(0x1f2, 0xef); this.wrong.Name = "wrong"; this.wrong.Size = new Size(15, 0x13); this.wrong.Style = MetroColorStyle.Red; this.wrong.TabIndex = 9; this.wrong.Text = "-"; this.wrong.Theme = MetroThemeStyle.Dark; this.wrong.UseCustomBackColor = true; this.wrong.UseStyleColors = true; this.metroLabel24.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel24.AutoSize = true; this.metroLabel24.FontWeight = MetroLabelWeight.Bold; this.metroLabel24.Location = new Point(0x121, 0x11b); this.metroLabel24.Name = "metroLabel24"; this.metroLabel24.Size = new Size(0x5b, 0x13); this.metroLabel24.Style = MetroColorStyle.Blue; this.metroLabel24.TabIndex = 10; this.metroLabel24.Text = "Unanswered"; this.metroLabel24.Theme = MetroThemeStyle.Dark; this.metroLabel24.UseCustomBackColor = true; this.unans.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.unans.AutoSize = true; this.unans.FontWeight = MetroLabelWeight.Bold; this.unans.Location = new Point(500, 0x11d); this.unans.Name = "unans"; this.unans.Size = new Size(15, 0x13); this.unans.Style = MetroColorStyle.Blue; this.unans.TabIndex = 11; this.unans.Text = "-"; this.unans.Theme = MetroThemeStyle.Dark; this.unans.UseCustomBackColor = true; this.pictureBox1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.pictureBox1.BackColor = Color.Black; this.pictureBox1.Image = Resources.mta; this.pictureBox1.Location = new Point(0x304, 0xc2); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(0x38, 0x36); this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 0x5d; this.pictureBox1.TabStop = false; this.pass.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.pass.AutoSize = true; this.pass.FontSize = MetroLabelSize.Tall; this.pass.FontWeight = MetroLabelWeight.Bold; this.pass.Location = new Point(0x33d, 0xcd); this.pass.Name = "pass"; this.pass.Size = new Size(90, 0x19); this.pass.Style = MetroColorStyle.Green; this.pass.TabIndex = 0x5e; this.pass.Text = "Loading.."; this.pass.Theme = MetroThemeStyle.Dark; this.pass.UseCustomBackColor = true; this.pass.UseStyleColors = true; this.pass.Visible = false; this.fail.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.fail.AutoSize = true; this.fail.FontSize = MetroLabelSize.Tall; this.fail.FontWeight = MetroLabelWeight.Bold; this.fail.Location = new Point(0x33d, 0xd1); this.fail.Name = "fail"; this.fail.Size = new Size(100, 0x19); this.fail.Style = MetroColorStyle.Red; this.fail.TabIndex = 0x5f; this.fail.Text = "Loading...."; this.fail.Theme = MetroThemeStyle.Dark; this.fail.UseCustomBackColor = true; this.fail.UseStyleColors = true; this.fail.Visible = false; this.metroProgressSpinner1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroProgressSpinner1.Location = new Point(740, 0x231); this.metroProgressSpinner1.Maximum = 100; this.metroProgressSpinner1.Name = "metroProgressSpinner1"; this.metroProgressSpinner1.Size = new Size(20, 0x19); this.metroProgressSpinner1.TabIndex = 0x60; this.metroProgressSpinner1.Theme = MetroThemeStyle.Dark; this.metroProgressSpinner1.UseCustomBackColor = true; this.metroProgressSpinner1.UseSelectable = true; this.aftrsbmitpnl.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.aftrsbmitpnl.BackColor = Color.Black; this.aftrsbmitpnl.BackgroundImage = Resources.Brainy_icon; this.aftrsbmitpnl.BackgroundImageLayout = ImageLayout.Center; this.aftrsbmitpnl.Controls.Add(this.metroProgressSpinner1); this.aftrsbmitpnl.Controls.Add(this.fail); this.aftrsbmitpnl.Controls.Add(this.pass); this.aftrsbmitpnl.Controls.Add(this.pictureBox1); this.aftrsbmitpnl.Controls.Add(this.unans); this.aftrsbmitpnl.Controls.Add(this.metroLabel24); this.aftrsbmitpnl.Controls.Add(this.wrong); this.aftrsbmitpnl.Controls.Add(this.right); this.aftrsbmitpnl.Controls.Add(this.metroLabel23); this.aftrsbmitpnl.Controls.Add(this.metroLabel22); this.aftrsbmitpnl.Controls.Add(this.total); this.aftrsbmitpnl.Controls.Add(this.metroLabel21); this.aftrsbmitpnl.Controls.Add(this.metroProgressBar1); this.aftrsbmitpnl.Controls.Add(this.revbtn); this.aftrsbmitpnl.Location = new Point(0, 0x69); this.aftrsbmitpnl.Name = "aftrsbmitpnl"; this.aftrsbmitpnl.Size = new Size(0x400, 0x394); this.aftrsbmitpnl.TabIndex = 0x5d; this.aftrsbmitpnl.Visible = false; this.metroLabel46.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.metroLabel46.AutoSize = true; this.metroLabel46.FontWeight = MetroLabelWeight.Bold; this.metroLabel46.Location = new Point(0x42, 4); this.metroLabel46.Name = "metroLabel46"; this.metroLabel46.Size = new Size(0x319, 0x1db); this.metroLabel46.Style = MetroColorStyle.Green; this.metroLabel46.TabIndex = 100; this.metroLabel46.Text = manager.GetString("metroLabel46.Text"); this.metroLabel46.Theme = MetroThemeStyle.Light; this.metroLabel46.UseCustomBackColor = true; this.metroLabel46.UseStyleColors = true; this.metroLabel47.AutoSize = true; this.metroLabel47.FontWeight = MetroLabelWeight.Bold; this.metroLabel47.Location = new Point(0x42, 0x18c); this.metroLabel47.Name = "metroLabel47"; this.metroLabel47.Size = new Size(0x2e7, 0x13); this.metroLabel47.Style = MetroColorStyle.Red; this.metroLabel47.TabIndex = 0x65; this.metroLabel47.Text = "NOTE: FYI the scores once submitted for an exam then you cannot update your new score for the same exam!!"; this.metroLabel47.Theme = MetroThemeStyle.Dark; this.metroLabel47.UseCustomBackColor = true; this.metroLabel47.UseStyleColors = true; this.panel24.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top; this.panel24.BackColor = Color.Black; this.panel24.Controls.Add(this.metroLabel47); this.panel24.Controls.Add(this.metroLabel46); this.panel24.Location = new Point(0, 0x60); this.panel24.Name = "panel24"; this.panel24.Size = new Size(0x400, 0x290); this.panel24.TabIndex = 0x60; this.panel24.Visible = false; this.online.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.online.Enabled = false; this.online.Location = new Point(0x285, 4); this.online.Name = "online"; this.online.Size = new Size(0x70, 30); this.online.Style = MetroColorStyle.Blue; this.online.TabIndex = 0x60; this.online.Text = "Top 5 Scorers"; this.online.Theme = MetroThemeStyle.Dark; this.online.UseSelectable = true; this.online.UseStyleColors = true; this.online.Click += new EventHandler(this.online_Click); this.metroButton7.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.metroButton7.Location = new Point(90, 9); this.metroButton7.Name = "metroButton7"; this.metroButton7.Size = new Size(0, 30); this.metroButton7.Style = MetroColorStyle.Blue; this.metroButton7.TabIndex = 0x15; this.metroButton7.Text = "Load Ans"; this.metroButton7.Theme = MetroThemeStyle.Dark; this.metroButton7.UseSelectable = true; this.metroButton7.Visible = false; this.metroButton7.Click += new EventHandler(this.metroButton7_Click); this.metroButton6.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton6.Location = new Point(0x1fd, 4); this.metroButton6.Name = "metroButton6"; this.metroButton6.Size = new Size(100, 30); this.metroButton6.Style = MetroColorStyle.Blue; this.metroButton6.TabIndex = 20; this.metroButton6.Text = "Reset Pic"; this.metroButton6.Theme = MetroThemeStyle.Dark; this.metroButton6.UseSelectable = true; this.metroButton6.UseStyleColors = true; this.metroButton6.Click += new EventHandler(this.metroButton6_Click); this.panel3.BackColor = Color.Transparent; this.panel3.BackgroundImage = Resources.new_clock; this.panel3.BackgroundImageLayout = ImageLayout.Stretch; this.panel3.Controls.Add(this.pictureBox22); this.panel3.Controls.Add(this.lblSec); this.panel3.Controls.Add(this.lblMin); this.panel3.Controls.Add(this.lblHr); this.panel3.Font = new Font("Microsoft Sans Serif", 15.75f, FontStyle.Bold, GraphicsUnit.Point, 0); this.panel3.Location = new Point(0x55, -2); this.panel3.Name = "panel3"; this.panel3.Size = new Size(0xd0, 0x29); this.panel3.TabIndex = 0x13; this.lblHr.AutoSize = true; this.lblHr.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0); this.lblHr.ForeColor = SystemColors.ControlLightLight; this.lblHr.Location = new Point(0x1b, 5); this.lblHr.Name = "lblHr"; this.lblHr.Size = new Size(0x20, 0x18); this.lblHr.TabIndex = 0x17; this.lblHr.Text = "00"; this.lblMin.AutoSize = true; this.lblMin.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0); this.lblMin.ForeColor = SystemColors.ControlLightLight; this.lblMin.Location = new Point(0x58, 5); this.lblMin.Name = "lblMin"; this.lblMin.Size = new Size(0x20, 0x18); this.lblMin.TabIndex = 0x18; this.lblMin.Text = "00"; this.lblMin.Click += new EventHandler(this.lblMin_Click); this.lblSec.AutoSize = true; this.lblSec.BackColor = Color.Transparent; this.lblSec.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0); this.lblSec.ForeColor = SystemColors.ControlLightLight; this.lblSec.Location = new Point(0x97, 5); this.lblSec.Name = "lblSec"; this.lblSec.Size = new Size(0x20, 0x18); this.lblSec.TabIndex = 0x19; this.lblSec.Text = "00"; this.pictureBox22.Image = Resources.sending; this.pictureBox22.Location = new Point(0xc0, 0x16); this.pictureBox22.Name = "pictureBox22"; this.pictureBox22.Size = new Size(0x10, 0x13); this.pictureBox22.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox22.TabIndex = 0x62; this.pictureBox22.TabStop = false; this.pictureBox22.Visible = false; this.submit.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.submit.Location = new Point(650, 14); this.submit.Name = "submit"; this.submit.Size = new Size(40, 20); this.submit.TabIndex = 0x5b; this.submit.Visible = false; this.panel23.BackgroundImageLayout = ImageLayout.Stretch; this.panel23.Controls.Add(this.metroLabel45); this.panel23.Controls.Add(this.panel22); this.panel23.Location = new Point(0x12b, 3); this.panel23.Name = "panel23"; this.panel23.Size = new Size(0x9f, 30); this.panel23.TabIndex = 0x63; this.panel23.Visible = false; this.panel22.BackgroundImage = Resources.icon_timer; this.panel22.BackgroundImageLayout = ImageLayout.Stretch; this.panel22.Location = new Point(3, 1); this.panel22.Name = "panel22"; this.panel22.Size = new Size(0x21, 0x1c); this.panel22.TabIndex = 0x62; this.metroLabel45.AutoSize = true; this.metroLabel45.FontWeight = MetroLabelWeight.Bold; this.metroLabel45.Location = new Point(0x2a, 8); this.metroLabel45.Name = "metroLabel45"; this.metroLabel45.Size = new Size(0x97, 0x13); this.metroLabel45.Style = MetroColorStyle.Red; this.metroLabel45.TabIndex = 0x63; this.metroLabel45.Text = "Hurry Up!!!................"; this.metroLabel45.Theme = MetroThemeStyle.Dark; this.metroLabel45.UseCustomBackColor = true; this.metroLabel45.UseStyleColors = true; this.metroButton8.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton8.Enabled = false; this.metroButton8.Location = new Point(0x39c, 4); this.metroButton8.Name = "metroButton8"; this.metroButton8.Size = new Size(0x5d, 30); this.metroButton8.Style = MetroColorStyle.Blue; this.metroButton8.TabIndex = 0x12; this.metroButton8.Text = "Submit"; this.metroButton8.Theme = MetroThemeStyle.Dark; this.metroButton8.UseSelectable = true; this.metroButton8.UseStyleColors = true; this.metroButton8.Click += new EventHandler(this.metroButton8_Click); this.metroButton1.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton1.Location = new Point(0x31a, 4); this.metroButton1.Name = "metroButton1"; this.metroButton1.Size = new Size(0x5e, 30); this.metroButton1.Style = MetroColorStyle.Blue; this.metroButton1.TabIndex = 1; this.metroButton1.Text = "Start"; this.metroButton1.Theme = MetroThemeStyle.Dark; this.metroButton1.UseSelectable = true; this.metroButton1.UseStyleColors = true; this.metroButton1.Click += new EventHandler(this.metroButton1_Click); this.metroButton2.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton2.Location = new Point(0x39c, 4); this.metroButton2.Name = "metroButton2"; this.metroButton2.Size = new Size(0x5d, 30); this.metroButton2.TabIndex = 100; this.metroButton2.Text = "Submit"; this.metroButton2.Theme = MetroThemeStyle.Dark; this.metroButton2.UseSelectable = true; this.metroButton2.UseStyleColors = true; this.metroButton2.Click += new EventHandler(this.metroButton8_Click); this.button1.BackgroundImage = Resources.hom; this.button1.BackgroundImageLayout = ImageLayout.Stretch; this.button1.Location = new Point(9, -2); this.button1.Name = "button1"; this.button1.Size = new Size(0x41, 0x29); this.button1.TabIndex = 0x61; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new EventHandler(this.button1_Click_1); this.panel25.Controls.Add(this.button1); this.panel25.Controls.Add(this.panel23); this.panel25.Controls.Add(this.panel3); this.panel25.Controls.Add(this.metroButton7); this.panel25.Location = new Point(4, 2); this.panel25.Name = "panel25"; this.panel25.Size = new Size(0x1e2, 0x2d); this.panel25.TabIndex = 0x65; this.panel8.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel8.BackColor = Color.Transparent; this.panel8.Controls.Add(this.ref4DI); this.panel8.Controls.Add(this.sec2); this.panel8.Controls.Add(this.panel1); this.panel8.Location = new Point(0x3e, 0x120); this.panel8.Name = "panel8"; this.panel8.Size = new Size(0x2af, 0x162); this.panel8.TabIndex = 80; this.AllowDrop = true; base.AutoScaleDimensions = new SizeF(96f, 96f); base.AutoScaleMode = AutoScaleMode.Dpi; this.AutoSize = true; this.BackColor = Color.DeepSkyBlue; this.BackgroundImageLayout = ImageLayout.None; base.ClientSize = new Size(0x400, 0x2d9); base.Controls.Add(this.panel25); base.Controls.Add(this.metroButton2); base.Controls.Add(this.panel24); base.Controls.Add(this.metroButton1); base.Controls.Add(this.aftrsbmitpnl); base.Controls.Add(this.metroButton8); base.Controls.Add(this.metroTabControl1); base.Controls.Add(this.metroPanel2); base.Controls.Add(this.metroButton6); base.Controls.Add(this.online); base.Controls.Add(this.submit); base.FormBorderStyle = FormBorderStyle.None; base.Icon = (Icon) manager.GetObject("$this.Icon"); base.MinimizeBox = false; base.Name = "Form1"; this.Text = "MTA Exam Simulator Beta"; base.Load += new EventHandler(this.Form1_Load); base.DragDrop += new DragEventHandler(this.Form1_DragDrop); base.DragEnter += new DragEventHandler(this.Form1_DragEnter); this.metroTabControl1.ResumeLayout(false); this.QAtab.ResumeLayout(false); this.QAtab.PerformLayout(); ((ISupportInitialize) this.picBox).EndInit(); this.panel13.ResumeLayout(false); this.panel13.PerformLayout(); ((ISupportInitialize) this.pictureBox5).EndInit(); ((ISupportInitialize) this.pictureBox4).EndInit(); ((ISupportInitialize) this.pictureBox3).EndInit(); ((ISupportInitialize) this.pictureBox2).EndInit(); this.adminchk.ResumeLayout(false); this.adminchk.PerformLayout(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.panel2.ResumeLayout(false); this.ENGtab.ResumeLayout(false); this.ENGtab.PerformLayout(); this.panel18.ResumeLayout(false); this.panel18.PerformLayout(); this.panel14.ResumeLayout(false); this.panel14.PerformLayout(); ((ISupportInitialize) this.pictureBox6).EndInit(); ((ISupportInitialize) this.pictureBox7).EndInit(); ((ISupportInitialize) this.pictureBox8).EndInit(); ((ISupportInitialize) this.pictureBox9).EndInit(); this.panel6.ResumeLayout(false); this.panel4.ResumeLayout(false); this.panel4.PerformLayout(); this.GKtab.ResumeLayout(false); this.GKtab.PerformLayout(); this.panel19.ResumeLayout(false); this.panel19.PerformLayout(); this.panel15.ResumeLayout(false); this.panel15.PerformLayout(); ((ISupportInitialize) this.pictureBox10).EndInit(); ((ISupportInitialize) this.pictureBox11).EndInit(); ((ISupportInitialize) this.pictureBox12).EndInit(); ((ISupportInitialize) this.pictureBox13).EndInit(); this.panel7.ResumeLayout(false); this.panel5.ResumeLayout(false); this.panel5.PerformLayout(); this.RSNtab.ResumeLayout(false); this.RSNtab.PerformLayout(); this.panel20.ResumeLayout(false); this.panel20.PerformLayout(); this.panel16.ResumeLayout(false); this.panel16.PerformLayout(); ((ISupportInitialize) this.pictureBox14).EndInit(); ((ISupportInitialize) this.pictureBox15).EndInit(); ((ISupportInitialize) this.pictureBox16).EndInit(); ((ISupportInitialize) this.pictureBox17).EndInit(); this.panel9.ResumeLayout(false); this.panel10.ResumeLayout(false); this.panel10.PerformLayout(); this.MnCtab.ResumeLayout(false); this.MnCtab.PerformLayout(); this.panel21.ResumeLayout(false); this.panel21.PerformLayout(); this.panel17.ResumeLayout(false); this.panel17.PerformLayout(); ((ISupportInitialize) this.pictureBox18).EndInit(); ((ISupportInitialize) this.pictureBox19).EndInit(); ((ISupportInitialize) this.pictureBox20).EndInit(); ((ISupportInitialize) this.pictureBox21).EndInit(); this.panel11.ResumeLayout(false); this.panel12.ResumeLayout(false); this.panel12.PerformLayout(); ((ISupportInitialize) this.pictureBox1).EndInit(); this.aftrsbmitpnl.ResumeLayout(false); this.aftrsbmitpnl.PerformLayout(); this.panel24.ResumeLayout(false); this.panel24.PerformLayout(); this.panel3.ResumeLayout(false); this.panel3.PerformLayout(); ((ISupportInitialize) this.pictureBox22).EndInit(); this.panel23.ResumeLayout(false); this.panel23.PerformLayout(); this.panel25.ResumeLayout(false); this.panel8.ResumeLayout(false); this.panel8.PerformLayout(); base.ResumeLayout(false); base.PerformLayout(); }
private void ClearPanel(Panel panel) { //CREATE TITLE LABEL MetroLabel title_label = new MetroLabel(); title_label.Theme = MetroThemeStyle.Dark; title_label.ForeColor = Color.White; title_label.AutoSize = true; title_label.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); title_label.Location = new System.Drawing.Point(74, 11); title_label.Size = new System.Drawing.Size(205, 19); title_label.TabIndex = 3; title_label.Text = "FACE COMPARISON ONGOING"; //CREATE LINE SEPARATOR MetroLabel separator_label = new MetroLabel(); separator_label.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; separator_label.Location = new System.Drawing.Point(19, 39); separator_label.Size = new System.Drawing.Size(335, 2); separator_label.TabIndex = 2; //COZ THIS IS NOT ON THE UI THREAD if (panel.InvokeRequired) { //CLEAR THE PANEL Action action = () => panel.Controls.Clear(); panel.Invoke(action); //ADD TITLE AND SEPARATOR LINE TO PANEL action = () => panel.Controls.AddRange(new Control[] { title_label, separator_label }); panel.Invoke(action); } //IF ON UI THREAD::HIGHLY UNLIKELY else { //CLEAR THE PANEL panel.Controls.Clear(); //ADD TITLE AND SEPARATOR LINE TO PANEL panel.Controls.AddRange(new Control[] { title_label, separator_label }); } }
public void ViewRecruiterInfo(Recruiter rec, MetroFramework.Controls.MetroLabel name, MetroFramework.Controls.MetroLabel number) { db.ViewRecruiterInfoToSeeker(rec, name, number); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelDescription; MetroFramework.Controls.MetroLabel labelCreateDate; this.labelFrom = new MetroFramework.Controls.MetroLabel(); this.comboBoxSupplierFrom = new System.Windows.Forms.ComboBox(); this.label1 = new MetroFramework.Controls.MetroLabel(); this.comboBoxSupplierTo = new System.Windows.Forms.ComboBox(); this.textBoxDescription = new MetroFramework.Controls.MetroTextBox(); this.dateTimePickerCreateDate = new System.Windows.Forms.DateTimePicker(); this.buttonOk = new System.Windows.Forms.Button(); this.buttonClose = new System.Windows.Forms.Button(); labelDescription = new MetroFramework.Controls.MetroLabel(); labelCreateDate = new MetroFramework.Controls.MetroLabel(); this.SuspendLayout(); // // labelDescription // labelDescription.AutoSize = true; labelDescription.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelDescription.Location = new System.Drawing.Point(12, 119); labelDescription.Name = "labelDescription"; labelDescription.Size = new System.Drawing.Size(77, 19); labelDescription.TabIndex = 235; labelDescription.Text = "Description:"; labelDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelCreateDate // labelCreateDate.AutoSize = true; labelCreateDate.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelCreateDate.Location = new System.Drawing.Point(12, 205); labelCreateDate.Name = "labelCreateDate"; labelCreateDate.Size = new System.Drawing.Size(82, 19); labelCreateDate.TabIndex = 238; labelCreateDate.Text = "Create Date:"; labelCreateDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelFrom // this.labelFrom.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.labelFrom.Location = new System.Drawing.Point(12, 63); this.labelFrom.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelFrom.Name = "labelFrom"; this.labelFrom.Size = new System.Drawing.Size(72, 25); this.labelFrom.TabIndex = 205; this.labelFrom.Text = "From:"; this.labelFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxSupplierFrom // this.comboBoxSupplierFrom.BackColor = System.Drawing.Color.White; this.comboBoxSupplierFrom.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxSupplierFrom.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxSupplierFrom.Location = new System.Drawing.Point(108, 63); this.comboBoxSupplierFrom.Name = "comboBoxSupplierFrom"; this.comboBoxSupplierFrom.Size = new System.Drawing.Size(250, 22); this.comboBoxSupplierFrom.TabIndex = 204; this.comboBoxSupplierFrom.SelectedIndexChanged += new System.EventHandler(this.comboBoxSupplierFrom_SelectedIndexChanged); this.comboBoxSupplierFrom.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // label1 // this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.label1.Location = new System.Drawing.Point(12, 91); this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 25); this.label1.TabIndex = 207; this.label1.Text = "To:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // comboBoxSupplierTo // this.comboBoxSupplierTo.BackColor = System.Drawing.Color.White; this.comboBoxSupplierTo.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.comboBoxSupplierTo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); this.comboBoxSupplierTo.Location = new System.Drawing.Point(108, 91); this.comboBoxSupplierTo.Name = "comboBoxSupplierTo"; this.comboBoxSupplierTo.Size = new System.Drawing.Size(250, 22); this.comboBoxSupplierTo.TabIndex = 206; this.comboBoxSupplierTo.SelectedIndexChanged += new System.EventHandler(this.comboBoxSupplierTo_SelectedIndexChanged); this.comboBoxSupplierTo.MouseWheel += CmbScrollHelper.ComboBoxScroll_MouseWheel; // // textBoxDescription // // // // this.textBoxDescription.CustomButton.Image = null; this.textBoxDescription.CustomButton.Location = new System.Drawing.Point(172, 2); this.textBoxDescription.CustomButton.Name = ""; this.textBoxDescription.CustomButton.Size = new System.Drawing.Size(75, 75); this.textBoxDescription.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxDescription.CustomButton.TabIndex = 1; this.textBoxDescription.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxDescription.CustomButton.UseSelectable = true; this.textBoxDescription.CustomButton.Visible = false; this.textBoxDescription.ForeColor = System.Drawing.Color.DimGray; this.textBoxDescription.Lines = new string[0]; this.textBoxDescription.Location = new System.Drawing.Point(108, 119); this.textBoxDescription.MaxLength = 32767; this.textBoxDescription.Multiline = true; this.textBoxDescription.Name = "textBoxDescription"; this.textBoxDescription.PasswordChar = '\0'; this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxDescription.SelectedText = ""; this.textBoxDescription.SelectionLength = 0; this.textBoxDescription.SelectionStart = 0; this.textBoxDescription.ShortcutsEnabled = true; this.textBoxDescription.Size = new System.Drawing.Size(250, 80); this.textBoxDescription.TabIndex = 236; this.textBoxDescription.UseSelectable = true; this.textBoxDescription.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxDescription.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // dateTimePickerCreateDate // this.dateTimePickerCreateDate.CalendarForeColor = System.Drawing.Color.DimGray; this.dateTimePickerCreateDate.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.dateTimePickerCreateDate.Location = new System.Drawing.Point(108, 205); this.dateTimePickerCreateDate.MinDate = new System.DateTime(1950, 1, 1, 0, 0, 0, 0); this.dateTimePickerCreateDate.Name = "dateTimePickerCreateDate"; this.dateTimePickerCreateDate.Size = new System.Drawing.Size(250, 22); this.dateTimePickerCreateDate.TabIndex = 237; // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(202, 244); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 240; this.buttonOk.Text = "OK"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // buttonClose // this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonClose.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonClose.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonClose.Location = new System.Drawing.Point(283, 244); this.buttonClose.Name = "buttonClose"; this.buttonClose.Size = new System.Drawing.Size(75, 33); this.buttonClose.TabIndex = 239; this.buttonClose.Text = "Cancel"; this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click); // // MailChatAddingForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(375, 280); this.Controls.Add(this.buttonOk); this.Controls.Add(this.buttonClose); this.Controls.Add(labelCreateDate); this.Controls.Add(this.dateTimePickerCreateDate); this.Controls.Add(this.textBoxDescription); this.Controls.Add(labelDescription); this.Controls.Add(this.label1); this.Controls.Add(this.comboBoxSupplierTo); this.Controls.Add(this.labelFrom); this.Controls.Add(this.comboBoxSupplierFrom); this.MaximumSize = new System.Drawing.Size(375, 280); this.MinimumSize = new System.Drawing.Size(375, 280); this.Name = "MailChatAddingForm"; this.ShowIcon = false; this.Text = "MailChatAddingForm"; this.Load += new System.EventHandler(this.MailChatAddingForm_Load); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { MetroFramework.Controls.MetroLabel labelNewPassword; MetroFramework.Controls.MetroLabel labelConfirmPassword; this.textBoxNewPassword = new MetroFramework.Controls.MetroTextBox(); this.textBoxConfirmPassword = new MetroFramework.Controls.MetroTextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOk = new System.Windows.Forms.Button(); this.checkBox1 = new MetroFramework.Controls.MetroCheckBox(); labelNewPassword = new MetroFramework.Controls.MetroLabel(); labelConfirmPassword = new MetroFramework.Controls.MetroLabel(); this.SuspendLayout(); // // labelNewPassword // labelNewPassword.AutoSize = true; labelNewPassword.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122))))); labelNewPassword.Location = new System.Drawing.Point(11, 73); labelNewPassword.Name = "labelNewPassword"; labelNewPassword.Size = new System.Drawing.Size(97, 19); labelNewPassword.TabIndex = 26; labelNewPassword.Text = "New password:"******"labelConfirmPassword"; labelConfirmPassword.Size = new System.Drawing.Size(119, 19); labelConfirmPassword.TabIndex = 28; labelConfirmPassword.Text = "Confirm password:"******""; this.textBoxNewPassword.CustomButton.Size = new System.Drawing.Size(15, 15); this.textBoxNewPassword.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxNewPassword.CustomButton.TabIndex = 1; this.textBoxNewPassword.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxNewPassword.CustomButton.UseSelectable = true; this.textBoxNewPassword.CustomButton.Visible = false; this.textBoxNewPassword.ForeColor = System.Drawing.Color.DimGray; this.textBoxNewPassword.Lines = new string[0]; this.textBoxNewPassword.Location = new System.Drawing.Point(143, 73); this.textBoxNewPassword.MaxLength = 32767; this.textBoxNewPassword.Name = "textBoxNewPassword"; this.textBoxNewPassword.PasswordChar = '*'; this.textBoxNewPassword.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxNewPassword.SelectedText = ""; this.textBoxNewPassword.SelectionLength = 0; this.textBoxNewPassword.SelectionStart = 0; this.textBoxNewPassword.ShortcutsEnabled = true; this.textBoxNewPassword.Size = new System.Drawing.Size(250, 20); this.textBoxNewPassword.TabIndex = 27; this.textBoxNewPassword.UseSelectable = true; this.textBoxNewPassword.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxNewPassword.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // textBoxConfirmPassword // // // // this.textBoxConfirmPassword.CustomButton.Image = null; this.textBoxConfirmPassword.CustomButton.Location = new System.Drawing.Point(232, 2); this.textBoxConfirmPassword.CustomButton.Name = ""; this.textBoxConfirmPassword.CustomButton.Size = new System.Drawing.Size(15, 15); this.textBoxConfirmPassword.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; this.textBoxConfirmPassword.CustomButton.TabIndex = 1; this.textBoxConfirmPassword.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; this.textBoxConfirmPassword.CustomButton.UseSelectable = true; this.textBoxConfirmPassword.CustomButton.Visible = false; this.textBoxConfirmPassword.ForeColor = System.Drawing.Color.DimGray; this.textBoxConfirmPassword.Lines = new string[0]; this.textBoxConfirmPassword.Location = new System.Drawing.Point(143, 110); this.textBoxConfirmPassword.MaxLength = 32767; this.textBoxConfirmPassword.Name = "textBoxConfirmPassword"; this.textBoxConfirmPassword.PasswordChar = '*'; this.textBoxConfirmPassword.ScrollBars = System.Windows.Forms.ScrollBars.None; this.textBoxConfirmPassword.SelectedText = ""; this.textBoxConfirmPassword.SelectionLength = 0; this.textBoxConfirmPassword.SelectionStart = 0; this.textBoxConfirmPassword.ShortcutsEnabled = true; this.textBoxConfirmPassword.Size = new System.Drawing.Size(250, 20); this.textBoxConfirmPassword.TabIndex = 29; this.textBoxConfirmPassword.UseSelectable = true; this.textBoxConfirmPassword.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); this.textBoxConfirmPassword.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); // // buttonCancel // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonCancel.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonCancel.Location = new System.Drawing.Point(318, 159); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 33); this.buttonCancel.TabIndex = 33; this.buttonCancel.Text = "Cancel"; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick); // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonOk.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.buttonOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(155)))), ((int)(((byte)(246))))); this.buttonOk.Location = new System.Drawing.Point(237, 159); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 33); this.buttonOk.TabIndex = 32; this.buttonOk.Text = "Ok"; this.buttonOk.Click += new System.EventHandler(this.ButtonOkClick); // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.Location = new System.Drawing.Point(288, 138); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(105, 15); this.checkBox1.TabIndex = 34; this.checkBox1.Text = "Show password"; this.checkBox1.UseSelectable = true; this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); // // PasswordChangeForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(405, 204); this.Controls.Add(this.checkBox1); this.Controls.Add(this.textBoxConfirmPassword); this.Controls.Add(labelConfirmPassword); this.Controls.Add(this.textBoxNewPassword); this.Controls.Add(labelNewPassword); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOk); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "PasswordChangeForm"; this.Resizable = false; this.ShowIcon = false; this.Text = "Password Change"; this.ResumeLayout(false); this.PerformLayout(); }