Implemented interface member:
property
MinimumDate
Microsoft.Maui.IDatePicker.MinimumDate
5 references to MinimumDate
Microsoft.Maui.Controls (5)
DatePicker\DatePicker.cs (5)
20
/// <summary>Bindable property for <see cref="
MinimumDate
"/>.</summary>
21
public static readonly BindableProperty MinimumDateProperty = BindableProperty.Create(nameof(
MinimumDate
), typeof(DateTime), typeof(DatePicker), new DateTime(1900, 1, 1),
169
if (dateValue < picker.
MinimumDate
)
170
dateValue = picker.
MinimumDate
;
206
return ((DateTime)value).Date >= ((DatePicker)bindable).
MinimumDate
.Date;