Skip to main content
All docs
V22.1

DXCalendar.CustomYearCellStyle Event

Allows you to customize years.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public event EventHandler<CustomSelectableCellStyleEventArgs> CustomYearCellStyle

Event Data

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

Property Description
Date Gets or sets the processed day.
EllipseBackgroundColor Gets or sets the color of the processed day’s selection ellipse.
IsSelected Gets whether the processed day is selected.
IsTrailing Gets whether the processed day belongs to the previous or next month.

Example

The example below shows how to apply a custom style to the current year.

Custom Year Style in Calendar

using DevExpress.XamarinForms.Editors;

private void CustomYearCellStyle(object sender, CustomSelectableCellStyleEventArgs e) {
    if(e.Date.Year == DateTime.Now.Year)
        e.TextColor = Color.FromHex("F44848");
}
See Also