Send the user to my other apps, Windows Phone button

26 views Asked by At

How can I give a code to the button "See my other apps on the Store" for my application?

I used:

    private void buttonMyOtherApps_Click(object sender, RoutedEventArgs e)
    {
        MarketplaceDetailTask marketPlaceDetailTask = new MarketplaceDetailTask();
        marketPlaceDetailTask.Show();
    }

But this opens the current app in the store, not the list of my apps...

1

There are 1 answers

0
fillobotto On BEST ANSWER

There is no direct method, but you can perform a simple search over the marktplace and you will get all the apps from a developer by his name on the store.

MarketplaceSearchTask marketplaceSearchTask = new MarketplaceSearchTask(); 
marketplaceSearchTask.SearchTerms = "developer-username"; 
marketplaceSearchTask.Show();

Here a list of available Tasks you might look into: http://www.geekchamp.com/articles/6-how-to-use-marketplace-tasks-in-a-wp7-app