24 references to UpdateMode
Microsoft.Maui.Controls (21)
PlatformConfiguration\iOSSpecific\DatePicker.cs (7)
12
typeof(
UpdateMode
),
14
default(
UpdateMode
));
17
public static
UpdateMode
GetUpdateMode(BindableObject element)
19
return (
UpdateMode
)element.GetValue(UpdateModeProperty);
23
public static void SetUpdateMode(BindableObject element,
UpdateMode
value)
29
public static
UpdateMode
UpdateMode(this IPlatformElementConfiguration<iOS, FormsElement> config)
35
public static IPlatformElementConfiguration<iOS, FormsElement> SetUpdateMode(this IPlatformElementConfiguration<iOS, FormsElement> config,
UpdateMode
value)
PlatformConfiguration\iOSSpecific\Picker.cs (7)
10
public static readonly BindableProperty UpdateModeProperty = BindableProperty.Create(nameof(UpdateMode), typeof(
UpdateMode
), typeof(Picker), default(
UpdateMode
));
13
public static
UpdateMode
GetUpdateMode(BindableObject element)
15
return (
UpdateMode
)element.GetValue(UpdateModeProperty);
19
public static void SetUpdateMode(BindableObject element,
UpdateMode
value)
25
public static
UpdateMode
UpdateMode(this IPlatformElementConfiguration<iOS, FormsElement> config)
31
public static IPlatformElementConfiguration<iOS, FormsElement> SetUpdateMode(this IPlatformElementConfiguration<iOS, FormsElement> config,
UpdateMode
value)
PlatformConfiguration\iOSSpecific\TimePicker.cs (7)
12
typeof(
UpdateMode
),
14
default(
UpdateMode
));
17
public static
UpdateMode
GetUpdateMode(BindableObject element)
19
return (
UpdateMode
)element.GetValue(UpdateModeProperty);
23
public static void SetUpdateMode(BindableObject element,
UpdateMode
value)
29
public static
UpdateMode
UpdateMode(this IPlatformElementConfiguration<iOS, FormsElement> config)
35
public static IPlatformElementConfiguration<iOS, FormsElement> SetUpdateMode(this IPlatformElementConfiguration<iOS, FormsElement> config,
UpdateMode
value)
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\DatePickerRenderer.cs (1)
158
if (Element.OnThisPlatform().UpdateMode() ==
UpdateMode
.Immediately)
iOS\Renderers\PickerRenderer.cs (1)
396
if (_renderer.Element.On<PlatformConfiguration.iOS>().UpdateMode() ==
UpdateMode
.Immediately)
iOS\Renderers\TimePickerRenderer.cs (1)
177
if (Element.OnThisPlatform().UpdateMode() ==
UpdateMode
.Immediately)