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