Market in Windows Phone 7 Emulator

I'm just wondering if there is a way to download some applications for the emulator. The fact is that we are going to start our own application, and we want to make sure that we are doing everything that is necessary for Windows Phone 7. I want to go through some applications and see what / how they do things; e.g. go to settings, animations, navigation, etc.

+3
source share
5 answers

Chris is right, there is no market access in the emulator.

The best you can do to verify that your application is consistent is to review the User Interface Design Guide and Application Certification Requirements .

+2

, , MarketPlace .

, C:\Program Files (x86)\Common \microsoft shared\Phone Tools\CoreCon\10.0\Bin\Microsoft.Smartdevice.Connectivity.dll .

DatastoreManager datastoreManager = new DatastoreManager(1033);
Platform platform = datastoreManager.GetPlatforms().Single(p => p.Name == "Windows Phone 7");
Device device = platform.GetDevices().Single(d => d.Name == "Windows Phone Emulator");
device.Connect();
Guid appID = new Guid("{5B04B775-356B-4AA0-AAF8-6491FFEA5630}");
if (device.IsApplicationInstalled(appID))
{
    RemoteApplication app = device.GetApplication(appID);
    app.Launch();
}
Console.ReadLine();

, ILSPy Windows Phone Library. , .

+1

Windows Phone 7 . . Windows Phone 7 . , , , .. , Marketplace.

0

Windows Phone 7, , WP8 .

0

Source: https://habr.com/ru/post/1770636/


All Articles