| File: PlatformConfiguration\iOSSpecific\TabbedPage.cs | Web Access |
| Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable namespace Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific { using FormsElement = Maui.Controls.TabbedPage; /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage']/Docs/*" /> public static class TabbedPage { /// <summary>Bindable property for <see cref="TranslucencyMode"/>.</summary> public static readonly BindableProperty TranslucencyModeProperty = BindableProperty.Create("TranslucencyMode", typeof(TranslucencyMode), typeof(TabbedPage), TranslucencyMode.Default); /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml" path="//Member[@MemberName='GetTranslucencyMode'][1]/Docs/*" /> public static TranslucencyMode GetTranslucencyMode(BindableObject element) => (TranslucencyMode)element.GetValue(TranslucencyModeProperty); /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml" path="//Member[@MemberName='SetTranslucencyMode'][1]/Docs/*" /> public static void SetTranslucencyMode(BindableObject element, TranslucencyMode value) => element.SetValue(TranslucencyModeProperty, value); /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml" path="//Member[@MemberName='GetTranslucencyMode'][2]/Docs/*" /> public static TranslucencyMode GetTranslucencyMode( this IPlatformElementConfiguration<iOS, FormsElement> config) => GetTranslucencyMode(config.Element); /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml" path="//Member[@MemberName='SetTranslucencyMode'][2]/Docs/*" /> public static IPlatformElementConfiguration<iOS, FormsElement> SetTranslucencyMode( this IPlatformElementConfiguration<iOS, FormsElement> config, TranslucencyMode value) { SetTranslucencyMode(config.Element, value); return config; } } }