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

    Specifies whether a Ribbon application tab item 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 item; otherwise, true.

    Remarks

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

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

    Disabled Application Tab Item

    Note

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

    See Also