假设我有这样的数据结构:
Public Class AttendenceRecord
Public CourseDate As Date
Public StudentsInAttendence As Integer
End Class
Public Class Course
Public Name As String
Public CourseID As String
Public Attendance As List(Of AttendenceRecord)
End Class
我想要一个看起来像这样的表:
| 课程名称 | 课程编号 | [出席(0).CourseDate] | [出席(1).CourseDate]| ... | CS 简介 | CS-1000 | 23 | 24 | ... | 数据结构 | CS-2103 | 15 | 14 | ...
在一般情况下,我如何让课程 ID 右侧的所有内容都可以水平滚动,同时保留课程名称和课程 ID?理想情况下使用 ASP.NET 和/或 WinForms 中的表、列表视图或数据网格。