c#messagebox.show的用法
时间: 2023-10-09 20:05:16 浏览: 184
C# MessageBox.Show 用法
3星 · 编辑精心推荐
C# 中的 `MessageBox.Show` 方法用于在应用程序中显示一个消息框,它可以用于向用户展示一些信息、警告或者错误提示等。下面是 `MessageBox.Show` 方法的语法:
```csharp
MessageBox.Show(string message, string caption, MessageBoxButtons buttons, MessageBoxIcon icon);
```
该方法的参数如下:
- `message`:要在消息框中显示的文本信息。
- `caption`:消息框的标题。
- `buttons`:消息框中显示的按钮类型(如确定、取消、重试等)。
- `icon`:消息框中显示的图标类型(如信息、警告、错误等)。
例如,以下代码演示了如何在 C# 中使用 `MessageBox.Show` 方法:
```csharp
using System.Windows.Forms;
// ...
private void showMessageButton_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello, World!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
```
该代码将在应用程序中触发一个按钮的时候,显示一个消息框,其中包含一个标题为“提示”,文本为“Hello, World!”,图标为信息的消息框。
阅读全文