I fill the combobox with the below method and when I change the selection it's changed in all the Comboboxes why?
PowerProjectDBLinqDataContext dataContext =new PowerProjectDBLinqDataContext();
IEnumerable<Winding_Building_typeCombo> ls = dataContext.Winding_Building_typeCombos.ToList();
ComboBox cbx;
for (int i = 1; i <= windingCount; i++)
{
cbx=((ComboBox)WindingPanel.Controls["winding" + i].Controls["cbxWindingBildingType" + i]);
cbx.ValueMember = "id";
cbx.DisplayMember = "value";
cbx.DataSource = ls;
}