本文介绍了如何在Windows Phone 8应用程序中拨打电话?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用代码
private void image1_Tap_1(object sender, System.Windows.Input.GestureEventArgs e)
{
PhoneCallTask task1 = new PhoneCallTask();
task1.DisplayName = "Fire Brigade";
task1.PhoneNumber = "102";
task1.Show();
}
但是它给出了一个异常System.Windows中发生了'System.UnauthorizedAccessException'类型的未处理异常。 ni.dll
有关如何使其工作的任何建议。?
But it gives an exception "An unhandled exception of type 'System.UnauthorizedAccessException' occurred in System.Windows.ni.dll"
Any suggestions on how to make it work.?
推荐答案
这篇关于如何在Windows Phone 8应用程序中拨打电话?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!