Skip to content

Calendar Picker Control

The Calendar Picker allows various methods of selecting a contiguous or discontiguous span of dates. It presents the user with a calendar as if it were a usual picker, and provides you, the developer, with ways to extract their date selections.

CalendarPickerView

Properties

SelectionType - CalendarSelectionType

Gets or sets the type of user selection method via the following:

public enum CalendarSelectionType {
        Single,
        Span,
        Multiple
    }

IsEnabled - bool

Gets a value indicating whether the picker is enabled.

Methods

Example Usage

Xaml

<aurora:CalendarPicker x:Name="CalendarPickerSingle" SelectionType="Single" />

C#

var picker = new CalendarPicker
    {
        SelectionType = CalendarSelectionType.Multiple
    };