Implemented interface member:
property
Text
Microsoft.Maui.IText.Text
6 writes to Text
Microsoft.Maui.Controls (6)
BindableLayout\BindableLayout.cs (1)
499 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)
86 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 (7)
Label\Label.cs (5)
16 [ContentProperty(nameof(Text))] 32 /// <summary>Bindable property for <see cref="Text"/>.</summary> 33 public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(Text), typeof(string), typeof(Label), default(string), propertyChanged: OnTextPropertyChanged); 486 var debugText = DebuggerDisplayHelpers.GetDebugText(nameof(Text), Text);
Label\Label.Mapper.cs (2)
23 LabelHandler.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(Text), MapText); 62 handler.UpdateValue(nameof(Text));