Skip to main content

FlipView.IsManipulationInertiaEnabled Property

Gets or sets whether inertia while navigating through the FlipView items is enabled.

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public bool IsManipulationInertiaEnabled { get; set; }

Property Value

Type Description
Boolean

true, if inertia while navigating through the FlipView items is enabled; otherwise, false.

Remarks

On touch devices, end-users can use fingers to navigate through FlipViewItem objects. When an end-user quickly drags a FlipViewItem and then releases it, the item keeps moving in the related direction for some time. In this case, if the initial velocity was great enough, the navigation can slide through multiple items before it eventually stops. You can enable or disable this inertia via the IsManipulationInertiaEnabled property.

If manipulation inertia is enabled, you can handle the UIElement.ManipulationInertiaStarting event to specify the deceleration of initial velocity with which a FlipViewItem moves. See the Walkthrough: Creating Your First Touch Application topic in MSDN to learn more about manipulation inertia.

See Also