微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

XamlServices class in .Net 4.0

 

XAML has up to Now played a big role in WPF and Silverlight and is seen as a markuP Language to design GUIs. That is not quite true. XAML describes objects,their properties and their relations. It is not limited to designing user interfaces. That is why XAML has been separated from WPF and Silverlight in .NET framework 4.0.
 
Let's assume you have a class  BigSerializableObject and want to save it to a file with all properties and attached objects. Later,you want to be able to load it again from the file and get a new instance which is a perfect copy of the object you originally serialized. You might do this with XML. Serializing is not much of a problem. Deserializing is a completely different story. You would have to navigate through the XML nodes,create instances of the required objects,fill them with the proper values and assemble them according to the structure of the XML. That also means writing lots of code.
 
Things get far easier when using the  System.Xaml.XamlServices class. Serializing the object is very similar to what you might be used to from XML:
 

 Collapse
using (TextWriter XamlWriter = File.CreateText("Test.xaml"))
{
  System.Xaml.XamlServices.Save(XamlWriter,MyBigSerializableObject);
}
 
That's it. Your object has just been serialized to XAML into the file  Test.xaml. The only condition is that your object and all objects attached to it must be serializable.
 
Now we want to load our object again from the file  Test.xaml. If possible,we want it as an object instance,just like it was before. And we don't want to write any code which constructs the object from the file. Try this:
 

 Collapse
using (TextReader XamlReader = File.OpenText("Test.xaml"))
{
  BigSerializableObject MyNewBigSerializableObject = (BigSerializableObject)System.Xaml.XamlServices.Load(XamlReader);
}
 
Again,that was it. You Now have a new instance of your original object,loaded from the file.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐