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