15 references to TimePicker
Microsoft.Maui.Controls (15)
Hosting\AppHostBuilderExtensions.cs (2)
85
handlersCollection.AddHandler<
TimePicker
, TimePickerHandler>();
262
TimePicker
.RemapForControls();
PlatformConfiguration\iOSSpecific\TimePicker.cs (4)
4
using FormsElement = Microsoft.Maui.Controls.
TimePicker
;
29
public static UpdateMode UpdateMode(this IPlatformElementConfiguration<iOS,
FormsElement
> config)
35
public static IPlatformElementConfiguration<iOS,
FormsElement
> SetUpdateMode(this IPlatformElementConfiguration<iOS,
FormsElement
> config, UpdateMode value)
TimePicker\TimePicker.cs (8)
11
public partial class TimePicker : View, IFontElement, ITextElement, IElementConfiguration<
TimePicker
>, ITimePicker
14
public static readonly BindableProperty FormatProperty = BindableProperty.Create(nameof(Format), typeof(string), typeof(
TimePicker
), "t");
23
public static readonly BindableProperty TimeProperty = BindableProperty.Create(nameof(Time), typeof(TimeSpan), typeof(
TimePicker
), new TimeSpan(0), BindingMode.TwoWay,
43
readonly Lazy<PlatformConfigurationRegistry<
TimePicker
>> _platformConfigurationRegistry;
48
_platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<
TimePicker
>>(() => new PlatformConfigurationRegistry<
TimePicker
>(this));
141
public IPlatformElementConfiguration<T,
TimePicker
> On<T>() where T : IConfigPlatform
168
if (bindable is
TimePicker
timePicker)
ViewExtensions.cs (1)
448
else if (element is
TimePicker
tp && TimeSpan.TryParse(text, out TimeSpan tpResult))