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);
4670
mm.
maxHeight
= UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
4883
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
;
4670
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4686
double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.
maxHeight
);
4718
Math.Min(innerInkSize.Height, mm.
maxHeight
));
4883
mm.maxHeight = UIElement.RoundLayoutValue(mm.
maxHeight
, dpi.DpiScaleY);
4893
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
4903
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);
5236
double maxHeightClip = (Double.IsPositiveInfinity(mm.
maxHeight
) ? inkSize.Height : mm.
maxHeight
);
5240
inkSize.Height = Math.Min(inkSize.Height, mm.
maxHeight
);