共用方式為


如何開啟訊息方塊

此範例示範如何開啟訊息方塊

範例

訊息方塊是預先建立的強制對話方塊,可為使用者顯示訊息。 呼叫 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

另請參閱