Format :
Use code in Loop while :
ชื่อListView.View = View.Details
ชื่อListView.GridLines = True
For i As Integer = 0 To ชื่อListView.Items.Count - 1 Step 1 'Code การสลับสีใน listview
If i Mod 2 = 0 Then
ชื่อListView.Items(i).BackColor = Color.White
Else
ชื่อListView.Items(i).BackColor = Color.Linen
End If
Next i
Exemple :
MyLV.View = View.Details
MyLV.GridLines = True
For i As Integer = 0 To MyLV.Items.Count - 1 Step 1 'Code การสลับสีใน listview
If i Mod 2 = 0 Then
MyLV.Items(i).BackColor = Color.White
Else
MyLV.Items(i).BackColor = Color.Linen
End If
Next i
No comments:
Post a Comment