8 references to MinimumHeightWidthSize
PresentationFramework (8)
MS\Internal\Ink\SelectionEditingBehavior.cs (8)
193
if ( newPoint.X > _selectionRect.Right -
MinimumHeightWidthSize
)
195
newPoint.X = _selectionRect.Right -
MinimumHeightWidthSize
;
204
if ( newPoint.X < _selectionRect.Left +
MinimumHeightWidthSize
)
206
newPoint.X = _selectionRect.Left +
MinimumHeightWidthSize
;
215
if ( newPoint.Y > _selectionRect.Bottom -
MinimumHeightWidthSize
)
217
newPoint.Y = _selectionRect.Bottom -
MinimumHeightWidthSize
;
226
if ( newPoint.Y < _selectionRect.Top +
MinimumHeightWidthSize
)
228
newPoint.Y = _selectionRect.Top +
MinimumHeightWidthSize
;