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 |
|
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>

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