Represents a common dialog box that displays exception box.
| Windows | macOS | Gnome | |
|---|---|---|---|
| Light |
|
|
|
| Dark |
|
|
|
Public Static Methods | |
| static dialog_result | show (const iwin32_window &owner) |
| Displays a exception box in front of the specified window. The exception box displays an unknown exception. | |
| static dialog_result | show (const iwin32_window &owner, const xtd::string &caption) |
| Displays a exception box in front of the specified window. The exception box displays a specified caption and unknown exception. | |
| static dialog_result | show (const iwin32_window &owner, const std::exception &exception) |
| Displays a exception box in front of the specified window. The exception box displays a specified exception. | |
| static dialog_result | show (const iwin32_window &owner, const std::exception &exception, const xtd::string &caption) |
| Displays a exception box in front of the specified window. The exception box displays a specified exception and caption. | |
| static dialog_result | show () |
| Displays a exception box. The exception box displays an unknown exception. | |
| static dialog_result | show (const xtd::string &caption) |
| Displays a exception box. The exception box displays a specified caption and unknown exception. | |
| static dialog_result | show (const std::exception &exception) |
| Displays a exception box. The exception box displays a specified exception. | |
| static dialog_result | show (const std::exception &exception, const xtd::string &caption) |
| Displays a exception box. The exception box displays a specified exception and caption. | |
|
static |
Displays a exception box in front of the specified window. The exception box displays an unknown exception.
| owner | A iwin32_window that represents the owner window of the busy box. |
|
static |
Displays a exception box in front of the specified window. The exception box displays a specified caption and unknown exception.
| owner | A iwin32_window that represents the owner window of the busy box. |
| caption | A string that specifies the title bar caption to display. |
|
static |
Displays a exception box in front of the specified window. The exception box displays a specified exception.
| owner | A iwin32_window that represents the owner window of the busy box. |
| exception | An exception to display. |
|
static |
Displays a exception box in front of the specified window. The exception box displays a specified exception and caption.
| owner | A iwin32_window that represents the owner window of the busy box. |
| exception | An exception to display. |
| caption | A string that specifies the title bar caption to display. |
|
static |
Displays a exception box. The exception box displays an unknown exception.
|
static |
Displays a exception box. The exception box displays a specified caption and unknown exception.
| caption | A string that specifies the title bar caption to display. |
|
static |
Displays a exception box. The exception box displays a specified exception.
| exception | An exception to display. |
|
static |
Displays a exception box. The exception box displays a specified exception and caption.
| exception | An exception to display. |
| caption | A string that specifies the title bar caption to display. |