xtd 0.2.0
tool_bar_button_style.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
21  enum class tool_bar_button_style {
23  push_button = 1,
25  toggle_button = 2,
27  separator = 3,
29  drop_down_button = 4,
33  control = 6,
34  };
35  }
36 }
37 
39 template<> struct xtd::enum_register<xtd::forms::tool_bar_button_style> {
41 };
A stretchable space with or without line between toolbar buttons. The appearance depends on the value...
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Use to add any control to the toolbar. Using with xtd::forms::tool_bar_button::control property...
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 standard, three-dimensional button.
The separator key.
tool_bar_button_style
Specifies the button style within a toolbar.
Definition: tool_bar_button_style.h:21
A toggle button that appears sunken when clicked and retains the sunken appearance until clicked agai...
Defines the base class for controls, which are components with visual representation.
Definition: control.h:78
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
A drop-down control that displays a menu or other window when clicked.
Represents a Windows toggle_button.
Definition: toggle_button.h:42
Provides the registration struct for enumerations.
Definition: enum_register.h:36