Class DatePickerContext
Represents a context that holds information about the date picker that is displayed in the chat.
Inherited Members
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DatePickerContext : PickerContext, INotifyPropertyChanged
Constructors
DatePickerContext()
Declaration
public DatePickerContext()
Properties
MaxDate
Gets or sets the last date displayed by the picker.
Declaration
public DateTime MaxDate { get; set; }
Property Value
System.DateTime
|
MinDate
Gets or sets the first date displayed by the picker.
Declaration
public DateTime MinDate { get; set; }
Property Value
System.DateTime
|
SelectedDate
Gets or sets the selected DateTime object.
Declaration
public Nullable<DateTime> SelectedDate { get; set; }
Property Value
System.Nullable<System.DateTime>
|
Methods
CanExecuteOk()
Determines whether the Ok button of the picker can be clicked.
Declaration
public override bool CanExecuteOk()
Returns
System.Boolean
True if the button should be enabled, false otherwise. |