如何在DataGridView中绑定一个组合框列

本文关键字:一个 组合 DataGridView 绑定 | 更新日期: 2023-09-27 17:51:11

我的情况如下:

我创建了一个名为"Student"的类,它如下所示:

public Student
{
   Public string Name;
   Public List<string> Subjects;
}

然后我定义了一个叫做studentListList<Student>

如何将studentListDataGridView结合?DataGridView中的第二列应该是一个组合框,列出该学生的所有主题。

如何在DataGridView中绑定一个组合框列

对我来说,这看起来像是TreeView或ListView的工作,假设您不使用组合框来选择任何东西,而只是查看一些东西。