Automatically close messagebox in C#

好久不见. 提交于 2019-12-18 11:59:18

问题


I am currently developing an application in C# where I display a MessageBox. How can I automatically close the message box after a couple of seconds?


回答1:


You will need to create your own Window, with the code-behind containing a loaded handler and a timer handler as follows:

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    Timer t = new Timer();
    t.Interval = 3000;
    t.Elapsed += new ElapsedEventHandler(t_Elapsed);
    t.Start();
}

void t_Elapsed(object sender, ElapsedEventArgs e)
{
    this.Dispatcher.Invoke(new Action(()=>
    {
        this.Close();
    }),null);
}

You can then make your custom message box appear by calling ShowDialog():

MyWindow w = new MyWindow();
w.ShowDialog();



回答2:


The System.Windows.MessageBox.Show() method has an overload which takes an owner Window as the first parameter. If we create an invisible owner Window which we then close after a specified time, it's child message box would close as well.

Here is the complete answer: https://stackoverflow.com/a/20098381/2190520



来源:https://stackoverflow.com/questions/4362235/automatically-close-messagebox-in-c-sharp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!