xtd 0.2.0
message_dialog_icon.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 message_dialog_icon {
22  none = 0,
24  hand = 0x00000010L,
26  stop = 0x00000010L,
28  error = 0x00000010L,
30  question = 0x00000020L,
32  exclamation = 0x00000030L,
34  warning = 0x00000030L,
36  asterisk = 0x00000040L,
38  information = 0x00000040L,
39  };
40  }
41 }
42 
44 template<> struct xtd::enum_register<xtd::forms::message_dialog_icon> {
46 };
message_dialog_icon
Specifies constants defining which information to display.
Definition: message_dialog_icon.h:20
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
The message box contains a symbol consisting of white X in a circle with a red background.
The message box contains a symbol consisting of a lowercase letter i in a circle. ...
The message box contains a symbol consisting of a question mark in a circle. The question-mark messag...
The message box contain no symbols.
The message box contains a symbol consisting of a lowercase letter i in a circle. ...
The message box contains a symbol consisting of a white X in a circle with a red background.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The message box contains a symbol consisting of an exclamation point in a triangle with a yellow back...
The message box contains a symbol consisting of an exclamation point in a triangle with a yellow back...
The message box contains a symbol consisting of white X in a circle with a red background.
Provides the registration struct for enumerations.
Definition: enum_register.h:36