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

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

Windows

macOS

Gnome

#include <xtd/diagnostics/debug>
#include <xtd/forms/application>
#include <xtd/forms/debug_form>
#include <xtd/forms/form>
#include <xtd/forms/v_scroll_bar>
using namespace xtd::forms;
namespace v_scroll_bar_example {
class form1 : public form {
public:
form1() {
text("vertical scroll bar example");
v_scroll_bar1.parent(*this);
v_scroll_bar1.location({30, 10});
v_scroll_bar2.parent(*this);
v_scroll_bar2.location({70, 10});
v_scroll_bar2.height(220);
v_scroll_bar2.large_change(2);
v_scroll_bar2.minimum(0);
v_scroll_bar2.maximum(20);
v_scroll_bar2.value(10);
v_scroll_bar2.scroll += [&] {
xtd::diagnostics::debug::write_line(xtd::ustring::format("v_scrolbar2 value = {}", v_scroll_bar2.value()));
};
}
private:
v_scroll_bar v_scroll_bar1;
v_scroll_bar v_scroll_bar2;
};
}
auto main()->int {
auto df = debug_form {};
application::run(v_scroll_bar_example::form1 {});
}
static void write_line()
Writes a line terminator to the trace listeners in the listeners collection.
Definition debug.h:374
Represents a form that displays debug form. This class cannot be inherited.
Definition debug_form.h:34
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
Represents a standard Windows horizontal scroll bar.
Definition v_scroll_bar.h:27
static ustring format(const ustring &fmt, args_t &&... args)
Writes the text representation of the specified arguments list, to string using the specified format ...
Definition ustring.h:1131
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12