Calendar.IsTodayHighlighted Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets or sets a value indicating whether the current date is highlighted.

Namespace:  System.Windows.Controls
Assembly:  System.Windows.Controls (in System.Windows.Controls.dll)

Syntax

'Declaration
Public Property IsTodayHighlighted As Boolean
public bool IsTodayHighlighted { get; set; }
<sdk:Calendar IsTodayHighlighted="bool"/>

Property Value

Type: System.Boolean
true if the current date is highlighted; otherwise, false. The default is true.

Remarks

Dependency property identifier field: IsTodayHighlightedProperty

Examples

The following XAML creates a Calendar where the current date is not highlighted. This example is part of a larger example available in the Calendar overview.

<!-- A Calendar does not highlight today's date. -->
    <TextBlock  Width="100" 
           Text="Calendar that does not highlight today's date:" TextWrapping="Wrap" Margin="5"/>
    <sdk:Calendar x:Name="cal2" Canvas.Left="270" Canvas.Top="100" 
                IsTodayHighlighted="false" />

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.