xtd 0.2.0
dock_style.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
21  enum class dock_style {
23  none = 0,
25  top = 1,
27  bottom = 2,
29  left = 3,
31  right = 4,
33  fill = 5,
34  };
35  }
36 }
37 
39 template<> struct xtd::enum_register<xtd::forms::dock_style> {
41 };
The control&#39;s right edge is docked to the right edge of its containing control.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
All the control&#39;s edges are docked to the all edges of its containing control and sized appropriately...
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
The control&#39;s bottom edge is docked to the bottom of its containing control.
The control is not docked.
dock_style
Specifies the position and manner in which a control is docked.
Definition: dock_style.h:21
The control&#39;s left edge is docked to the left edge of its containing control.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The control&#39;s top edge is docked to the top of its containing control.
Provides the registration struct for enumerations.
Definition: enum_register.h:36