0
Set same tag for two labels in group. Like for label1 and label2 set tag 1, for next pair lable3 and lable4 set tag 2 and so on for 50 pairs.
In textchanged event of lable1 write below code. And attach this event to all labels.
Label lable = sender as Label;
foreach(Control ctrl in this.Controls)
{
if(ctrl is Label && ctrl.Tag==lable.Tag)
{
ctrl.Text =lable.Text;
}
}
0
Hi
I think you have to write only one method see below :
public void ChangeText(Label objLabel1, Label objLabel2,string val1, string val2)
{
objLabel1.Text = val1;
objLabel2.Text = val2;
}
and call it from textchanged event or so..