8 references to TextProperty
Microsoft.Maui.Controls (8)
Editor\Editor.cs (1)
15 public new static readonly BindableProperty TextProperty = InputView.TextProperty;
Entry\Entry.cs (2)
40 /// <inheritdoc cref="InputView.TextProperty"/> 41 public new static readonly BindableProperty TextProperty = InputView.TextProperty;
InputView\InputView.cs (3)
74 get => (string)GetValue(TextProperty); 75 set => SetValue(TextProperty, value); 272 set => SetValue(TextProperty, value, SetterSpecificity.FromHandler);
Internals\TextTransformUtilites.cs (1)
61 inputView.SetValueFromRenderer(InputView.TextProperty, platformText);
SearchBar\SearchBar.cs (1)
24 public new static readonly BindableProperty TextProperty = InputView.TextProperty;