如何在.NET中显示错误和警告消息框/如何自定义MessageBox

使用C#.NET(Winforms)。

我想知道如何显示一个Ding!!的消息框Ding!! 声音和一个红色的十字标记在里面。 这就是我所说的:

截图

如何为我的软件做这样的事情,有自定义错误和自定义警告?

 MessageBox.Show("asdf"); 

不给我定制。

尝试这个:

 MessageBox.Show("Some text", "Some title", MessageBoxButtons.OK, MessageBoxIcon.Error); 

试用详情:使用任何选项..

  MessageBox.Show("your message", "window title", MessageBoxButtons.OK, MessageBoxIcon.Warning // for Warning //MessageBoxIcon.Error // for Error //MessageBoxIcon.Information // for Information //MessageBoxIcon.Question // for Question ); 
 MessageBox.Show( "your message", "window title", MessageBoxButtons.OK, MessageBoxIcon.Asterisk //For Info Asterisk MessageBoxIcon.Exclamation //For triangle Warning )