ATMLCommonLibrary.forms.ATMLErrorListBox.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            this.dbGrid = new System.Windows.Forms.DataGridView();
            this.number = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.error = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dbGrid)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.dbGrid);
            this.panel1.Size = new System.Drawing.Size(673, 348);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(611, 364);
            this.btnCancel.Text = "Close";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnOk
            // 
            this.btnOk.Location = new System.Drawing.Point(530, 364);
            this.btnOk.Visible = false;
            // 
            // lblDenoteRequiredField
            // 
            this.lblDenoteRequiredField.Location = new System.Drawing.Point(1, 372);
            this.lblDenoteRequiredField.Visible = false;
            // 
            // dbGrid
            // 
            this.dbGrid.AllowUserToAddRows = false;
            this.dbGrid.AllowUserToDeleteRows = false;
            this.dbGrid.AllowUserToResizeColumns = false;
            this.dbGrid.AllowUserToResizeRows = false;
            this.dbGrid.BackgroundColor = System.Drawing.Color.White;
            this.dbGrid.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dbGrid.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            this.dbGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dbGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.number,
            this.error});
            this.dbGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dbGrid.GridColor = System.Drawing.Color.White;
            this.dbGrid.Location = new System.Drawing.Point(0, 0);
            this.dbGrid.Name = "dbGrid";
            this.dbGrid.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dbGrid.RowHeadersDefaultCellStyle = dataGridViewCellStyle1;
            this.dbGrid.RowHeadersVisible = false;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dbGrid.RowsDefaultCellStyle = dataGridViewCellStyle2;
            this.dbGrid.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.dbGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dbGrid.ShowEditingIcon = false;
            this.dbGrid.Size = new System.Drawing.Size(673, 348);
            this.dbGrid.TabIndex = 0;
            this.dbGrid.Resize += new System.EventHandler(this.dbGrid_Resize);
            // 
            // number
            // 
            this.number.Frozen = true;
            this.number.HeaderText = "No";
            this.number.Name = "number";
            this.number.Width = 40;
            // 
            // error
            // 
            this.error.HeaderText = "Error";
            this.error.Name = "error";
            // 
            // ATMLErrorListBox
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(698, 391);
            this.Name = "ATMLErrorListBox";
            this.Text = "ATML Validation Errors Found!";
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dbGrid)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }