Silverlight开发工具中有很多功能可以被我们灵活的利用创造出更多的新颖的功能服务于大众。对于这样的一款多媒体处理工具,其功能是非常强大的。Silverlight独立存储配置,在Beta 1时代是应用程序配置,现在不仅支持应用程序配置,同时还支持站点配置,我们可以用它来存储应用程序配置如每个页面显示的图片数量,页面布局自定义配置等等,使用IsolatedStorageSettings类来实现,该类在设计时使用了字典来存储名-值对,它的使用相当简单:#t#
- IsolatedStorageSettings appSettings =
IsolatedStorageSettings.ApplicationSettings; - appSettings.Add("mykey","myValue");
- appSettings.Save();
- IsolatedStorageSettings siteSettings =
- IsolatedStorageSettings.SiteSettings;
- siteSettings.Add("mykey1","myValue1");
- siteSettings.Save();
Silverlight独立存储配置的机制也是基于本地文件存储,系统默认的会创建一个名为__LocalSettings的文件进行存储。
打开文件后可以看到,存储的内容(此处进行了整理)
- < ArrayOfKeyValueOfstringanyType
- xmlns:i="http://www.w3.org/2001
/XMLSchema-instance"- xmlns="http://schemas.microsoft
.com/2003/10/Serialization/Arrays">- < KeyValueOfstringanyType>
- < Key>mykey< /Key>
- < Value xmlns:d3p1="http://
www.w3.org/2001/XMLSchema"- i:type="d3p1:string">myValue< /Value>
- < /KeyValueOfstringanyType>
- < /ArrayOfKeyValueOfstringanyType>
值得一提的是使用Silverlight独立存储配置不仅仅可以存储简单类型的数据,也可以存储我们自定义类型的数据。