#include <busy_dialog.h>
Represents a dialog box that displays busy dialog.
- Namespace
- xtd::forms
- Library
- xtd.forms
- Examples
- The following code example demonstrates the use of busy_dialog dialog.
#include <thread>
#include <xtd/xtd>
class form1 :
public form {
public:
form1() {
text(
"Busy dialog example");
button1.auto_size(true);
button1.location({10, 10});
button1.parent(*this);
button1.text("Do something...");
button1.click += [&] {
dialog.
text(
"Application busy");
dialog.
description(
"Please wait while do something...");
for (auto count = 0; count < 500; ++count) {
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
};
}
private:
};
int main() {
}
- Examples:
- busy_dialog.cpp.
|
| object ()=default |
| Create a new instance of the ultimate base class object. More...
|
|
virtual bool | equals (const object &obj) const noexcept |
| Determines whether the specified object is equal to the current object. More...
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type. More...
|
|
template<typename object_t > |
std::unique_ptr< object_t > | memberwise_clone () const |
| Gets the type of the current instance. More...
|
|
virtual xtd::ustring | to_string () const noexcept |
| Returns a sxd::ustring that represents the current object. More...
|
|
static bool | equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are considered equal. More...
|
|
static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are the same instance. More...
|
|
| component ()=default |
| Initialises a new instance of the component class. More...
|
|
virtual bool | can_raise_events () const |
| Gets a value indicating whether the component can raise an event. More...
|
|
bool | design_mode () const |
| Gets a value that indicates whether the component is currently in design mode. More...
|
|
◆ busy_dialog()
xtd::forms::busy_dialog::busy_dialog |
( |
| ) |
|
|
default |
◆ back_color() [1/2]
◆ back_color() [2/2]
Sets the background color for the dialog.
- Parameters
-
- Returns
- Current busy_dialog instance.
◆ description() [1/2]
const xtd::ustring& xtd::forms::busy_dialog::description |
( |
| ) |
const |
|
inline |
Gets the product description.
- Returns
- The product description.
- Examples:
- busy_dialog.cpp.
◆ description() [2/2]
Sets the product description.
- Parameters
-
description | The product description. |
- Returns
- Current busy_dialog instance.
◆ dialog_style() [1/2]
Gets the dialog style color for the dialog.
- Returns
- A xtd::forms::dialog_style that represents the dialog style of the dialog.
◆ dialog_style() [2/2]
Sets the dialog style color for the dialog.
- Parameters
-
- Returns
- Current busy_dialog instance.
◆ fore_color() [1/2]
◆ fore_color() [2/2]
Sets the foreground color for the dialog.
- Parameters
-
- Returns
- Current busy_dialog instance.
◆ hide()
void xtd::forms::busy_dialog::hide |
( |
| ) |
|
◆ icon() [1/4]
◆ icon() [2/4]
Sets the product icon.
- Parameters
-
- Returns
- Current busy_dialog instance.
◆ icon() [3/4]
Sets the product icon.
- Parameters
-
- Returns
- Current busy_dialog instance.
◆ icon() [4/4]
Sets the product icon.
- Parameters
-
- Returns
- Current busy_dialog instance.
◆ opacity() [1/2]
double xtd::forms::busy_dialog::opacity |
( |
| ) |
const |
|
inline |
Gets the dialog opacity.
- Returns
- The dialog opacity.
- Examples:
- busy_dialog.cpp.
◆ opacity() [2/2]
busy_dialog& xtd::forms::busy_dialog::opacity |
( |
double |
opacity | ) |
|
|
inline |
Gets the dialog opacity.
- Parameters
-
opacity | The dialog opacity. |
- Returns
- Current busy_dialog instance.
◆ reset()
void xtd::forms::busy_dialog::reset |
( |
| ) |
|
Resets all properties to empty string.
◆ show() [1/2]
void xtd::forms::busy_dialog::show |
( |
| ) |
|
◆ show() [2/2]
void xtd::forms::busy_dialog::show |
( |
const iwin32_window & |
owner | ) |
|
◆ text() [1/2]
◆ text() [2/2]
Sets the dialog title.
- Parameters
-
- Returns
- Current busy_dialog instance.
The documentation for this class was generated from the following file: