Reputation: 88367
when do i use each of the following?
{Binding ElementName=...}
{Binding Source=...}
{Binding ... Path=...}
<TextBox DisplayMemberPath=...}
// and i think i saw something like ...
{Binding xxx}
i also wonder if there are any other ways of data binding i need to be aware of? i am new to C#/WPF
Upvotes: 2
Views: 280
Reputation: 29266
Data binding can be a complex and tricky subject. Take a look here for cheat-sheet that I like to use, and here is one in a pdf.
Upvotes: 3