8 references to TabBarIsVisibleProperty
Microsoft.Maui.Controls (8)
Internals\PropertyPropagationExtensions.cs (2)
25 if (propertyName == null || propertyName == Shell.TabBarIsVisibleProperty.PropertyName) 26 BaseShellItem.PropagateFromParent(Shell.TabBarIsVisibleProperty, element);
Shell\Shell.cs (5)
318 public static bool GetTabBarIsVisible(BindableObject obj) => (bool)obj.GetValue(TabBarIsVisibleProperty); 329 public static void SetTabBarIsVisible(BindableObject obj, bool value) => obj.SetValue(TabBarIsVisibleProperty, value); 1605 CurrentItem?.Handler?.UpdateValue(Shell.TabBarIsVisibleProperty.PropertyName); 1614 if (e.Is(Shell.TabBarIsVisibleProperty)) 1615 CurrentItem?.Handler?.UpdateValue(Shell.TabBarIsVisibleProperty.PropertyName);
Shell\ShellItem.cs (1)
129 return shell.GetEffectiveValue<bool>(Shell.TabBarIsVisibleProperty, () => defaultShowTabs, null, displayedPage);