/// <summary> /// Update the view with value of the selected element in List View /// </summary> /// <param name="movie"></param> public void DisplayMovie(Film movie) { CurrentMovie = movie; Id = movie.Id; Title = movie.Title; Affiche = Util.FormatPathMovie(movie.Affiche); Description = movie.Desc; Realisateur = movie.Real; Date = movie.Date.ToString("dd/MM/yyyy");; SelectedUniverse = movie.Universe; BA = Util.FormatPathTrailer(movie.BA); ListHeroDisplay = AppUtils.ConvertList(movie.GetListHeros()); }