Exemplo n.º 1
0
 //Vendre l'inventaire
 private void bVendreInventaire_Click(object sender, RoutedEventArgs e)
 {
     //on vend on actualise
     inventaire.vendreInventaire();
     tbInventaire.Text = inventaire.actualiserInventaire();
     //on actualise l'or
     tbOr.Text = "Or : " + Convert.ToString(inventaire.getOr());
 }