How to set a pull down threshold for <PullToRefresh>

I’m using the element:

<PullToReload IsLoading="{isLoading}" ReloadHandler="{reloadHandler}">
    <State ux:Binding="Pulling">
        <!-- active while pulling -->
    </State>
    <State ux:Binding="PulledPastThreshold">
        <!-- activates when pulled past threshold -->
    </State>
    <State ux:Binding="Loading">
        <!-- active while loading -->
    </State>
</PullToReload>

The PulledPastThreshold State is fired when the Threshold is past, how do I change what the Threshold is?

Hi!

PullToReload is a ScrollingAnimation, so I believe it has the same interface:

<PullToReload From="0" To="100" ...>

Let me know if that works :slight_smile: