xtd 0.2.0
form_start_position.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
20  enum class form_start_position {
22  manual = 0,
24  center_screen = 1,
30  center_parent = 4,
31  };
32  }
33 }
34 
36 template<> struct xtd::enum_register<xtd::forms::form_start_position> {
38 };
form_start_position
Specifies the initial position of a form.
Definition: form_start_position.h:20
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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 form is positioned at the Windows default location and has the dimensions specified in the form&#39;s...
The position of the form is determined by the Location property.
The form is positioned at the Windows default location and has the bounds determined by Windows defau...
The form is centered within the bounds of its parent form.
The form is centered on the current display, and has the dimensions specified in the form&#39;s size...
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
Provides the registration struct for enumerations.
Definition: enum_register.h:36