9 references to GRABHANDLE_HEIGHT
System.Windows.Forms.Design (9)
System\Windows\Forms\Design\SelectionUIService.cs (1)
1199
AdornmentType.GrabHandle => new Size(SelectionUIItem.GRABHANDLE_WIDTH, SelectionUIItem.
GRABHANDLE_HEIGHT
),
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (8)
131
Rectangle rect = new(_outerRect.X, _outerRect.Y, GRABHANDLE_WIDTH,
GRABHANDLE_HEIGHT
);
170
rect.Y = inner.Y + (inner.Height -
GRABHANDLE_HEIGHT
) / 2;
257
if (pt.Y >= _outerRect.Y + (_outerRect.Height -
GRABHANDLE_HEIGHT
) / 2
258
&& pt.Y <= _outerRect.Y + (_outerRect.Height +
GRABHANDLE_HEIGHT
) / 2)
293
if (pt.Y >= _outerRect.Y + (_outerRect.Height -
GRABHANDLE_HEIGHT
) / 2
294
&& pt.Y <= _outerRect.Y + (_outerRect.Height +
GRABHANDLE_HEIGHT
) / 2)
508
Rectangle rcOuterNew = new(_innerRect.X - GRABHANDLE_WIDTH, _innerRect.Y -
GRABHANDLE_HEIGHT
, _innerRect.Width + 2 * GRABHANDLE_WIDTH, _innerRect.Height + 2 *
GRABHANDLE_HEIGHT
);