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?