码迷,mamicode.com
首页 > 其他好文 > 详细

WP8 独立存储 总结3(应用设置)

时间:2014-09-16 12:25:00      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   ar   strong   数据   div   

•可在独立存储中使用ApplicationSettings对象
•在独立存储中存储键/值对的Dictionary方式存储

•存储的对象将永久保存

在应用设置中保存数据

1 void saveString(string message, string name)  
2 {  
3     IsolatedStorageSettings.ApplicationSettings[name] = message;  
4     IsolatedStorageSettings.ApplicationSettings.Save();  
5 }  

以dictionnary键值对方式存储;调用save方法保存至独立存储

在设置中加载设置

string loadString(string name)  
{  
    if(IsolatedStorageSettings.ApplicationSettings.Contains(name))  
    {  
           return(string)IsolatedStorageSettings.ApplicationSettings[name];  
    }  
    else  
    {  
        return null;  
    }  
}

在读取设置前先判读主键是否存在。

 

WP8 独立存储 总结3(应用设置)

标签:style   blog   color   io   使用   ar   strong   数据   div   

原文地址:http://www.cnblogs.com/NEIL-X/p/3974493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!