5 references to FlyoutItemIsVisibleProperty
Microsoft.Maui.Controls (5)
Shell\MenuShellItem.cs (2)
36
else if (e.PropertyName == Shell.
FlyoutItemIsVisibleProperty
.PropertyName)
45
else if (propertyName == Shell.
FlyoutItemIsVisibleProperty
.PropertyName && MenuItem != null)
Shell\Shell.cs (3)
108
public static bool GetFlyoutItemIsVisible(BindableObject obj) => (bool)obj.GetValue(
FlyoutItemIsVisibleProperty
);
112
/// Flyout items are visible in the flyout by default. However, an item can be hidden in the flyout with the <see cref = "
FlyoutItemIsVisibleProperty
" />.
116
public static void SetFlyoutItemIsVisible(BindableObject obj, bool isVisible) => obj.SetValue(
FlyoutItemIsVisibleProperty
, isVisible);