views:

43

answers:

2
+2  Q: 

WPF Data Binding

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

+3  A: 

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.

Muad'Dib
A: 

You can learn core abilities of WPF from this cheet sheet

Polaris