5 writes to maxHeight
PresentationFramework (5)
System\Windows\FrameworkElement.cs (5)
4061
maxHeight
= e.MaxHeight;
4066
maxHeight
= Math.Max(Math.Min(height, maxHeight), minHeight);
4354
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4691
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4902
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
System\Windows\FrameworkElement.cs (16)
4066
maxHeight = Math.Max(Math.Min(height,
maxHeight
), minHeight);
4069
minHeight = Math.Max(Math.Min(
maxHeight
, height), minHeight);
4354
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4397
frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.
maxHeight
));
4439
if (desiredSize.Height > mm.
maxHeight
)
4441
desiredSize.Height = mm.
maxHeight
;
4691
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4707
double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.
maxHeight
);
4739
Math.Min(innerInkSize.Height, mm.
maxHeight
));
4902
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4912
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
4922
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);
5249
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
5253
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);