Mám aplikáciu, ktorá mi generuje neznámy počet textBoxov (resp. počet sa mení pri štarte, načítava sa....)
kód mám:
textboxes = new System.Windows.Forms.TextBox[pecetTextboxov];
int cnt=0;
foreach (System.Windows.Forms.TextBox textbox in textboxes)
{
int i=1;
textbox.Location = new System.Drawing.Point(88, 50 + i* 30);
i++;
textbox.Name = "textbox"+cnt.ToString();
textbox.Size = new System.Drawing.Size(173, 20);
textbox.TabIndex = cnt;
textbox.Visible = true;
cnt++;
}
A potreboval by som každému priradiť TextChanged_Event, a do každej napísať roližný kód.
Ako niečo takéto spravím?
Vopred díky