4 writes to maxHeight
PresentationFramework (4)
System\Windows\Window.cs (4)
3363
maxHeight
= maxSize;
3499
mm.
maxHeight
= Math.Min(this.MinHeight, maxSizeLogicalUnits.Y);
3505
mm.
maxHeight
= Math.Min(MaxHeight, maxSizeLogicalUnits.Y);
3509
mm.
maxHeight
= maxSizeLogicalUnits.Y;
3 references to maxHeight
PresentationFramework (3)
System\Windows\Window.cs (3)
1815
frameworkAvailableSize.Height = Math.Max(mm.minHeight, Math.Min(frameworkAvailableSize.Height, mm.
maxHeight
));
1845
arrangeBounds.Height = Math.Max(mm.minHeight, Math.Min(arrangeBounds.Height, mm.
maxHeight
));
4908
Point maxSizeDeviceUnits = LogicalToDeviceUnits(new Point(finalMinMax.maxWidth, finalMinMax.
maxHeight
));