Silverlight中使用Application.GetResourceStream方法加载资源时得到的总是null

这有一段代码:

string resource = "/EntryPlatform/ConfigurationXML/"+xmlFile;
            string resourcePath = "/Client;component" + resource;
            Uri resourceUri = new Uri(resourcePath, UriKind.Relative);
//每次到这使用Application.GetResourceStream方法加载资源时得到的总是null StreamResourceInfo resourceInfo = Application.GetResourceStream(resourceUri); XmlReader reader = XmlReader.Create(resourceInfo.Stream); XDocument doc = XDocument.Load(reader);
每次到这使用Application.GetResourceStream方法加载资源时得到的总是null,一开始我以为是Uri格式写错了
/项目名称;component/EntryPlatform/ConfigurationXML/aaa.xml    //资源的相对路径

然后我在wpf中同样试过这样写没有错误,可以加载到资源,在网上找了找原因是这样的,右键点击Properties->在Build Action选择Resource,如下图所示

然后重新编译一下运行就可以加载到资源了

posted @ 2013-05-02 10:53  hailiang2013  阅读(626)  评论(1编辑  收藏  举报