Back to Devexpress

DXCalendar.CustomDayOfWeekCellAppearance Event

maui-devexpress-dot-maui-dot-editors-dot-dxcalendar-8083144a.md

latest2.1 KB
Original Source

DXCalendar.CustomDayOfWeekCellAppearance Event

Allows you to customize days of the week.

Namespace : DevExpress.Maui.Editors

Assembly : DevExpress.Maui.Editors.dll

NuGet Package : DevExpress.Maui.Editors

Declaration

csharp
public event EventHandler<CustomDayOfWeekCellAppearanceEventArgs> CustomDayOfWeekCellAppearance

Event Data

The CustomDayOfWeekCellAppearance event's data class is CustomDayOfWeekCellAppearanceEventArgs. The following properties provide information specific to this event:

PropertyDescription
DayOfWeekGets the processed day of the week.

Example

The example below shows how to apply a custom appearance to weekends (days in the calendar and days of the week).

cs
using DevExpress.Maui.Editors;

void CustomDayCellAppearance(object sender, CustomSelectableCellAppearanceEventArgs e) {
    if (e.Date.DayOfWeek == DayOfWeek.Saturday || e.Date.DayOfWeek == DayOfWeek.Sunday) {
        e.TextColor = Color.FromHex("F44848");
        if(e.IsTrailing)
            e.TextColor = Color.FromRgba(e.TextColor.Red, e.TextColor.Green, e.TextColor.Blue, 0.5);
    }
}

private void CustomDayOfWeekCellAppearance(object sender, CustomDayOfWeekCellAppearanceEventArgs e) {
    if(e.DayOfWeek == DayOfWeek.Saturday || e.DayOfWeek == DayOfWeek.Sunday)
        e.TextColor = Color.FromHex("F44848");
}
xml
<dx:DXCalendar CustomDayCellAppearance="CustomDayCellAppearance"
               CustomDayOfWeekCellAppearance="CustomDayOfWeekCellAppearance"/>

See Also

DXCalendar Class

DXCalendar Members

DevExpress.Maui.Editors Namespace