yo encontramos este WPF Binding CheatSheet unos meses atrás y resulta muy útil, especialmente para cualquier persona aprender WPF. Hay algunos errores de ortografía dentro de él, pero todavía es bastante bueno.
Aquí es un pequeño extracto (que se supone que tiene el formato tabular):
Basic Binding
{Binding} Bind to current DataContext.
{Binding Name} Bind to the “Name” proeprty of the current DataContext.
{Bindind Name.Length} Bind to the Length property of the object in the Name property of the current DataContext.
{Binding ElementName=SomeTextBox, Path=Text} Bind to the “Text” property of the element XAML element with name=”SomeTextBox” or x:Name=”SomeTextBox”.
Direct link to CheatSheet
Así que es escritura a mano para {Binding}. Bien, es bueno saberlo. – Ray
@Ray - mis pensamientos exactamente. Si vas a taquigrafía, ¿por qué parar ahí? – micahtan
No puedo discutir con MSDN, pero todavía hay una diferencia. {Binding} no se puede usar en un objeto en sí mismo (siendo de dos formas requiere una propiedad) mientras {Binding Path =.} Funciona. –