2
Answers

creating copy of labels

Rinku Dhadse

Rinku Dhadse

9y
379
1
I am developing windows desktop Application in which I have to create 100 label. In which same text from database on two labels so that if one label text get changed other label text also get changed means I am creating pair of two-two labels  with same text... how it is possible between 100 label of 50 pair.
Answers (2)
0
Ranjit Powar

Ranjit Powar

NA 8.1k 496.6k 9y
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
Nishant Mittal

Nishant Mittal

NA 5.8k 354.8k 9y
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..