UWP.AutoScroller 0.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package UWP.AutoScroller --version 0.2.0
NuGet\Install-Package UWP.AutoScroller -Version 0.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UWP.AutoScroller" Version="0.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UWP.AutoScroller --version 0.2.0
#r "nuget: UWP.AutoScroller, 0.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install UWP.AutoScroller as a Cake Addin
#addin nuget:?package=UWP.AutoScroller&version=0.2.0

// Install UWP.AutoScroller as a Cake Tool
#tool nuget:?package=UWP.AutoScroller&version=0.2.0

AutoScroller

Auto-scrolls a UWP ScrollViewer when something is dragged against its edge.

Usage

Instantiate the AutoScroller with the target ScrollViewer. Set IsAutoScrollingEnabled to true to enable autoscrolling.

Set IsAutoScrollingEnabled to false before removing references to the AutoScroller. This will remove any event handlers that it set on the ScrollViewer.

Set AreTouchEventsHandled to true if you want it to respond to touch events. The default is false. This is because the default touch behaviour in a ScrollViewer is to pan, which conflicts with the style of autoscrolling applied by the AutoScroller. This default behaviour should be disabled before setting AreTouchEventsHandled to true.

Set IsPointerCapturedOnPress to true if elements in the ScrollViewer don't already capture the pointer. This is false by default. Setting this to true while other pointer captures are active might interfere with the existing captures. This scenario has not been tested.

Change the speed of scrolling by setting ScrollPixelsPerTick. It is the number of pixels scrolled per tenth of a second when autoscrolling is occurring. The default value is 20.

Product Compatible and additional computed target framework versions.
Universal Windows Platform netcore50 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.2 442 1/21/2021
0.2.1 428 5/29/2020
0.2.0 521 3/27/2020
0.1.0 459 3/25/2020

First release