whytheq
whytheq

Reputation: 35557

Equivalent tool in WPF to the WinForm BindingNavigator tool

In a WinForm I've used a BindingNavigator out of the toolbox.

I'm moving the application to a WPF. There isn't a BindingNavigator in the toolbox, or in the Extended WPF Toolkit.

The WPF is very simple with a couple of Textboxes that display information from a couple of fields in the data but I'd like a way of scrolling through the records one at a time.

What is the WPF alternative to the BindingNavigator?

Upvotes: 0

Views: 3201

Answers (1)

whytheq
whytheq

Reputation: 35557

More involved than the out-of-the-box WinFrom BindingNavigator but potentially more powerful.

Christian Nagel's blog has the following two articles:

  1. BindingNavigator for WPF (Part 1 - Creating)

  2. BindingNavigator for WPF (Part 2–Using)

Upvotes: 1

Related Questions