Exemple #1
0
 private void remove(UserControl1 UC, int index)
 {
     UC.arrLabels[index].BackColor = Color.White;
 }
Exemple #2
0
 private void removeItem(UserControl1 uc, int index)
 {
     uc.arrLabels[index].BackColor = Color.White;
 }
Exemple #3
0
 private void add(UserControl1 UC, int counter, Color temp)
 {
     UC.arrLabels[counter].BackColor = temp;
 }
Exemple #4
0
 private void addItem(UserControl1 toUc, int toIndex, Color color)
 {
     toUc.arrLabels[toIndex].BackColor = color;
 }