Ok I read that the DataGrid supports the ICustomTypeDescriptor Interface so I played a little more with my Code.
Just to test it, I removed the CV and bound the DataGrid directly to my ObservableCollection without any change,
but just to test it I create an other Property which returns a List created from my ObservableCollection.
regards Maik
Just to test it, I removed the CV and bound the DataGrid directly to my ObservableCollection without any change,
but just to test it I create an other Property which returns a List created from my ObservableCollection.
public List<MngArticleVM> Articles1
{
get
{
return Articles.ToList();
}
}
And binding to this Property it works! So there seems to be a problem with my Collection and the Control is working fine.regards Maik