Does not work!!!
<ComboBox SelectedItem="{Binding Selected}" ItemsSource="{Binding items}" DisplayMemberPat="Name" />
Works!!!
<ComboBox ItemsSource="{Binding items}" SelectedItem="{Binding Selected}" DisplayMemberPath="Name" />
Can you spot the difference? It appears that SelectItem and ItemSource are fired in the order that they are added to the control.
fd47739d-832a-49ad-a65f-a0b432753706|1|5.0