how to disable scrollviewer automatic moving of scrollviewer in XAML Phone Application
Asked Answered
E

1

6

How can I make my scrollviewer not to move automatically when I move and release it with mouse

I know it is the normal behavior, I need to make it keep its current horizontal offset when I release mouse.

Encapsulate answered 6/11, 2012 at 3:50 Comment(1)
@DanielBross what's the bounty for? do you want an answer to this question or your own? They don't look like they're the same questions...Caballero
C
2

You need to make IsScrollInertiaEnabled false.

scrollviewer.IsScrollInertiaEnabled = false;

Sources: IsScrollInertiaEnabled , Inertia Mechanics .

Confusion answered 16/11, 2015 at 23:43 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.