Hi,
I am using the SfPullToRefresh for sometime now. I have noticed with the latest version (18.4.0.30), the threshold area doesn't refresh until I put the following in my Refreshing function:
private void pullToRefresh_Refreshing(object sender, EventArgs e)
{
pullToRefresh.IsRefreshing = true;
pullToRefresh.IsRefreshing = false;
...
My code used to work fine on a previous version (17.1.0.38) as follows:
private void pullToRefresh_Refreshing(object sender, EventArgs e)
{
pullToRefresh.IsRefreshing = false;
...
Has something changed with this control since then and is this the expected behaviour?
Thanks
Andrew