7 writes to Right
System.Windows.Forms (7)
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (7)
560oldAnchorInfo.Right = anchorInfo.Right; 565anchorInfo.Right = element.Bounds.Right; 578anchorInfo.Right -= parentDisplayRect.X; 585anchorInfo.Right = oldAnchorInfo.Right; 589anchorInfo.Right -= parentWidth; 597anchorInfo.Right -= (parentWidth/2); 707anchorInfo.Right = (int)((float)anchorInfo.Right * factor.Width);
8 references to Right
System.Windows.Forms (8)
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (8)
138int right = layout.Right + displayRect.X; 560oldAnchorInfo.Right = anchorInfo.Right; 583if (DpiHelper.EnableAnchorLayoutHighDpiImprovements && (anchorInfo.Right - parentWidth > 0) && (oldAnchorInfo.Right < 0)) { 585anchorInfo.Right = oldAnchorInfo.Right; 586anchorInfo.Left = oldAnchorInfo.Right - bounds.Width; // control might have been resized, update Left anchor 619Debug.WriteLineIf(CompModSwitches.RichLayout.TraceInfo, "anchor info (l,t,r,b): (" + anchorInfo.Left + ", " + anchorInfo.Top + ", " + anchorInfo.Right + ", " + anchorInfo.Bottom + ")"); 707anchorInfo.Right = (int)((float)anchorInfo.Right * factor.Width);