Refer the below code snippets,
I am having Frame observable collection in View Model and it is binding to the UI.
In UI, I have CarouselView and assigning the DataTemplate values with ViewModel Property.
**ViewModel Property:**
public ObservableCollection<Frame> CarouselViewItemSource
{
get => carouselViewItemSource;
set
{
SetProperty(ref carouselViewItemSource, value);
}
}