This question is locked. New answers and comments are not allowed.
I'm excited to be using these controls. One question about the infinite list box:
Is there any way (example?) to add items to the Infinite List Box other than the below code in the .cs?
Seems like one would be able to use the <telerikPrimitives:InfiniteListBoxItem right inside the XAML or use {Binding on the <telerikPrimitives:InfiniteListBoxItem tag as well?
Is there any way (example?) to add items to the Infinite List Box other than the below code in the .cs?
InfiniteDataSource<string> source = new InfiniteDataSource<string>(); source.LogicalItems.Add(new VirtualizedDataItem<string>("Item1")); source.LogicalItems.Add(new VirtualizedDataItem<string>("Item2")); this.lstSports.ItemsSource = source; this.lstSports.CenterSelectedIndex(4);Seems like one would be able to use the <telerikPrimitives:InfiniteListBoxItem right inside the XAML or use {Binding on the <telerikPrimitives:InfiniteListBoxItem tag as well?