Skip to main content
A newer version of this page is available. .

Binding to a Folder

To bind an image slider to a folder, pass the path to the folder that contains images to the ImageSliderExtension.BindToFolder property as a parameter. The corresponding thumbnails are created automatically.

The code sample below demonstrates how to bind an ImageSlider to a folder.

View code (Razor):

@Html.DevExpress().ImageSlider(
        settings => {
            settings.Name = "imageSlider";
            settings.EnableTheming = false;
        }
    ).BindToFolder("~/Content/ImageSlider/landscapes").GetHtml()

The code result is demonstrated in the image below.

MVC_ImageSlider_overview

See Also