[]
Displays a message box.
public static class C1MessageBox
| Name | Description |
|---|---|
| ContentStyle | Gets or sets the Style that defines the appearance of the window's content. |
| WindowStyle | Gets or sets the Style that defines the appearance of the window. |
| Name | Description |
|---|---|
| Show(string) | Displays a message box that has a message. |
| Show(string, Action<MessageBoxResult>) | Displays a message box that has a message and calls back with the result. |
| Show(string, string) | Displays a message box that has a message and title bar caption. |
| Show(string, string, C1MessageBoxButton) | Displays a message box that has a message, title bar caption and button. |
| Show(string, string, C1MessageBoxButton, C1MessageBoxIcon) | Displays a message box that has a message, title bar caption and icon. |
| Show(string, string, C1MessageBoxButton, C1MessageBoxIcon, Action<MessageBoxResult>) | Displays a message box that has a message, title bar caption, button and icon; and calls back with the result. |
| Show(string, string, C1MessageBoxButton, Action<MessageBoxResult>) | Displays a message box that has a message, title bar caption and button; and calls back with the result. |
| Show(string, string, C1MessageBoxIcon) | Displays a message box that has a message, title bar caption and icon. |
| Show(string, string, C1MessageBoxIcon, Action<MessageBoxResult>) | Displays a message box that has a message, title bar caption and icon; and calls back with the result. |
| Show(string, string, Action<MessageBoxResult>) | Displays a message box that has a message and title bar caption; and calls back with the result. |