Implemented interface member:
property
Label
Microsoft.Maui.Maps.IMapPin.Label
6 references to Label
Microsoft.Maui.Controls.Maps (6)
Map.cs (1)
229 if (e.NewItems is not null && e.NewItems.Cast<Pin>().Any(pin => pin.Label is null))
Pin.cs (5)
22 /// <summary>Bindable property for <see cref="Label"/>.</summary> 23 public static readonly BindableProperty LabelProperty = BindableProperty.Create(nameof(Label), typeof(string), typeof(Pin), default(string)); 108 int hashCode = Label?.GetHashCode() ?? 0; 172 return string.Equals(Label, other.Label, StringComparison.Ordinal) &&