我试图谷歌但没有找到vb中的MsgBoxStyle.Exclamation?

时间:2016-06-09 10:06:37

标签: c# vb.net

vb中的行

MsgBox("No input file selected please press the 'Add File' button.", MsgBoxStyle.Exclamation, "Error");

我在c#中做过

MessageBox.Show("No input file selected please press the Add File button.", MsgBoxStyle.Exclamation, "Error");

但不确定MsgBoxStyle.Exclamation应该是什么。

1 个答案:

答案 0 :(得分:1)

您需要使用MessageBoxIcon.Exclamation在消息框上显示Exclamation图标。

MessageBox.Show("YourMessage", "Your Caption", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);