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)
'Declaration
Public Enumeration 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.
Dim result As MessageBoxResult = _
MessageBox.Show("Would you like to see the simple version?" , _
"MessageBox Example" , MessageBoxButton.OKCancel)
If (result = MessageBoxResult.OK) Then
MessageBox.Show("No caption, one button." )
End If
Windows Phone OS Supported in: 8.1, 8.0, 7.1, 7.0