删除数据后刷新页面怎么做?wp8
调用的是storage里的数据
List<ListViewModel> cat =new List<ListViewModel>
这样子。
据说应该用INotifyPropertyChanged,但是搞不太清楚怎么用
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyName)
{
if (null != PropertyChanged)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
使用
NavigationService.Navigate(new Uri("/Fav.xaml?Refresh=true", UriKind.Relative))
;
这样子只能刷新一次,也就是第一次删除时候管用,之后就不管用了。。。这是为什么?
zxl0714
10 years, 3 months ago