If I understand you correctly, you want to change the opacity of the Carousel items, which are not the current item. A possible way to do that is to set the IsOpacityEnabled property of RadCarouselPanel to false like so:
RadCarouselPanel panel = this.radCarousel.Panel as RadCarouselPanel;
panel.IsOpacityEnabled = false;
}
}
I attached a sample project that demonstrates the suggested approach.
I hope this helps.
Regards,
Boris Penev
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.