本文整理汇总了VB.NET中System.Windows.Forms.DataGridViewCellFormattingEventArgs.RowIndex属性的典型用法代码示例。如果您正苦于以下问题:VB.NET DataGridViewCellFormattingEventArgs.RowIndex属性的具体用法?VB.NET DataGridViewCellFormattingEventArgs.RowIndex怎么用?VB.NET DataGridViewCellFormattingEventArgs.RowIndex使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Windows.Forms.DataGridViewCellFormattingEventArgs
的用法示例。
在下文中一共展示了DataGridViewCellFormattingEventArgs.RowIndex属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: dataGridView1_CellFormatting
' Sets the ToolTip text for cells in the Rating column.
Sub dataGridView1_CellFormatting(ByVal sender As Object, _
ByVal e As DataGridViewCellFormattingEventArgs) _
Handles dataGridView1.CellFormatting
If e.ColumnIndex = Me.dataGridView1.Columns("Rating").Index _
AndAlso (e.Value IsNot Nothing) Then
With Me.dataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex)
If e.Value.Equals("*") Then
.ToolTipText = "very bad"
ElseIf e.Value.Equals("**") Then
.ToolTipText = "bad"
ElseIf e.Value.Equals("***") Then
.ToolTipText = "good"
ElseIf e.Value.Equals("****") Then
.ToolTipText = "very good"
End If
End With
End If
End Sub