Method HandleMove
HandleMove(Point)
Called during a drag operation when the mouse is moved. Subclasses must implement logic for repositioning/resizing the window.
Declaration
protected virtual void HandleMove(Point cursorPosition)
Parameters
Type | Name | Description |
---|---|---|
Point | cursorPosition | The current mouse cursor position. |
HandleMove(int, int)
Called during a drag operation when the mouse is moved, delta takes into consideration start point, cursor position, etc
Declaration
protected abstract void HandleMove(int deltaX, int deltaY)
Parameters
Type | Name | Description |
---|---|---|
int | deltaX | |
int | deltaY |