This documentation is archived and is not being maintained.
MessageBoxResult Enumeration
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation . ]
Represents a user's response to a message box.
Namespace:
System.Windows
Assembly:
System.Windows (in System.Windows.dll)
public enum MessageBoxResult
Member name Description None This value is not currently used. OK The user clicked the OK button. Cancel The user clicked the Cancel button or pressed ESC. Yes This value is not currently used. No This value is not currently used.
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.1, 8.0, 7.1, 7.0