I've been trying to make a program which will call a hard coded contact in WP7. Im using this code for the call function
PhoneCallTask phoneCallTask = new PhoneCallTask();
phoneCallTask.PhoneNumber = "123456789";
phoneCallTask.DisplayName = "person 1";
phoneCallTask.Show();
and there is this pop up menu like this!(this one is from google images)
I would want to know if there is a way in which I can call that contact without manually pressing the call button or pressing any key.