8 references to MinimumHeightWidthSize
PresentationFramework (8)
MS\Internal\Ink\SelectionEditingBehavior.cs (8)
206
if ( newPoint.X > _selectionRect.Right -
MinimumHeightWidthSize
)
208
newPoint.X = _selectionRect.Right -
MinimumHeightWidthSize
;
217
if ( newPoint.X < _selectionRect.Left +
MinimumHeightWidthSize
)
219
newPoint.X = _selectionRect.Left +
MinimumHeightWidthSize
;
228
if ( newPoint.Y > _selectionRect.Bottom -
MinimumHeightWidthSize
)
230
newPoint.Y = _selectionRect.Bottom -
MinimumHeightWidthSize
;
239
if ( newPoint.Y < _selectionRect.Top +
MinimumHeightWidthSize
)
241
newPoint.Y = _selectionRect.Top +
MinimumHeightWidthSize
;