Expand Minimize
This topic has not yet been rated - Rate this topic

MessageBoxResult Enumeration

May 02, 2013

Represents a user's response to a message box.

Namespace:  System.Windows
Assembly:  System.Windows (in System.Windows.dll)
public enum MessageBoxResult
Member nameDescription
NoneThis value is not currently used.
OKThe user clicked the OK button.
CancelThe user clicked the Cancel button or pressed ESC.
YesThis value is not currently used.
NoThis value is not currently used.

This enumeration is used by the MessageBox.Show method.

The following code example demonstrates how to use this enumeration.


MessageBoxResult result = 
    MessageBox.Show("Would you like to see the simple version?", 
    "MessageBox Example", MessageBoxButton.OKCancel);

if (result == MessageBoxResult.OK)
{
    MessageBox.Show("No caption, one button.");
}


Windows Phone OS

Supported in: 8.0, 7.1, 7.0

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.