xtd 0.2.0
up_down_base.h
Go to the documentation of this file.
1 #pragma once
5 #include "border_sides.h"
6 #include "border_style.h"
7 #include "container_control.h"
8 
10 namespace xtd {
12  namespace forms {
21  class forms_export_ up_down_base : public container_control {
22  struct data;
23 
24  public:
26 
30  virtual forms::border_sides border_sides() const noexcept;
34 
37  virtual forms::border_style border_style() const noexcept;
43 
44  protected:
46 
49  up_down_base();
51 
53 
55  forms::create_params create_params() const noexcept override;
57 
58  private:
59  std::shared_ptr<data> data_;
60  };
61  }
62 }
Provides focus-management functionality for controls that can function as a container for other contr...
Definition: container_control.h:23
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Implements the basic functionality required by a spin box (also known as an up-down control)...
Definition: up_down_base.h:21
Encapsulates the information needed when creating a control.
Definition: create_params.h:27
border_sides
Specifies how a control anchors to the edges of its container.
Definition: border_sides.h:21
Contains xtd::forms::container_control class.
border_style
Specifies the border style for a control.
Definition: border_style.h:20
Contains xtd::forms::border_sides enum class.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
Contains xtd::forms::border_style enum class.