9 writes to MinWidth
PresentationFramework (2)
src\Framework\System\Windows\Controls\GridViewHeaderRowPresenter.cs (2)
1126paddingHeader.MinWidth = 0; 1220_floatingHeader.MinWidth = srcHeader.MinWidth;
System.Activities.Presentation (7)
System.Activities.Presentation\System\Activities\Presentation\ErrorReporting.cs (1)
144this.MinWidth = 365;
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (2)
516this.ContextMenu.MinWidth = 0; 517this.ContextMenu.MinWidth = this.ContextMenu.DesiredSize.Width;
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (1)
54this.MinWidth = 350;
System.Activities.Presentation\System\Activities\Presentation\View\VirtualizedContainerService.cs (2)
351this.MinWidth = size.Value.Width; 497this.MinWidth = defaultContainerSize.Width;
System.Activities.Presentation\System\Activities\Presentation\WorkflowElementDialogWindow.xaml.cs (1)
66this.payload.MinWidth = this.payload.MinHeight = 0.0;
21 references to MinWidth
PresentationFramework (8)
src\Framework\System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1220_floatingHeader.MinWidth = srcHeader.MinWidth;
src\Framework\System\Windows\Controls\RichTextBox.cs (1)
321constraint.Width = this.MinWidth;
src\Framework\System\Windows\Controls\StickyNote.cs (1)
1196double minWidth = MinWidth;
src\Framework\System\Windows\FrameworkElement.cs (1)
4071minWidth = e.MinWidth;
src\Framework\System\Windows\Window.cs (4)
2842Point minSizeDeviceUnits = LogicalToDeviceUnits(new Point(MinWidth, MinHeight)); 3549mm.minWidth = Math.Max(this.MinWidth, minSizeLogicalUnits.X); 3552if (MinWidth > MaxWidth) 3554mm.maxWidth = Math.Min(MinWidth, maxSizeLogicalUnits.X);
System.Activities.Presentation (13)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\FreeFormPanel.cs (4)
350width = (width < this.MinWidth) ? this.MinWidth : width; 455width = (width < this.MinWidth) ? this.MinWidth : width;
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (4)
465if ((double.IsNaN(MinWidth) || double.IsInfinity(MinWidth) || bottomRight.X - absolutePosition.X >= MinWidth) && 477size.Width = Math.Min(Math.Max(MinWidth, current.X), MaxWidth);
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindowResizeGrip.cs (1)
60newSize.Width = Math.Min(Math.Max(this.parent.MinWidth, currentPosition.X), this.parent.MaxWidth);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
436this.blockWidth = Math.Max(this.blockWidth, textBlock.MinWidth);
System.Activities.Presentation\System\Activities\Presentation\WorkflowElementDialogWindow.xaml.cs (3)
44this.MinWidth = this.payload.MinWidth; 57if (0.0 != this.payload.MinWidth) 59this.Width = this.payload.MinWidth;