xtd 0.2.0
h_scroll_bar.cpp

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

Windows
h_scroll_bar_w.png

h_scroll_bar_wd.png
macOS
h_scroll_bar_m.png

h_scroll_bar_md.png
Gnome
h_scroll_bar_g.png

h_scroll_bar_gd.png
#include <xtd/diagnostics/debug>
#include <xtd/forms/application>
#include <xtd/forms/debug_form>
#include <xtd/forms/form>
#include <xtd/forms/h_scroll_bar>
using namespace xtd::forms;
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 += [&] {
xtd::diagnostics::debug::write_line(xtd::ustring::format("h_scroll_bar2 value = {}", h_scroll_bar2.value()));
};
}
private:
h_scroll_bar h_scroll_bar1;
h_scroll_bar h_scroll_bar2;
};
}
auto main()->int {
application::run(h_scroll_bar_example::form1 {});
}