在运行时访问WMAppManifest.xml文件

  有没有想过在运行时访问WMAppManifest.xml?这个文件中包含着应用的很多相关信息,比如App ID Title, RuntimeType, Version, Genre, Author, Description, Publisher 和 application capabilities.

  下面的代码就是访问这个文件的一种方法

 private string ReadWMAppManifest()
        {
            string wmData = string.Empty;
            System.Xml.Linq.XElement appxml = System.Xml.Linq.XElement.Load("WMAppManifest.xml");
            var appElement = (from manifestData in appxml.Descendants("App") select manifestData).SingleOrDefault();

            if (appElement != null)
            {
                wmData = "ProductID = " + appElement.Attribute("ProductID").Value + Environment.NewLine;
                
                wmData += "Title = " + appElement.Attribute("Title").Value + Environment.NewLine;
                wmData += "RuntimeType = " + appElement.Attribute("RuntimeType").Value + Environment.NewLine;
                wmData += "Version = " + appElement.Attribute("Version").Value + Environment.NewLine;
                wmData += "Genre = " + appElement.Attribute("Genre").Value + Environment.NewLine;
                wmData += "Author = " + appElement.Attribute("Author").Value + Environment.NewLine;
                wmData += "Description = " + appElement.Attribute("Description").Value + Environment.NewLine;
                wmData += "Publisher = " + appElement.Attribute("Publisher").Value + Environment.NewLine;
            }

            appElement = (from manifestData in appxml.Descendants("PrimaryToken") select manifestData).SingleOrDefault();

            if (appElement != null)
            {
                wmData += "TokenID = " + appElement.Attribute("TokenID").Value + Environment.NewLine;
            }

            return wmData;
        }

 

原文地址:http://windows-mobile-dev.blogspot.in/2012/05/how-to-access-application-manifest.html

转载于:https://www.cnblogs.com/lxpmoon/articles/2480186.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值