9 references to GRABHANDLE_HEIGHT
System.Windows.Forms.Design (9)
System\Windows\Forms\Design\SelectionUIService.cs (1)
1205
AdornmentType.GrabHandle => new Size(SelectionUIItem.GRABHANDLE_WIDTH, SelectionUIItem.
GRABHANDLE_HEIGHT
),
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (8)
134
Rectangle rect = new(_outerRect.X, _outerRect.Y, GRABHANDLE_WIDTH,
GRABHANDLE_HEIGHT
);
173
rect.Y = inner.Y + (inner.Height -
GRABHANDLE_HEIGHT
) / 2;
260
if (pt.Y >= _outerRect.Y + (_outerRect.Height -
GRABHANDLE_HEIGHT
) / 2
261
&& pt.Y <= _outerRect.Y + (_outerRect.Height +
GRABHANDLE_HEIGHT
) / 2)
296
if (pt.Y >= _outerRect.Y + (_outerRect.Height -
GRABHANDLE_HEIGHT
) / 2
297
&& pt.Y <= _outerRect.Y + (_outerRect.Height +
GRABHANDLE_HEIGHT
) / 2)
514
Rectangle rcOuterNew = new(_innerRect.X - GRABHANDLE_WIDTH, _innerRect.Y -
GRABHANDLE_HEIGHT
, _innerRect.Width + 2 * GRABHANDLE_WIDTH, _innerRect.Height + 2 *
GRABHANDLE_HEIGHT
);