I am trying to implement raddatapager in my wpf application. Everything seems to be working fine except for the pagesize field. I can get the pagesize field in my page. It's showing other stuff like total pages, next previous button but not the pagesize field. i want to give an option to the user to change the pagesize from pager. I find something like this https://demos.telerik.com/aspnet-ajax/listview/examples/paging/pagingwithraddatapager/defaultcs.aspx but in wpf application.
Here is my code:
<telerik:RadDataPager x:Name="radDataPager"
Source="{Binding DataList}"
Grid.Row="3"
Grid.Column="1"
DisplayMode="All"
PageSize="20" />
It seems that there is no built-in UI for this tasks, but it should be achievable with slight modification of the template. I tried this and it seems to be working fine.
Slight placement modifications might be needed to adapt it to your needs.