private void addJedi_Click(object sender, RoutedEventArgs e)
        {
            bool isSithValue = false;
            List<Caracteristiques> listCaracts = new List<Caracteristiques>();
            try
            {
                Caracteristiques cf = new Caracteristiques(EDefCaracteristique.Force, "Force", Int32.Parse(forceValue.Text), 1);
                Caracteristiques cc = new Caracteristiques(EDefCaracteristique.Chance, "Chance", Int32.Parse(chanceValue.Text), 1);
                Caracteristiques cd = new Caracteristiques(EDefCaracteristique.Defense, "Defense", Int32.Parse(defValue.Text), 1);
                Caracteristiques cs = new Caracteristiques(EDefCaracteristique.Sante, "Sante", Int32.Parse(santeValue.Text), 1);
                listCaracts.Add(cf);
                listCaracts.Add(cc);
                listCaracts.Add(cd);
                listCaracts.Add(cs);
            }
            catch (Exception ex)
            {
                MessageBox.Show("Veuillez saisir des cararctéristiques correctes " + ex.Message);
            }
            if( listCaracts.Count==4 && SithValue.SelectedItem!=null && NomValue.Text!="")
            { 
                if (SithValue.SelectedItem.Equals("Sith"))
                    isSithValue = true;
                Jedi jediAdd = new Jedi(listCaracts, isSithValue, NomValue.Text, 1);
                JediTournamentManager.AddJedi(jediAdd);
                GestionJedis gj = new GestionJedis();
                gj.Show();

                Close();
            }
            else
            {
                MessageBox.Show("Veuillez saisir des données correctes");
            }


        }
 void btnGJedis_Click(object sender, RoutedEventArgs e)
 {
     GestionJedis win = new GestionJedis();
     win.Show();
     this.Close();
 }