public Carte(etude proj, int i) { InitializeComponent(); projet = proj; nproj = i; fen = new Fenetre(); }
public import_matrice(etude proj) { InitializeComponent(); int i; projet = proj; for (i = 0; i < proj.reseaux.Count; i++) { this.comboBox1.Items.Add(projet.reseaux[i].nom); } }
public Choix_reseau(etude proj) { int i; InitializeComponent(); projet = proj; for (i = 0; i < proj.reseaux.Count; i++) { this.comboBox1.Items.Add(projet.reseaux[i].nom); } }
public Donnees(etude proj, int i) { InitializeComponent(); projet = proj; nproj = i; }