private void ajouter_Click(object sender, EventArgs e) { if (Ouverture.ShowDialog() == DialogResult.OK) { Liste.Images.Add(Image.FromFile(Ouverture.FileName)); } }
private void ouvrir_Click(object sender, EventArgs e) { if (Ouverture.ShowDialog() == DialogResult.OK) { StreamReader sr = new StreamReader(Ouverture.FileName); texte.Text = sr.ReadToEnd(); sr.Close(); } }
private double calculOuverture(Posemètre posemètre) { double E = posemètre.getEclairementLumineux(); double S = posemètre.getISO(); double t = posemètre.getTempsDePose(); double N2 = ((E * S) / Posemètre.CONSTANTE_ETALONNAGE) * t; double N = Math.Sqrt(N2); return(Arrondiseur.arrondire(N, Ouverture.récupérerLesValeuresDOuverture())); }
private void initialiserOuverture() { ouverture.ItemsSource = Ouverture.récupérerLesValeuresDOuverture(); ouverture.Visibility = Windows.UI.Xaml.Visibility.Collapsed; }