1 write to Cell
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStateChangedEventArgs.cs (1)
10Cell = dataGridViewCell.OrThrowIfNull();
6 references to Cell
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
12800DataGridViewCell dataGridViewCell = e.Cell;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (2)
320Debug.Assert(e.Cell == _sampleDataGridView.Rows[0].Cells[0], "the sample data grid view has only one cell"); 322if ((e.StateChanged & DataGridViewElementStates.Selected) != 0 && (e.Cell.State & DataGridViewElementStates.Selected) != 0)
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewCellStateChangedEventArgsTests.cs (1)
16Assert.Equal(cell, e.Cell);
System\Windows\Forms\DataGridViewCellTests.cs (2)
1928Assert.Same(cell, e.Cell); 2211Assert.Same(cell, e.Cell);