我有这种方法:
public async void Load()
{
this.IsRefreshing = true;
// await CODE
this.IsRefreshing = false;
}
Porperty IsRefreshing运行正常(INotifyPropertyChanged其确定)。 我第一次运行Load方法花了一些时间,flowlistview显示了活动指标,直到加载完成,但是下一次,load方法太快了,似乎(IsRefreshing =“ {Binding IsRefreshing}”)无法正常工作,activityindicator保持旋转。
IsPullToRefreshEnabled =“ True”。
我在构造函数中调用Load()。