5 writes to maxHeight
PresentationFramework (5)
System\Windows\FrameworkElement.cs (5)
4041maxHeight = e.MaxHeight; 4046maxHeight = Math.Max(Math.Min(height, maxHeight), minHeight); 4334mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4671mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4884mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
System\Windows\FrameworkElement.cs (16)
4046maxHeight = Math.Max(Math.Min(height, maxHeight), minHeight); 4049minHeight = Math.Max(Math.Min(maxHeight, height), minHeight); 4334mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4377frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.maxHeight)); 4419if (desiredSize.Height > mm.maxHeight) 4421desiredSize.Height = mm.maxHeight; 4671mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4687double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.maxHeight); 4719Math.Min(innerInkSize.Height, mm.maxHeight)); 4884mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4894double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 4904inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight); 5237double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 5241inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight);