9 writes to Bottom
System.Windows.Forms (9)
System\Windows\Forms\Layout\DefaultLayout.cs (9)
229anchorInfo.Bottom += growOrShrink; 743Bottom = anchorInfo.Bottom 750anchorInfo.Bottom = elementBounds.Bottom; 761anchorInfo.Bottom -= parentDisplayRect.Y; 798anchorInfo.Bottom = oldAnchorInfo.Bottom; 808anchorInfo.Bottom -= parentHeight; 818anchorInfo.Bottom -= parentHeight / 2; 894anchorInfo.Bottom = displayRectangle.Height - (y + elementBounds.Height); 1004anchorInfo.Bottom = (int)Math.Round(anchorInfo.Bottom * heightFactor);
11 references to Bottom
System.Windows.Forms (11)
System\Windows\Forms\Layout\DefaultLayout.cs (11)
212height = displayRectangle.Height - (anchorInfo.Bottom + anchorInfo.Top); 221anchorInfo.Top = displayRectangle.Height - height - anchorInfo.Bottom; 227int growOrShrink = (displayRectangle.Height - (anchorInfo.Bottom + anchorInfo.Top + height)) / 2; 243int bottom = layout.Bottom + displayRect.Y; 743Bottom = anchorInfo.Bottom 794if (ScaleHelper.IsScalingRequirementMet && (anchorInfo.Bottom - parentHeight > 0) && (oldAnchorInfo.Bottom < 0)) 798anchorInfo.Bottom = oldAnchorInfo.Bottom; 803anchorInfo.Top = oldAnchorInfo.Bottom - cachedBounds.Height; 1004anchorInfo.Bottom = (int)Math.Round(anchorInfo.Bottom * heightFactor); 1175prefSize.Height = Math.Max(prefSize.Height, anchorInfo is null ? bounds.Bottom : bounds.Bottom + anchorInfo.Bottom);