当我按下设备的返回键时,如何解决未处理的异常
本文关键字:何解决 解决 异常 未处理 返回 | 更新日期: 2023-09-27 18:31:33
当我按设备的返回键时,我遇到了未处理的异常如何解决此问题?
我已经在Windows Phone 7应用程序中实现了收藏夹功能。 private void FavoriteClick(Object sender, EventArgs e) {
var favorites = GetFavorites();
if (favorites.Any(m => m.key == _key))
{
RemoveFavorite();
IsolatedStorageSettings.ApplicationSettings["favorites"] = favorites;
//NavigationService.Navigate(new Uri("/MainPage.xaml", UriKind.Relative));
return;
}
AddFavorite();
}
private void AddFavorite()
{
const string messageBoxText = "Do you wish to add this page to your favorites?";
const string caption = "Add Favorite";
const MessageBoxButton button = MessageBoxButton.OKCancel;
// Display message box
var result = MessageBox.Show(messageBoxText, caption, button);
// Process message box results
switch (result)
{
case MessageBoxResult.OK:
var favorites = GetFavorites();
favorites.Add(_page);
IsolatedStorageSettings.ApplicationSettings["favorites"] = favorites;
break;
}
}
private void RemoveFavorite()
{
const string messageBoxText = "Do you wish add remove this page to your favorites?";
const string caption = "Remove Favorite";
const MessageBoxButton button = MessageBoxButton.OKCancel;
// Display message box
MessageBoxResult result = MessageBox.Show(messageBoxText, caption, button);
// Process message box results
switch (result)
{
case MessageBoxResult.OK:
List<MobiRecord> favorites = GetFavorites();
foreach (MobiRecord m in favorites)
{
if (m.key == _key)
{
favorites.Remove(m);
IsolatedStorageSettings.ApplicationSettings["favorites"] = favorites;
return;
}
}
break;
}
}
问题:
我去收藏夹页面后添加了一些收藏夹,然后选择任何一个添加的收藏夹,然后单击删除收藏夹,单击后退按钮应用程序自动关闭(我有未处理的异常)。
这里的问题很可能是你正在更改集合(通过在收藏夹上调用 Delete),你正在对其进行 foreach 迭代。这将导致您的异常(尽管我需要异常详细信息才能真正确定)。
就像这个用于从集合中删除的代码片段一样:
favorites.RemoveAll(m => m.key == _key);