2 overrides of DefaultCellStyle
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewColumn.cs (1)
292
public override DataGridViewCellStyle
DefaultCellStyle
winforms\Managed\System\WinForms\DataGridViewRow.cs (1)
136
public override DataGridViewCellStyle
DefaultCellStyle
3 writes to DefaultCellStyle
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewBand.cs (1)
919
dataGridViewBand.
DefaultCellStyle
= new DataGridViewCellStyle(this.DefaultCellStyle);
winforms\Managed\System\WinForms\DataGridViewColumn.cs (1)
300
base.
DefaultCellStyle
= value;
winforms\Managed\System\WinForms\DataGridViewRow.cs (1)
148
base.
DefaultCellStyle
= value;
7 references to DefaultCellStyle
System.Windows.Forms (7)
winforms\Managed\System\WinForms\DataGridViewBand.cs (5)
142
dgvcs = this.
DefaultCellStyle
;
156
(dgvcs != null && value != null && !dgvcs.Equals(this.
DefaultCellStyle
))) && this.DataGridView != null)
919
dataGridViewBand.DefaultCellStyle = new DataGridViewCellStyle(this.
DefaultCellStyle
);
1023
this.
DefaultCellStyle
.RemoveScope(this.bandIsRow ? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
1027
this.
DefaultCellStyle
.AddScope(this.DataGridView,
winforms\Managed\System\WinForms\DataGridViewColumn.cs (1)
296
return base.
DefaultCellStyle
;
winforms\Managed\System\WinForms\DataGridViewRow.cs (1)
140
return base.
DefaultCellStyle
;