Window.DragMove Method
Allows a window to be dragged by a mouse with its left button down over an exposed area of the window's client area.
Assembly: PresentationFramework (in PresentationFramework.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The left mouse button is not down. |
The left mouse button must be down when DragMove is called. One way to detect when the left mouse button is pressed is to handle the MouseLeftButtonDown event.
When DragMove is called, the left mouse button must be depressed over an exposed area of the window's client area.
Note: |
|---|
This method cannot be called when a window is hosted in a browser. |
The following example shows how to override OnMouseLeftButtonDown to call DragMove.
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e) { base.OnMouseLeftButtonDown(e); // Begin dragging the window this.DragMove(); }
- UIPermission
for permission to drag a window. Associated enumeration: AllWindows
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: