可以的。
请参考以下示例代码。- Dim template1 As Template = Me.GcMultiRow1.Template
- '这里可以根据需求任意改变模板
- template1.Row.BackColor = Color.Red
- template1.Row.Cells(0).Size = new Size(100,30)
- template1.Row.Cells.RemoveAt(1)
- '......
- '最后把改好的Template设回给GcMultiRow
- Me.GcMultiRow.Template = template1
复制代码 |