WP8启动您已发布的应用

您可以使用来自 Windows.Phone.Management.Deployment 命名空间的 API 来确定,来自您的发布者 ID 的其他应用是否安装在手机上。如果已经安装,您也可以使用该 API 启动它们。为了演示,以下示例枚举当前发布者 ID 的所有应用,并在枚举中启动第一个应用(除非该应用恰好是当前应用)。

IEnumerable<Package> apps = Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher();
apps.First().Launch(string.Empty);

https://msdn.microsoft.com/library/windows/apps/jj207014.aspx
原文地址:https://www.cnblogs.com/walleyekneel/p/4361974.html