10 references to NavBarIsVisibleProperty
Microsoft.Maui.Controls (10)
Internals\PropertyPropagationExtensions.cs (2)
26 if (propertyName == null || propertyName == Shell.NavBarIsVisibleProperty.PropertyName) 27 BaseShellItem.PropagateFromParent(Shell.NavBarIsVisibleProperty, element);
Shell\Shell.cs (3)
77 shell?.OnPropertyChanged(NavBarIsVisibleProperty.PropertyName); 271 public static bool GetNavBarIsVisible(BindableObject obj) => (bool)obj.GetValue(NavBarIsVisibleProperty); 279 public static void SetNavBarIsVisible(BindableObject obj, bool value) => obj.SetValue(NavBarIsVisibleProperty, value);
ShellToolbar.cs (5)
36 Shell.NavBarIsVisibleProperty, 104 if (_shell.IsSet(Shell.NavBarIsVisibleProperty)) 105 return (bool)_shell.GetValue(Shell.NavBarIsVisibleProperty); 122 IsVisible = _shell.GetEffectiveValue(Shell.NavBarIsVisibleProperty, getDefaultNavBarIsVisible, observer: null); 155 Shell.NavBarIsVisibleProperty,