xtd 0.2.0
Loading...
Searching...
No Matches
form_border_style.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace 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
42};
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_border_style
Specifies the border styles for a form.
Definition form_border_style.h:20
@ fixed_3d
A three-dimensional border. Same as xtd::forms::border_style::inset.
@ fixed_single
A single-line border. Same as xtd::forms::border_style::solid.
@ sizable_tool_window
A resizable tool window border. A tool window does not appear in the taskbar or in the window that ap...
@ fixed_tool_window
A tool window border that is not resizable. A tool window does not appear in the taskbar or in the wi...
@ fixed_3d
A fixed, three-dimensional border.
@ fixed_dialog
A thick, fixed dialog-style border.
@ fixed_single
A fixed, single-line border.
@ sizable
A resizable border.
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