Try to understand WPF. This is my test classes:
public partial class MainWindow : Window, INotifyPropertyChanged { private ObservableCollection
I think you have two problems:
1) binding should be: {Binding MyList}
{Binding MyList}
2) on MyList setter you should use RaisePropertyChanged("MyList");
RaisePropertyChanged("MyList");