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
Post a Comment