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); 4670mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4883mm.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; 4670mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4686double effectiveMaxHeight = Math.Max(unclippedDesiredSize.Height, mm.maxHeight); 4718Math.Min(innerInkSize.Height, mm.maxHeight)); 4883mm.maxHeight = UIElement.RoundLayoutValue(mm.maxHeight, dpi.DpiScaleY); 4893double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 4903inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight); 5236double maxHeightClip = (Double.IsPositiveInfinity(mm.maxHeight) ? inkSize.Height : mm.maxHeight); 5240inkSize.Height = Math.Min(inkSize.Height, mm.maxHeight);