Thumb.IsDragging Property

Definition

Gets whether the Thumb control has logical focus and mouse capture and the left mouse button is pressed.

public:  property bool IsDragging {  public:
bool get(); protected:
 void set(bool value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.Browsable(false)]
public bool IsDragging { get; protected set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.Browsable(false)>]
member this.IsDragging : bool with get, set
Public Property IsDragging As Boolean

Property Value

true if the Thumb control has focus and mouse capture; otherwise false. The default value is false.

Attributes

Remarks

When the IsDragging property changes its value, the OnDraggingChanged method is called.

Starting with the .NET Framework version 3.0 Service Pack 1, IsDragging has a protected setter. To use this functionality, your application should target the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Dependency Property Information

Identifier field IsDraggingProperty
Metadata properties set to true None

Applies to

See also