1 write to owner
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
14725this.owner = owner;
24 references to owner
System.Windows.Forms (24)
winforms\Managed\System\WinForms\Control.cs (24)
14752if (owner.CreateThreadId != value.CreateThreadId) { 14756CheckParentingCycle(owner, value); 14758if (value.parent == owner) { 14793owner.SuspendLayout(); 14801value.AssignParent(owner); 14804if (oldParent != value.parent && (owner.state & STATE_CREATED) != 0) { 14805value.SetParentHandle(owner.InternalHandle); 14815owner.ResumeLayout(false); 14824LayoutTransaction.DoLayout(owner, value, PropertyNames.Parent); 14825owner.OnControlAdded(new ControlEventArgs(value)); 14855owner.SuspendLayout(); 14862owner.ResumeLayout(true); 14875ControlCollection ccOther = owner.CreateControlsInstance(); 15018return owner; 15035if (value.ParentInternal == owner) { 15036Debug.Assert(owner != null); 15044LayoutTransaction.DoLayout(owner, value, PropertyNames.Parent); 15045owner.OnControlRemoved(new ControlEventArgs(value)); 15048ContainerControl cc = owner.GetContainerControlInternal() as ContainerControl; 15051cc.AfterControlRemoved(value, owner); 15132owner.SuspendLayout(); 15135CommonProperties.xClearAllPreferredSizeCaches(owner); 15141owner.ResumeLayout(); 15200LayoutTransaction.DoLayout(owner, child, PropertyNames.ChildIndex);