Anyone know a messageBox in .NET that doesn't block the thread that created it untill it's closed ?
See Question&Answers more detail:osAnyone know a messageBox in .NET that doesn't block the thread that created it untill it's closed ?
See Question&Answers more detail:osprivate void ShowMessageBox(string text, string caption)
{
Thread t = new Thread(() => MyMessageBox(text, caption));
t.Start();
}
private void MyMessageBox(object text, object caption)
{
MessageBox.Show((string)text, (string)caption);
}
You can call ShowMessageBox()
with your text and caption. This is just a simple sample, you can add buttons or icons owner or other arguments you want.