1 write to owner
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Form.cs (1)
7801this.owner = owner;
17 references to owner
System.Windows.Forms (17)
winforms\Managed\System\WinForms\Form.cs (17)
7816cp.Parent = owner.Handle; 7832if (owner != null) { 7833owner.LocationChanged -= new EventHandler(FormLocationChanged); 7847if (owner.RightToLeft == RightToLeft.Yes) { 7852toolInfo.hwnd = owner.Handle; 7854Rectangle r = new Rectangle(owner.Left, owner.Top, s.Width, SystemInformation.CaptionHeight); 7855r = owner.RectangleToClient(r); 7864toolInfo.uId = owner.Handle; 7870owner.EnsureSecurityInformation(); 7872string sourceInfo = SR.GetString(SR.SecurityToolTipSourceInformation, owner.securitySite); 7884UnsafeNativeMethods.SendMessage(new HandleRef(window, window.Handle), NativeMethods.TTM_SETMAXTIPWIDTH, 0, owner.Width); 7914if (owner.WindowState == FormWindowState.Minimized) { 7918UnsafeNativeMethods.SendMessage(new HandleRef(window, window.Handle), NativeMethods.TTM_TRACKPOSITION, 0, NativeMethods.Util.MAKELONG(owner.Left + s.Width / 2, owner.Top + SystemInformation.CaptionHeight)); 7938UnsafeNativeMethods.SendMessage(new HandleRef(window, window.Handle), NativeMethods.TTM_TRACKPOSITION, 0, NativeMethods.Util.MAKELONG(owner.Left + s.Width / 2, owner.Top + SystemInformation.CaptionHeight));