gpt4 book ai didi

c# - WM_QUERYENDSESSION 给我带来了问题

转载 作者:太空狗 更新时间:2023-10-29 21:29:02 24 4
gpt4 key购买 nike

制作一个简单的应用程序,因此当用户退出 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 Force Programs to Quit 屏幕,我在某处读到如果您将 0 返回到 WM_QUERYENDSESSION 它不会显示此内容,但它仍在显示此内容...

有什么想法吗?

编辑:

我们使用了有人回复的代码,但我们仍然看到这个屏幕。

The screen we want to avoid!

最佳答案

你试过吗

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

应该中止关闭。

关于c# - WM_QUERYENDSESSION 给我带来了问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11242232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com