Gets or sets a Boolean value indicating whether the control displays week numbers (1-52). This is a dependency property. The default is false.

Namespace:  C1.Phone.Calendar
Assembly:  C1.Phone.Calendar (in C1.Phone.Calendar.dll)
XMLNS for XAML: Not mapped to an xmlns.

Syntax

C#
public bool ShowWeekNumbers { get; set; }
Visual Basic
Public Property ShowWeekNumbers As Boolean
	Get
	Set
XAML Attribute Usage
<object ShowWeekNumbers="bool" .../>

Remarks

The actual appearance of week numbers is determined in the C1Calendar control template with the WeekNumbersPresenter control instance. To show week numbers in the custom control template, place the WeekNumbersPresenter control into template visual tree and bind it's Visibility property to the ShowWeekNumbers property.

See Also