Simply put, how can I bring up the dial pad?
Edit
In addition to the accepted answer the InputScope attribute on a TextBox can be set to TelephoneNumber.
Source: Blankenblog
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Actually, it seems that the
PhoneCallTaskprobably doesn’t do what you want.I’m not sure that this is actually possible without making a call as per my original answer revision. What you could do however is emulate the screen within your own application (You can bring up a
TextBoxwithInputScope="TelephoneNumber"which will show only the numbers somewhat like the built-in dialpad), then usePhoneCallTaskto actually place the call.You would use aPhoneCallTaskto show the telephone dialer interface.PhoneCallTask on MSDN.