Is there an easy way to add a TextChanged Event for all the first dimension in the array?
For instance, I'd like to update lblSeries[0] by adding the following at runtime:
txtGames[0,0] txtGames[0,1] txtGames[0,2]
same with lblSeries[1], would be updated when any of the following text values are changed:
txtGames[1,0] txtGames[1,1] txtGames[1,2]
Any ideas?