CollectionContainer doesn't bind my Collection
问题 I have something like a form where the user can assign a cutomer to a vehicle. But this is optional. The customers are in a combobox. I need a way to make sure that the user can choose 'none' if the combobox is open. if have found something like this: <ComboBox.ItemsSource> <CompositeCollection> <ComboBoxItem IsEnabled="False" Foreground="Black">none</ComboBoxItem> <CollectionContainer Collection="{Binding Source={StaticResource DataKey}}" /> </CompositeCollection> </ComboBox.ItemsSource> But