9 writes to Bottom
System.Windows.Forms (9)
System\Windows\Forms\Layout\DefaultLayout.cs (9)
230anchorInfo.Bottom += growOrShrink; 739Bottom = anchorInfo.Bottom 746anchorInfo.Bottom = elementBounds.Bottom; 757anchorInfo.Bottom -= parentDisplayRect.Y; 794anchorInfo.Bottom = oldAnchorInfo.Bottom; 804anchorInfo.Bottom -= parentHeight; 814anchorInfo.Bottom -= parentHeight / 2; 887anchorInfo.Bottom = displayRectangle.Height - (y + elementBounds.Height); 997anchorInfo.Bottom = (int)Math.Round(anchorInfo.Bottom * heightFactor);
11 references to Bottom
System.Windows.Forms (11)
System\Windows\Forms\Layout\DefaultLayout.cs (11)
213height = displayRectangle.Height - (anchorInfo.Bottom + anchorInfo.Top); 222anchorInfo.Top = displayRectangle.Height - height - anchorInfo.Bottom; 228int growOrShrink = (displayRectangle.Height - (anchorInfo.Bottom + anchorInfo.Top + height)) / 2; 244int bottom = layout.Bottom + displayRect.Y; 739Bottom = anchorInfo.Bottom 790if (ScaleHelper.IsScalingRequirementMet && (anchorInfo.Bottom - parentHeight > 0) && (oldAnchorInfo.Bottom < 0)) 794anchorInfo.Bottom = oldAnchorInfo.Bottom; 799anchorInfo.Top = oldAnchorInfo.Bottom - cachedBounds.Height; 997anchorInfo.Bottom = (int)Math.Round(anchorInfo.Bottom * heightFactor); 1168prefSize.Height = Math.Max(prefSize.Height, anchorInfo is null ? bounds.Bottom : bounds.Bottom + anchorInfo.Bottom);