9 writes to MinHeight
PresentationFramework (3)
src\Framework\System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1221
_floatingHeader.
MinHeight
= srcHeader.MinHeight;
src\Framework\System\Windows\Controls\TextBox.cs (2)
1817
this.ScrollViewer.
MinHeight
= value;
1853
RenderScope.
MinHeight
= value;
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (1)
55
this.
MinHeight
= 185;
System.Activities.Presentation\System\Activities\Presentation\View\VirtualizedContainerService.cs (2)
352
this.
MinHeight
= size.Value.Height;
496
this.
MinHeight
= defaultContainerSize.Height;
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
120
this.
MinHeight
= this.FontSize + 4; /* 4 pixels for border*/
System.Activities.Presentation\System\Activities\Presentation\WorkflowElementDialogWindow.xaml.cs (1)
66
this.payload.MinWidth = this.payload.
MinHeight
= 0.0;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (1)
1157
SpacerPlaceholder spacerPlaceholder = new SpacerPlaceholder {
MinHeight
= 20, Visibility = Visibility.Visible, AllowDrop = true };
23 references to MinHeight
PresentationFramework (10)
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
554
double minHeight = Math.Max(RowHeader.DesiredSize.Height,
MinHeight
);
src\Framework\System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1221
_floatingHeader.MinHeight = srcHeader.
MinHeight
;
src\Framework\System\Windows\Controls\StickyNote.cs (1)
1197
double minHeight =
MinHeight
;
src\Framework\System\Windows\Controls\TextBox.cs (2)
1815
if (MinLines > 1 && this.ScrollViewer.
MinHeight
!= value)
1851
if (MinLines > 1 && RenderScope.
MinHeight
!= value)
src\Framework\System\Windows\FrameworkElement.cs (1)
4061
minHeight = e.
MinHeight
;
src\Framework\System\Windows\Window.cs (4)
2842
Point minSizeDeviceUnits = LogicalToDeviceUnits(new Point(MinWidth,
MinHeight
));
3571
mm.minHeight = Math.Max(this.
MinHeight
, minSizeLogicalUnits.Y);
3574
if (
MinHeight
> MaxHeight)
3576
mm.maxHeight = Math.Min(this.
MinHeight
, maxSizeLogicalUnits.Y);
System.Activities.Presentation (13)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\FreeFormPanel.cs (4)
353
height = (height < this.
MinHeight
) ? this.
MinHeight
: height;
456
height = (height < this.
MinHeight
) ? this.
MinHeight
: height;
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (4)
484
if ((double.IsNaN(
MinHeight
) || double.IsInfinity(
MinHeight
) || bottomRight.Y - absolutePosition.Y >=
MinHeight
) &&
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)
433
this.blockHeight = Math.Max(this.blockHeight, textBlock.
MinHeight
);
System.Activities.Presentation\System\Activities\Presentation\WorkflowElementDialogWindow.xaml.cs (3)
45
this.MinHeight = this.payload.
MinHeight
;
61
if (0.0 != this.payload.
MinHeight
)
63
this.Height = this.payload.
MinHeight
;