1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| private void buttonEnvoiConfig_Click(object sender, EventArgs e)
{
listBoxEtalonnage.Items.RemoveAt(listBoxEtalonnage.SelectedIndex);
listBoxEtalonnage.Items.Add(textBoxConfig.Text);
}
private void listBoxEtalonnage_SelectedIndexChanged(object sender, EventArgs e)
{
string s;
string[] tab,tab2,tab3;
s=listBoxEtalonnage.Text;
tab=s.Split(',');
tab2 = tab[1].Split('.');
tab3 = tab[2].Split('.');
comboBoxCouplage.Text=tab[0];
numericUpDownTension.Text = tab2[0];
numericUpDownCourant.Text =tab3[0];
} |
Partager