4 writes to BackgroundColor
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (1)
477BackgroundColor = DefaultCellStyle.BackColor;
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
25801private void ResetBackgroundColor() => BackgroundColor = s_defaultBackgroundColor;
System.Windows.Forms.Tests (2)
System\Windows\Forms\DataGridViewTests.cs (2)
3087_dataGridView.BackgroundColor = Color.AliceBlue; 3091_dataGridView.BackgroundColor = Color.Azure;
3 references to BackgroundColor
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
1068private bool ShouldSerializeBackgroundColor() => !BackgroundColor.Equals(s_defaultBackgroundColor);
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
19213using var brush = BackgroundColor.GetCachedSolidBrushScope(); 19257using var brush = BackgroundColor.GetCachedSolidBrushScope();