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