标签: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; } }
在读取设置前先判读主键是否存在。
标签:style blog color io 使用 ar strong 数据 div
原文地址:http://www.cnblogs.com/NEIL-X/p/3974493.html