xtd 0.2.0
Loading...
Searching...
No Matches
tab_alignment.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
22 enum class tab_alignment {
24 top = 0,
26 bottom = 1,
28 left = 2,
30 right = 3,
31 };
32 }
33}
34
38};
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
tab_alignment
Specifies the locations of the tabs in a tab control.
Definition tab_alignment.h:22
@ bottom
The tabs are located across the bottom of the control.
@ right
The tabs are located along the right edge of the control.
@ left
The tabs are located along the left edge of the control.
@ top
The tabs are located across the top of the 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:38