mobilecontrols-devexpress-dot-xamarinforms-dot-editors-dot-dxcalendar-b6fa5be4.md
Gets or sets appearance settings applied to the calendar’s header.
Namespace : DevExpress.XamarinForms.Editors
Assembly : DevExpress.XamarinForms.Editors.dll
NuGet Package : DevExpress.XamarinForms.Editors
public CalendarHeaderStyle HeaderStyle { get; set; }
| Type | Description |
|---|---|
| CalendarHeaderStyle |
An object that stores appearance settings.
|
The example below show how to apply custom appearance settings to days, days of week, and the calendar’s header.
<dxe:DXCalendar>
<dxe:DXCalendar.HeaderStyle>
<dxe:CalendarHeaderStyle TextColor="#F44848"/>
</dxe:DXCalendar.HeaderStyle>
<dxe:DXCalendar.DayCellStyle>
<dxe:CalendarDayCellStyle FontAttributes="Bold,Italic"
TextColor="Black"/>
</dxe:DXCalendar.DayCellStyle>
<dxe:DXCalendar.DayOfWeekCellStyle>
<dxe:CalendarDayOfWeekCellStyle FontAttributes="Bold,Italic"
TextColor="Black"/>
</dxe:DXCalendar.DayOfWeekCellStyle>
</dxe:DXCalendar>
See Also