1

I am developing an application in windows phone 8 which reads the number entered by user and then make cellular call to that number.

Code is -

PhoneCallTask callTask = new PhoneCallTask();
callTask.PhoneNumber = number;
callTask.DisplayName = "Adam";
callTask.Show();

Problem is - While executing this code, application shows a prompt message "Dial ?" with "Call" and "don't call" buttons and then on clicking on "Call" does the action of originating call. So, looking for a solution which will originate the call without user interaction.

Thanks in advance.

4

1 に答える 1

1

残念ながら、Windows Phone では、ユーザーの操作なしで電話をかけることはできません。

于 2013-05-30T09:20:10.033 に答える