1 write to owner
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataGridRelationshipRow.cs (1)
898this.owner = owner;
22 references to owner
System.Windows.Forms (22)
winforms\Managed\System\WinForms\DataGridRelationshipRow.cs (22)
904Rectangle rowBounds = DataGrid.GetRowBounds(owner); 906Rectangle bounds = owner.Expanded ? owner.GetRelationshipRectWithMirroring() : Rectangle.Empty; 907bounds.Y += owner.dgTable.RelationshipHeight * relationship; 908bounds.Height = owner.Expanded ? owner.dgTable.RelationshipHeight : 0; // when the row is collapsed the height of the relationship object should be 0 910if (!owner.Expanded) 914return owner.DataGrid.RectangleToScreen(bounds); 920return (string)owner.dgTable.RelationsList[relationship]; 926return owner; 933return owner.AccessibleObject; 939return owner.DataGrid; 953if (Array.IndexOf(dgRows, this.owner) == -1) { 961if (!owner.Expanded) { 976if (Array.IndexOf(dgRows, this.owner) == -1) { 979return (string)owner.dgTable.RelationsList[relationship]; 996owner.FocusedRelation = -1; 997DataGrid.NavigateTo((string)owner.dgTable.RelationsList[relationship], owner, true); 1017if (relationship + 1 < owner.dgTable.RelationsList.Count) { 1018return Parent.GetChild(Parent.GetChildCount() - owner.dgTable.RelationsList.Count + relationship + 1); 1025return Parent.GetChild(Parent.GetChildCount() - owner.dgTable.RelationsList.Count + relationship - 1);