MessageBoxButtons Enum
Defines standard buttons that are available for use with MessageBox and UserPromptControl.
[Flags]
public enum MessageBoxButtons
Fields
| Name | Description |
|---|---|
| Abort | The 'Abort' button. |
| AbortRetryIgnore | The combination of 'Abort', 'Retry', and 'Ignore' buttons. |
| Cancel | The 'Cancel' button. |
| Close | The 'Close' button. |
| Help | The 'Help' button. |
| Ignore | The 'Ignore' button. |
| No | The 'No' button. |
| None | No buttons. |
| OK | The 'OK' button. |
| OKCancel | The combination of 'OK' and 'Cancel' buttons. |
| Retry | The 'Retry' button. |
| RetryCancel | The combination of 'Retry' and 'Cancel' buttons. |
| Yes | The 'Yes' button. |
| YesNo | The combination of 'Yes' and 'No' buttons. |
| YesNoCancel | The combination of 'Yes', 'No', and 'Cancel' buttons. |