1 instantiation of DataGridViewCellCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (1)
1136return new DataGridViewCellCollection(this);
11 references to DataGridViewCellCollection
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
19762DataGridViewCellCollection newRowCells = newRow.Cells;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (5)
25private DataGridViewCellCollection? _rowCells; 53public DataGridViewCellCollection Cells => _rowCells ??= CreateCellsInstance(); 1102DataGridViewCellCollection cells = Cells; 1134protected virtual DataGridViewCellCollection CreateCellsInstance() 1793DataGridViewCellCollection cells = Cells;
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (4)
676DataGridViewCellCollection dgvcc = dataGridViewRow.Cells; 1715DataGridViewCellCollection dgvcc = dataGridViewRow.Cells; 2245DataGridViewCellCollection cells = dataGridViewRow.Cells; 2270DataGridViewCellCollection cells = dataGridViewRow.Cells;
System.Windows.Forms.Tests (1)
System\Windows\Forms\DataGridViewRowTests.cs (1)
5766public new DataGridViewCellCollection CreateCellsInstance() => base.CreateCellsInstance();