Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxMenu.ItemsStretched Property

Specify whether to stretch menu items to fill all available space in the menu container.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(false)]
[Parameter]
public bool ItemsStretched { get; set; }

#Property Value

Type Default Description
Boolean false

true to stretch items; otherwise, false

#Remarks

Use the ItemsStretched property to stretch all menu items. To stretch an individual menu item, use the DxMenuItem.Stretched property.

Mobile and tablet devices cannot stretch items.

Razor
<div class="card w-50">
    <DxMenu Title="DevExpress"
            ItemsPosition="ItemPosition.Center"
            ItemsStretched="true">
        <Items>
            <DxMenuItem Text="Products" IconCssClass="oi oi-layers" />
            <DxMenuItem Text="Support" IconCssClass="oi oi-person" />
            <DxMenuItem Text="Documentation" IconCssClass="oi oi-book" />
        </Items>
    </DxMenu>
</div>

Menu

See Also