使用c#检查工作站锁定/解锁更改

时间:2009-03-02 18:45:14

标签: c# windows session-state environment

DUPLICATE: How can I programmatically determine if my workstation is locked?

如何在Windows用户锁定屏幕(Windows + L)并再次解锁时检测(在运行时)。我知道我可以全局跟踪键盘输入,但是可以用环境变量来检查这个吗?

4 个答案:

答案 0 :(得分:15)

SessionSwitch事件可能是您最好的选择。检查通过SessionSwitchReasonSessionSwitchEventArgs,找出它是什么类型的切换并做出适当的反应。

答案 1 :(得分:3)

您可以通过WM_WTSSESSION_CHANGE消息获取此通知。您必须通过WTSRegisterSessionNotification通知Windows您要接收这些消息,并使用WTSUnRegisterSessionNotification取消注册。

这些帖子应该对C#实现有所帮助。

http://pinvoke.net/default.aspx/wtsapi32.WTSRegisterSessionNotification

http://blogs.msdn.com/shawnfa/archive/2005/05/17/418891.aspx

http://bytes.com/groups/net-c/276963-trapping-when-workstation-locked

答案 2 :(得分:2)

您可以使用ComponentDispatcher 作为获取这些活动的替代方式。

这是一个包装它的示例类。

public class Win32Session
{
    private const int NOTIFY_FOR_THIS_SESSION = 0;
    private const int WM_WTSSESSION_CHANGE = 0x2b1;
    private const int WTS_SESSION_LOCK = 0x7;
    private const int WTS_SESSION_UNLOCK = 0x8;

    public event EventHandler MachineLocked;
    public event EventHandler MachineUnlocked;

    public Win32Session()
    {
        ComponentDispatcher.ThreadFilterMessage += ComponentDispatcher_ThreadFilterMessage;
    }

    void ComponentDispatcher_ThreadFilterMessage(ref MSG msg, ref bool handled)
    {
        if (msg.message == WM_WTSSESSION_CHANGE)
        {
            int value = msg.wParam.ToInt32();
            if (value == WTS_SESSION_LOCK)
            {
                OnMachineLocked(EventArgs.Empty);
            }
            else if (value == WTS_SESSION_UNLOCK)
            {
                OnMachineUnlocked(EventArgs.Empty);
            }
        }
    }

    protected virtual void OnMachineLocked(EventArgs e)
    {
        EventHandler temp = MachineLocked;
        if (temp != null)
        {
            temp(this, e);
        }
    }

    protected virtual void OnMachineUnlocked(EventArgs e)
    {
        EventHandler temp = MachineUnlocked;
        if (temp != null)
        {
            temp(this, e);
        }
    }
}

答案 3 :(得分:-2)

你绝对不需要WM_WTSSESSION_CHANGE 只需使用内部WTTS apis。