So I have a Class
public class ObjectDataModel
{
public ObservableCollection<ObjectClassA> MyObjectCollection;
}
public class ObjectClassA
{
public ObjecttypeA myobject;
public BitmapImage mybmp;
}
Now I have a grid control whose ItemsSource
I wish to bind to myObject
of MyObjectCollection
.
How to do that?
Have you tried to achieve this, if yes then it will be great if you can post your XAML code.
As per my understanding this is the correct way of using this class -