5 writes to maxHeight
PresentationFramework (5)
System\Windows\FrameworkElement.cs (5)
4040
maxHeight
= e.MaxHeight;
4045
maxHeight
= Math.Max(Math.Min(height, maxHeight), minHeight);
4333
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4667
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4880
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
System\Windows\FrameworkElement.cs (16)
4045
maxHeight = Math.Max(Math.Min(height,
maxHeight
), minHeight);
4048
minHeight = Math.Max(Math.Min(
maxHeight
, height), minHeight);
4333
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4376
frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.
maxHeight
));
4418
if (desiredSize.Height > mm.
maxHeight
)
4420
desiredSize.Height = mm.
maxHeight
;
4667
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4683
double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.
maxHeight
);
4715
Math.Min(innerInkSize.Height, mm.
maxHeight
));
4880
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4890
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
4900
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);
5233
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
5237
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);