Implemented interface member:
property
Title
Microsoft.Maui.ITitledElement.Title
2 writes to Title
Microsoft.Maui.Controls (2)
CarouselPage\CarouselPage.cs (1)
27 page.Title = item.ToString();
TabbedPage\TabbedPage.cs (1)
66 page.Title = item.ToString();
17 references to Title
Microsoft.Maui.Controls (16)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (5)
951 containerController.NavigationItem.LeftBarButtonItem = new UIBarButtonItem(FlyoutPage.Flyout.Title, UIBarButtonItemStyle.Plain, OnItemTapped); 1378 NavigationItem.Title = Child.Title; 1490 internal void UpdateBackButtonTitle(Page page) => UpdateBackButtonTitle(page.Title, NavigationPage.GetBackButtonTitle(page)); 1525 UpdateBackButtonTitle(page.Title ?? n?.NavPage.Title, backButtonText);
Compatibility\Handlers\TabbedPage\iOS\TabbedRenderer.cs (1)
464 renderer.ViewController.TabBarItem = new UITabBarItem(page.Title, icons?.Item1, icons?.Item2)
FlyoutPage\FlyoutPage.cs (1)
97 if (string.IsNullOrEmpty(value.Title))
NavigationPage\NavigationPageToolbar.cs (2)
277 return _currentNavigationPage?.CurrentPage?.Title ?? _currentNavigationPage?.Title;
Page\Page.cs (3)
61 /// <summary>Bindable property for <see cref="Title"/>.</summary> 62 public static readonly BindableProperty TitleProperty = BindableProperty.Create(nameof(Title), typeof(string), typeof(Page), null); 114 /// <remarks>For example, this icon might be shown in the flyout menu or a tab bar together with <see cref="Title"/>.</remarks>
Shell\ShellContent.cs (1)
291 shellContent.SetBinding(TitleProperty, static (TemplatedPage page) => page.Title, BindingMode.OneWay, source: page);
ShellToolbar.cs (1)
177 Title = currentPage.Title ?? String.Empty;
Window\Window.cs (2)
112 string? ITitledElement.Title => Title ?? (Page as Shell)?.Title; 671 if (e.PropertyName == nameof(Shell.Title))
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\NavigationPageRenderer.cs (1)
316 titleView.Title = page.Title;