Desktop
WPF
With this post I’ll show you how to create a simple catalog like functionality for your application using RadTileView and RadDataPager. We will create a catalog with 10 000 RadTileViewItems distributed in 100 pages and each page will have UI Virtualization. At the end this sample application will look like this: Demo We’ll start with a tileview, a datapager <Grid x:Name="LayoutRoot" Background="White"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <telerik:RadTileView x:Name="myTileView" /> <telerik:RadDataPager Grid.Row="1" /> </Grid> … and a simple business item...