对 Windows 10 手机上的电话作出反应
React to phonecall on Windows 10 Mobile
有什么方法可以在 UWP 上控制来电吗?我正在寻找类似的东西:
1.获取IncomingPhonecallEventHandler以附加
2.触发时,能够:
phonecall.Accept();
phonecall.Decline();
phonecall.DeclineWithSMS();
所有这些都是我的 android 智能手表项目的一部分,所以我也需要能够打电话和接听电话。
编辑 1
我知道 PhoneCallManager class,但注册了 CallStateChanged 事件 returns 对象,我不知道如何使用它。
我相信您正在寻找 PhoneCallManager class and the PhoneCallManager.CallStateChanged event。
您还可以查看 this example (in C#) 以查看如何与 API 交互
如果您希望能够阻止和过滤来电,可以查看 this example,它具有该功能。
如果要发送短信,this example has the code needed
但是,我认为目前没有 API 接听 phone 电话
有什么方法可以在 UWP 上控制来电吗?我正在寻找类似的东西:
1.获取IncomingPhonecallEventHandler以附加
2.触发时,能够:
phonecall.Accept();
phonecall.Decline();
phonecall.DeclineWithSMS();
所有这些都是我的 android 智能手表项目的一部分,所以我也需要能够打电话和接听电话。
编辑 1
我知道 PhoneCallManager class,但注册了 CallStateChanged 事件 returns 对象,我不知道如何使用它。
我相信您正在寻找 PhoneCallManager class and the PhoneCallManager.CallStateChanged event。
您还可以查看 this example (in C#) 以查看如何与 API 交互
如果您希望能够阻止和过滤来电,可以查看 this example,它具有该功能。
如果要发送短信,this example has the code needed
但是,我认为目前没有 API 接听 phone 电话