我知道您可以访问Windows.ApplicationModel.Package.Current
并使用Id.Name获取名称,但这似乎是我的清单中的包名称。一串相当长的数字和字母。
如何从代码内部获取清单中的包显示名称,Publisher显示名称。我宁愿让这种动态。
有什么建议吗?
答案 0 :(得分:2)
清单是一个xml文件,因此您可以使用Linq to XML查询它:
using System.Xml.Linq;
using Windows.ApplicationModel;
using Windows.Storage;
private async void GetInfo(object sender, RoutedEventArgs e)
{
StorageFile file = await Package.Current.InstalledLocation.GetFileAsync("AppxManifest.xml");
string manifestXml = await FileIO.ReadTextAsync(file);
XDocument doc = XDocument.Parse(manifestXml);
XNamespace packageNamespace = "http://schemas.microsoft.com/appx/2010/manifest";
var displayName = (from name in doc.Descendants(packageNamespace + "DisplayName")
select name.Value).First();
var publisherDsplName = (from publisher in doc.Descendants(packageNamespace + "PublisherDisplayName")
select publisher.Value).First();
string output = "DisplayName: " + displayName + ", PublisherDisplayName: " + publisherDsplName;
txtBlock.Text = output;
}