目前在我的应用程序中,有时可以正确看到消息框,在某些情况下,在任务栏中看到不应该发生。
if (!flag)
{
MessageBox.Show("Fileds Cannot be empty. Please follow the format", "Message");
return false;
}
目前在我的应用程序中,有时可以正确看到消息框,在某些情况下,在任务栏中看到不应该发生。
if (!flag)
{
MessageBox.Show("Fileds Cannot be empty. Please follow the format", "Message");
return false;
}
听起来您可能需要设置 MessageBox 的 owner 属性,@Charlie 在这篇文章C# / .NET messagebox is not modal中回答
为此,请使用 MessageBox.Show(IWin32Window, String, String) 方法,详情请点击此处http://msdn.microsoft.com/en-us/library/4y3c0fky.aspx