11 references to NavBarIsVisibleProperty
Microsoft.Maui.Controls (11)
Compatibility\Handlers\Shell\iOS\ShellSectionRenderer.cs (1)
549 if (e.PropertyName == Shell.NavBarIsVisibleProperty.PropertyName)
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, 103 if (_shell.IsSet(Shell.NavBarIsVisibleProperty)) 104 return (bool)_shell.GetValue(Shell.NavBarIsVisibleProperty); 122 IsVisible = _shell.GetEffectiveValue(Shell.NavBarIsVisibleProperty, getDefaultNavBarIsVisible, observer: null); 155 Shell.NavBarIsVisibleProperty,