Create an infinite Silverlight ItemsControl

I am interested in creating an ItemsControl for Silverlight element that "loops" the elements. When the user scrolls to the end of the list, the ItemsControl should then show the first items in the list. If the user scrolls over the first element of the list, the ItemsControl element should display the last element in the list. This probably makes sense here for the ItemsControl to contain more items than it contains. What a good way to do this control? I plan to bind data to the ItemsSource property so that the user collection can work as well.

+3
source share

Source: https://habr.com/ru/post/1762345/


All Articles