How do I bind list items to an Accordian control from the Silverlight 3 Toolkit?
- by Blanthor
I have a list of objects in a model
public class AccordianModel
{
public List<AccordianItem> Items { get; set; }
public AccordianModel()
{
Items = new List<AccordianItem>
{
new AccordianItem() {Title = "Monkey", ImageUri = "Images/monkey.jpg"},
new…