please consider that this is my first very post and that I´m a newcomer in C#
I'm creating a UserControl with several pictureBoxes. These objects are automatically named pictureBox1, pictureBox2, pictureBox3 and so on.
Now i want to change the associated image by clicking:
pictureBox1.Image = Properties.Resources.i51;
so far, so good. But how to assigne the number without writing a single line for each event?
pictureBox(1).Image = Properties.Resources.i51;
doesn´t work, and lots of others don´t too.
any hint? Many thanks in advance!