11 references to TabsStyle
Microsoft.Maui.Controls (11)
PlatformConfiguration\macOSSpecific\TabbedPage.cs (11)
10 /// <summary>Bindable property for <see cref="TabsStyle"/>.</summary>
11 public static readonly BindableProperty TabsStyleProperty = BindableProperty.Create("TabsStyle", typeof(TabsStyle), typeof(TabbedPage), TabsStyle.Default);
14 public static TabsStyle GetTabsStyle(BindableObject element)
16 return (TabsStyle)element.GetValue(TabsStyleProperty);
20 public static void SetTabsStyle(BindableObject element, TabsStyle value)
26 public static TabsStyle GetTabsStyle(this IPlatformElementConfiguration<macOS, FormsElement> config)
32 public static IPlatformElementConfiguration<macOS, FormsElement> SetShowTabs(this IPlatformElementConfiguration<macOS, FormsElement> config, TabsStyle value)
41 SetTabsStyle(config.Element, TabsStyle.OnNavigation);
48 SetTabsStyle(config.Element, TabsStyle.Default);
55 SetTabsStyle(config.Element, TabsStyle.Hidden);