制作一个简单的应用程序,所以当用户退出 Windows 时,它当然会关闭应用程序。我们正在制作一个简单的 USB 警报应用程序,如果在用户注销时检测到 USB,它会停止关闭
这是到目前为止的代码。
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 强制程序退出屏幕,如果您将 0 返回到 WM_QUERYENDSESSION,我在某处读到它不会显示这个,但它仍然显示这个......
有任何想法吗?
编辑:
我们使用了有人回应的代码,但我们仍然得到这个屏幕。