Silverlight - binding a listbox within a listbox template

北城余情 提交于 2019-12-06 07:58:58

Your "Parameters" list is a public field not a property, silverlight can only bind to properties and not fields. Try changing your class to this:

public class Report
{
    public Report()
    {
         Parameters = new List<ReportParameter>();
    }

    public string Title { get; set; }
    public string Description  { get; set; }
    public List<ReportParameter> Parameters { get; set; }
}

This should work the way you want it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!