0

如何在应用程序启动时保留已保存的隔离存储设置

我在 backevents 上使用异常终止:

     protected void _BackKeyPress(object sender, CancelEventArgs e)
    {
        if (MessageBox.Show("Do you want to close the application?", "Q", MessageBoxButton.OKCancel) != MessageBoxResult.OK)
        {
            e.Cancel = true;
            System.IO.IsolatedStorage.IsolatedStorageSettings.ApplicationSettings.Add("key2", "33r4 ");
        }
        else
        {
           if (IsolatedStorageSettings.ApplicationSettings.Contains("Key"))
        {
            IsolatedStorageSettings.ApplicationSettings["Key"] = App.Current.ViewModel;
        }
        else
        {
            IsolatedStorageSettings.ApplicationSettings.Add("Key", App.Current.ViewModel);
        }
           throw new Exception("ExitApplication");
        }
    }

我尝试保存在 app.xaml.cs 中声明的视图模型,但在启动时无法在其中获取隔离存储设置值。但它编译并成功运行。

4

1 回答 1

1

您需要调用该IsolatedStorageSettings.Save方法:

protected void _BackKeyPress(object sender, CancelEventArgs e)
{
    if (MessageBox.Show("Do you want to close the application?", "Q", MessageBoxButton.OKCancel) != MessageBoxResult.OK)
    {
        e.Cancel = true;
        System.IO.IsolatedStorage.IsolatedStorageSettings.ApplicationSettings.Add("key2", "33r4 ");
        IsolatedStorageSettings.Save();
    }
    else
    {
        if (IsolatedStorageSettings.ApplicationSettings.Contains("Key"))
        {
            IsolatedStorageSettings.ApplicationSettings["Key"] = App.Current.ViewModel;
        }
        else
        {
            IsolatedStorageSettings.ApplicationSettings.Add("Key", App.Current.ViewModel);
        }
        IsolatedStorageSettings.Save();
        throw new Exception("ExitApplication");
    }
}
于 2012-11-14T10:09:42.603 回答