Silverlight - binding a listbox within a listbox template
In silverlight, I'm trying to build a listbox of reports and I'm trying to show the parameters of the report in a listbox within the datatemplate of the outer reports listbox. Here are the data classes: public class Report { public string Title { get; set; } public string Description { get; set; } public List<ReportParameter> Parameters = new List<ReportParameter>(); } public class ReportParameter { public string Name { get; set; } public string ParameterType { get; set; } public bool Required { get; set; } } Here's the XAML I'm trying to use to do it: <ListBox x:Name="lstReports"> <ListBox