I need to bind an arry of textblocks(which will be created by code behind) to an Observable Collection of some User Defined Type, so that each textblock will have one and unique element of ObsColl item.
public class Car { private string _make;
public Car(string make)
{
_make = make;
}
}
Now i need to create an Observable collection of this class and need to create an array of Textblocks. Text property of will be Car.Make