【发布时间】:2012-07-12 09:47:02
【问题描述】:
我有以下结构
Public Structure matrixblock
Public name As String
Public firstReference As List
Public secondReference As List
End Structure
我将一堆这样的结构保存在另一个列表中:
dim result as List(of matrixblock)
我想将此列表绑定到 DataGrid,列中应为:
- 第一栏:名称
- 第二列:firstReference.Count
- 第三列:secondReference.Count
有人可以帮我设置吗? 谢谢
【问题讨论】: