WM_QUERYENDSESSION给我带来了麻烦

时间:2012-06-28 10:02:49

标签: c# wndproc

制作一个简单的应用程序,因此当用户退出Windows时,它当然会关闭应用程序。我们正在制作一个简单的USB警报应用程序,如果在用户注销时检测到USB,则STOPS将关闭

这是到目前为止的代码。

public Form1()
    {
        InitializeComponent();
    }

    private static int WM_QUERYENDSESSION = 0x11;
    private static bool systemShutdown = false;
    protected override void WndProc(ref System.Windows.Forms.Message m)
    {
        if (m.Msg == WM_QUERYENDSESSION)
        {
            //MessageBox.Show("queryendsession: this is a logoff, shutdown, or reboot");
            systemShutdown = true;
            m.Result = (IntPtr)0;
        }

        // If this is WM_QUERYENDSESSION, the closing event should be
        // raised in the base WndProc.
        m.Result = (IntPtr)0;
        base.WndProc(ref m);

    } //WndProc 

    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    {
        if (systemShutdown)
        {
            systemShutdown = false;
            bool hasUSB = false;

            foreach (DriveInfo Drive in DriveInfo.GetDrives())
            {
                if (Drive.DriveType == DriveType.Removable)
                {
                    hasUSB = true;
                }
            }

            if (hasUSB)
            {
                e.Cancel = true;
                MessageBox.Show("You still have USB device plugged in, please unplug it and log off again");
            }
            else
            {
                e.Cancel = false;
            }
        }
    }

发生的事情是正在显示Windows强制退出程序屏幕,如果你向WM_QUERYENDSESSION返回0,我会在某处读到它没有显示这个,但它仍然显示这个......

有什么想法吗?

编辑:

我们使用了某人回复的代码,但我们仍在使用此屏幕。

The screen we want to avoid!

3 个答案:

答案 0 :(得分:3)

你试过吗

[DllImport("advapi32.dll", SetLastError=true)]
static extern bool AbortSystemShutdown(string lpMachineName);

应该中止关机。

答案 1 :(得分:3)

This link是相关的。 它解释了您应该使用Shutdown­Block­Reason­CreateShutdown­Block­Reason­Destroy

答案 2 :(得分:1)

我现在通过在

中添加此代码使此工作正常
        [DllImport("user32.dll", SetLastError = true)]
    static extern int CancelShutdown();

我还改变了WM_QUERYENDSESSION = 0x11的标题;到WM_QUERYENDSESSION = 0x0011;

不确定这是否做了什么,但代码似乎有效,感谢所有答案