7 references to TitleColorProperty
Microsoft.Maui.Controls (7)
Properties\AssemblyInfo.cs (1)
173[assembly: StyleProperty("-maui-shell-title", typeof(Element), nameof(Shell.TitleColorProperty), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (5)
397 /// Defines the title color for the tab bar. If the property is unset, the <see cref = "TitleColorProperty" /> value will be used. 411 /// Defines the title color for the tab bar. If the property is unset, the <see cref = "TitleColorProperty" /> value will be used. 545 /// If the property is unset, the <see cref="TitleColorProperty" /> value will be used. 571 public static Color GetTitleColor(BindableObject obj) => (Color)obj.GetValue(TitleColorProperty); 578 public static void SetTitleColor(BindableObject obj, Color value) => obj.SetValue(TitleColorProperty, value);
Shell\ShellAppearance.cs (1)
23 Shell.TitleColorProperty,