How can I modify this:

vb Code:
  1. Content.Font = New Font("Verdana", 8, FontStyle.Bold)

So that in my datagridview it only makes the selected row bold when it is double clicked?

Whole Thing:
vb Code:
  1. Private Sub Content_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles Content.CellDoubleClick
  2.         row = e.RowIndex
  3.         If row >= 0 Then
  4.             Content.Font = New Font("Verdana", 8, FontStyle.Bold)
  5.         End If
  6.     End Sub

Thanks!