Represents a common dialog box that displays exception box.
| Windows | macOS | Gnome | |
|---|---|---|---|
| Light |
|
|
|
| Dark |
|
|
|
Public Static Methods | |
| static auto | show (const xtd::forms::iwin32_window &owner) -> xtd::forms::dialog_result |
| Displays a exception box in front of the specified window. The exception box displays an unknown exception. | |
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &caption) -> xtd::forms::dialog_result |
| Displays a exception box in front of the specified window. The exception box displays a specified caption and unknown exception. | |
| static auto | show (const xtd::forms::iwin32_window &owner, const std::exception &exception) -> xtd::forms::dialog_result |
| Displays a exception box in front of the specified window. The exception box displays a specified exception. | |
| static auto | show (const xtd::forms::iwin32_window &owner, const std::exception &exception, const xtd::string &caption) -> xtd::forms::dialog_result |
| Displays a exception box in front of the specified window. The exception box displays a specified exception and caption. | |
| static auto | show () -> xtd::forms::dialog_result |
| Displays a exception box. The exception box displays an unknown exception. | |
| static auto | show (const xtd::string &caption) -> xtd::forms::dialog_result |
| Displays a exception box. The exception box displays a specified caption and unknown exception. | |
| static auto | show (const std::exception &exception) -> xtd::forms::dialog_result |
| Displays a exception box. The exception box displays a specified exception. | |
| static auto | show (const std::exception &exception, const xtd::string &caption) -> xtd::forms::dialog_result |
| 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. |