Shell\Shell.cs (46)
362 BindableProperty.CreateAttached("BackgroundColor", typeof(Color), typeof(Shell), null,
369 BindableProperty.CreateAttached("DisabledColor", typeof(Color), typeof(Shell), null,
376 BindableProperty.CreateAttached("ForegroundColor", typeof(Color), typeof(Shell), null,
383 BindableProperty.CreateAttached("TabBarBackgroundColor", typeof(Color), typeof(Shell), null,
390 BindableProperty.CreateAttached("TabBarDisabledColor", typeof(Color), typeof(Shell), null,
395 BindableProperty.CreateAttached("TabBarForegroundColor", typeof(Color), typeof(Shell), null,
402 BindableProperty.CreateAttached("TabBarTitleColor", typeof(Color), typeof(Shell), null,
409 BindableProperty.CreateAttached("TabBarUnselectedColor", typeof(Color), typeof(Shell), null,
416 BindableProperty.CreateAttached("TitleColor", typeof(Color), typeof(Shell), null,
423 BindableProperty.CreateAttached("UnselectedColor", typeof(Color), typeof(Shell), null,
454 public static Color GetBackgroundColor(BindableObject obj) => (Color)obj.GetValue(BackgroundColorProperty);
462 public static void SetBackgroundColor(BindableObject obj, Color value) => obj.SetValue(BackgroundColorProperty, value);
469 public static Color GetDisabledColor(BindableObject obj) => (Color)obj.GetValue(DisabledColorProperty);
476 public static void SetDisabledColor(BindableObject obj, Color value) => obj.SetValue(DisabledColorProperty, value);
483 public static Color GetForegroundColor(BindableObject obj) => (Color)obj.GetValue(ForegroundColorProperty);
491 public static void SetForegroundColor(BindableObject obj, Color value) => obj.SetValue(ForegroundColorProperty, value);
498 public static Color GetTabBarBackgroundColor(BindableObject obj) => (Color)obj.GetValue(TabBarBackgroundColorProperty);
506 public static void SetTabBarBackgroundColor(BindableObject obj, Color value) => obj.SetValue(TabBarBackgroundColorProperty, value);
513 public static Color GetTabBarDisabledColor(BindableObject obj) => (Color)obj.GetValue(TabBarDisabledColorProperty);
521 public static void SetTabBarDisabledColor(BindableObject obj, Color value) => obj.SetValue(TabBarDisabledColorProperty, value);
528 public static Color GetTabBarForegroundColor(BindableObject obj) => (Color)obj.GetValue(TabBarForegroundColorProperty);
536 public static void SetTabBarForegroundColor(BindableObject obj, Color value) => obj.SetValue(TabBarForegroundColorProperty, value);
543 public static Color GetTabBarTitleColor(BindableObject obj) => (Color)obj.GetValue(TabBarTitleColorProperty);
551 public static void SetTabBarTitleColor(BindableObject obj, Color value) => obj.SetValue(TabBarTitleColorProperty, value);
558 public static Color GetTabBarUnselectedColor(BindableObject obj) => (Color)obj.GetValue(TabBarUnselectedColorProperty);
566 public static void SetTabBarUnselectedColor(BindableObject obj, Color value) => obj.SetValue(TabBarUnselectedColorProperty, value);
573 public static Color GetTitleColor(BindableObject obj) => (Color)obj.GetValue(TitleColorProperty);
580 public static void SetTitleColor(BindableObject obj, Color value) => obj.SetValue(TitleColorProperty, value);
587 public static Color GetUnselectedColor(BindableObject obj) => (Color)obj.GetValue(UnselectedColorProperty);
594 public static void SetUnselectedColor(BindableObject obj, Color value) => obj.SetValue(UnselectedColorProperty, value);
735 static Color DefaultBackgroundColor => null;
736 static readonly Color DefaultForegroundColor = null;
737 static readonly Color DefaultTitleColor = null;
1088 BindableProperty.Create(nameof(FlyoutBackgroundColor), typeof(Color), typeof(Shell), null, BindingMode.OneTime);
1340 public Color FlyoutBackgroundColor
1342 get => (Color)GetValue(FlyoutBackgroundColorProperty);