5 writes to maxHeight
PresentationFramework (5)
src\Framework\System\Windows\FrameworkElement.cs (5)
4060
maxHeight
= e.MaxHeight;
4065
maxHeight
= Math.Max(Math.Min(height, maxHeight), minHeight);
4350
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4686
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4897
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
src\Framework\System\Windows\FrameworkElement.cs (16)
4065
maxHeight = Math.Max(Math.Min(height,
maxHeight
), minHeight);
4068
minHeight = Math.Max(Math.Min(
maxHeight
, height), minHeight);
4350
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4393
frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.
maxHeight
));
4435
if (desiredSize.Height > mm.
maxHeight
)
4437
desiredSize.Height = mm.
maxHeight
;
4686
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4702
double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.
maxHeight
);
4734
Math.Min(innerInkSize.Height, mm.
maxHeight
));
4897
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4907
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
4917
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);
5244
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
5248
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);