如何在WPF中覆盖WndProc? 当我的窗口关闭时,我尝试检查我正在使用的文件是否被修改,如果是这样,我必须向用户提示“你想保存更改吗?”消息,然后关闭正在使用的文件和窗口。但是,当我的窗口仍然打开时,我无法处理用户重新启动/关闭/注销的情况。我无法覆盖WndProc,因为我正在使用WPF进行开发。我也尝试使用{ {3}}。这就是我所做的 private void loadedForm(object sender,RoutedEventArgs e) {
HwndSource source = HwndSource.FromHwnd(new WindowInteropHelper(this).Handle);
source.AddHook(new HwndSourceHook(WndProc));
}
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
if (msg == WM_QUERYENDSESION.)
{
OnWindowClose(this, new CancelEventArgs())
handled = true;
shutdown = true;
}
return IntPtr.Zero;
}
private void OnWindowClose(object sender, CancelEvetArgs e)
{
if (modified)
{
//show message box
//if result is yes/no
e.cancel = false;
//if cancel
e.cancel = true;
}
}
在XAML文件上,我也使用了Closing = "OnWindowClose"
但是当我单击是/否时没有任何反应,我的应用程序没有关闭。如果我尝试使用关闭按钮再次关闭它,我收到一个错误?为什么会这样?是因为胡克?
在WPF中这相当于什么?
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)
{
systemShutdown = true;
}
// If this is WM_QUERYENDSESSION, the closing event should be
// raised in the base WndProc.
base.WndProc(m);
} //WndProc
private void Form1_Closing(
System.Object sender,
System.ComponentModel.CancelEventArgs e)
{
if (systemShutdown)
// Reset the variable because the user might cancel the
// shutdown.
{
systemShutdown = false;
if (DialogResult.Yes==MessageBox.Show("My application",
"Do you want to save your work before logging off?",
MessageBoxButtons.YesNo))
{
SaveFile();
e.Cancel = false;
}
else{
e.Cancel = true;
}
CloseFile();
}
}
答案 0 :(得分:6)
为什么不使用Application.SessionEnding事件?这似乎是为了做你想做的,你不需要直接处理windows消息。
如果要取消关闭,可以在SessionEndingCancelEventArgs上将Cancel设置为true。
答案 1 :(得分:0)
您可以使用 Application.SessionEnding
事件,但如果您需要了解有关如何测试它的更多信息 - 请参阅以下答案: