xtd 0.2.0
Loading...
Searching...
No Matches
month_calendar_styles.h
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_FORMS_NATIVE_LIBRARY__)
7#error "Do not include this file: Internal use only"
8#endif
10
11#include <cstddef>
12
13#if !defined(MCS_DAYSTATE)
20constexpr size_t MCS_DAYSTATE = 0x0001;
27constexpr size_t MCS_MULTISELECT = 0x0002;
34constexpr size_t MCS_WEEKNUMBERS = 0x0004;
41constexpr size_t MCS_NOTODAYCIRCLE = 0x0008;
48constexpr size_t MCS_NOTODAY = 0x0010;
55constexpr size_t MCS_NOTRAILINGDATES = 0x0040;
62constexpr size_t MCS_SHORTDAYSOFWEEK = 0x0080;
69constexpr size_t MCS_NOSELCHANGEONNAV = 0x0100;
70#endif
constexpr size_t MCS_DAYSTATE
The month calendar sends MCN_GETDAYSTATE notifications to request information about which days should...
Definition month_calendar_styles.h:20
constexpr size_t MCS_NOTRAILINGDATES
Dates from the previous and next months are not displayed in the current month's calendar.
Definition month_calendar_styles.h:55
constexpr size_t MCS_WEEKNUMBERS
The month calendar control displays week numbers (1-52) to the left of each row of days....
Definition month_calendar_styles.h:34
constexpr size_t MCS_NOTODAY
The month calendar control does not display the "today" date at the bottom of the control.
Definition month_calendar_styles.h:48
constexpr size_t MCS_SHORTDAYSOFWEEK
Short day names are displayed in the header.
Definition month_calendar_styles.h:62
constexpr size_t MCS_NOTODAYCIRCLE
The month calendar control does not circle the "today" date.
Definition month_calendar_styles.h:41
constexpr size_t MCS_MULTISELECT
The month calendar enables the user to select a range of dates within the control....
Definition month_calendar_styles.h:27
constexpr size_t MCS_NOSELCHANGEONNAV
The selection is not changed when the user navigates next or previous in the calendar....
Definition month_calendar_styles.h:69