単純なアプリケーションを作成するため、ユーザーが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の強制終了プログラム画面が表示されています。WM_QUERYENDSESSIONに0を返すと、これは表示されませんが、まだ表示されています...
何か案は?
編集:
誰かが応答したコードを使用しましたが、まだこの画面が表示されています。