我List<Student>
为每个学生提供了 4 个属性。
目前我正在使用这个:
listStudents = new List<Student>();
foreach (Student s in listStudents)
{
listbox1.Items.Add(s);
}
但它显示 4 个属性彼此相邻。
我做了一些研究以对列中的属性进行排序,并发现listview
.
谁能解释我该怎么做?
我试图add columns
收集的listview
,但它仍然没有工作......
我也试过了:
listStudents = new List<Student>();
foreach (Student s in listStudents)
{
listview.Items.Add(s);
}
谁能告诉我我做错了什么?我只想要不同列中每个学生的 4 个属性。