0

我正在尝试设置本地设置,以便可以将数据存储在我的 Windows Mobile 8 应用程序中。我正在尝试的第一步是:

ApplicationDataContainer localSettings = ApplicationData.Current.LocalSettings;

在我的代码中使用它会导致应用程序在我的设备上调试时失败。

任何想法为什么?

我已经"using Windows.Storage;"定了。实际代码不会抛出任何错误。

4

1 回答 1

0

我需要使用该IsolatedStorageSettings功能,如下所示:

IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;

            if (!settings.Contains("test"))
            {
                settings.Add("test", urlText.Text);
            }
            else
            {
                settings["test"] = urlText.Text;
            }
            settings.Save(); 
于 2013-12-01T04:45:20.980 回答