Is there a way to create 3 rows with 3 colums with labels (or similar) to create a 2d "map" with data to manipulate in an easy way?
just placing 9 labels is easy but I want each labels to be accessed with the same array.
How it looks like in the form:
label1 label2 label3
label4 label5 label6
label7 label8 label9
If i need to change the property of label5 I would like to access it something like this:
labelarray[1][1].Text = "Test";
(labelarray[row][column].Property )
How do I do this?
Or could this be achieved in another way?