本文介绍了为什么GetIdleTime()函数总是返回零的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的移动应用程序中,我想获得空闲时间,因为我使用了getidletime()
就像这样
[DllImport(coredll.dll,SetLastError = false)]
public static extern int GetIdleTime();
但函数总是返回0.
i我在计时器刻度事件中检查这个。
可能是什么问题
谢谢
Ginnas
Hi,
In my mobile application i wanted to get the idle time for that i have used getidletime()
like this
[DllImport("coredll.dll",SetLastError=false)]
public static extern int GetIdleTime();
but the function always returns 0.
i am checking this in timer tick event.
what could be the issue
Thanks
Ginnas
推荐答案
这篇关于为什么GetIdleTime()函数总是返回零的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!