xtd 0.2.0
Loading...
Searching...
No Matches
message_dialog_options.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
26 default_desktop_only = 0x00020000L,
28 right_align = 0x00080000L,
30 rtl_reading = 0x00100000L,
32 service_notification = 0x00200000L
33 };
34 }
35}
36
38flags_attribute_(xtd::forms, message_dialog_options);
39
42};
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition flags_attribute.h:34
std::vector< xtd::collections::generic::key_value_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.h:22
message_dialog_options
Specifies options on a message_box.
Definition message_dialog_options.h:24
@ rtl_reading
Specifies that the message box text is displayed with right to left reading order.
@ right_align
The message box text is right-aligned.
@ default_desktop_only
The message box is displayed on the active desktop.
@ service_notification
The message box is displayed on the active desktop.
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:38