xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::assert_box Class Referencefinal
Inheritance diagram for xtd::forms::assert_box:
xtd::static_object

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  
 
 
 
 
 
Dark  
 
 
 
 
 
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_)) {
case forms::dialog_result::abort: application::exit(); break;
case forms::dialog_result::retry: debug_break_(); break;
default: break;
}
};
}
private:
};
auto main()->int {
application::run(form1 {});
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
Represents a Windows button control.
Definition button.h:47
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
#define debug_break_()
Signals a breakpoint to an attached debugger.
Definition debug_break.h:19
#define csf_
Provides information about the current stack frame.
Definition current_stack_frame.h:30
@ button1
The first button on the message box is the default button.
@ text
The xtd::forms::status_bar_panel displays text in the standard font.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10

Public Static 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.
 
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.
 
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.
 
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.
 
static dialog_result show ()
 Displays a assert box. The assert box displays an unknown assert.
 
static dialog_result show (const xtd::ustring &message)
 Displays a assert box. The assert box displays a specified caption and unknown assert.
 
static dialog_result show (const xtd::diagnostics::stack_frame &stack_frame)
 Displays a assert box. The assert box displays a specified assert.
 
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.
 

Member Function Documentation

◆ show() [1/8]

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

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

◆ show() [2/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() [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 
)
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() [5/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() [6/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() [7/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() [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: