Sub ColorRow
'This CustomListview Row / Panel contains 6 Labels
Dim pnl As Panel
pnl = clv1.GetPanel(clickedRow)
'you can just reset the panels backcolor
pnl.Color = Colors.Blue
'OR set the individual labels backcolor and textcolor ..
For i = 1 To 6
Dim lbl As Label
lbl = pnl.GetView(i)
lbl.Color = Colors.RGB(70,130,180) 'SteelBlue
lbl.TextColor = Colors.White
Next
End Sub