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