5 writes to maxHeight
PresentationFramework (5)
System\Windows\FrameworkElement.cs (5)
4040maxHeight = e.MaxHeight; 4045maxHeight = Math.Max(Math.Min(height, maxHeight), minHeight); 4333mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4667mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4880mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY);
16 references to maxHeight
PresentationFramework (16)
System\Windows\FrameworkElement.cs (16)
4045maxHeight = Math.Max(Math.Min(height, maxHeight), minHeight); 4048minHeight = Math.Max(Math.Min(maxHeight, height), minHeight); 4333mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4376frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.maxHeight)); 4418if (desiredSize.Height > mm.maxHeight) 4420desiredSize.Height = mm.maxHeight; 4667mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4683double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.maxHeight); 4715Math.Min(innerInkSize.Height, mm.maxHeight)); 4880mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4890double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 4900inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight); 5233double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 5237inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight);