7 references to TitleProperty
Microsoft.Maui.Controls (7)
Shell\BaseShellItem.cs (2)
111
get { return (string)GetValue(
TitleProperty
); }
112
set { SetValue(
TitleProperty
, value); }
Shell\MenuShellItem.cs (2)
18
this.SetBinding(
TitleProperty
, static (MenuItem item) => item.Text, BindingMode.OneWay, source: menuItem);
34
else if (e.PropertyName ==
TitleProperty
.PropertyName)
Shell\ShellContent.cs (1)
291
shellContent.SetBinding(
TitleProperty
, static (TemplatedPage page) => page.Title, BindingMode.OneWay, source: page);
Shell\ShellItem.cs (1)
226
result.SetBinding(
TitleProperty
, static (ShellSection section) => section.Title, BindingMode.OneWay, source: shellSection);
Shell\ShellSection.cs (1)
296
shellSection.SetBinding(
TitleProperty
, static (BaseShellItem item) => item.Title, BindingMode.OneWay, source: shellContent);