5 writes to maxHeight
PresentationFramework (5)
System\Windows\FrameworkElement.cs (5)
4041
maxHeight
= e.MaxHeight;
4046
maxHeight
= Math.Max(Math.Min(height, maxHeight), minHeight);
4334
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4671
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4884
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
System\Windows\FrameworkElement.cs (16)
4046
maxHeight = Math.Max(Math.Min(height,
maxHeight
), minHeight);
4049
minHeight = Math.Max(Math.Min(
maxHeight
, height), minHeight);
4334
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4377
frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.
maxHeight
));
4419
if (desiredSize.Height > mm.
maxHeight
)
4421
desiredSize.Height = mm.
maxHeight
;
4671
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4687
double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.
maxHeight
);
4719
Math.Min(innerInkSize.Height, mm.
maxHeight
));
4884
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4894
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
4904
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);
5237
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
5241
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);