gpt4 book ai didi

c# - 强制以编程方式关闭 MessageBox

转载 作者:可可西里 更新时间:2023-11-01 07:43:54 28 4
gpt4 key购买 nike

让我给你介绍一下背景。

我们有一个应用程序(中型),它在不同的地方(数百个)使用 MessageBox.Show (....)。

这些消息框是工作流的一部分,用于通知、警告或接受用户的输入。如果没有事件,应用程序应该在一定时间后自动注销。我们有一个要求,在注销应用程序时,只清理 session 数据,清除 View 并隐藏自身,以便在下一次启动时,它不必执行耗时的启动过程。

一切正常,但在屏幕上有一些消息框并且用户离开机器而没有响应消息框的情况下,然后由于没有事件使应用程序注销。问题是消息框不会消失。

如何在隐藏应用程序的同时关闭打开的消息框(如果有)?

最佳答案

这是一段基于UIAutomation的代码(一个很酷但仍然不是很常用的 API)试图关闭当前进程的所有模态窗口(包括使用 MessageBox 打开的窗口):

    /// <summary>
/// Attempt to close modal windows if there are any.
/// </summary>
public static void CloseModalWindows()
{
// get the main window
AutomationElement root = AutomationElement.FromHandle(Process.GetCurrentProcess().MainWindowHandle);
if (root == null)
return;

// it should implement the Window pattern
object pattern;
if (!root.TryGetCurrentPattern(WindowPattern.Pattern, out pattern))
return;

WindowPattern window = (WindowPattern)pattern;
if (window.Current.WindowInteractionState != WindowInteractionState.ReadyForUserInteraction)
{
// get sub windows
foreach (AutomationElement element in root.FindAll(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Window)))
{
// hmmm... is it really a window?
if (element.TryGetCurrentPattern(WindowPattern.Pattern, out pattern))
{
// if it's ready, try to close it
WindowPattern childWindow = (WindowPattern)pattern;
if (childWindow.Current.WindowInteractionState == WindowInteractionState.ReadyForUserInteraction)
{
childWindow.Close();
}
}
}
}
}

例如,如果您有一个 WinForms 应用程序,当您按下某个按钮 1 时会弹出一个 MessageBox,您仍然可以使用 Windows“关闭窗口”菜单(在任务栏中右键单击)关闭该应用程序:

    private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Don't click me. I want to be closed automatically!");
}

protected override void WndProc(ref System.Windows.Forms.Message m)
{
const int WM_SYSCOMMAND = 0x0112;
const int SC_CLOSE = 0xF060;

if (m.Msg == WM_SYSCOMMAND) // this is sent even if a modal MessageBox is shown
{
if ((int)m.WParam == SC_CLOSE)
{
CloseModalWindows();
Close();
}
}
base.WndProc(ref m);
}

当然,您可以在代码的其他地方使用 CloseModalWindows,这只是一个示例。

关于c# - 强制以编程方式关闭 MessageBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7926107/

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