I was reading some code and came across this;
<TabControl ItemSource="{Binding}"
ItemTemplate="{StaticResource TabItemTemplate}" />
I have a pretty good handle on {Binding Path=Something} but I can't find a sastisfactory nswer to ItemSource="{Binding}" all by itself. The nearest I got to an answer was
"This simply returns the current data context (more about that later)." BTW, there was nothing more.
So I wonder if anyone would like to expand on this and leave out all the "One Way, Two Way, Element... binding. Just the part about {Binding}.
Thank you.