我有一个对象列表,我想将此列表与树视图控件绑定我的类如下
public class Tax
{
public string TaxName { get; set; }
public string TaxPresentationId { get; set; }
public string ParentTaxName { get; set; }
public string PresentationTaxName { get; set; }
public string RoleURl { get; set; }
public List<Tax> Child { get; set; }
public Tax()
{
Childrens = new List<Tax>();
}
}
我有一个包含所有数据的列表
List<Tax> lstreportdata = new List<Tax>();
如何将此列表绑定到树视图控件中。提前致谢。