1 write to FormattedText
Microsoft.Maui.Controls (1)
Label\Label.cs (1)
370 label.FormattedText = null;
13 references to FormattedText
Microsoft.Maui.Controls (13)
Label\Label.cs (11)
53 /// <summary>Bindable property for <see cref="FormattedText"/>.</summary> 54 public static readonly BindableProperty FormattedTextProperty = BindableProperty.Create(nameof(FormattedText), typeof(FormattedString), typeof(Label), default(FormattedString), 129 if (FormattedText != null) 130 SetInheritedBindingContext(FormattedText, this.BindingContext); 273 OnPropertyChanging(nameof(FormattedText)); 277 OnPropertyChanged(nameof(FormattedText)); 389 => (FormattedText?.Spans?.Count ?? 0) > 0; 394 if (FormattedText?.Spans == null || FormattedText?.Spans.Count == 0) 398 for (int i = 0; i < FormattedText.Spans.Count; i++) 400 Span span = FormattedText.Spans[i];
Label\Label.Mapper.cs (2)
24 LabelHandler.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(FormattedText), MapText); 60 handler.UpdateValue(nameof(FormattedText));