#include <xtd/diagnostics/debug>
#include <xtd/forms/application>
#include <xtd/forms/debug_form>
#include <xtd/forms/form>
#include <xtd/forms/h_scroll_bar>
 
 
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 += [&] {
      };
    }
    
  private:
  };
}
 
auto main() -> int {
  application::run(h_scroll_bar_example::form1 {});
}
static void write_line()
Writes a line terminator to the trace listeners in the listeners collection.
Definition debug.hpp:361