MessageBoxButtons - ahatornn/clforms GitHub Wiki
MessageBoxButtons
Specifies constants defining which buttons to display on a MessageBox
public enum MessageBoxButtons
Values
| value | Description |
|---|---|
| OK | The message box contains an OK button |
| OKCancel | The message box contains OK and Cancel buttons |
| AbortRetryIgnore | The message box contains Abort, Retry, and Ignore buttons |
| YesNoCancel | The message box contains Yes, No, and Cancel buttons |
| YesNo | The message box contains Yes and No buttons |
| RetryCancel | The message box contains Retry and Cancel buttons |