WPF puts the concept of Binding further and introduced new features, so that we could use the Binding feature extensively. Binding establishes the connection between the application and the business layers. If you want your application to follow strict design pattern rules, DataBindingconcept will help you to achieve that. We will look into greater detail with how to do that in a while.

In WPF, we can bind two Properties, one Property and one DependencyProperty, twoDependencyProperties etc. WPF also supports Command Binding. Let's discuss how to implement them in detail.

Binding can be classified into few Types.

Read More....