在windows phone10中通过硬件按键启动应用程序

时间:2015-07-13 06:43:35

标签: windows-10-mobile

当手机处于锁定状态时,如何使用硬件键启动Windows应用程序。需要硬件键事件来触发Windows 10或8.1 windows store app中的操作。

1 个答案:

答案 0 :(得分:0)

相反 Windows.Phone.UI.Input.HardwareButtons.BackPressed + = HardwareButtons_BackPressed; 您需要使用 var systemNavigationManager = Windows.UI.Core.SystemNavigationManager.GetForCurrentView(); ,其中包含< strong> BackRequested 事件

您还可以添加扩展库并使用适用于Windows Phone 8.1 Store App的API enter image description here

if(Windows.Foundation.Metadata.ApiInformation.IsTypePresent(&#34; Windows.Phone.UI.Input.HardwareButtons&#34;))

Windows.Phone.UI.Input.HardwareButtons.BackPressed + = HardwareButtons_BackPressed;

但是当设备被锁定时,您的应用程序将进入暂停模式,您无法处理事件