xtd 0.2.0
xtd::forms::assert_box Class Referencefinal

Definition

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  
dialog_assert_dialog_w.png
    html dialog_assert_dialog_m.png    html dialog_assert_dialog_g.png 
Dark  
dialog_assert_dialog_wd.png
    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>
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("Assert box example");
controls().push_back(button1);
button1.location({10, 10});
button1.auto_size(true);
button1.text("assert...");
button1.click += [&] {
switch(assert_box::show(*this, "Index must be > 0", csf_)) {
default: break;
}
};
}
private:
};
auto main()->int {
application::run(form1 {});
}

Methods

static dialog_result show (const iwin32_window &owner)
 Displays a assert box in front of the specified window. The assert box displays an unknown assert. More...
 
static dialog_result show (const iwin32_window &owner, const xtd::ustring &message)
 Displays a assert box in front of the specified window. The assert box displays a specified caption and unknown assert. More...
 
static dialog_result show (const iwin32_window &owner, const xtd::diagnostics::stack_frame &stack_frame)
 Displays a assert box in front of the specified window. The assert box displays a specified assert. More...
 
static dialog_result show (const iwin32_window &owner, const xtd::ustring &message, const xtd::diagnostics::stack_frame &stack_frame)
 Displays a assert box in front of the specified window. The assert box displays a specified assert and caption. More...
 
static dialog_result show ()
 Displays a assert box. The assert box displays an unknown assert. More...
 
static dialog_result show (const xtd::ustring &message)
 Displays a assert box. The assert box displays a specified caption and unknown assert. More...
 
static dialog_result show (const xtd::diagnostics::stack_frame &stack_frame)
 Displays a assert box. The assert box displays a specified assert. More...
 
static dialog_result show (const xtd::ustring &message, const xtd::diagnostics::stack_frame &stack_frame)
 Displays a assert box. The assert box displays a specified assert and caption. More...
 

Member Function Documentation

◆ show() [1/8]

static dialog_result xtd::forms::assert_box::show ( const iwin32_window owner)
static

Displays a assert box in front of the specified window. The assert box displays an unknown assert.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.

◆ show() [2/8]

static dialog_result xtd::forms::assert_box::show ( const iwin32_window owner,
const xtd::ustring message 
)
static

Displays a assert box in front of the specified window. The assert box displays a specified caption and unknown assert.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
messageA string that specifies the message to display.

◆ show() [3/8]

static dialog_result xtd::forms::assert_box::show ( const iwin32_window owner,
const xtd::diagnostics::stack_frame stack_frame 
)
static

Displays a assert box in front of the specified window. The assert box displays a specified assert.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
stack_frameAn stack_frame to display.

◆ show() [4/8]

static dialog_result xtd::forms::assert_box::show ( const iwin32_window owner,
const xtd::ustring message,
const xtd::diagnostics::stack_frame stack_frame 
)
static

Displays a assert box in front of the specified window. The assert box displays a specified assert and caption.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
messageA string that specifies the message to display.
stack_frameAn stack_frame to display.

◆ show() [5/8]

static dialog_result xtd::forms::assert_box::show ( )
static

Displays a assert box. The assert box displays an unknown assert.

Examples:
assert_box.cpp.

◆ show() [6/8]

static dialog_result xtd::forms::assert_box::show ( const xtd::ustring message)
static

Displays a assert box. The assert box displays a specified caption and unknown assert.

Parameters
messageA string that specifies the message to display.

◆ show() [7/8]

static dialog_result xtd::forms::assert_box::show ( const xtd::diagnostics::stack_frame stack_frame)
static

Displays a assert box. The assert box displays a specified assert.

Parameters
stack_frameAn stack_frame to display.

◆ show() [8/8]

static dialog_result xtd::forms::assert_box::show ( const xtd::ustring message,
const xtd::diagnostics::stack_frame stack_frame 
)
static

Displays a assert box. The assert box displays a specified assert and caption.

Parameters
messageA string that specifies the message to display.
stack_frameAn stack_frame to display.

The documentation for this class was generated from the following file: