xtd 0.2.0
form_border_style.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_border_style {
22  none = 0,
24  fixed_single = 1,
26  fixed_3d = 2,
28  fixed_dialog = 3,
30  sizable = 4,
35  };
36  }
37 }
38 
40 template<> struct xtd::enum_register<xtd::forms::form_border_style> {
42 };
A thick, fixed dialog-style border.
form_border_style
Specifies the border styles for a form.
Definition: form_border_style.h:20
A resizable tool window border. A tool window does not appear in the taskbar or in the window that ap...
A tool window border that is not resizable. A tool window does not appear in the taskbar or in the wi...
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
A single-line border. Same as xtd::forms::border_style::solid.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
A three-dimensional border. Same as xtd::forms::border_style::inset.
Provides the registration struct for enumerations.
Definition: enum_register.h:36