MessageBoxButtons
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies constants defining which buttons to display on a MessageBox.
- C#
- VB.NET
public enum MessageBoxButtons : Enum
Public Enum MessageBoxButtons As [Enum]
Fields
| Name | Description |
|---|---|
| AbortRetryIgnore | The message box contains Abort, Retry, and Ignore buttons. |
| Cancel | The message box contains a Cancel button. |
| No | The message box contains a No button. |
| OK | The message box contains an OK button. |
| OKCancel | The message box contains OK and Cancel buttons. |
| RetryCancel | The message box contains Retry and Cancel buttons. |
| Yes | The message box contains a Yes button. |
| YesNo | The message box contains Yes and No buttons. |
| YesNoCancel | The message box contains Yes, No, and Cancel buttons. |
Used By
| Name | Description |
|---|---|
| MessageBox.Show | Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button. |
| MessageBox.ShowAsync | Asynchronously displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button. |