xtd 0.2.0
menu_item_kind.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
21 enum class menu_item_kind {
23 normal = 0,
25 check = 1,
27 radio = 2,
32 };
33 }
34}
35
39};
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.hpp:24
menu_item_kind
Represent menu item kind used by xtd::forms::menu_item component.
Definition menu_item_kind.hpp:21
@ separator
The separator key.
Definition keys.hpp:283
@ check
Check menu item.
Definition menu_item_kind.hpp:25
@ drop_down
Drop down menu item.
Definition menu_item_kind.hpp:29
@ separator
Separator menu item.
Definition menu_item_kind.hpp:31
@ radio
Radio menu item.
Definition menu_item_kind.hpp:27
@ normal
Normal menu item.
Definition menu_item_kind.hpp:23
@ drop_down
Specifies that the list is displayed by clicking the down arrow and that the text portion is editable...
Definition combo_box_style.hpp:28
@ normal
The default appearance defined by the control class.
Definition appearance.hpp:24
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38