5 writes to maxHeight
PresentationFramework (5)
System\Windows\FrameworkElement.cs (5)
4050
maxHeight
= e.MaxHeight;
4055
maxHeight
= Math.Max(Math.Min(height, maxHeight), minHeight);
4343
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4680
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4891
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
System\Windows\FrameworkElement.cs (16)
4055
maxHeight = Math.Max(Math.Min(height,
maxHeight
), minHeight);
4058
minHeight = Math.Max(Math.Min(
maxHeight
, height), minHeight);
4343
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4386
frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.
maxHeight
));
4428
if (desiredSize.Height > mm.
maxHeight
)
4430
desiredSize.Height = mm.
maxHeight
;
4680
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4696
double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.
maxHeight
);
4728
Math.Min(innerInkSize.Height, mm.
maxHeight
));
4891
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4901
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
4911
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);
5238
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
5242
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);