4 writes to AllowUserToAddRows
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
230this.rightsTable.AllowUserToAddRows = false;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (2)
177_sampleDataGridView.AllowUserToAddRows = false; 190_sampleDataGridViewSelected.AllowUserToAddRows = false;
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
875dataGridView.AllowUserToAddRows = value;
6 references to AllowUserToAddRows
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (3)
653if (AllowUserToAddRows != value) 667? AllowUserToAddRows 668: AllowUserToAddRows && DataConnection!.AllowAdd;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
217if (_owningDataGridViewRow.DataGridView is not null && _owningDataGridViewRow.DataGridView.AllowUserToAddRows && _owningDataGridViewRow.Index == _owningDataGridViewRow.DataGridView.NewRowIndex)
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
847get => _owner.Control.AllowUserToAddRows;
System\Windows\Forms\Design\DataGridViewRowCollectionCodeDomSerializer.cs (1)
36Debug.Assert(dataGridView.AllowUserToAddRows, "we only have the add new row when the data grid view allows users to add rows");