If you have ever used Windows Presentation Foundation (WPF) then you might have been impressed by the binding features of it.
Part one of this tutorial will show how to bind properties of the same type while the second one will also anlyse type conversion.
Using data binding you can synchronize object properties. The source of the binding is the object or property that is changing the value and the destination is the one who receives it (the new value).
There are two types of binding:
- one way binding - there is only one source that updates the information and as many destinations who receive the update.
- two way binding - every binding element can update and can receive updates so there is no distinction between source and destination.


