Jiew Meng
Jiew Meng

Reputation: 88367

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

Upvotes: 2

Views: 280

Answers (2)

Polaris
Polaris

Reputation: 3793

You can learn core abilities of WPF from this cheet sheet

Upvotes: 0

Muad&#39;Dib
Muad&#39;Dib

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

Related Questions