5 writes to maxHeight
PresentationFramework (5)
src\Framework\System\Windows\FrameworkElement.cs (5)
4060maxHeight = e.MaxHeight; 4065maxHeight = Math.Max(Math.Min(height, maxHeight), minHeight); 4350mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4686mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4897mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
src\Framework\System\Windows\FrameworkElement.cs (16)
4065maxHeight = Math.Max(Math.Min(height, maxHeight), minHeight); 4068minHeight = Math.Max(Math.Min(maxHeight, height), minHeight); 4350mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4393frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.maxHeight)); 4435if (desiredSize.Height > mm.maxHeight) 4437desiredSize.Height = mm.maxHeight; 4686mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4702double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.maxHeight); 4734Math.Min(innerInkSize.Height, mm.maxHeight)); 4897mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4907double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 4917inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight); 5244double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 5248inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight);