显示可包含文本、按钮和符号(通知并指示用户)的消息框。
命名空间:System.Windows.Forms程序集:System.Windows.Forms(在 system.windows.forms.dll 中)
public ref class MessageBox
无法创建 MessageBox 类的新实例。若要显示消息框,请调用 static 方法 MessageBox.Show。显示在消息框中的标题、消息、按钮和图标由您传递给该方法的参数确定。
下面的代码示例演示如何使用 MessageBox 将 TextBox 中缺少的项通知用户。该示例要求从具有 Button 和 TextBox 的现有窗体调用该方法。
private: void button1_Click( Object^ sender, System::EventArgs^ e ) { if ( textBox1->Text->Equals( "" ) ) { MessageBox::Show( "You must enter a name.", "Name Entry Error", MessageBoxButtons::OK, MessageBoxIcon::Exclamation ); } else { // Code to act on the data entered would go here. } }