WPF Binding Syntax Question
Posted
by Gurdas Nijor
on Stack Overflow
See other posts from Stack Overflow
or by Gurdas Nijor
Published on 2010-03-23T17:53:12Z
Indexed on
2010/03/23
18:03 UTC
Read the original article
Hit count: 900
I've seen this syntax show up, and have tried to google for it's definition to no avail; what does it mean when a dp is bound this way?
<Grid>
<ContentControl Content="{Binding}"/>
</Grid>
I was under the assumption that you have to bind to some property on the DataContext, or another element, but this appears to bind to nothing.
© Stack Overflow or respective owner