Skip to main content

DXCalendar.DayOfWeekCellAppearance Property

Gets or sets appearance settings applied to days. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public CalendarDayOfWeekCellAppearance DayOfWeekCellAppearance { get; set; }

Property Value

Type Description
CalendarDayOfWeekCellAppearance

The object that stores appearance settings.

Remarks

Refer to the following topic to see the available appearance properties: CalendarDayOfWeekCellAppearance members.

Example

The example below show how to apply custom appearance settings to days, days of week, and the calendar’s header.

DevExpress Calendar for .NET MAUI - Custom Appearance Settings

<dxe:DXCalendar>
    <dxe:DXCalendar.HeaderAppearance>
        <dxe:CalendarHeaderAppearance HeaderTitleTextColor="#F44848"/>
    </dxe:DXCalendar.HeaderAppearance>
    <dxe:DXCalendar.DayCellAppearance>
        <dxe:CalendarDayCellAppearance FontAttributes="Bold,Italic"
                                       TextColor="Black"/>
    </dxe:DXCalendar.DayCellAppearance>
    <dxe:DXCalendar.DayOfWeekCellAppearance>
        <dxe:CalendarDayOfWeekCellAppearance FontAttributes="Bold,Italic"
                                             TextColor="Black"/>
    </dxe:DXCalendar.DayOfWeekCellAppearance>
</dxe:DXCalendar>
See Also