I have a list that is bound to a blockingcollection in my viewmodel
<ListBox Grid.Row="1" ItemsSource="{Binding PlantControllers}"
and property
public BlockingCollection<PLANTCONTROLLER> PlantControllers
{
get { return _plant.PlantControllers; }
}
What is the easiest way of making a blockingcollection observable, cant seem to find any good examples out there