Beetlejuice
Beetlejuice

Reputation: 4425

Open dial page on windows phone

my application needs to open the default dialing page of windows phone.

Any idea how to do this ?

I'm using windows phone 7.1 sdk.

Upvotes: 1

Views: 119

Answers (2)

MatDev8
MatDev8

Reputation: 976

You can create page for get All Contacts.Like page Contact in your windows phone. With this, user can select contact for phonning.

Upvotes: 0

FunksMaName
FunksMaName

Reputation: 2111

You can't open the default dialing page. You can instigate a phone call task which will then open the dialing page.

    PhoneCallTask phoneCallTask = new PhoneCallTask();
    phoneCallTask.PhoneNumber = "2065550123";
    phoneCallTask.DisplayName = "Spanish restaurant";
    phoneCallTask.Show();

Upvotes: 3

Related Questions