Enum MessageBoxButtons
Specifies constants defining which buttons to display on a message box.
public enum MessageBoxButtons
Fields
AbortRetryIgnore = 4
The message box contains Abort, Retry, and Ignore buttons.
OK = 0
The message box contains an OK button.
OKCancel = 1
The message box contains OK and Cancel buttons.
RetryCancel = 5
The message box contains Retry and Cancel buttons.
YesNo = 3
The message box contains Yes and No buttons.
YesNoCancel = 2
The message box contains Yes, No and Cancel buttons.