xtd 0.2.0
Loading...
Searching...
No Matches
form_start_position.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
22 manual = 0,
24 center_screen = 1,
30 center_parent = 4,
31 };
32 }
33}
34
38};
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
form_start_position
Specifies the initial position of a form.
Definition form_start_position.h:20
@ center_parent
The form is centered within the bounds of its parent form.
@ manual
The position of the form is determined by the Location property.
@ windows_default_bounds
The form is positioned at the Windows default location and has the bounds determined by Windows defau...
@ center_screen
The form is centered on the current display, and has the dimensions specified in the form's size.
@ windows_default_location
The form is positioned at the Windows default location and has the dimensions specified in the form's...
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