xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::loading_indicators Class Reference
Inheritance diagram for xtd::forms::loading_indicators:
xtd::static_object

Definition

Provides a collection of loading indicator objects for use by a Windows Forms application.

Header
#include <xtd/forms/loading_indicators>
Namespace
xtd::forms
Library
xtd.forms
Examples
The following code example demonstrates the use of loading_indicators control factory.
#include <xtd/forms/application>
#include <xtd/forms/form>
#include <xtd/forms/loading_indicators>
using namespace xtd::forms;
namespace loading_indicators_example {
class form1 : public form {
public:
form1() {
fore_color(application::style_sheet().system_colors().accent()).text("Loading indicators example");
}
private:
void on_mouse_click(const mouse_event_args& e) override {
for (auto item : {&loading_indicator1, &loading_indicator2, &loading_indicator3, &loading_indicator4, &loading_indicator5, &loading_indicator6, &loading_indicator7, &loading_indicator8, &loading_indicator9, &loading_indicator10, &loading_indicator11, &loading_indicator12, &loading_indicator13, &loading_indicator14}) {
if (e.button() == xtd::forms::mouse_buttons::left) item->running(!item->running());
if (e.button() == xtd::forms::mouse_buttons::right) item->enabled(!item->enabled());
}
}
loading_indicator loading_indicator1 = loading_indicators::system(*this, true, {10, 10});
loading_indicator loading_indicator2 = loading_indicators::bar(*this, true, {50, 10});
loading_indicator loading_indicator3 = loading_indicators::circle_bars(*this, true, {90, 10});
loading_indicator loading_indicator4 = loading_indicators::circle_blinks(*this, true, {130, 10});
loading_indicator loading_indicator5 = loading_indicators::five_lines(*this, true, {170, 10});
loading_indicator loading_indicator6 = loading_indicators::five_lines_center(*this, true, {210, 10});
loading_indicator loading_indicator7 = loading_indicators::five_lines_chronological(*this, true, {250, 10});
loading_indicator loading_indicator8 = loading_indicators::five_lines_pulse(*this, true, {10, 50});
loading_indicator loading_indicator9 = loading_indicators::five_lines_wave(*this, true, {50, 50});
loading_indicator loading_indicator10 = loading_indicators::pulse(*this, true, {90, 50});
loading_indicator loading_indicator11 = loading_indicators::pulse_outline(*this, true, {130, 50});
loading_indicator loading_indicator12 = loading_indicators::three_balls(*this, true, {170, 50});
loading_indicator loading_indicator13 = loading_indicators::three_balls_bouncing(*this, true, {210, 50});
loading_indicator loading_indicator14 = loading_indicators::three_balls_rotation(*this, true, {250, 50});
};
}
auto main()->int {
application::run(loading_indicators_example::form1 {});
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
virtual const xtd::ustring & text() const noexcept
Gets the text associated with this control.
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
Represents a loading indicator control.
Definition loading_indicator.h:29
Provides data for the xtd::forms::control::mouse_up, xtd::forms::control::mouse_down,...
Definition mouse_event_args.h:32
@ e
The E key.
@ right
The right mouse button was pressed.
@ left
The left mouse button was pressed.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12

Public Static Properties

static loading_indicator bar () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator.
 
static loading_indicator bar (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location.
 
static loading_indicator bar (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, and size.
 
static loading_indicator bar (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, size, and name.
 
static loading_indicator bar (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified and running state.
 
static loading_indicator bar (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, and location.
 
static loading_indicator bar (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, and size.
 
static loading_indicator bar (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, size, and name.
 
static loading_indicator bar (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent.
 
static loading_indicator bar (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and location.
 
static loading_indicator bar (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, and size.
 
static loading_indicator bar (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, size, and name.
 
static loading_indicator bar (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and running state.
 
static loading_indicator bar (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, and location.
 
static loading_indicator bar (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, and size.
 
static loading_indicator bar (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator circle_bars () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator.
 
static loading_indicator circle_bars (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location.
 
static loading_indicator circle_bars (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, and size.
 
static loading_indicator circle_bars (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, size, and name.
 
static loading_indicator circle_bars (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified and running state.
 
static loading_indicator circle_bars (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, and location.
 
static loading_indicator circle_bars (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, and size.
 
static loading_indicator circle_bars (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, size, and name.
 
static loading_indicator circle_bars (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent.
 
static loading_indicator circle_bars (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and location.
 
static loading_indicator circle_bars (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, and size.
 
static loading_indicator circle_bars (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, size, and name.
 
static loading_indicator circle_bars (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and running state.
 
static loading_indicator circle_bars (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, and location.
 
static loading_indicator circle_bars (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, and size.
 
static loading_indicator circle_bars (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator circle_blinks () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator.
 
static loading_indicator circle_blinks (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location.
 
static loading_indicator circle_blinks (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, and size.
 
static loading_indicator circle_blinks (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, size, and name.
 
static loading_indicator circle_blinks (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified and running state.
 
static loading_indicator circle_blinks (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, and location.
 
static loading_indicator circle_blinks (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, and size.
 
static loading_indicator circle_blinks (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, size, and name.
 
static loading_indicator circle_blinks (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent.
 
static loading_indicator circle_blinks (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and location.
 
static loading_indicator circle_blinks (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, and size.
 
static loading_indicator circle_blinks (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, size, and name.
 
static loading_indicator circle_blinks (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and running state.
 
static loading_indicator circle_blinks (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, and location.
 
static loading_indicator circle_blinks (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, and size.
 
static loading_indicator circle_blinks (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator five_lines_center () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator.
 
static loading_indicator five_lines_center (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location.
 
static loading_indicator five_lines_center (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, and size.
 
static loading_indicator five_lines_center (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, size, and name.
 
static loading_indicator five_lines_center (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified and running state.
 
static loading_indicator five_lines_center (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, and location.
 
static loading_indicator five_lines_center (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, and size.
 
static loading_indicator five_lines_center (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, size, and name.
 
static loading_indicator five_lines_center (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent.
 
static loading_indicator five_lines_center (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and location.
 
static loading_indicator five_lines_center (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, and size.
 
static loading_indicator five_lines_center (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, size, and name.
 
static loading_indicator five_lines_center (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and running state.
 
static loading_indicator five_lines_center (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, and location.
 
static loading_indicator five_lines_center (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, and size.
 
static loading_indicator five_lines_center (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator five_lines_chronological () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator.
 
static loading_indicator five_lines_chronological (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location.
 
static loading_indicator five_lines_chronological (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, and size.
 
static loading_indicator five_lines_chronological (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, size, and name.
 
static loading_indicator five_lines_chronological (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified and running state.
 
static loading_indicator five_lines_chronological (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, and location.
 
static loading_indicator five_lines_chronological (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, and size.
 
static loading_indicator five_lines_chronological (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, size, and name.
 
static loading_indicator five_lines_chronological (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent.
 
static loading_indicator five_lines_chronological (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and location.
 
static loading_indicator five_lines_chronological (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, and size.
 
static loading_indicator five_lines_chronological (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, size, and name.
 
static loading_indicator five_lines_chronological (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and running state.
 
static loading_indicator five_lines_chronological (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, and location.
 
static loading_indicator five_lines_chronological (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, and size.
 
static loading_indicator five_lines_chronological (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator five_lines_pulse () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator.
 
static loading_indicator five_lines_pulse (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location.
 
static loading_indicator five_lines_pulse (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, and size.
 
static loading_indicator five_lines_pulse (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, size, and name.
 
static loading_indicator five_lines_pulse (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified and running state.
 
static loading_indicator five_lines_pulse (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, and location.
 
static loading_indicator five_lines_pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, and size.
 
static loading_indicator five_lines_pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, size, and name.
 
static loading_indicator five_lines_pulse (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent.
 
static loading_indicator five_lines_pulse (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and location.
 
static loading_indicator five_lines_pulse (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, and size.
 
static loading_indicator five_lines_pulse (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, size, and name.
 
static loading_indicator five_lines_pulse (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and running state.
 
static loading_indicator five_lines_pulse (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, and location.
 
static loading_indicator five_lines_pulse (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, and size.
 
static loading_indicator five_lines_pulse (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator five_lines_wave () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator.
 
static loading_indicator five_lines_wave (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location.
 
static loading_indicator five_lines_wave (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, and size.
 
static loading_indicator five_lines_wave (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, size, and name.
 
static loading_indicator five_lines_wave (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified and running state.
 
static loading_indicator five_lines_wave (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, and location.
 
static loading_indicator five_lines_wave (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, and size.
 
static loading_indicator five_lines_wave (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, size, and name.
 
static loading_indicator five_lines_wave (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent.
 
static loading_indicator five_lines_wave (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and location.
 
static loading_indicator five_lines_wave (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, and size.
 
static loading_indicator five_lines_wave (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, size, and name.
 
static loading_indicator five_lines_wave (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and running state.
 
static loading_indicator five_lines_wave (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, and location.
 
static loading_indicator five_lines_wave (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, and size.
 
static loading_indicator five_lines_wave (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator five_lines () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator.
 
static loading_indicator five_lines (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location.
 
static loading_indicator five_lines (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, and size.
 
static loading_indicator five_lines (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, size, and name.
 
static loading_indicator five_lines (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified and running state.
 
static loading_indicator five_lines (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, and location.
 
static loading_indicator five_lines (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, and size.
 
static loading_indicator five_lines (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, size, and name.
 
static loading_indicator five_lines (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent.
 
static loading_indicator five_lines (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and location.
 
static loading_indicator five_lines (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, and size.
 
static loading_indicator five_lines (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, size, and name.
 
static loading_indicator five_lines (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and running state.
 
static loading_indicator five_lines (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, and location.
 
static loading_indicator five_lines (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, and size.
 
static loading_indicator five_lines (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator pulse () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator.
 
static loading_indicator pulse (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location.
 
static loading_indicator pulse (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, and size.
 
static loading_indicator pulse (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, size, and name.
 
static loading_indicator pulse (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified and running state.
 
static loading_indicator pulse (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, and location.
 
static loading_indicator pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, and size.
 
static loading_indicator pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, size, and name.
 
static loading_indicator pulse (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent.
 
static loading_indicator pulse (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and location.
 
static loading_indicator pulse (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, and size.
 
static loading_indicator pulse (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, size, and name.
 
static loading_indicator pulse (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and running state.
 
static loading_indicator pulse (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, and location.
 
static loading_indicator pulse (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, and size.
 
static loading_indicator pulse (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator pulse_outline () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator.
 
static loading_indicator pulse_outline (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location.
 
static loading_indicator pulse_outline (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, and size.
 
static loading_indicator pulse_outline (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, size, and name.
 
static loading_indicator pulse_outline (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified and running state.
 
static loading_indicator pulse_outline (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, and location.
 
static loading_indicator pulse_outline (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, and size.
 
static loading_indicator pulse_outline (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, size, and name.
 
static loading_indicator pulse_outline (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent.
 
static loading_indicator pulse_outline (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and location.
 
static loading_indicator pulse_outline (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, and size.
 
static loading_indicator pulse_outline (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, size, and name.
 
static loading_indicator pulse_outline (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and running state.
 
static loading_indicator pulse_outline (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, and location.
 
static loading_indicator pulse_outline (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, and size.
 
static loading_indicator pulse_outline (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator standard () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator.
 
static loading_indicator standard (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location.
 
static loading_indicator standard (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, and size.
 
static loading_indicator standard (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, size, and name.
 
static loading_indicator standard (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified and running state.
 
static loading_indicator standard (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, and location.
 
static loading_indicator standard (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, and size.
 
static loading_indicator standard (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, size, and name.
 
static loading_indicator standard (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent.
 
static loading_indicator standard (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and location.
 
static loading_indicator standard (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, and size.
 
static loading_indicator standard (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, size, and name.
 
static loading_indicator standard (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and running state.
 
static loading_indicator standard (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, and location.
 
static loading_indicator standard (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, and size.
 
static loading_indicator standard (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator system () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator.
 
static loading_indicator system (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location.
 
static loading_indicator system (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, and size.
 
static loading_indicator system (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, size, and name.
 
static loading_indicator system (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified and running state.
 
static loading_indicator system (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, and location.
 
static loading_indicator system (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, and size.
 
static loading_indicator system (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, size, and name.
 
static loading_indicator system (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent.
 
static loading_indicator system (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and location.
 
static loading_indicator system (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, and size.
 
static loading_indicator system (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, size, and name.
 
static loading_indicator system (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and running state.
 
static loading_indicator system (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, and location.
 
static loading_indicator system (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, and size.
 
static loading_indicator system (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator three_balls () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator.
 
static loading_indicator three_balls (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location.
 
static loading_indicator three_balls (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, and size.
 
static loading_indicator three_balls (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, size, and name.
 
static loading_indicator three_balls (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified and running state.
 
static loading_indicator three_balls (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, and location.
 
static loading_indicator three_balls (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, and size.
 
static loading_indicator three_balls (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, size, and name.
 
static loading_indicator three_balls (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent.
 
static loading_indicator three_balls (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and location.
 
static loading_indicator three_balls (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, and size.
 
static loading_indicator three_balls (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, size, and name.
 
static loading_indicator three_balls (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and running state.
 
static loading_indicator three_balls (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, and location.
 
static loading_indicator three_balls (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, and size.
 
static loading_indicator three_balls (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator three_balls_bouncing () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator.
 
static loading_indicator three_balls_bouncing (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location.
 
static loading_indicator three_balls_bouncing (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, and size.
 
static loading_indicator three_balls_bouncing (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, size, and name.
 
static loading_indicator three_balls_bouncing (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified and running state.
 
static loading_indicator three_balls_bouncing (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, and location.
 
static loading_indicator three_balls_bouncing (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, and size.
 
static loading_indicator three_balls_bouncing (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, size, and name.
 
static loading_indicator three_balls_bouncing (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent.
 
static loading_indicator three_balls_bouncing (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and location.
 
static loading_indicator three_balls_bouncing (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, and size.
 
static loading_indicator three_balls_bouncing (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, size, and name.
 
static loading_indicator three_balls_bouncing (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and running state.
 
static loading_indicator three_balls_bouncing (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, and location.
 
static loading_indicator three_balls_bouncing (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, and size.
 
static loading_indicator three_balls_bouncing (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, size, and name.
 
static loading_indicator three_balls_rotation () noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator.
 
static loading_indicator three_balls_rotation (const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location.
 
static loading_indicator three_balls_rotation (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, and size.
 
static loading_indicator three_balls_rotation (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, size, and name.
 
static loading_indicator three_balls_rotation (bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified and running state.
 
static loading_indicator three_balls_rotation (bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, and location.
 
static loading_indicator three_balls_rotation (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, and size.
 
static loading_indicator three_balls_rotation (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, size, and name.
 
static loading_indicator three_balls_rotation (const control &parent) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent.
 
static loading_indicator three_balls_rotation (const control &parent, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and location.
 
static loading_indicator three_balls_rotation (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, and size.
 
static loading_indicator three_balls_rotation (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, size, and name.
 
static loading_indicator three_balls_rotation (const control &parent, bool running) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and running state.
 
static loading_indicator three_balls_rotation (const control &parent, bool running, const xtd::drawing::point &location) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, and location.
 
static loading_indicator three_balls_rotation (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, and size.
 
static loading_indicator three_balls_rotation (const control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::ustring &name) noexcept
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, size, and name.
 

Member Function Documentation

◆ bar() [1/16]

static loading_indicator xtd::forms::loading_indicators::bar ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator.

Returns
The created loading indicator.

◆ bar() [2/16]

static loading_indicator xtd::forms::loading_indicators::bar ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ bar() [3/16]

static loading_indicator xtd::forms::loading_indicators::bar ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [4/16]

static loading_indicator xtd::forms::loading_indicators::bar ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [5/16]

static loading_indicator xtd::forms::loading_indicators::bar ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ bar() [6/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ bar() [7/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ bar() [8/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [9/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [10/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ bar() [11/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [12/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [13/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ bar() [14/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [15/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [16/16]

static loading_indicator xtd::forms::loading_indicators::bar ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [1/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator.

Returns
The created loading indicator.

◆ circle_bars() [2/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_bars() [3/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [4/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [5/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [6/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [7/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_bars() [8/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [9/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [10/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [11/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [12/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [13/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [14/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [15/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [16/16]

static loading_indicator xtd::forms::loading_indicators::circle_bars ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [1/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator.

Returns
The created loading indicator.

◆ circle_blinks() [2/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_blinks() [3/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [4/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [5/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [6/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [7/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_blinks() [8/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [9/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [10/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [11/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [12/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [13/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [14/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [15/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [16/16]

static loading_indicator xtd::forms::loading_indicators::circle_blinks ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [1/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator.

Returns
The created loading indicator.

◆ five_lines() [2/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines() [3/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [4/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [5/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [6/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [7/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines() [8/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [9/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [10/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [11/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [12/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [13/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [14/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [15/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [16/16]

static loading_indicator xtd::forms::loading_indicators::five_lines ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [1/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator.

Returns
The created loading indicator.

◆ five_lines_center() [2/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_center() [3/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [4/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [5/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [6/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [7/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_center() [8/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [9/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [10/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [11/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [12/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [13/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [14/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [15/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [16/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_center ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [1/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator.

Returns
The created loading indicator.

◆ five_lines_chronological() [2/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_chronological() [3/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [4/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [5/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [6/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [7/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_chronological() [8/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [9/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [10/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [11/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [12/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [13/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [14/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [15/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [16/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_chronological ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [1/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator.

Returns
The created loading indicator.

◆ five_lines_pulse() [2/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_pulse() [3/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [4/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [5/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [6/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [7/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_pulse() [8/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [9/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [10/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [11/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [12/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [13/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [14/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [15/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [16/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_pulse ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [1/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator.

Returns
The created loading indicator.

◆ five_lines_wave() [2/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_wave() [3/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [4/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [5/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [6/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [7/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_wave() [8/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [9/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [10/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [11/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [12/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [13/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [14/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [15/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [16/16]

static loading_indicator xtd::forms::loading_indicators::five_lines_wave ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse() [1/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator.

Returns
The created loading indicator.

◆ pulse() [2/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse() [3/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [4/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [5/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse() [6/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ pulse() [7/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse() [8/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [9/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [10/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse() [11/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [12/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [13/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse() [14/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [15/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [16/16]

static loading_indicator xtd::forms::loading_indicators::pulse ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [1/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator.

Returns
The created loading indicator.

◆ pulse_outline() [2/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse_outline() [3/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [4/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [5/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [6/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [7/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse_outline() [8/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [9/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [10/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [11/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [12/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [13/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [14/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [15/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [16/16]

static loading_indicator xtd::forms::loading_indicators::pulse_outline ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ standard() [1/16]

static loading_indicator xtd::forms::loading_indicators::standard ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator.

Returns
The created loading indicator.

◆ standard() [2/16]

static loading_indicator xtd::forms::loading_indicators::standard ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ standard() [3/16]

static loading_indicator xtd::forms::loading_indicators::standard ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [4/16]

static loading_indicator xtd::forms::loading_indicators::standard ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [5/16]

static loading_indicator xtd::forms::loading_indicators::standard ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ standard() [6/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ standard() [7/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ standard() [8/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [9/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [10/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ standard() [11/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [12/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [13/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ standard() [14/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [15/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [16/16]

static loading_indicator xtd::forms::loading_indicators::standard ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ system() [1/16]

static loading_indicator xtd::forms::loading_indicators::system ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator.

Returns
The created loading indicator.

◆ system() [2/16]

static loading_indicator xtd::forms::loading_indicators::system ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ system() [3/16]

static loading_indicator xtd::forms::loading_indicators::system ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [4/16]

static loading_indicator xtd::forms::loading_indicators::system ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [5/16]

static loading_indicator xtd::forms::loading_indicators::system ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ system() [6/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ system() [7/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ system() [8/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [9/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [10/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ system() [11/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [12/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [13/16]

static loading_indicator xtd::forms::loading_indicators::system ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ system() [14/16]

static loading_indicator xtd::forms::loading_indicators::system ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [15/16]

static loading_indicator xtd::forms::loading_indicators::system ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [16/16]

static loading_indicator xtd::forms::loading_indicators::system ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [1/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator.

Returns
The created loading indicator.

◆ three_balls() [2/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls() [3/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [4/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [5/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [6/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [7/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls() [8/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [9/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [10/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [11/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [12/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [13/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [14/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [15/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [16/16]

static loading_indicator xtd::forms::loading_indicators::three_balls ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [1/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator.

Returns
The created loading indicator.

◆ three_balls_bouncing() [2/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_bouncing() [3/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [4/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [5/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [6/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [7/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_bouncing() [8/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [9/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [10/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [11/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [12/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [13/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [14/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [15/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [16/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [1/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( )
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator.

Returns
The created loading indicator.

◆ three_balls_rotation() [2/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( bool  running)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_rotation() [3/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [4/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [5/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [6/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [7/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
bool  running 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_rotation() [8/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
bool  running,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [9/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [10/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
bool  running,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [11/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
const xtd::drawing::point location 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and location.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [12/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, and size.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [13/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const control parent,
const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [14/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const xtd::drawing::point location)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [15/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const xtd::drawing::point location,
const xtd::drawing::size size 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [16/16]

static loading_indicator xtd::forms::loading_indicators::three_balls_rotation ( const xtd::drawing::point location,
const xtd::drawing::size size,
const xtd::ustring name 
)
staticnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, size, and name.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

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