Hello;
I add some codes for my app.
For z=0 To kull_liste.Size-1
'veri=kull_liste.Get(z)
If Floor(z/2)*2=(z/2)*2 Then
ListView1.SingleLineLayout.Label.TextColor = Colors.Yellow
Else
ListView1.SingleLineLayout.Label.TextColor = Colors.White
End If
ListView1.AddSingleLine(kull_liste.Get(z))
DoEvents
Next
result is not good. Because; I am waiting lines colors are 1.yellow, 2 white, 3 y, 4 w, 5 y, 6w, ..... I expect that sequence,
Now; I see 1.Y 2w,3w,4y,5w,6y,7y,8y,9w,10w,...
or 1.Y,2y,3w,4w,5w,6y,7w,,8y,9y,10w......
result is every time randomly... I cant understand it.
I checked my code on debuger mode. Iit is works.
Why nort line colors sequence?