1
我的情況是如下:如何數據綁定DataGridView中的組合框列?
我無視了一個名爲「學生」類,它是如下簡單:
public Student
{
Public string Name;
Public List<string> Subjects;
}
然後我定義了一個名爲List<Student>
studentList
。
如何將studentList
與DataGridView
結合? DataGridView
中的第二列應該是一個列出學生所有科目的組合框。
我想你將不得不循環並將主題列表分配爲DataSource到組合框 – V4Vendetta
這是WinForms嗎? –