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