Implemented interface member:
property
Text
Microsoft.Maui.IText.Text
6 writes to Text
Microsoft.Maui.Controls (6)
BindableLayout\BindableLayout.cs (1)
489
return new Label {
Text
= emptyView?.ToString(), HorizontalTextAlignment = TextAlignment.Center };
ContentConverter.cs (1)
51
Text
= textContent
Internals\ProfilePage.cs (1)
143
label.
Text
= sb.ToString();
Label\Label.cs (1)
83
label.
Text
= null;
ListView\ListView.cs (1)
676
view = new Label {
Text
= dataObject.ToString() };
ViewExtensions.cs (1)
420
label.
Text
= text;
7 references to Text
Microsoft.Maui.Controls (6)
Label\Label.cs (3)
14
[ContentProperty(nameof(
Text
))]
29
/// <summary>Bindable property for <see cref="
Text
"/>.</summary>
30
public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(
Text
), typeof(string), typeof(Label), default(string), propertyChanged: OnTextPropertyChanged);
Label\Label.Mapper.cs (2)
23
LabelHandler.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(
Text
), MapText);
62
handler.UpdateValue(nameof(
Text
));
Platform\iOS\Extensions\LabelExtensions.cs (1)
30
platformLabel.Text = TextTransformUtilites.GetTransformedText(label.
Text
, label.TextTransform);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\LabelRenderer.cs (1)
75
Control.Text = Element.
Text
?? "";