2 writes to _defaultCellStyle
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
1976
_defaultCellStyle
= DefaultDefaultCellStyle;
2040
_defaultCellStyle
= value;
19 references to _defaultCellStyle
System.Windows.Forms (19)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (19)
1974
if (
_defaultCellStyle
is null)
1977
return
_defaultCellStyle
;
1979
else if (
_defaultCellStyle
.BackColor == Color.Empty
1980
||
_defaultCellStyle
.ForeColor == Color.Empty
1981
||
_defaultCellStyle
.SelectionBackColor == Color.Empty
1982
||
_defaultCellStyle
.SelectionForeColor == Color.Empty
1983
||
_defaultCellStyle
.Font is null
1984
||
_defaultCellStyle
.Alignment == DataGridViewContentAlignment.NotSet
1985
||
_defaultCellStyle
.WrapMode == DataGridViewTriState.NotSet)
1987
DataGridViewCellStyle defaultCellStyleTmp = new(
_defaultCellStyle
)
1991
if (
_defaultCellStyle
.BackColor == Color.Empty)
1996
if (
_defaultCellStyle
.ForeColor == Color.Empty)
2002
if (
_defaultCellStyle
.SelectionBackColor == Color.Empty)
2007
if (
_defaultCellStyle
.SelectionForeColor == Color.Empty)
2012
if (
_defaultCellStyle
.Font is null)
2018
if (
_defaultCellStyle
.Alignment == DataGridViewContentAlignment.NotSet)
2023
if (
_defaultCellStyle
.WrapMode == DataGridViewTriState.NotSet)
2033
return
_defaultCellStyle
;
2041
_defaultCellStyle
?.AddScope(this, DataGridViewCellStyleScopes.DataGridView);