xtd 0.2.0
hotkey_prefix.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace drawing {
12  namespace text {
20  enum class hotkey_prefix {
22  none = 0,
24  show = 1,
26  hide = 2
27  };
28  }
29  }
30 }
31 
33 template<> struct xtd::enum_register<xtd::drawing::text::hotkey_prefix> {
35 };
Do not display the hot-key prefix.
Display the hot-key prefix.
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
hotkey_prefix
Specifies the type of display for hot-key prefixes that relate to text.
Definition: hotkey_prefix.h:20
The xtd::forms::status_bar_panel displays text in the standard font.
Provides the registration struct for enumerations.
Definition: enum_register.h:36