Event Handler C Sharp

How to get attribute values to dynamically create C treble controls?
Hi frens, I created three image areas using the codes dynamically. When one of them is clicked, so you can identify each of them using the event handler. But I have a problem. The problem is I can not get the values or set the values of its attributes. For example, I created three pbx that picturebox and set their labels and PBX1 and PBX2 pbx3 dynamically. Now if I want to show their name tag How I can do that. Why does not pbx.tag points not because any of them specifically. I was hoping pbx1.tag work because I am assigned the name when it is created, but it does not work. Please someone to help with simple example?
this is the way to get an object in the form this.Controls know her name ["driver name"]; Ex PictureBox x = (PictureBox) this.Controls ["PBX1"] = x.Image ….
c sharp Events
