i did this:
this.combobox.ItemsSource = Common.Component.ModuleManager.Instance.Modules;
to bind the combobox to a collection, which is located in an other project/namespace. But i had to move the ComboBox
into a DataTemplate.
Now i need to do something like that:
<ComboBox ItemsSource="{Binding Common.Component.ModuleManager.Instance.Modules}"/>
I don't want to list all of my tries, but none were successful.
Any better Ideas?