Search code examples
c#windowswindows-8windows-store-apps

How to Open Windows Store with my all apps


I want to add a menu in my app that is, "More Apps". In that menu I want to open the store with my all apps. How to do that ?

[basically my app is in Windows 8.1]


Solution

  • In the new Windows 8.1 update the Package Name of Windows Store App is changed to ms-windows-store so, to get the list of any publisher we have to use the below code.

    private async System.Threading.Tasks.Task SearchForAnApp()
    {
     await Launcher.LaunchUriAsync(new Uri("ms-windows-store:publisher=company-name"));
    }