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