vote up 2 vote down star

How to provide an undo / redo using bindings in WPF?

e.g. You implement a master-detail view with bindings. After editing your changes were saved automatically using binding. Then you want to undo the changes.

Is there something ready-to-use in the binding for WPF? Does WPF provide some structures or interfaces for?

This question is not about how to implement undo/redo using stacks.

flag

64% accept rate

2 Answers

vote up 1 vote down

What are you databinding to?

If you are databinding to a DataSet you can undo the changes by using the DataSet.RejectChanges() method provided you have not already called DataSet.AcceptChanges().

link|flag
What about general binding, e.g. to an object derived from DependencyObject, or control-to-control binding? – Shurup May 22 at 9:45
As Kent says if the object implements the IEditableObject you are quids in but if not then you need to do this manually. – John Hunter May 22 at 10:40
vote up 1 vote down

Take a look at the IEditableObject interface. It allows you to take a snapshot of the object that implements it, and then roll back to that snapshot if necessary.

HTH, Kent

link|flag
Does WPF use the IEditableObject interface, i.e. invokes its methods? – Michael Damatov May 22 at 10:00
It's up to the particular control you're using. For example, the MS DataGrid control will. – Kent Boogaart May 22 at 10:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.