1 write to Text
Microsoft.Maui.Controls (1)
FormattedString.cs (1)
34 public static implicit operator FormattedString(string text) => new FormattedString { Spans = { new Span { Text = text } } };
3 references to Text
Microsoft.Maui.Controls (3)
FormattedString.cs (1)
37 public override string ToString() => string.Concat(Spans.Select(span => span.Text));
Span.cs (2)
79 /// <summary>Bindable property for <see cref="Text"/>.</summary> 81 = BindableProperty.Create(nameof(Text), typeof(string), typeof(Span), "", defaultBindingMode: BindingMode.OneWay);