I saw that a combobox itemsource can be binded in two main ways:
Direct binding
<ComboBox Name="k" ItemsSource="{Binding Path=Mylist}"/>
CollectionViewSource
<Window x:Class="WpfApplication25.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<CollectionViewSource x:Key="list" Source="{Binding Items}"/>
</Window.Resources>
<ComboBox Name="k" ItemsSource="{Binding Source={StaticResource list}}"/>
Which is the difference between the two methods?