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)
1978if (_defaultCellStyle is null) 1981return _defaultCellStyle; 1983else 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) 1991DataGridViewCellStyle defaultCellStyleTmp = new(_defaultCellStyle) 1995if (_defaultCellStyle.BackColor == Color.Empty) 2000if (_defaultCellStyle.ForeColor == Color.Empty) 2006if (_defaultCellStyle.SelectionBackColor == Color.Empty) 2011if (_defaultCellStyle.SelectionForeColor == Color.Empty) 2016if (_defaultCellStyle.Font is null) 2022if (_defaultCellStyle.Alignment == DataGridViewContentAlignment.NotSet) 2027if (_defaultCellStyle.WrapMode == DataGridViewTriState.NotSet) 2037return _defaultCellStyle; 2045_defaultCellStyle?.AddScope(this, DataGridViewCellStyleScopes.DataGridView);