检测用户在Windows 8商店应用程序或系统范围内处于非活动状态的时间长度?

时间:2013-06-10 15:23:28

标签: c# windows-8 windows-store-apps

我正在尝试使用Windows 8商店应用API检测用户在应用或系统范围内处于非活动状态的时间。

我查看了系统触发器用户离开但是它只是告诉你何时进入空闲状态。不允许您指定特定时间。我还看了一下Pointer Pressed并尝试检测敲击或触摸事件;但这不起作用,因为我使用的是webview,无法通过Web视图捕获PointerPressed事件。

有没有办法检测用户是否在应用程序或系统范围内闲置了X段时间?感谢任何帮助,谢谢!

1 个答案:

答案 0 :(得分:0)

我最终用javascript检测按键和鼠标按下事件。在LoadCompleted事件中,我使用AW_WebView.InvokeScript(“eval”,new string [] {scriptsString})注入javascripts;

按键脚本:

window.document.body.onkeydown = function(event){ 
            window.external.notify('key_pressed');              
         };

Mouse Down Scripts:

document.onmousedown = function documentMouseDown(e){
         window.external.notify('mouse_down');
    }

您可以为其他用户事件添加其他脚本。

当检测到鼠标按下或按键时,会执行window.external.notify(“按键或鼠标按下”)。此消息在我的WebView_ScriptNotify事件中“收到”。当我从WebView收到消息时,我设置了一个计时器。如果已经设置了定时器,它将取消定时器并再次启动定时器。当计时器结束时,会执行一些代码。

private void SetTimer(int time)
        {
            if (!TimerEnabled)
            {
                return;
            }
            else
            {
                if (DelayTimer != null)
                {
                    DelayTimer.Cancel();
                    DelayTimer = null;
                }

                //the timeout 
                TimeSpan delay = TimeSpan.FromSeconds(time);

                bool completed = false;

                DelayTimer = ThreadPoolTimer.CreateTimer(
                    (source) =>
                    {    
                        // 
                        // Update the UI thread by using the UI core dispatcher.
                        // 
                        Dispatcher.RunAsync(
                                 CoreDispatcherPriority.High,
                                 () =>
                                 {
                                     // 
                                     // UI components can be accessed within this scope.
                                    //THIS CODE GETS EXECUTED WHEN TIMER HAS FINISHED

                                 });

                        completed = true;
                    },
                    delay,
                    (source) =>
                    {
                        // 
                        // TODO: Handle work cancellation/completion.
                        // 


                        // 
                        // Update the UI thread by using the UI core dispatcher.
                        // 
                        Dispatcher.RunAsync(
                            CoreDispatcherPriority.High,
                            () =>
                            {
                                // 
                                // UI components can be accessed within this scope.
                                // 

                                if (completed)
                                {
                                    // Timer completed.
                                }
                                else
                                {
                                    // Timer cancelled.
                                }

                            });
                    });
            }
        }

希望这有助于某人!我知道这不是完成这项工作的完美方法,但暂时对我有用。