For a championship of 2 match(or stage), with 5 target for every match I do that:
Public Property myCompetition As Game
myCompetition = New Game With {.Name = "This is a test competition", .nMatch = 2, .nTarget =5}
Dim GamePlayers As New List(Of Player)
GamePlayers.Add(New Player With {.Name = "A", .TotalScore = 7, .matchScore = {4, 3}, .Points = {1, 0, 1, 1, 1, 0, 1, 1, 1, 0}})
GamePlayers.Add(New Player With {.Name = "B", .TotalScore =8, .matchScore = {4, 4}, .Points = {0, 1, 1, 1, 1, 1, 0, 1, 1, 1}})
GamePlayers.Add(New Player With {.Name = "C", .TotalScore = 8, .matchScore = {4,4}, .Points = {0, 1, 1, 1, 1, 1, 1, 1, 1, 0}})
And I would show them in 2 datagrid as this:
For a championship of 2 match(or stage), with 5 target for every match I do that:
And I would show them in 2 datagrid as this:
Any Advice?
@Ajeje Brazorf , I am doing some research about it. I will come back If I have some updates.
Please wait patiently.
Thanks for your understanding.
Sign in to comment