c# – 我不能对Windows Phone 8.1使用IsolatedStorageSettings

前端之家收集整理的这篇文章主要介绍了c# – 我不能对Windows Phone 8.1使用IsolatedStorageSettings前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我添加时,我收到错误
IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings;

在我的MainPage.xaml.cs按钮点击事件.

错误

>找不到类型或命名空间名称“IsolatedStorageSettings”(您是否缺少using指令或程序集引用?)
>当前上下文中不存在“IsolatedStorageSettings”名称

我使用的是visual studio 2013(更新2).

请帮帮我

解决方法

使用Windows.Storage命名空间中的类.它们是Universal Apps(Windows Phone 8.1和Windows 8.1)的新功能.

如果您希望数据一直保持本地尝试Windows.Storage.ApplicationData.Current.LocalSettings.

但是,如果您不介意他们存储在漫游设置中(如果您使用通用应用程序,它们将在Windows 8.1中可用于您的应用程序),则可以使用Windows.Storage.ApplicationData.Current.RoamingSettings.

例如,

var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
if(localSettings.Values.ContainsKey("LocationConsent"))

要么

var roamingSettings = Windows.Storage.ApplicationData.Current.RoamingSettings;
if(roamingSettings.Values.ContainsKey("LocationConsent"))
原文链接:https://www.f2er.com/csharp/92144.html

猜你在找的C#相关文章