DxCarousel.Items Property
Specifies the component’s item collection.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.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.
<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