私は新しい Windows Phone 8LongListSelector
コントロールを使用しています。これは次のようにItemsControl
割り当てられてList<Group<object>>
います。
List<Group<PlacePoint>> searchResults;
async void doSearch()
{
this.searchResults = await SearchHelper.Instance.getSearchResults(txtSearchTerm.Text);
longList.ItemsSource = this.searchResults;
}
残念ながら、2 回目の検索では、.ItemsSource プロパティを再設定しても効果がなく、コントロールは古いリストを表示するだけです。
バインディングを変更するにはどうすればよいですか?