10 references to TabBarIsVisibleProperty
Microsoft.Maui.Controls (10)
Compatibility\Handlers\Shell\iOS\ShellItemRenderer.cs (1)
397
if (e.PropertyName == Shell.
TabBarIsVisibleProperty
.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellPageRendererTracker.cs (1)
129
else if (e.PropertyName == Shell.
TabBarIsVisibleProperty
.PropertyName)
Internals\PropertyPropagationExtensions.cs (2)
23
if (propertyName == null || propertyName == Shell.
TabBarIsVisibleProperty
.PropertyName)
24
BaseShellItem.PropagateFromParent(Shell.
TabBarIsVisibleProperty
, element);
Shell\Shell.cs (5)
316
public static bool GetTabBarIsVisible(BindableObject obj) => (bool)obj.GetValue(
TabBarIsVisibleProperty
);
327
public static void SetTabBarIsVisible(BindableObject obj, bool value) => obj.SetValue(
TabBarIsVisibleProperty
, value);
1603
CurrentItem?.Handler?.UpdateValue(Shell.
TabBarIsVisibleProperty
.PropertyName);
1612
if (e.Is(Shell.
TabBarIsVisibleProperty
))
1613
CurrentItem?.Handler?.UpdateValue(Shell.
TabBarIsVisibleProperty
.PropertyName);
Shell\ShellItem.cs (1)
127
return shell.GetEffectiveValue<bool>(Shell.
TabBarIsVisibleProperty
, () => defaultShowTabs, null, displayedPage);