コード例 #1
0
ファイル: UISystem.cs プロジェクト: dw5/W10CallsDialer
        private void LockApplicationHost_Unlocking(LockApplicationHost sender, LockScreenUnlockingEventArgs args)
        {
            LockScreenUnlockingDeferral deferral = args.GetDeferral();

            deferral.Complete();
        }
コード例 #2
0
 private void LockHost_Unlocking(LockApplicationHost sender, LockScreenUnlockingEventArgs args)
 {
     // save any unsaved work and gracefully exit the app
     Logging.SingleInstance.LogMessage("LockHost_Unlocking");
 }