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