Data Binding

Data binding, in its purest sense, is the capability of a control to be wired to a data source such that the control (a) displays certain items from that data source and (b) is kept in sync with the data source. After the connection is made, the runtime handles all the work necessary to make this happen. It doesn’t really matter where or how the data is stored. It could be a file system, a custom collection of objects, a database object, and so on.

Let’s look briefly at how we can establish a data binding connection using WPF. The key class here is System.Windows.Data.Binding. This is the mediator in charge of linking a control with a data source. To successfully declare a binding, we need to know three things:

What UI control property ...

Get Microsoft Visual Studio 2015 Unleashed, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.