11 references to NavBarIsVisibleProperty
Microsoft.Maui.Controls (11)
Compatibility\Handlers\Shell\iOS\ShellSectionRenderer.cs (1)
558 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)
79 shell?.OnPropertyChanged(NavBarIsVisibleProperty.PropertyName); 273 public static bool GetNavBarIsVisible(BindableObject obj) => (bool)obj.GetValue(NavBarIsVisibleProperty); 281 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,