WPF Data Navigation Controls

I need to have a set of controls to navigate through the data (first, next, previous, last and specific record). Is there any set of controls that are related to this? I am new to WPF and hope there is already something out there that provides this capability.

+1


a source to share


1 answer


No, you need to create them for yourself. This will of course depend on your data model.

The WPF way to do this is binding your data to a ListView (or any ListItem container) and then using



myList.Items.MoveCurrentToFirst()
myList.Items.MoveCurrentToLast()
//etc....

      

+1


a source







All Articles