Represents a dialog box that displays busy box.
- Header
#include <xtd/forms/busy_box>
- Namespace
- xtd::forms
- Library
- xtd.forms
- Appearance
| Windows | macOS | Gnome |
| Light |
|
|
|
| Dark |
|
|
|
- Examples
- The following code example demonstrates the use of busy_box dialog.
#include <xtd/xtd>
class form1 :
public form {
public:
form1() {
text(
"Busy box example");
busy_box::show(
"Please wait while do something...",
"Application busy");
for (auto count = 0; count < 500; ++count) {
thread::sleep(10);
}
};
}
private:
};
auto main() -> int {
}
#define self_
The self_ expression is a reference value expression whose value is the reference of the implicit obj...
Definition self.hpp:20
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:1018
xtd::forms::style_sheets::control button
The buttton data allows you to specify the box of a button control.
Definition button.hpp:25
|
| static auto | hide () -> void |
| | Hides a busy box in front.
|
| static auto | show (const xtd::forms::iwin32_window &owner) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &text) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &caption) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon, const xtd::drawing::color &back_color) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon, const xtd::drawing::color &back_color, const xtd::drawing::color &fore_color) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon, const xtd::drawing::color &back_color, const xtd::drawing::color &fore_color, float opacity) -> void |
| | Displays a busy box in front of the specified window. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show () -> void |
| | Displays a busy box.
|
| static auto | show (const xtd::string &text) -> void |
| | Displays a busy box. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::string &text, const xtd::string &caption) -> void |
| | Displays a busy box. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon) -> void |
| | Displays a busy box. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon, const xtd::drawing::color &back_color) -> void |
| | Displays a busy box. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon, const xtd::drawing::color &back_color, const xtd::drawing::color &fore_color) -> void |
| | Displays a busy box. The busy box displays a message, title bar caption, button, and icon.
|
| static auto | show (const xtd::string &text, const xtd::string &caption, const xtd::drawing::icon &icon, const xtd::drawing::color &back_color, const xtd::drawing::color &fore_color, float opacity) -> void |
| | Displays a busy box. The busy box displays a message, title bar caption, button, and icon.
|