如何在win8.1中像Skype一样在锁屏上创建特殊吐司和向下滑动?

How to create the special toast and swipe down on lock screen like Skype in win8.1?

在win8.1中,我们可以在锁屏界面向下滑动打开相机。 并且还可以从锁定屏幕接听 Skype 电话。

http://webwereld.nl/development/79224-skype-omzeilt-lockscreen-windows-8-1---update http://www.stckwt.com/index.php?route=product/product&product_id=137

我想创建一个像 Skype 这样的 windows 商店应用程序。 当有人来电时,它会显示一个特殊的祝酒词:用户还可以选择如何回应——接听电话或拒绝。 如果用户在锁屏状态下选择接听电话,它会自动向下滑动屏幕并开始接听电话。

但是我不知道。

有没有人有类似经历?

Alarm Toast Notification 示例显示了如何为机器的 Alarm 应用程序执行此操作:

https://code.msdn.microsoft.com/windowsapps/Alarm-toast-notifications-fe81fc74

如果您的应用程序是 VOIP 应用程序,那么您可以将该示例中的 toast XML 字符串修改为以下内容:

                string toastXmlString =
                "<toast duration=\"long\">\n" +
                    "<visual>\n" +
                        "<binding template=\"ToastText02\">\n" +
                            "<text id=\"1\">Alarms Notifications SDK Sample App</text>\n" +
                            "<text id=\"2\">" + alarmName + "</text>\n" +
                        "</binding>\n" +
                    "</visual>\n" +
                    "<commands scenario=\"incomingCall\">\n" +
                        "<command id=\"voice\"/>\n" +
                        "<command id=\"video\"/>\n" +
                        "<command id=\"decline\"/>\n" +
                    "</commands>\n" +
                    "<audio src=\"ms-winsoundevent:Notification.Looping.Alarm2\" loop=\"true\" />\n" +
                "</toast>\n";

请注意,只有当您有可以接听来电的应用程序时,这才有效。

以下博客也对此进行了介绍: http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2013/09/27/windows-8-1-preview-and-alarm-call-applications.aspx