In my WPF project, I have a ListBox that displays items from a List collection. I wanted to make the text of these items editable, so I wrapped ea
List
The documentation states that {Binding} is equivalent to {Binding Path=.}. However it is not equivalent to {Binding Path} as you have typed. If you include the Path property, you must assign it to something, be it Path=. or Path=OtherProperty.
{Binding}
{Binding Path=.}
{Binding Path}
Path
Path=.
Path=OtherProperty