Class RadTimePicker
Represents a picker which displays a collection of TimeSpan objects.
Inherited Members
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadTimePicker : RadContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding
Constructors
RadTimePicker()
Fields
EndTimeProperty
Identifies the EndTime property.
Declaration
public static readonly BindableProperty EndTimeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ItemSelectedCommandProperty
Identifies the ItemSelectedCommand property.
Declaration
public static readonly BindableProperty ItemSelectedCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SelectedItemProperty
Identifies the SelectedItem property.
Declaration
public static readonly BindableProperty SelectedItemProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SelectedValueProperty
Identifies the SelectedValue property.
Declaration
public static readonly BindableProperty SelectedValueProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
StartTimeProperty
Identifies the StartTime property.
Declaration
public static readonly BindableProperty StartTimeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
TimeFormatProperty
Identifies the TimeFormat property.
Declaration
public static readonly BindableProperty TimeFormatProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
TimeIntervalProperty
Identifies the TimeInterval property.
Declaration
public static readonly BindableProperty TimeIntervalProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
EndTime
Gets or sets the last time span that can be selected.
Declaration
public TimeSpan EndTime { get; set; }
Property Value
System.TimeSpan
|
Items
Gets or sets the collection of TimePickerItem objects.
Declaration
public List<TimePickerItem> Items { get; }
Property Value
System.Collections.Generic.List<TimePickerItem>
|
ItemSelectedCommand
Gets or sets the command executed when an item is selected.
Declaration
public ICommand ItemSelectedCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
SelectedItem
Gets or sets the selected TimePickerItem.
Declaration
public TimePickerItem SelectedItem { get; set; }
Property Value
TimePickerItem
|
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
|
TimeFormat
Gets or sets the format of the displayed time spans.
Declaration
public string TimeFormat { get; set; }
Property Value
System.String
|
TimeInterval
Gets or sets the interval between two consecutive TimePickerItem objects.
Declaration
public TimeSpan TimeInterval { get; set; }
Property Value
System.TimeSpan
|
Methods
OnPropertyChanged(String)
Declaration
protected override void OnPropertyChanged(string propertyName = null)
Parameters
System.String
propertyName
|
Events
ItemSelected
Occurs when when an item is selected.
Declaration
public event EventHandler<ValueChangedEventArgs<TimePickerItem>> ItemSelected
Event Type
System.EventHandler<ValueChangedEventArgs<TimePickerItem>>
|