Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有List一个DataSource适合我的ListView. 当我向 中添加新内容Items时List,一切正常并且ListView更新。但是,当我尝试从List没有任何事情发生的情况下删除项目时……ListView只是不在乎。我怎样才能做到这一点?
List
DataSource
ListView
Items
事实上,有没有一种简单的方法可以Items从某个组中删除所有内容(我使用GroupedSortedListProjectionas a DataSource)?
GroupedSortedListProjection
谢谢!
您是否尝试过以下
手动重置列表(在其上创建一个新对象) 列表 = new WinJS.Binding.List();
通知更改完成。
list.notifyReload();
这应该重置您的列表(从中删除所有项目)