I have a ObservableCollection of custom control objects.
ObservableCollection<MyStatusBar> MyUIObjects = new ObservableCollection<MyStatusBar>();
The custom control is a user control like this
public partial class MyStatusBar : UserControl, INotifyPropertyChanged
What is the easiest way that I can bind my list of controls to a stackpanel so they show up. Currently when I bind them nothing shows up. When I add the controls manually to the StackPanel.Children collection they then show up but I want to do it with binding.