Archived
1
0

Playlist page complete

This commit is contained in:
Michael Gordeev
2018-07-27 17:07:51 +03:00
parent 98c7ce1735
commit 2aa0b18091
5 changed files with 155 additions and 44 deletions
+3 -3
View File
@@ -53,8 +53,8 @@ namespace FoxTube.Controls
try
{
thumbnail.Source = new BitmapImage(new Uri(item.Snippet.Thumbnails.Standard.Url));
avatar.ProfilePicture = new BitmapImage(new Uri((await r.ExecuteAsync()).Items[0].Snippet.Thumbnails.Standard.Url));
thumbnail.Source = new BitmapImage(new Uri(item.Snippet.Thumbnails.Medium.Url));
avatar.ProfilePicture = new BitmapImage(new Uri((await r.ExecuteAsync()).Items[0].Snippet.Thumbnails.Medium.Url));
} catch { }
}
@@ -65,7 +65,7 @@ namespace FoxTube.Controls
private void Button_Click(object sender, RoutedEventArgs e)
{
//Goto playlist
Methods.MainPage.GoToPlaylist(item.Id);
}
}
}