xtd 0.2.0
Loading...
Searching...
No Matches
arrange_starting_position.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
25 bottom_left = 0,
27 bottom_right = 1,
29 top_left = 2,
31 top_right = 3,
33 hide = 8
34 };
35 }
36}
37
39flags_attribute_(xtd::forms, arrange_starting_position);
41
45};
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition flags_attribute.h:34
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
arrange_starting_position
Specifies the starting position that the system uses to arrange minimized windows.
Definition arrange_starting_position.h:23
@ bottom_left
Starts at the lower-left corner of the screen, which is the default position.
@ top_left
Starts at the upper-left corner of the screen.
@ hide
Hides minimized windows by moving them off the visible area of the screen.
@ bottom_right
Starts at the lower-right corner of the screen.
@ top_right
Starts at the upper-right corner of the screen.
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