Implemented interface member:
property
Text
Microsoft.Maui.IText.Text
1 write to Text
Microsoft.Maui.Controls (1)
Toolbar\ToolbarItem.cs (1)
28 Text = name;
4 references to Text
Microsoft.Maui.Controls (4)
Menu\MenuItem.cs (2)
46 /// <summary>Bindable property for <see cref="Text"/>.</summary> 47 public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(Text), typeof(string), typeof(MenuItem), null);
Shell\BaseShellItem.cs (1)
446 labelBinding = Binding.Create(static (MenuItem item) => item.Text);
Shell\MenuShellItem.cs (1)
18 this.SetBinding(TitleProperty, static (MenuItem item) => item.Text, BindingMode.OneWay, source: menuItem);