I've got a WPF Window, and somewhere there is a ListView where I bind a List<string> to.
Now somewhere in my ListView there is a TextBox and the Content property is set to {Binding}.
But this is the shorthand. How do I write the full binding to bind to itself?
{Binding Path=Self} doesn't work, neither does {Binding Self} (where the latter is a shortcut for the former).