9 references to Format
Microsoft.Maui.Controls (3)
DatePicker\DatePicker.cs (3)
13 /// <summary>Bindable property for <see cref="Format"/>.</summary> 14 public static readonly BindableProperty FormatProperty = BindableProperty.Create(nameof(Format), typeof(string), typeof(DatePicker), "d"); 241 get => Format;
Microsoft.Maui.Controls.Compatibility (6)
iOS\Renderers\DatePickerRenderer.cs (6)
183 if (string.IsNullOrWhiteSpace(Element.Format) || Element.Format.Equals("d", StringComparison.OrdinalIgnoreCase)) 188 if (Element.Format?.Equals("D", StringComparison.Ordinal) == true) 201 else if (Element.Format.Contains('/', StringComparison.Ordinal)) 203 Control.Text = Element.Date.ToString(Element.Format, CultureInfo.InvariantCulture); 207 Control.Text = Element.Date.ToString(Element.Format);