8 references to MinimumHeightWidthSize
PresentationFramework (8)
src\Framework\MS\Internal\Ink\SelectionEditingBehavior.cs (8)
209
if ( newPoint.X > _selectionRect.Right -
MinimumHeightWidthSize
)
211
newPoint.X = _selectionRect.Right -
MinimumHeightWidthSize
;
220
if ( newPoint.X < _selectionRect.Left +
MinimumHeightWidthSize
)
222
newPoint.X = _selectionRect.Left +
MinimumHeightWidthSize
;
231
if ( newPoint.Y > _selectionRect.Bottom -
MinimumHeightWidthSize
)
233
newPoint.Y = _selectionRect.Bottom -
MinimumHeightWidthSize
;
242
if ( newPoint.Y < _selectionRect.Top +
MinimumHeightWidthSize
)
244
newPoint.Y = _selectionRect.Top +
MinimumHeightWidthSize
;