Skip to main content
All docs
V25.1
  • DxCarousel.Items Property

    Specifies the component’s item collection.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public RenderFragment Items { get; set; }

    Property Value

    Type Description
    RenderFragment

    A collection of items (UI fragments).

    Remarks

    The <DxCarousel> component can operate in unbound mode. Populate the component’s <Items>...</Items> tag with DxCarouselItem objects to create a collection of items.

    Run Demo

    Carousel - Item Collection

    <DxCarousel Width="500px"
                Height="300px">
        <Items>
            @foreach (var item in GetCarouselData()) {
                <DxCarouselItem>
                    <div class="caruselItemContainer">
                        <p class="caruselItemCaption">@item.AlternateText</p>
                        <img src=@item.Source
                             alt=@item.AlternateText />
                    </div>
                </DxCarouselItem>
            }
        </Items>
    </DxCarousel>
    
    See Also