9 writes to Bottom
System.Windows.Forms (9)
System\Windows\Forms\Layout\DefaultLayout.cs (9)
229anchorInfo.Bottom += growOrShrink; 738Bottom = anchorInfo.Bottom 745anchorInfo.Bottom = elementBounds.Bottom; 756anchorInfo.Bottom -= parentDisplayRect.Y; 793anchorInfo.Bottom = oldAnchorInfo.Bottom; 803anchorInfo.Bottom -= parentHeight; 813anchorInfo.Bottom -= parentHeight / 2; 886anchorInfo.Bottom = displayRectangle.Height - (y + elementBounds.Height); 996anchorInfo.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; 738Bottom = anchorInfo.Bottom 789if (ScaleHelper.IsScalingRequirementMet && (anchorInfo.Bottom - parentHeight > 0) && (oldAnchorInfo.Bottom < 0)) 793anchorInfo.Bottom = oldAnchorInfo.Bottom; 798anchorInfo.Top = oldAnchorInfo.Bottom - cachedBounds.Height; 996anchorInfo.Bottom = (int)Math.Round(anchorInfo.Bottom * heightFactor); 1167prefSize.Height = Math.Max(prefSize.Height, anchorInfo is null ? bounds.Bottom : bounds.Bottom + anchorInfo.Bottom);