Table of Contents
DayHeaderStyle Property

Gets or sets the Style applied to each day header in the day header area. This is a dependency property.

Syntax
 public Style DayHeaderStyle { get; set; }
Remarks

The target type of this style is BareButton. The following XAML markup illustrates the usage of this property to make each day header text look bold:

XAML
<eo:Calendar>
   <eo:Calendar.DayHeaderStyle>
       <Style TargetType="eo:BareButton">
           <Setter Property="FontWeight" Value="Bold" />
           <Setter Property="Padding" Value="5,0" />
       </Style>
   </eo:Calendar.DayHeaderStyle>
</eo:Calendar>

The previous XAML markup produces the following result:

See Also