3 writes to MaxHeight
PresentationFramework (2)
src\Framework\System\Windows\Controls\TextBox.cs (2)
1824this.ScrollViewer.MaxHeight = value; 1860RenderScope.MaxHeight = value;
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowchartExpressionAdorner.cs (1)
42MaxHeight = 100,
18 references to MaxHeight
PresentationFramework (9)
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
561double maxHeight = MaxHeight;
src\Framework\System\Windows\Controls\TextBox.cs (2)
1822if (MaxLines < Int32.MaxValue && this.ScrollViewer.MaxHeight != value) 1858if (MaxLines < Int32.MaxValue && RenderScope.MaxHeight != value)
src\Framework\System\Windows\FrameworkElement.cs (1)
4060maxHeight = e.MaxHeight;
src\Framework\System\Windows\Window.cs (5)
2843Point maxSizeDeviceUnits = LogicalToDeviceUnits(new Point(MaxWidth, MaxHeight)); 3574if (MinHeight > MaxHeight) 3580if (!Double.IsPositiveInfinity(MaxHeight)) 3582mm.maxHeight = Math.Min(MaxHeight, maxSizeLogicalUnits.Y); 6054ValidateLengthForHeightWidth(MaxHeight);
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\FlowchartResizeGrip.cs (1)
90flowchartDesigner.FlowchartHeight = Math.Min(Math.Max(panel.RequiredHeight, currentPosition.Y), flowchartGrid.MaxHeight);
System\Activities\Core\Presentation\StateContainerResizeGrip.cs (1)
136stateContainerEditor.StateContainerHeight = Math.Min(Math.Max(panel.RequiredHeight, currentPosition.Y), stateContainerGrid.MaxHeight);
System.Activities.Presentation (7)
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (4)
485(double.IsNaN(MaxHeight) || double.IsInfinity(MaxHeight) || bottomRight.Y - absolutePosition.Y <= MaxHeight)) 496size.Height = Math.Min(Math.Max(MinHeight, current.Y), MaxHeight);
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindowResizeGrip.cs (1)
61newSize.Height = Math.Min(Math.Max(this.parent.MinHeight, currentPosition.Y), this.parent.MaxHeight);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
434this.blockHeight = Math.Min(this.blockHeight, textBlock.MaxHeight);
System.Activities.Presentation\System\Activities\Presentation\WorkflowElementDialogWindow.xaml.cs (1)
47this.MaxHeight = this.payload.MaxHeight;