在Windows 10 Mobile上对电话呼叫做出反应

时间:2017-01-24 19:55:02

标签: c# uwp windows-10-mobile

有没有办法在UWP上控制来电?我正在寻找类似的东西:
1.获取IncomingPhonecallEventHandler以附加
2.触发后,能够:

phonecall.Accept();
phonecall.Decline();
phonecall.DeclineWithSMS();

所有这些都是我的Android智能手表项目的一部分,所以我也需要能够打电话和接听电话。

编辑1
我知道PhoneCallManager类,但注册CallStateChanged事件返回对象,我不知道如何使用。

1 个答案:

答案 0 :(得分:1)

我相信您正在寻找PhoneCallManager classPhoneCallManager.CallStateChanged event

您还可以结帐this example (in C#)以查看如何与apis进行互动

如果您希望能够阻止和过滤来电,可以结帐this example,它具有该功能。

如果您要发送短信,this example has the code needed

但是,我不相信目前有接听电话的API