在 WPF MVVM 应用程序中,我需要在数据表中显示学院。在每所学院下都有一个学生名单,我们必须在展开时在学院下显示。 (数据表作为树视图)
public Class College
{
public int CollegeId {get; set;}
public string Name {get;set;}
public string Ares {get;set;}
public string Pincode {get;set;}
public string ContactNumber {get;set;}
public List<Student> Students {get;set;}
}
public Class Student
{
public int StudentId {get;set;}
public String FirstName {get; set;}
public string LastName {get;set;}
public int Age {get;set;}
}
public ObservableCollection<College> Colleges = new ObservableCollection<College>();
我试过 Treeview 但我需要一个表格视图。