我曾经使用独立存储开发wp7应用程序。现在我想将一些应用程序移植到Windows 8,我想使用Windows本地存储来保存一些东西。对于wp7,我使用常见的隔离存储设置,但我不知道如何将其代码更改为Windows存储。 我想将以下代码更改为Windows.Storage -
if (!IsolatedStorageSettings.ApplicationSettings.TryGetValue(
this.name, out this.value)) //**Need to change this codes for windows storage**
{
this.value = this.defaultValue;
IsolatedStorageSettings.ApplicationSettings[this.name] = this.value; //**Need to change this codes for windows storage**
}
提前感谢您的帮助!!!
答案 0 :(得分:0)
良好的示例如何在Windows 8应用程序https://stackoverflow.com/a/14662969/1200453
中保存\ get \ check应用程序设置