2 instantiations of DataGridRelationshipRow
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGrid.cs (2)
1366rows[r] = new DataGridRelationshipRow(this, dgt,r); 3129gridRows[currentRowCount - 1] = new DataGridRelationshipRow(this, this.myGridTable, currentRowCount - 1);
27 references to DataGridRelationshipRow
System.Windows.Forms (27)
winforms\Managed\System\WinForms\DataGrid.cs (14)
4084if (row < DataGridRowsLength && (localGridRows[row] is DataGridRelationshipRow) && ((DataGridRelationshipRow)localGridRows[row]).Expanded) 6268private DataGridRelationshipRow[] GetExpandableRows() { 6273DataGridRelationshipRow[] expandableRows = new DataGridRelationshipRow[nExpandableRows]; 6275expandableRows[i] = (DataGridRelationshipRow)localGridRows[i]; 6689if (row is DataGridRelationshipRow) { 6690DataGridRelationshipRow relRow = (DataGridRelationshipRow)row; 8163if (gridRows[i] is DataGridRelationshipRow) gridRows[i].Selected = true; 8913DataGridRelationshipRow[] expandableRows = GetExpandableRows(); 8933else if (localGridRows[row] is DataGridRelationshipRow) { 8934DataGridRelationshipRow expandableRow = (DataGridRelationshipRow)localGridRows[row];
winforms\Managed\System\WinForms\DataGridRelationshipRow.cs (13)
829DataGridRelationshipRow row = (DataGridRelationshipRow)Owner; 837private DataGridRelationshipRow RelationshipRow { 839return (DataGridRelationshipRow)Owner; 861if (((DataGridRelationshipRow)Owner).Expanded) { 875((DataGridRelationshipRow)Owner).Expanded = !((DataGridRelationshipRow)Owner).Expanded; 880DataGridRelationshipRow row = (DataGridRelationshipRow)Owner; 893DataGridRelationshipRow owner = null; 896public DataGridRelationshipAccessibleObject(DataGridRelationshipRow owner, int relationship) : base() { 924protected DataGridRelationshipRow Owner { 995((DataGridRelationshipRow)Owner).Expanded = true;