DateColumn.PickerCustomMonthCellAppearance Event
Allows you to customize months in the default picker.
Namespace: DevExpress.Maui.DataGrid
Assembly: DevExpress.Maui.DataGrid.dll
NuGet Package: DevExpress.Maui.DataGrid
#Declaration
public event EventHandler<CustomSelectableCellAppearanceEventArgs> PickerCustomMonthCellAppearance
#Event Data
The PickerCustomMonthCellAppearance event's data class is CustomSelectableCellAppearanceEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Date | Gets the processed day. |
Ellipse |
Gets or sets the color of the processed day’s selection ellipse. |
Is |
Gets whether the processed day is selected. |
Is |
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 month in the calendar.
using DevExpress.Maui.DataGrid;
private void CustomMonthCellStyle(object sender, CustomSelectableCellStyleEventArgs e) {
if(e.Date.Month == DateTime.Now.Month)
e.TextColor = Color.FromHex("F44848");
}