xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
h_scroll_bar.h
Go to the documentation of this file.
1
4#pragma once
5#include "scroll_bar.h"
6
8namespace xtd {
10 namespace forms {
21 public:
24 xtd::drawing::size default_size() const override {return {80, 17};}
25
26 protected:
27 xtd::forms::create_params create_params() const override;
28 };
29 }
30}
Stores an ordered pair of integers, which specify a height and width.
Definition: size.h:25
Represents a standard Windows horizontal scroll bar.
Definition: h_scroll_bar.h:20
h_scroll_bar()
Initialize a new instance of h_scroll_bar class.
xtd::drawing::size default_size() const override
Gets the default size of the control.
Definition: h_scroll_bar.h:24
xtd::forms::create_params create_params() const override
Gets the required creation parameters when the control handle is created.
Represents a standard Windows scroll bar.
Definition: scroll_bar.h:17
#define forms_export_
Define shared library export.
Definition: forms_export.h:13
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17
Contains xtd::forms::scroll_bar control.