xtd 0.2.0
Loading...
Searching...
No Matches
track_bar.cpp

demonstrates the use of xtd::forms::track_bar control.

Windows

macOS

Gnome

#include <xtd/xtd>
class form1 : public form {
public:
form1() {
client_size({300, 300});
text("Track bar example");
progress_bar1.location({120, 50});
progress_bar1.maximum(200);
progress_bar1.orientation(forms::orientation::vertical);
progress_bar1.parent(*this);
progress_bar1.height(200);
label1.location({160, 50});
label1.parent(*this);
track_bar1.location({50, 50});
track_bar1.maximum(200);
track_bar1.auto_size(false);
track_bar1.orientation(forms::orientation::vertical);
track_bar1.parent(*this);
track_bar1.value_changed += delegate_ {
progress_bar1.value(track_bar1.value());
label1.text(string::format("{}", track_bar1.value()));
};
track_bar1.value(100);
track_bar1.tick_style(forms::tick_style::none);
track_bar1.height(200);
}
private:
track_bar track_bar1;
progress_bar progress_bar1;
label label1;
};
auto main() -> int {
application::run(form1 {});
}
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:900