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