c# - Windows Phone App: Is there a way to have a button start dialing a phone number from my app? -


i creating app, , want have button can click dial phone number. phone number chosen me. possible?

you can that, using phonecalltask

var phonecalltask = new phonecalltask();     phonecalltask.phonenumber = "123456789";     phonecalltask.show(); 

just put code in button's event handler.


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

How to call a javascript function after the page loads with a chrome extension? -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -