Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/jsf/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Windows phone 7 将其他windows phone应用程序的链接添加到我的windows phone应用程序中_Windows Phone 7_Windows Phone 8 - Fatal编程技术网

Windows phone 7 将其他windows phone应用程序的链接添加到我的windows phone应用程序中

Windows phone 7 将其他windows phone应用程序的链接添加到我的windows phone应用程序中,windows-phone-7,windows-phone-8,Windows Phone 7,Windows Phone 8,我正在开发windows phone应用程序,我决定在其中添加指向所有其他已发布windows phone应用程序的链接。我尝试过直接链接到windowsphone.com/appid,但它不起作用。 我浪费了很多时间搜索它,但找不到任何答案,这一定是一个非常简单的解决方案,但不幸的是,我没有得到它 请帮帮我 谢谢 Zauk对于Windows Phone 8,您有一个API,可以提供您发布的所有应用程序。API可用作: IEnumerable<Package> apps = Wind

我正在开发windows phone应用程序,我决定在其中添加指向所有其他已发布windows phone应用程序的链接。我尝试过直接链接到windowsphone.com/appid,但它不起作用。 我浪费了很多时间搜索它,但找不到任何答案,这一定是一个非常简单的解决方案,但不幸的是,我没有得到它

请帮帮我

谢谢


Zauk

对于Windows Phone 8,您有一个API,可以提供您发布的所有应用程序。API可用作:

IEnumerable<Package> apps = Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher();
IEnumerable apps=Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher();
您可以在此处找到有关此API的更多信息:

希望这有帮助

还有?