Represents a common dialog box that displays assert box.
- Header
#include <xtd/forms/assert_box>
- Namespace
- xtd::forms
- Library
- xtd.forms
- Appearance
| Windows | macOS | Gnome |
Light |
html dialog_assert_dialog_m.png html dialog_assert_dialog_g.png
|
Dark |
html dialog_assert_dialog_md.png html dialog_assert_dialog_gd.png
|
- Examples
- The following code example demonstrates the use of assert_box dialog.
#include <xtd/forms/application>
#include <xtd/forms/assert_box>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/diagnostics/debug_break>
class form1 :
public form {
public:
form1() {
text(
"Assert box example");
default: break;
}
};
}
private:
};
auto main()->int {
}
◆ show() [1/8]
Displays a assert box in front of the specified window. The assert box displays an unknown assert.
- Parameters
-
owner | A iwin32_window that represents the owner window of the busy box. |
◆ show() [2/8]
Displays a assert box in front of the specified window. The assert box displays a specified caption and unknown assert.
- Parameters
-
owner | A iwin32_window that represents the owner window of the busy box. |
message | A string that specifies the message to display. |
◆ show() [3/8]
Displays a assert box in front of the specified window. The assert box displays a specified assert.
- Parameters
-
owner | A iwin32_window that represents the owner window of the busy box. |
stack_frame | An stack_frame to display. |
◆ show() [4/8]
Displays a assert box in front of the specified window. The assert box displays a specified assert and caption.
- Parameters
-
owner | A iwin32_window that represents the owner window of the busy box. |
message | A string that specifies the message to display. |
stack_frame | An stack_frame to display. |
◆ show() [5/8]
Displays a assert box. The assert box displays an unknown assert.
- Examples:
- assert_box.cpp.
◆ show() [6/8]
Displays a assert box. The assert box displays a specified caption and unknown assert.
- Parameters
-
message | A string that specifies the message to display. |
◆ show() [7/8]
Displays a assert box. The assert box displays a specified assert.
- Parameters
-
stack_frame | An stack_frame to display. |
◆ show() [8/8]
Displays a assert box. The assert box displays a specified assert and caption.
- Parameters
-
message | A string that specifies the message to display. |
stack_frame | An stack_frame to display. |
The documentation for this class was generated from the following file: