public Joueur(string[] champs) { Matricule = champs[0]; Prenom = champs[1]; Nom = champs[2]; Usager = champs[3]; EquipeJoueur = null; LstStats = new Statistiques(); // TEST DONNÉES STATIQUE // TODO : Class association Partie-Joueur-Champion string fullFilePath; Champion = "Alistar"; fullFilePath = @"http://ddragon.leagueoflegends.com/cdn/5.2.1/img/champion/" + Champion + ".png"; BitmapImage bitmap = new BitmapImage(); bitmap.BeginInit(); bitmap.UriSource = new Uri(fullFilePath, UriKind.Absolute); bitmap.EndInit(); Img = bitmap; }
public Equipe(string nom) { Nom = nom; LstJoueurs = new ObservableCollection <Joueur>(); EstElimine = false; LstStats = new Statistiques(); }
public PartieEquipe(Equipe e) { Equipe = e; LstStats = new Statistiques(); LstStats.PropertyChanged += PropertyChanged; }