8 references to MinimumHeightWidthSize
PresentationFramework (8)
MS\Internal\Ink\SelectionEditingBehavior.cs (8)
192
if ( newPoint.X > _selectionRect.Right -
MinimumHeightWidthSize
)
194
newPoint.X = _selectionRect.Right -
MinimumHeightWidthSize
;
203
if ( newPoint.X < _selectionRect.Left +
MinimumHeightWidthSize
)
205
newPoint.X = _selectionRect.Left +
MinimumHeightWidthSize
;
214
if ( newPoint.Y > _selectionRect.Bottom -
MinimumHeightWidthSize
)
216
newPoint.Y = _selectionRect.Bottom -
MinimumHeightWidthSize
;
225
if ( newPoint.Y < _selectionRect.Top +
MinimumHeightWidthSize
)
227
newPoint.Y = _selectionRect.Top +
MinimumHeightWidthSize
;