使用C#.NET(Winforms)。如何在.NET中顯示錯誤和警告消息框/如何自定義消息框
我想知道如何使用Ding!!
聲音&顯示消息框中的紅色十字標記。這就是我說的:
如何做這樣的事情對我的軟件,自定義錯誤和自定義警告?
MessageBox.Show("asdf");
不給我定製。
使用C#.NET(Winforms)。如何在.NET中顯示錯誤和警告消息框/如何自定義消息框
我想知道如何使用Ding!!
聲音&顯示消息框中的紅色十字標記。這就是我說的:
如何做這樣的事情對我的軟件,自定義錯誤和自定義警告?
MessageBox.Show("asdf");
不給我定製。
試試這個:
嘗試細節:使用任何選項..
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
)
MSDN:其他圖標,您可以使用:http://msdn.microsoft.com /en-us/library/system.windows.forms.messageboxicon.aspx – claws 2010-01-21 14:00:25