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应该是什么。
答案 0 :(得分:1)
您需要使用MessageBoxIcon.Exclamation
在消息框上显示Exclamation
图标。
MessageBox.Show("YourMessage", "Your Caption", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);