Mouse.GetPosition Method
Gets the position of the mouse relative to a specified element.
Namespace: System.Windows.Input
Assembly: PresentationCore (in PresentationCore.dll)
Parameters
- relativeTo
- Type: System.Windows.IInputElement
The coordinate space in which to calculate the position of the mouse.
Return Value
Type: System.Windows.PointThe position of the mouse relative to the parameter relativeTo.
The position of the mouse pointer is calculated relative to the specified element with the upper-left corner of element being the point of origin, 0,0.
During drag-and-drop operations, the position of the mouse cannot be reliably determined through GetPosition. This is because control of the mouse (possibly including capture) is held by the originating element of the drag until the drop is completed, with much of the behavior controlled by underlying Win32 calls. Try the following approaches instead:
Call the GetPosition method of the DragEventArgs that is passed to the drag events (DragEnter, DragOver, DragLeave).
Call GetCursorPos, using P/Invoke.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.