Skip to main content
All docs
V25.2
  • DxRibbonApplicationTab.Enabled Property

    Specifies whether a Ribbon application tab is enabled.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.2.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(true)]
    [Parameter]
    public bool Enabled { get; set; }

    Property Value

    Type Default Description
    Boolean true

    false to disable an application tab; otherwise, true.

    Remarks

    Set the Enabled property to false to disable the application tab.

    <DxRibbon>
        <DxRibbonApplicationTab Text="File"
                                Enabled="false">
            <DxRibbonApplicationTabItem Text="New" />
            <DxRibbonApplicationTabItem Text="Open" />
            <DxRibbonApplicationTabItem Text="Save" />
        </DxRibbonApplicationTab>
        <DxRibbonTab Text="Home">
            <!-- .... -->
        </DxRibbonTab>
    </DxRibbon>
    

    Disabled Application Tab

    Note

    To hide the application tab, set the Visible property to false.

    See Also