30 references to RowsDefaultCellStyle
System.Windows.Forms (30)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
3507DataGridViewCellStyle cs = RowsDefaultCellStyle; 3512DataGridViewCellStyleDifferences dgvcsc = cs.GetDifferencesFrom(RowsDefaultCellStyle);
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
28226return !RowsDefaultCellStyle.Equals(defaultStyle);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (26)
1939else if (!DataGridView.RowsDefaultCellStyle.BackColor.IsEmpty && 1942inheritedCellStyleTmp.BackColor = DataGridView.RowsDefaultCellStyle.BackColor; 1965else if (!DataGridView.RowsDefaultCellStyle.ForeColor.IsEmpty && 1968inheritedCellStyleTmp.ForeColor = DataGridView.RowsDefaultCellStyle.ForeColor; 1991else if (!DataGridView.RowsDefaultCellStyle.SelectionBackColor.IsEmpty && 1994inheritedCellStyleTmp.SelectionBackColor = DataGridView.RowsDefaultCellStyle.SelectionBackColor; 2017else if (!DataGridView.RowsDefaultCellStyle.SelectionForeColor.IsEmpty && 2020inheritedCellStyleTmp.SelectionForeColor = DataGridView.RowsDefaultCellStyle.SelectionForeColor; 2044else if (DataGridView.RowsDefaultCellStyle.Font is not null && 2047inheritedCellStyleTmp.Font = DataGridView.RowsDefaultCellStyle.Font; 2070else if (!DataGridView.RowsDefaultCellStyle.IsNullValueDefault && 2073inheritedCellStyleTmp.NullValue = DataGridView.RowsDefaultCellStyle.NullValue; 2097else if (!DataGridView.RowsDefaultCellStyle.IsDataSourceNullValueDefault && 2100inheritedCellStyleTmp.DataSourceNullValue = DataGridView.RowsDefaultCellStyle.DataSourceNullValue; 2124else if (DataGridView.RowsDefaultCellStyle.Format.Length != 0 && 2127inheritedCellStyleTmp.Format = DataGridView.RowsDefaultCellStyle.Format; 2150else if (!DataGridView.RowsDefaultCellStyle.IsFormatProviderDefault && 2153inheritedCellStyleTmp.FormatProvider = DataGridView.RowsDefaultCellStyle.FormatProvider; 2176else if (DataGridView.RowsDefaultCellStyle.Alignment != DataGridViewContentAlignment.NotSet && 2179inheritedCellStyleTmp.AlignmentInternal = DataGridView.RowsDefaultCellStyle.Alignment; 2203else if (DataGridView.RowsDefaultCellStyle.WrapMode != DataGridViewTriState.NotSet && 2206inheritedCellStyleTmp.WrapModeInternal = DataGridView.RowsDefaultCellStyle.WrapMode; 2230else if (DataGridView.RowsDefaultCellStyle.Tag is not null && 2233inheritedCellStyleTmp.Tag = DataGridView.RowsDefaultCellStyle.Tag; 2256else if (DataGridView.RowsDefaultCellStyle.Padding != Padding.Empty && 2259inheritedCellStyleTmp.PaddingInternal = DataGridView.RowsDefaultCellStyle.Padding;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (1)
807DataGridViewCellStyle rowsDefaultCellStyle = DataGridView.RowsDefaultCellStyle;