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