Xamarin.Forms by Xamarin Inc.

<PackageReference Include="Xamarin.Forms" Version="1.1.0.6201" />

.NET API 488,960 bytes

 DatePicker

public class DatePicker : View
A View that allows date picking.
public static readonly BindableProperty DateProperty

Identifies the Date bindable property.

public static readonly BindableProperty FormatProperty

Identifies the Format dependency property.

public static readonly BindableProperty MaximumDateProperty

Identifies the MaximumDate bindable property.

public static readonly BindableProperty MinimumDateProperty

Identifies the MinimumDate bindable property.

public DateTime Date { get; set; }

Gets or sets the displayed date. This is a bindable property.

public string Format { get; set; }

The format of the date to display to the user. This is a dependency property.

public DateTime MaximumDate { get; set; }

The highest date selectable for this DatePicker. This is a bindable property.

public DateTime MinimumDate { get; set; }

The lowest date selectable for this DatePicker. This is a bindable property.

An event fired when the Date property changes.

public DatePicker()