2 writes to _defaultCellStyle
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
1980
_defaultCellStyle
= DefaultDefaultCellStyle;
2044
_defaultCellStyle
= value;
19 references to _defaultCellStyle
System.Windows.Forms (19)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (19)
1978
if (
_defaultCellStyle
is null)
1981
return
_defaultCellStyle
;
1983
else if (
_defaultCellStyle
.BackColor == Color.Empty
1984
||
_defaultCellStyle
.ForeColor == Color.Empty
1985
||
_defaultCellStyle
.SelectionBackColor == Color.Empty
1986
||
_defaultCellStyle
.SelectionForeColor == Color.Empty
1987
||
_defaultCellStyle
.Font is null
1988
||
_defaultCellStyle
.Alignment == DataGridViewContentAlignment.NotSet
1989
||
_defaultCellStyle
.WrapMode == DataGridViewTriState.NotSet)
1991
DataGridViewCellStyle defaultCellStyleTmp = new(
_defaultCellStyle
)
1995
if (
_defaultCellStyle
.BackColor == Color.Empty)
2000
if (
_defaultCellStyle
.ForeColor == Color.Empty)
2006
if (
_defaultCellStyle
.SelectionBackColor == Color.Empty)
2011
if (
_defaultCellStyle
.SelectionForeColor == Color.Empty)
2016
if (
_defaultCellStyle
.Font is null)
2022
if (
_defaultCellStyle
.Alignment == DataGridViewContentAlignment.NotSet)
2027
if (
_defaultCellStyle
.WrapMode == DataGridViewTriState.NotSet)
2037
return
_defaultCellStyle
;
2045
_defaultCellStyle
?.AddScope(this, DataGridViewCellStyleScopes.DataGridView);