30 references to RowsDefaultCellStyle
System.Windows.Forms (30)
winforms\Managed\System\WinForms\DataGridView.cs (2)
4467
DataGridViewCellStyle cs = this.
RowsDefaultCellStyle
;
4474
DataGridViewCellStyleDifferences dgvcsc = cs.GetDifferencesFrom(this.
RowsDefaultCellStyle
);
winforms\Managed\System\WinForms\DataGridViewCell.cs (26)
2221
else if (!this.DataGridView.
RowsDefaultCellStyle
.BackColor.IsEmpty &&
2224
inheritedCellStyleTmp.BackColor = this.DataGridView.
RowsDefaultCellStyle
.BackColor;
2247
else if (!this.DataGridView.
RowsDefaultCellStyle
.ForeColor.IsEmpty &&
2250
inheritedCellStyleTmp.ForeColor = this.DataGridView.
RowsDefaultCellStyle
.ForeColor;
2273
else if (!this.DataGridView.
RowsDefaultCellStyle
.SelectionBackColor.IsEmpty &&
2276
inheritedCellStyleTmp.SelectionBackColor = this.DataGridView.
RowsDefaultCellStyle
.SelectionBackColor;
2299
else if (!this.DataGridView.
RowsDefaultCellStyle
.SelectionForeColor.IsEmpty &&
2302
inheritedCellStyleTmp.SelectionForeColor = this.DataGridView.
RowsDefaultCellStyle
.SelectionForeColor;
2326
else if (this.DataGridView.
RowsDefaultCellStyle
.Font != null &&
2329
inheritedCellStyleTmp.Font = this.DataGridView.
RowsDefaultCellStyle
.Font;
2352
else if (!this.DataGridView.
RowsDefaultCellStyle
.IsNullValueDefault &&
2355
inheritedCellStyleTmp.NullValue = this.DataGridView.
RowsDefaultCellStyle
.NullValue;
2379
else if (!this.DataGridView.
RowsDefaultCellStyle
.IsDataSourceNullValueDefault &&
2382
inheritedCellStyleTmp.DataSourceNullValue = this.DataGridView.
RowsDefaultCellStyle
.DataSourceNullValue;
2406
else if (this.DataGridView.
RowsDefaultCellStyle
.Format.Length != 0 &&
2409
inheritedCellStyleTmp.Format = this.DataGridView.
RowsDefaultCellStyle
.Format;
2432
else if (!this.DataGridView.
RowsDefaultCellStyle
.IsFormatProviderDefault &&
2435
inheritedCellStyleTmp.FormatProvider = this.DataGridView.
RowsDefaultCellStyle
.FormatProvider;
2458
else if (this.DataGridView.
RowsDefaultCellStyle
.Alignment != DataGridViewContentAlignment.NotSet &&
2461
inheritedCellStyleTmp.AlignmentInternal = this.DataGridView.
RowsDefaultCellStyle
.Alignment;
2485
else if (this.DataGridView.
RowsDefaultCellStyle
.WrapMode != DataGridViewTriState.NotSet &&
2488
inheritedCellStyleTmp.WrapModeInternal = this.DataGridView.
RowsDefaultCellStyle
.WrapMode;
2512
else if (this.DataGridView.
RowsDefaultCellStyle
.Tag != null &&
2515
inheritedCellStyleTmp.Tag = this.DataGridView.
RowsDefaultCellStyle
.Tag;
2538
else if (this.DataGridView.
RowsDefaultCellStyle
.Padding != Padding.Empty &&
2541
inheritedCellStyleTmp.PaddingInternal = this.DataGridView.
RowsDefaultCellStyle
.Padding;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
28159
return !this.
RowsDefaultCellStyle
.Equals(defaultStyle);
winforms\Managed\System\WinForms\DataGridViewRow.cs (1)
885
DataGridViewCellStyle rowsDefaultCellStyle = this.DataGridView.
RowsDefaultCellStyle
;