Thumb.DragCompleted Event
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Occurs when the Thumb control loses mouse capture.
Namespace: System.Windows.Controls.Primitives
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
This DragCompleted event occurs when the left mouse button is released or when the CancelDrag method is called.
The Thumb control receives mouse capture when the user presses the left mouse button while pausing the mouse pointer over the Thumb control.
The position of the mouse when the DragCompleted event occurs is provided by the DragDeltaEventArgs of the last DragDelta event.
The following example shows how to assign an event handler for the DragCompleted event to a Thumb control, and how to define the event handler. For the complete sample, see Thumb Drag Functionality Sample.
<Thumb Name="myThumb" Canvas.Left="80" Canvas.Top="80" Background="Blue" Width="20" Height="20" DragDelta="onDragDelta" DragStarted="onDragStarted" DragCompleted="onDragCompleted" />
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, 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.