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

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

Windows

macOS

Gnome

#include <xtd/xtd>
namespace h_scroll_bar_example {
class form1 : public form {
public:
form1() {
text("horizontal scroll bar example");
h_scroll_bar1.parent(*this);
h_scroll_bar1.location({30, 40});
h_scroll_bar2.parent(*this);
h_scroll_bar2.location({30, 80});
h_scroll_bar2.large_change(2);
h_scroll_bar2.minimum(0);
h_scroll_bar2.maximum(20);
h_scroll_bar2.value(10);
h_scroll_bar2.width(220);
h_scroll_bar2.scroll += delegate_ {
diagnostics::debug::write_line(xtd::string::format("h_scroll_bar2 value = {}", h_scroll_bar2.value()));
};
}
private:
debug_form df;
h_scroll_bar h_scroll_bar1;
h_scroll_bar h_scroll_bar2;
};
}
auto main() -> int {
application::run(h_scroll_bar_example::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