xtd 0.2.0
Loading...
Searching...
No Matches
dock_style.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace 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
39template<> struct xtd::enum_register<xtd::forms::dock_style> {
41};
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
dock_style
Specifies the position and manner in which a control is docked.
Definition dock_style.h:21
@ none
The control is not docked.
@ bottom
The control's bottom edge is docked to the bottom of its containing control.
@ right
The control's right edge is docked to the right edge of its containing control.
@ left
The control's left edge is docked to the left edge of its containing control.
@ fill
All the control's edges are docked to the all edges of its containing control and sized appropriately...
@ top
The control's top edge is docked to the top of its containing control.
@ bottom
Bind control edges to the bottom of its container.
@ right
Bind control edges to the right of its container.
@ left
Bind control edges to the left of its container.
@ top
Bind control edges to the top of its container.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36