这个问题来自论坛提问
Q:当我登录进入主界面时,在规定的时间内没有做任何操作,系统就注销(就像电脑的屏保)。
A: 其实很简单,参考一个api函数就可以了:GetLastInputInfo,以下是参考代码
演示程序在你10秒内没有任何鼠标键盘活动既最小化,最小化后晃动鼠标即可复原
using
System;
using
System.Collections.Generic;
using
System.ComponentModel;
using
System.Data;
using
System.Drawing;
using
System.Text;
using
System.Windows.Forms;
using
System.Runtime.InteropServices;
namespace
WindowsApplication28
...
{
public partial class Form1 : Form
... {
&nbs

该博客讨论了如何在Windows系统中实现程序自动锁屏功能。通过利用GetLastInputInfo API函数,当用户在规定时间内无操作,系统将自动进行锁屏。提供了一个10秒无鼠标键盘活动即最小化的示例代码,用户可以通过晃动鼠标来恢复界面。
最低0.47元/天 解锁文章

被折叠的 条评论
为什么被折叠?



