Base:
property
ReadOnly
System.Windows.Forms.DataGridViewBand.ReadOnly
2 writes to ReadOnly
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
11157dataGridViewRow.ReadOnly = false;
winforms\Managed\System\WinForms\DataGridViewRow.cs (1)
1839this.ReadOnly = false;
5 references to ReadOnly
System.Windows.Forms (5)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
584if (this.owningRow != null && (this.owningRow.DataGridView == null || this.RowIndex >= 0) && this.owningRow.ReadOnly)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
11154if (this.ReadOnly && dataGridViewRow.DataGridView == null && dataGridViewRow.ReadOnly) 15331Debug.Assert(!this.Rows[dataGridViewCell.RowIndex].ReadOnly);
winforms\Managed\System\WinForms\DataGridViewRow.cs (2)
1830if (this.ReadOnly && !readOnly) 1841else if (!this.ReadOnly && readOnly)