In WPF Databinding, I understand that you have DataContext
which tells an element what data it is going to bind to and ItemsSource
which "does the binding".
But e.g. in this simple example it doesn't seem that ItemsSource
is doing anything useful since, what else would you want the Element to do to the DataContext
except bind to it?
<ListBox DataContext="{StaticResource customers}"
ItemsSource="{Binding}">
And in more complex examples of ItemsSource
, you have Path and Source which seems to be encroaching on the territory of DataContext
.
ItemsSource="{Binding Path=TheImages, Source={StaticResource ImageFactoryDS}}"
What is the best way to understand these two concepts as to know when and how to apply each of them in various coding scenarios?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…