WP7 LinqToXml调用静态xml文件

1.首先把emotion.xml添加到项目Project中,设置它的属性BulidAction为Resource。

 

2.StreamResourceInfo xml = Application.GetResourceStream(new Uri("/Project;component/SampleData/emotions.xml", UriKind.Relative));

3. XDocument xdoc = XDocument.Load(xml.Stream);

    需要加命名空间:

    using System.Xml;

    using System.Xml.Linq;

 

你可能感兴趣的:(xml)