Class TimePickerContext
Represents a context that holds information about the time picker that is displayed in the chat.
Inherited Members
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class TimePickerContext : PickerContext, INotifyPropertyChanged
Constructors
TimePickerContext()
Declaration
public TimePickerContext()
Properties
EndTime
Gets or sets the last time span that can be selected.
Declaration
public TimeSpan EndTime { get; set; }
Property Value
System.TimeSpan
|
SelectedValue
Gets or sets the selected TimeSpan value.
Declaration
public Nullable<TimeSpan> SelectedValue { get; set; }
Property Value
System.Nullable<System.TimeSpan>
|
StartTime
Gets or sets the first time span that can be selected.
Declaration
public TimeSpan StartTime { get; set; }
Property Value
System.TimeSpan
|
TimeInterval
Gets or sets the interval between two consecutive System.TimeSpan objects.
Declaration
public TimeSpan TimeInterval { get; set; }
Property Value
System.TimeSpan
|
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. |