如何:打开消息框
本例演示如何打开消息框。
示例
消息框是一种预构建模态对话框,用于向用户显示信息。 通过调用 MessageBox 类的静态 Show 方法打开一个消息框。 调用 Show 时,使用字符串参数传递消息。 可以通过 Show 的多个重载配置消息框的显示方式(请参阅 MessageBox)。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Hello, MessageBox!";
// Show message box
MessageBoxResult result = MessageBox.Show(message);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Hello, MessageBox!"
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message)
End Sub