9 references to TextProperty
Microsoft.Maui.Controls (8)
BindableLayout\BindableLayout.cs (1)
235
label.SetBinding(Label.
TextProperty
, static (object o) => o);
Compatibility\Handlers\Shell\iOS\ShellSearchResultsRenderer.cs (2)
48
label.SetBinding(Label.
TextProperty
, SearchHandler.DisplayMemberName ?? ".");
64
label.SetBinding(Label.
TextProperty
, static (object o) => o);
Label\Label.cs (2)
154
get { return (string)GetValue(
TextProperty
); }
155
set { SetValue(
TextProperty
, value); }
Shell\BaseShellItem.cs (1)
483
defaultLabelClass.Setters.Add(new Setter { Property = Label.
TextProperty
, Value = labelBinding });
TitleBar\TitleBar.cs (2)
429
Label.
TextProperty
,
483
Label.
TextProperty
,
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\LabelRenderer.cs (1)
15
RegisterPropertyHandler(Label.
TextProperty
, UpdateText);