You are on page 1of 1

System.Windows.Forms.

DataGridViewCellStyle dataGridViewCellStyle1 = new


System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new
System.Windows.Forms.DataGridViewCellStyle();

this.accountGroupDataGridView.BackgroundColor =
System.Drawing.SystemColors.Window;
dataGridViewCellStyle1.Alignment =
System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Verdana", 8.25F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle1.ForeColor =
System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(5);
dataGridViewCellStyle1.SelectionBackColor =
System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor =
System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode =
System.Windows.Forms.DataGridViewTriState.True;
this.accountGroupDataGridView.ColumnHeadersDefaultCellStyle =
dataGridViewCellStyle1;
this.accountGroupDataGridView.ColumnHeadersHeightSizeMode =
System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewCellStyle2.Alignment =
System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle2.Font = new System.Drawing.Font("Verdana", 8.25F,
System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle2.ForeColor =
System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle2.SelectionBackColor =
System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor =
System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode =
System.Windows.Forms.DataGridViewTriState.False;
this.accountGroupDataGridView.DefaultCellStyle =
dataGridViewCellStyle2;

this.groupIdTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.groupIdTextBox.ForeColor = System.Drawing.SystemColors.Window;
this.groupIdTextBox.TabStop = false;

You might also like