参考:
DrawCell
If e.Col.Name = "第二列" Then
e.StartDraw()
e.Text = Nothing
Dim x As Integer = e.X + 1
Dim y As Integer = e.Y + 3
For Each s As String In e.Row("第二列")
If e.Row("第一列").Contains(s) Then
e.Graphics.DrawString(s,e.Table.Font, Brushes.Red, x, y)
x + = 9
Else
e.Graphics.DrawString(s,e.Table.Font, Brushes.Black, x, y)
x + = 9
End If
Next
e.EndDraw()
End If